How to use ActiveX control in win32?
-
Hi, I want to use a Active X contol in a win32 application. How I can add that control to my project? If you can Please explain me with a sample code. Regards, M.Mathivanan
-
Hi, I want to use a Active X contol in a win32 application. How I can add that control to my project? If you can Please explain me with a sample code. Regards, M.Mathivanan
Active X components are basically COM components. So you can create an instance of it and then use the control in your application.
I am a HUMAN. I have that keyword in my name........ ;-)_AnsHUMAN_
-
Hi, I want to use a Active X contol in a win32 application. How I can add that control to my project? If you can Please explain me with a sample code. Regards, M.Mathivanan
Cédric Moonen Software developer
Charting control [v3.0] OpenGL game tutorial in C++ -
Active X components are basically COM components. So you can create an instance of it and then use the control in your application.
I am a HUMAN. I have that keyword in my name........ ;-)_AnsHUMAN_
That's a but simplistic. An ActiveX control is a COM object but writing code to correctly host it is far from trivial: in fact it's hard. The easiest way is to use MFC's or ATL's hosting code.
Steve