Hi. I have next problem.
I have ActiveX component and test application which uses this component. These projects where created in VS6 and it was working good. I used Add to project->Components and Control Gallery in test application project to wrap ActiveX control and if there were some changes in ActiveX project interface, wrapper class was always up to date with ActiveX control interface.
Now, projects are moved to VS2003. When i changed ActiveX interface, i realized that wrapper class in test application is not updated.
When generated new wrapper class using Add Class->MFC class for ActiveX Control i got next. All methods have been placed into header file. There are no properties from ActiveX control at all. Not even one. Also, cpp file have just this line:
IMPLEMENT_DYNCREATE(GeneratedClassName, CWnd).
Q1 : Is there any way to get similar functionallity of VS6 in VS2003 which considers Components and Controls Gallery?
Q2 : What to do so properties, which are organized as Get/Set methods, be included in wrapper class in VS2003?
Q3 : Is there any difference in creating ActiveX control in VS6 and in VS2003? Maybe this is problem of some kind, but that is on the end of my opinions and i think wrong.
I need quick answer and good
Thanks in advance.