How to minimum form to bottom by code

  • Thread starter Thread starter Peter
  • Start date Start date
P

Peter

I know that in a form, people can click "minimizeBox" to
send the form to the bottom. But how can I do this by code?
For instance, I have a form with a botton. When the botton
is clicked, this form will be minimize to bottom and
another form will show up.

Thanks!
 
Hello,

Peter said:
I know that in a form, people can click "minimizeBox" to
send the form to the bottom. But how can I do this by code?
For instance, I have a form with a botton. When the botton
is clicked, this form will be minimize to bottom and
another form will show up.

\\\
Me.WindowState = FormWindowState.Minimized
///

Regards,
Herfried K. Wagner
 
Back
Top