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.
.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.