Thread: Real fullscreen application

Threaded View

Previous Post Previous Post   Next Post Next Post
  1. #5
    Reverse Engineer maxorator's Avatar
    Join Date
    Aug 2005
    Location
    Estonia
    Posts
    2,318
    But all those games? None of them is made with C++?
    That ShowCursor(FALSE) worked.
    Code:
            case WM_ACTIVATEAPP:
                if(wParam==TRUE){
                SetWindowPos(hwnd,0,0,0,1024,768,SWP_SHOWWINDOW);
                }
                else{
                SetWindowPos(hwnd,0,0,0,0,0,SWP_SHOWWINDOW);
                }
                break;
    This part makes the start menu visible when my program is not active.
    Last edited by maxorator; 11-05-2005 at 07:37 AM.

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. Having a button link to another application -help?
    By Diablo02 in forum C# Programming
    Replies: 9
    Last Post: 09-30-2007, 09:16 PM
  2. how to make a windows application
    By crvenkapa in forum C++ Programming
    Replies: 3
    Last Post: 03-26-2007, 09:59 AM
  3. 6 measly errors
    By beene in forum Game Programming
    Replies: 11
    Last Post: 11-14-2006, 11:06 AM
  4. %16 with double
    By spank in forum C Programming
    Replies: 11
    Last Post: 03-05-2006, 10:10 PM
  5. problem with open gl engine.
    By gell10 in forum Game Programming
    Replies: 1
    Last Post: 08-21-2003, 04:10 AM