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).
 

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

Back
Top