Ask a Question related to ASP.NET General, Design and Development.
-
Showjumper #1
Still cant get toolbox icon to display for my custom control
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...
Showjumper Guest
-
Custom control in toolbox, intellisense?
Below is some custom control code to create a tab strip taken from ASP.NET 2.0 Unleashed by Stephen Walther. It works, but I need to clarify some... -
Default toolbox tab for custom control?
Is there any attribute i can add to a custom control class, similar to <ToolboxData()> which would allow me to set a default tab in the toolbox... -
Custom Control and Toolbox not working
Yesterday i was creating custom controls and adding them to a project as a reference. Things were great. As I created a new control it would show... -
Unable to load custom control in Toolbox
Hi, I have built a set of custom ASP.Net contols quite some time ago (in VB) and successfully placed them on the Toolbox. Since then I have... -
How to have toolbox icon appear for custom control?
I want my custom control to have its own toolbox icon. I create the bmp file and it has the same name as the control class. I then set it to... -
Natty Gur #2
Re: Still cant get toolbox icon to display for my custom control
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 :
[url]http://www.aspalliance.com/graymad/VS_Icon.aspx[/url]
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
*** Sent via Developersdex [url]http://www.developersdex.com[/url] ***
Don't just participate in USENET...get rewarded for it!
Natty Gur Guest
-
Showjumper #3
Re: Still cant get toolbox icon to display for my custom control
Thanks i 'll give that a try
"Natty Gur" <natty@dao2com.com> wrote in message
news:%23CjBmxAUDHA.560@TK2MSFTNGP10.phx.gbl...> 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 :
> [url]http://www.aspalliance.com/graymad/VS_Icon.aspx[/url]
>
> 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
>
>
> *** Sent via Developersdex [url]http://www.developersdex.com[/url] ***
> Don't just participate in USENET...get rewarded for it!
Showjumper Guest



Reply With Quote

