transparent icon

G

Guest

G'day

Any tips on how to make a transparent icon for a vb.net application.
I'm using Visual Studio 2005.

Thanks
 
G

Guest

I don't know what you mean by a transparent icon. To add an icon to your
project, you right click the project, and select add new item. One of the
choices is "icon". When you double click this, you will be in an icon editor
to customize it. I normally change the "Build Action" property for this icon
to "Embedded Resource". You can then get it within your code with a call to
System.Reflection.Assembly.GetAssembly().GetManifestResourceStream (fn),
where fn is similar to projectname.icon1.ico.

Hope that helps somewhat.
 
H

Herfried K. Wagner [MVP]

keith.hutchison said:
Any tips on how to make a transparent icon for a vb.net application.
I'm using Visual Studio 2005.

If you are using VS 2005 Professional or one of the "bigger" versions, you
can use the icon editor included with VS. Just select "Icon" in the new
file dialog.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads


Top