Private Sub Form_Resize()
Dim a$
[COLOR="DarkGreen"]'Let us know when Form is Maximized...[/COLOR]
If CBool(IsZoomed(Me.hWnd)) = True Then a$ = "It's Maximized"
[COLOR="DarkGreen"] 'Let us know when Form is Minimized...[/COLOR]
If CBool(IsIconic(Me.hWnd)) = True Then a$ = "It's Minimized!"
If a$ <> "" Then MsgBox a$
End Sub