3

I made an OCX with Delphi 2007. Now my customer claims that there is no icon in his VB when he installs this OCX.

How can I add such an icon to my OCX?

Joel Coehoorn
  • 399,467
  • 113
  • 570
  • 794
Uwe Raabe
  • 45,288
  • 3
  • 82
  • 130

1 Answers1

4

According to this old page the constructor of TActiveXControlFactory 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.

Lars Truijens
  • 42,837
  • 6
  • 126
  • 143