|
-
May 9th, 1999, 08:44 AM
#1
Minimize/Maximize Win32
How do I check for the windows state(minimized/maximized) in plane old win32 c++ not MFC. thanks
-
May 9th, 1999, 12:30 PM
#2
Re: Minimize/Maximize Win32
The Windows API functions and the MFC functions share the same name (IsIconic()/IsZoomed()). The only diffrence is that the Windows API functions require a HWND to be passed as an argument. The prototypes looks like this
BOOL IsIconic(HWND hWnd);
BOOL IsZoomed(HWND hWnd);
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|