I would like to implement a class in a C++ DLL for use in my Excel VBA applications.
Does anyone know of any good books or tutorials on writing C++ COM components specifically for use in VBA?
Printable View
I would like to implement a class in a C++ DLL for use in my Excel VBA applications.
Does anyone know of any good books or tutorials on writing C++ COM components specifically for use in VBA?
Thank you. It looks like a pretty good book.
BTW, what is the difference between COM and COM+?
https://msdn.microsoft.com/en-us/lib...v=bts.10).aspx
COM is basically the binary standard used for objects/interfaces. IUnknown etc.
COM+ includes inter-process communication, for remote/distributed/threading etc.