Search code examples
vb.netvbavisual-studio-2010activexobject

How to create ActiveX Control in Visual Studio 2010/2015 VB.net


I want to create activeX objects (.OCX files) using VB.net visual studio 2010 or 2015. Is there any way to create activex objects using these tools. In my project i have software like graphics builder it will accept activex objects, by registering it. So i want to create some new customized activex objects.


Solution

  • .Net Cannot create pure ActiveX controls.You can create a .NET DLL with a COM callable wrapper, which is actually a .DLL, using the COM Class.

    If you don't need to call the component from a COM then create a standard .NET DLL.