Minimizing a form

  • Thread starter Thread starter Tony Vitonis
  • Start date Start date
T

Tony Vitonis

Hi. Is there a way for me to minimize a form inside of the form's
code? There's no Me.Minimize method, but I'm looking for code that
would replicate that. Thanks.
 
* Tony Vitonis said:
Is there a way for me to minimize a form inside of the form's
code? There's no Me.Minimize method, but I'm looking for code that
would replicate that.

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