tags:

views:

84

answers:

3

Hi, how to just delete that windows form application icon in the left corner without replacing it with another icon?

+2  A: 

If it is .NET (Winforms) the form should have a ShowIcon property. Set this to false.

edosoft
+2  A: 

I assume that you're using .Net WinForms.

Set the form's ShowIcon property to false.

SLaks
A: 

thk u very much

Sjemmie
This should be a comment, not an answer.
SLaks