Is it possible to enable a second monitor and extend the Windows Desktop onto in C#. It needs to do the equivalent of turning on the checkbox in the image below?

|
Is it possible to enable a second monitor and extend the Windows Desktop onto in C#. It needs to do the equivalent of turning on the checkbox in the image below?
| ||||
|
feedback
|
|
What you basically need to do:
DISPLAY_DEVICE structure import using PInvoke EnumDisplayDevices function import EnumDisplaySettingsEx function import etc. the rest of them functions can be found with a simple search by name. | |||||||
feedback
|
|
If you have windows 7, then just start a process:
then DisplayChanger.Start(); | |||
|
feedback
|
|
I don't have the full answer here but I am almost sure that you will have to call out of .Net to do this. You will have to use Pinvoke to call an unmanaged dll. A great resource for this is pinvoke.net. I did a quick search and found http://www.pinvoke.net/default.aspx/user32/ChangeDisplaySettings.html which probably isn't exactly what you want but you will probably find it somewhere on pinvoke.net | |||
|
feedback
|
|
I am looking for the same solution. I have written the following code to call
If the monitor is already enabled, this changes the resolution successfully. But if the monitor isn't attached to the desktop already, this won't activate it. So does anyone have a code example that works? | |||
|
feedback
|
|
To enable a monitor, set its position to something other than 0,0, like as shown:
| ||||
|
feedback
|