Getting rid of application's default ugly icon

M

MarkS

Is there any way to get rid of that ugly blown-up blue window icon that
appears on all of my VB.net executables? I would rather just have the
system's default application icon, like in C# and C++.
 
C

Cor Ligthert[MVP]

Marks,

Depends on where, as you use forms it is simple setting the icon property to
an icon of your own.

Cor
 
K

kimiraikkonen

Is there any way to get rid of that ugly blown-up blue window icon that
appears on all of my VB.net executables? I would rather just have the
system's default application icon, like in C# and C++.

--
Best Regards,

Mark Seymour
(e-mail address removed)

In project's properties page -> Application, look at "Icon" and choose
"browse" to use which icon you wish to use.

Plus, if you want to change icon displayed on title bar or
notification icon at runtime, you can use Me.Icon property like in
that article:
(Me.Icon = New Icon("c:\<icon_name>.ico")
http://www.vb-helper.com/howto_net_form_icons.html

Hope this helps,

Onur Güzel
 
G

Gillard

if you want you can set the cursor the same way
with a 256colorsIcon
me.cursor=....
 

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

Get Icon And Display 2
Ugly GUIDs in URLs 1
Blip Standard Player 4
Icon Chalange 2
Application Icon Setting in project 1
Icon problems 2
Chage Icon for Drives in Explorer? 7
Change file icon image 4

Top