May 9th, 1999, 08:44 AM
How do I check for the windows state(minimized/maximized) in plane old win32 c++ not MFC. thanks
|
Click to See Complete Forum and Search --> : Minimize/Maximize Win32 May 9th, 1999, 08:44 AM How do I check for the windows state(minimized/maximized) in plane old win32 c++ not MFC. thanks Dan Haddix May 9th, 1999, 12:30 PM 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); codeguru.com
Copyright Internet.com Inc., All Rights Reserved. |