Developing ActiveX Controls in VS .NET?

brdoco

New member
Joined
Nov 9, 2005
Messages
4
Programming Experience
3-5
In VS6.0, there was a new project wizard for creating ActiveX controls. However, this isn't in VS .NET. Has this feature been renamed, removed, etc..?

I've tried finding documentation online, but haven't found much helpful.

Thanks!
brian
 
That's because AxtiveX was a COM technology... with .NET, COM goes away, as does ActiveX DLLs & OCXs....

Now you create a class, and inherit from what you need and modify from there.

-tg
 
So if I was wanting to develop an ActiveX control for a specific ActiveX container.. am I out of luck? Or will the container be able to inherit from a class?
 
Back
Top