Create ActiveX OCX control - Stack Overflow most recent 30 from stackoverflow.com 2009-12-11T11:37:12Z http://stackoverflow.com/feeds/question/809020 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/809020/create-activex-ocx-control 0 Create ActiveX OCX control Rodrigo 2009-04-30T20:54:22Z 2009-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#809039 0 Answer by RichieHindle for Create ActiveX OCX control RichieHindle 2009-04-30T20:57:41Z 2009-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#809042 1 Answer by Arnshea for Create ActiveX OCX control Arnshea 2009-04-30T20:58:45Z 2009-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#1053798 0 Answer by pho3nix for Create ActiveX OCX control pho3nix 2009-06-27T22:45:32Z 2009-06-27T22:45:32Z <p>Microsoft have a tool named ActivexPad. Check if work in your situation.</p>