how do I not show an icon in my windows form?

  • Thread starter Thread starter Loane Sharp
  • Start date Start date
L

Loane Sharp

Hi there

How do I not show any icon at all in my Windows form? There doesn't seem to
be a Visible property.

Best regards
Loane
 
Loane Sharp said:
How do I not show any icon at all in my Windows form? There doesn't seem
to be a Visible property.

Set the 'FormBorderStyle' property to 'FixedDialog', the 'ShowInTaskbar'
property to 'False' and the 'Icon' property to 'Nothing' (at runtime).
 
thanks very much


Herfried K. Wagner said:
Set the 'FormBorderStyle' property to 'FixedDialog', the 'ShowInTaskbar'
property to 'False' and the 'Icon' property to 'Nothing' (at runtime).
 
Back
Top