Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. Dennis7

    Why modaless dialog box on the heap?

    Modaless dialog box can't be created on the stack...because u have to call a Create fucntion for this type of dialog box...What i think the secret lies in the heap ..heap is the extra memory which is being used by the programm(or application) and there is a separate thread to manage the heap and...
  2. Dennis7

    BSTR and _bstr_t

    Hello, _bstr_t is a wrapper class for BSTR.This class has a constructor which takes the BSTR as a parameter.... class has a function called copy via which u can have a copy of encapuslated BSTR... Dinesh
  3. Dennis7

    Why modaless dialog box on the heap?

    Can anybody tell mw why the modaless dialog box is created on the heap and why modal dialog box is created on the stack.. Is there any logical answer behind this... Waiting for ur reply..... With Regards Dinesh
  4. Dennis7

    Process and Object relationship

    Hello, As such CoCreateInstance call indirectly ur class factory CreateInstance...The exe server should be registered via helping function :- RegisterClassObjects(CLSCTX_LOCAL_SERVER, REGCLS_SINGLEUSE | REGCLS_SUSPENDED); REGCLS_SINGLEUSE will cause the one class object per client...
  5. Dennis7

    Problem in Implementation of Callbacks in ATL

    I am trying to implement the callbacks in the ATL.I am facing very peculiar problem in implementing callbacks.I have a Server(ATL EXE,this will be on remote machine) and the clients(ATL DLL).I include the refernce of the client dll in Standard EXE(VB) and test my server from there.The client...
  6. Dennis7

    Query :Basic Concept of COM Regarding IUnknown interface

    Dear Friends, I have a basic doubt in IUnknown interface. I have two COM Interfaces IX and IY.Class CA implements these two interfaces. CA *pCA=new CA; IUnKnown *pIX=static_cast<IUnknown *>(static_cast<IX *>(pCA)); IUnKnown *pIY=static_cast<IUnknown *>(static_cast<IY *>(pCA)) whether these...

Part and Inventory Search

Back
Top