How can I add an icon to an OCX made with Delphi so that it is visible in VB? - Stack Overflow most recent 30 from stackoverflow.com2009-12-01T15:53:35Zhttp://stackoverflow.com/feeds/question/444562http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/444562/how-can-i-add-an-icon-to-an-ocx-made-with-delphi-so-that-it-is-visible-in-vb1How can I add an icon to an OCX made with Delphi so that it is visible in VB?Uwe Raabe2009-01-14T20:36:21Z2009-01-14T21:42:08Z
<p>I made an OCX with Delphi 2007. Now my customer claims that there is no icon in his VB when he installs this OCX.</p>
<p>How can I add such an icon to my OCX?</p>
http://stackoverflow.com/questions/444562/how-can-i-add-an-icon-to-an-ocx-made-with-delphi-so-that-it-is-visible-in-vb/444811#4448112Answer by Lars Truijens for How can I add an icon to an OCX made with Delphi so that it is visible in VB?Lars Truijens2009-01-14T21:42:08Z2009-01-14T21:42:08Z<p>According to <a href="http://pw1.netcom.com/~cherrman/dl030.htm" rel="nofollow">this old page</a> the constructor of <a href="http://docs.codegear.com/docs/radstudio/radstudio2007/RS2007_helpupdates/HUpdate3/EN/html/delphivclwin32/AxCtrls_TActiveXControlFactory_Create.html" rel="nofollow">TActiveXControlFactory</a> in the initialization section of your ActiveX Control unit has a parameter called ToolbarBitmapID which is a resource id to a bitmap. That is how you set your icon.</p>