Welcome, Guest. Please login or register. Did you miss your activation email?

Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Topics - nairdaen

Pages: [1]
1
Window / CTRL ALT DEL doesn't minimize full screen window
« on: April 17, 2015, 05:11:22 am »
Hi,

I'm using SFML, setting up my game in full screen mode with:

//find computer's best resolution
RECT desktop;
const HWND hDesktop = GetDesktopWindow();
// Get the size of screen to the variable desktop
GetWindowRect(hDesktop, &desktop);
window = new sf::RenderWindow(sf::VideoMode(desktop.right, desktop.bottom), title, sf::Style::Fullscreen);

but it doesn't minimize the game when I hit CTRL ALT DEL and start the Task Manager. However, the behavior I expect is the window to be minimized if I start the Task Manager. How can I achieve this?

Thanks!         

Pages: [1]