I created a ATL windows less control and the class definition is like this: class ATL_NO_VTABLE CRSPClient :
I have a simple ATL Service in which I have included the following statement. AfxBeginThread(WorkerThread, this, THREAD_PRIORITY_NORMAL, 0, 0);
I have an ATL COM object which needs to expose a collection of other COM objects, so clients can find out how many objects are in the collection (via a simple Count property which I can provide) and a
Running on XP. I have a client that calls calls CoInitializeEx(NULL, COINIT_MU开发者_如何学运维LTITHREADED), loads a (local) DCOM object, and attaches an event interface so the DCOM object can send ba
I need to implement a simple ATL COM object that implements a specific interface for which I have been given both a .tlb file and a .idl file.The interface is very simple and only consists of a single
I know how to publish a const of a simple type in IDL, for example: const long blah = 37 But I want to publish consts of complex types, with methods, or at least readable struct-like member fields.
I have a WTL application that uses an extended combobox control (the Win32 class ComboBoxEx32) with the CBS_DROPDOWNLIST style.It works well (I ca开发者_开发技巧n have images against each item in the
I am using Visual Studio 2008 and I have created an ATL Project.I have aded a ATL Simple Object to the project.I want to add my object to the Global Interface 开发者_运维问答Table when the object is c
I have an ActiveX control written in C++ that I created with VS2008 and ATL.For the most part, it is a pretty standard (not modified much from the original template) control, except that instead of us
I\'ve got an ATL class: class Foo : public CComObjectRootEx<CComMultiThreadModel>, public CComCoClass<Foo, &开发者_如何学JAVACLSID_Foo>,