Full Screen

closed account (zN0pX9L8)
I'm new to C++ and was wondering if it's possible to make your console full screen, other than using ALT + enter
I normally use the code:
1
2
3
4
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);


See if that'll work for you...

Happy coding!
But what if the console is already in full screen? Won't that undo it?
Topic archived. No new replies allowed.