I need wake up PC from sleep to perform some actions - from C#. I've used CreateWaitableTimer functions, everything goes fine, at given time PC wakes up - but monitor stays in power save mode (turned off). So i want to know - how possible to turn on monitor after wake up?

PS I've tried "Complete Guide on How To Turn A Monitor On/Off/Standby" - with SendMessage (Codeproject) and SetThreadExecutionState(ES_DISPLAY_REQUIRED) - it doesn't work

Any ideas?

link|improve this question
This question make zero sense. A monitor is for a human to look at, it is not a flashlight. – Hans Passant Apr 5 '10 at 11:15
feedback

1 Answer

Try making the mouse move. When i wake up my Windows 7 system with a tap on the keyboard the screen stays black until i move the mouse.

Cursor.Position = new Point(x, y);
link|improve this answer
No, it also doesn't work. But after i turn on monitor by pressing keyboard key - i've noticed that cursor set to (x,y) position, so code been executed – alek.sys Apr 5 '10 at 10:25
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.