CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 2 of 2
  1. #1
    Guest

    Minimize/Maximize Win32

    How do I check for the windows state(minimized/maximized) in plane old win32 c++ not MFC. thanks


  2. #2
    Join Date
    May 1999
    Posts
    82

    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
  •  





Click Here to Expand Forum to Full Width

Featured