views:

73

answers:

1

Hi, is there a way in C# to identify all monitors connected to the system and choose which ones to turn on, off or low power? The previous questions i found on SO just turn off all monitors.

+2  A: 

Can you use http://pinvoke.net/default.aspx/user32.EnumDisplayMonitors? Seems like once you get the handle then you can use PInvoke like it's used in the replies to the following question... http://stackoverflow.com/questions/713498/turn-on-off-monitor

Wil P