Create ActiveX OCX control - Stack Overflow most recent 30 from stackoverflow.com2009-12-11T11:37:12Zhttp://stackoverflow.com/feeds/question/809020http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/809020/create-activex-ocx-control0Create ActiveX OCX controlRodrigo2009-04-30T20:54:22Z2009-06-27T22:45:32Z
<p>We are using a system that allows ActiveX extensions through .ocx files.</p>
<p>I need to write an extension to plot some specific proprietary graphics. After lots of searches, I found out Visual Basic 6.0 can create these ActiveX controls and deploy them as .ocx files.</p>
<p>So, is VB6 the only option? I'm reluctant to believe no other options have been introduced by microsoft since 1998.</p>
<p><hr /></p>
<p>In response to RichieHindle and Arnshea,</p>
<p>During the research, I found out ActiveX controls might be created using C++, but I couldn't find a way to deploy them as .ocx files. Just as dll's.</p>
http://stackoverflow.com/questions/809020/create-activex-ocx-control/809039#8090390Answer by RichieHindle for Create ActiveX OCX controlRichieHindle2009-04-30T20:57:41Z2009-04-30T21:20:13Z<p>You can create ActiveX controls in C++ using Visual Studio 2005 or 2008, via ATL or MFC. There are wizards to help - the process is relatively painless. 8-)</p>
<p>An OCX <em>is</em> a DLL - it's exactly the same, just with a different file extension. (Pedant's corner: I know the inverse is not true; not all DLLs are ActiveX controls.)</p>
http://stackoverflow.com/questions/809020/create-activex-ocx-control/809042#8090421Answer by Arnshea for Create ActiveX OCX controlArnshea2009-04-30T20:58:45Z2009-04-30T20:58:45Z<p>You can make ActiveX control in C++ or C with Win32, ATL or MFC projects.</p>
http://stackoverflow.com/questions/809020/create-activex-ocx-control/1053798#10537980Answer by pho3nix for Create ActiveX OCX controlpho3nix2009-06-27T22:45:32Z2009-06-27T22:45:32Z<p>Microsoft have a tool named ActivexPad. Check if work in your situation.</p>