Another way to detect when a form is minimzed
Another way to detect when a form is minimzed
Rate Another way to detect when a form is minimzed
(1(1 Vote))
Select Case Me.WindowState
Case vbMinimized
MsgBox "Minimized"
Case vbMaximized
MsgBox "Maximized"
Case vbNormal
MsgBox "Normal"
End Select
End Sub
Another way to detect when a form is minimzed Comments
No comments yet — be the first to post one!
Post a Comment