form icon question

Anti-Rich

Well-known member
Joined
Jul 1, 2006
Messages
325
Location
Perth, Australia
Programming Experience
1-3
hi all,

ok, i have an mdi application that has several forms all of which i want to get rid of the default icon on the top left of the form, not replace it with one of my own, just get rid of it completely. is there a way to do this? i suppose one way would be to just specify a transparent icon, but there has to be a better (less annoying) way.

cheers
adam
 
Another way could be to set the form's ShowIcon property to False. If you want to affect an instance of a class you should always look through the members of that class first. Most members are named in such a way that their purpose is relatively obvious. I'd say that ShowIcon qualifies as one of those.
 
Back
Top