This thread shows how you can manually make a monitor sleep. It's great, but I want one that will wake it up too.
Why you ask? To schedule monitor uptime and downtime. (And no the display options in wxp are not enough. I don't want a timer).
So, anyone see how this could be modified to make the monitor wake up?
Why you ask? To schedule monitor uptime and downtime. (And no the display options in wxp are not enough. I don't want a timer).
int main(int argc, char *argv[])
{
Sleep(1000);
PostMessage(HWND_BROADCAST, WM_SYSCOMMAND, SC_MONITORPOWER, 1);
return 0;
}
So, anyone see how this could be modified to make the monitor wake up?