Still cant get toolbox icon to display for my custom control

  • Thread starter Thread starter Showjumper
  • Start date Start date
S

Showjumper

I still cant get an icon to display for my custom server control in the
toolbox. I create a bmp that is the same name as the class of the control. I
set it to embedded resource and then build but it still wont show. I am
using vbnet for my controls but have also tried it w/ controls written in
c# - doesnt work in either case. So what am i missing? A namespace maybe?
Thanks...
 
Perhaps a namespace problem:

Should be like this:

[ToolboxBitmap(typeof(TestControl), "namespace.TestControl.bmp")]

Where namespace is the full one for the TestControl. Also the file name
is
related to it's location in the project.

refer to :
http://www.aspalliance.com/graymad/VS_Icon.aspx

Natty Gur, CTO
Dao2Com Ltd.
28th Baruch Hirsch st. Bnei-Brak
Israel , 51114

Phone Numbers:
Office: +972-(0)3-5786668
Fax: +972-(0)3-5703475
Mobile: +972-(0)58-888377

Know the overall picture
 
Back
Top