Detecting if an access form is maximized

G

Guest

You can use the WinAPI IsZoomed() function.

Add the follwing declaration in a Standard Module:

Declare Function IsZoomed Lib "user32" ( _
ByVal hwnd As Long) As Long

To check whether Form Object F is maximized or not, use
 
Top