up vote 12 down vote favorite
share [g+] share [fb]

Is it programmatically possible to turn a monitor on/off through code (C#)?

link|improve this question

48% accept rate
Adding "programmatically" somewhere in your question may save you from the downvotes.. my 2 cent :-) – Newtopian Apr 3 '09 at 11:14
Agreed with above: though this doesn't win the 'nice question' award, I personally disagree with so many downvotes. It is actually a valid question. – Razzie Apr 3 '09 at 11:15
Everyone thinks they are smarter than the OP and knows his/her problem. Vinoth didnt ask how to do it with a button, he/she asked if it were possible with code... – JTA Apr 3 '09 at 11:15
This is a pretty typical question from Vinoth, despite repeated comments and helpful hints prompting him to ask better questions, he still trolls out poorly asked ambiguous questions. – Binary Worrier Apr 3 '09 at 11:19
@Binary, I don't agree with you. This is not trolling, you could give answer to question and not trying to downvote this simple question. – tomaszs Apr 3 '09 at 11:21
show 6 more comments
feedback

4 Answers

up vote 13 down vote accepted

Actually, it appears you can in C#: http://fci-h.blogspot.com/2007/03/turn-off-your-monitor-via-code-c.html. Haven't tested this, though.

link|improve this answer
feedback

Did you even try googling it?

First hit: http://www.codeproject.com/KB/cs/Monitor_management_guide.aspx

I am not surprised you need to use some DLL's supplied by Windows.

(I guessed you needed a C# solution, because that's the only tag you applied).

Edit: I tested this in a quick app and all seems to work nicely. This should solve your problems.

link|improve this answer
feedback

Press the on/off button


If you want to do it in code, apparently this is possible in the Win32 API:

SendMessage hWnd, WM_SYSCOMMAND, SC_MONITORPOWER, param

where WM_SYSCOMMAND = 0x112 and SC_MONITORPOWER = 0xF170 and param indicates the mode to put the monitor in: -1 : on 2 : off 1 : energy saving mode

hWnd can be a handle for any window - so if you have a Form, something like this should work

[DllImport("user32.dll", CharSet = CharSet.Auto)]
private static extern int SendMessage(IntPtr hWnd, int wMsg, IntPtr wParam, IntPtr lParam);

public static void Main(string[] args)
{
    Form f = new Form();
    bool turnOff;   //set true if you want to turn off, true if on
    SendMessage(f.Handle, WM_SYSCOMMAND, SC_MONITORPOWER, turnOff ? 2 : -1);
}

Note I haven't actually tried this...

link|improve this answer
If the power is out, it may be too dark to see the on/off button, so you may need to have a flashlight handy for those conditions. – S.Lott Apr 3 '09 at 11:12
I sooo wanted to answer this, +1 :-) – Newtopian Apr 3 '09 at 11:22
1  
Damn , where is my on off button. I only have one with a broken circle with a line in it. I want a refund. – Learning Apr 3 '09 at 11:24
if that works, then perfect answer! – Hugo Apr 3 '09 at 11:29
feedback

You could use one of these to control the monitor. They have .NET assemblies available to get up and running quickly.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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