Creating an ActiveX Control (OCX) in VB.net 2010

I would like to create an activeX (OCX) control in VB.net 2010 is this possible? I'm having a hard time figuring out how to do this because I only get the DLL file and not the .ocx that can be seen in vb6. I hope you can answer my question.

+3


source to share


1 answer


Are you asking how to create an ActiveX control, or asking how to create controls that can be used by other CLR-based applications?

To create an ActiveX control, see this link, which outlines the steps to do so: Create an MFC ActiveX Control



To create standard controls, you use a dll (class library) and you can add as many controls to it as you like. You don't need a dll for every control, although you can.

0


source







All Articles