Thread: Full Screen

  1. #1
    Registered User
    Join Date
    Jul 2007
    Posts
    75

    Question Full Screen

    When I have my program go into full screen by using the following code:
    Code:
    	keybd_event(VK_MENU, 0x38, 0, 0);
    	keybd_event(VK_RETURN, 0x1c, 0, 0);
    	keybd_event(VK_RETURN, 0x1c, KEYEVENTF_KEYUP, 0);
    	keybd_event(VK_MENU, 0x38, KEYEVENTF_KEYUP, 0);
    the text is too far to the top left. Is there a way I can fix this?

    Thanks

  2. #2
    Registered User
    Join Date
    Dec 2005
    Location
    Canada
    Posts
    267
    press the "auto" button on your monitor

    OS: Windows 7, XUbuntu 11.10, Arch Linux
    IDE: CodeBlocks
    Compiler: GCC

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. C++ Full Screen
    By Unregistered in forum C++ Programming
    Replies: 25
    Last Post: 06-12-2009, 01:33 PM
  2. Opening in full screen
    By MaGaIn in forum C++ Programming
    Replies: 14
    Last Post: 08-21-2007, 11:12 AM
  3. Full Screen
    By Rainer in forum C++ Programming
    Replies: 4
    Last Post: 08-08-2003, 05:56 AM
  4. !!!!!!Full screen!!!!!
    By Lukas in forum C++ Programming
    Replies: 2
    Last Post: 03-19-2003, 04:43 AM
  5. Full Screen
    By JamMan in forum C++ Programming
    Replies: 3
    Last Post: 11-21-2001, 03:10 PM