Is there a way to determine if a form has been minimized?

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

This is for the main form in an app. The deactive status indicates either when a form has been minimized or a child dialog has focus.
 
override the OnResize event and check for WindowState ==
WindowState.Minimized.

Ralph Flaugher said:
This is for the main form in an app. The deactive status indicates either
when a form has been minimized or a child dialog has focus.
 
Ignore previous email. I pressed the send button before I
was done.

Thanks. I'll give it a try but the documentation states
that WindowState.Minimized is not defined for the compact
framework.
 
Back
Top