ActiveX with Visual Studio 6.0
-
How can I build an ActiveX-DLL in Visual Studio 6.0? I have especially a problem in constucting a new method, which is an ActiveX-Component. There's a tool called "ActiveX Testcontainer" in which I should see my methods, but I don't. What's wrong? I created a project with the "ActiveX-Control-Wizard" and added a "Member-Function". This isn't shown as a method in the "ActiveX Testcontainer". Thanks for your help! Markus Do also have a look at my earlier Thread: http://www.codeproject.com/script/comments/forums.asp?forumid=1647&fr=26#xx1362023xx[^]
-
How can I build an ActiveX-DLL in Visual Studio 6.0? I have especially a problem in constucting a new method, which is an ActiveX-Component. There's a tool called "ActiveX Testcontainer" in which I should see my methods, but I don't. What's wrong? I created a project with the "ActiveX-Control-Wizard" and added a "Member-Function". This isn't shown as a method in the "ActiveX Testcontainer". Thanks for your help! Markus Do also have a look at my earlier Thread: http://www.codeproject.com/script/comments/forums.asp?forumid=1647&fr=26#xx1362023xx[^]
You have to "Add Method" to add exported like function, It seems that you just add member function to the class only. Try right clicking IDispatch interface ( can identify with an image 'o-0' before the class name) and use "Add Method" to add a functon, which will be available in test container.
-
You have to "Add Method" to add exported like function, It seems that you just add member function to the class only. Try right clicking IDispatch interface ( can identify with an image 'o-0' before the class name) and use "Add Method" to add a functon, which will be available in test container.