How to hide form without hiding its control?

  • Thread starter Thread starter Amar Ingole
  • Start date Start date
Amar said:
Hi ..

How to make form invisible without hiding control on the form.

Thanx..

Use TransparencyKey property of the Form class and set it to the form
color to make it transparent/invisible while controls are still visible



Hope it helps,
Andrey
 
MuZZy said:
Use TransparencyKey property of the Form class and set it to the form
color to make it transparent/invisible while controls are still visible

Also you can set FormBorderStyle property of Form to "None", so that
even titlebar will not be seen.

Let me know if you need any help on that!

Andrey
 
Back
Top