CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: TechieBabe

Search: Search took 0.03 seconds.

  1. Re: Marshalling an interface pointer to multiple worker threads

    I am now using the Global Interface Table to marshall my interface pointer, which can then be unmarshelled multiple times - this seems to be a better solution for what I am trying to doie. marshall...
  2. Marshalling an interface pointer to multiple worker threads

    I have an in-proc COM server object running in an NTA. This COM object creates multiple threads to call one of its methods in parallel to improve performance (oringinally the method was called...
  3. Re: Creating in-proc COM Objects in the right apartment

    Thanks :-)
  4. Can VB6 in-proc COM server call methods on an MTA COM object?

    If I pass an interface pointer for an in-proc COM server object ( that has already been created by another in-proc server COM dll further up the calling chain), to a COM object implemented in VB6,...
  5. Creating in-proc COM Objects in the right apartment

    If a client wants to create an in-proc server COM object marked as FreeThreaded in the registry, does the client need to create this object on an MTA thread? What happens if it creates the object in...
  6. Re: Where does a VB COM object create an in-proc COM free-threaded COM object?

    Thanks :-)

    What happens if a VB COM just tries to access an in-proc COM server object already created in an MTA by another C++ client? Can it call methods on this object in the MTA via a...
  7. Where does a VB COM object create an in-proc COM free-threaded COM object?

    I know that if an STA thread creates an in-process COM object whose threading model is Free, the object will be created in the client's MTA, and the creating STA thread will access the object via a...
  8. Replies
    4
    Views
    1,215

    Re: Marshalling in Same Process

    My worker threads need to have access to the COM object and I have assumed that they cannot access the internal COM object and can only access it via an interface. This interface pointer will be...
  9. Replies
    4
    Views
    1,215

    Re: Marshalling in Same Process

    Thanks for your reply.

    My COM object creates worker threads that make asynchronous calls to another interface of the same COM object - I have assumed that this means I need to have the COM object...
  10. Replies
    4
    Views
    1,215

    Marshalling in Same Process

    Hi,

    I have a VB COM client and an in-process COM object (VC++) both in the same STA. However, I need to add some asynchronous functionality to the COM object, creating worker threads to do...
Results 1 to 10 of 10





Click Here to Expand Forum to Full Width

Featured