Thread: Window Status

  1. #1
    Registered User
    Join Date
    Jul 2003
    Posts
    17

    Window Status

    Is it possible to get the status of other windows, e.g. if it is minimized or maximized?

    To be more concrete i got a windowhandle and now i want to know the status of this window.
    Last edited by Onkel BeBu; 07-31-2003 at 03:28 PM.

  2. #2
    &TH of undefined behavior Fordy's Avatar
    Join Date
    Aug 2001
    Posts
    5,793
    BOOL IsIconic(
    HWND hWnd // handle to window
    );

    BOOL IsZoomed(
    HWND hWnd // handle to window
    );

  3. #3
    Registered User
    Join Date
    Feb 2003
    Posts
    76
    Is there anything else that you mean by 'status'?

  4. #4
    Registered User
    Join Date
    Jul 2003
    Posts
    17
    No thanks Fordys post has completly solved the problem

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. 6 measly errors
    By beene in forum Game Programming
    Replies: 11
    Last Post: 11-14-2006, 11:06 AM
  2. Linking OpenGL in Dev-C++
    By linkofazeroth in forum Game Programming
    Replies: 4
    Last Post: 09-13-2005, 10:17 AM
  3. OpenGL Window
    By Morgul in forum Game Programming
    Replies: 1
    Last Post: 05-15-2005, 12:34 PM
  4. opengl help
    By heat511 in forum Game Programming
    Replies: 4
    Last Post: 04-05-2004, 01:08 AM
  5. problem with open gl engine.
    By gell10 in forum Game Programming
    Replies: 1
    Last Post: 08-21-2003, 04:10 AM