Reputation: 4373
Is there a way of switching the monitor's input from VGA to DVI programmatically in C# ? I've found an article on how to switch it on or off here. Any suggestions ?
Upvotes: 2
Views: 726
Reputation: 62
Yes, set your display to select the source automatically. Then turn off the VGA output and turn on the DVI output.
Turning output connectors of your graphics card off or on is done by the graphics driver. So you need to write the graphics driver. Good look with that one.
Upvotes: -1