Minimized api call

dan-cat

Registered User.
Local time
Today, 22:39
Joined
Jun 2, 2002
Messages
3,433
Hello,

Does anyone know whether there is an api call to use to determine whether a form is minimized?

I have the one for maximized

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

Thanks Awfully

Dan:)
 
Call off the dogs - I have the answer :p

Declare Function IsIconic Lib "user32" Alias "IsIconic" (ByVal hwnd As Long) As Long
 

Users who are viewing this thread

Back
Top Bottom