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.com 2009-12-01T15:53:35Z http://stackoverflow.com/feeds/question/444562 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/444562/how-can-i-add-an-icon-to-an-ocx-made-with-delphi-so-that-it-is-visible-in-vb 1 How can I add an icon to an OCX made with Delphi so that it is visible in VB? Uwe Raabe 2009-01-14T20:36:21Z 2009-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#444811 2 Answer by Lars Truijens for How can I add an icon to an OCX made with Delphi so that it is visible in VB? Lars Truijens 2009-01-14T21:42:08Z 2009-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>