↧
Answer by user3500176 for How to show the "Display Settings" window from C#
For your information, all the syntaxes proposed here run on Windows XP, but the only one that is accepted by 360 Total Security iscontrol.exe desk.cpl,,,0Thanks Patrick to have solved my problem with...
View ArticleAnswer by Mark Sowul for How to show the "Display Settings" window from C#
How about Process.Start("control", "desk.cpl")?Here is an MSDN page on launching control panels: http://msdn.microsoft.com/en-us/library/cc144191.aspx
View ArticleHow to show the "Display Settings" window from C#
How can I show the Windows Display Settings (Resolution Settings) window from C#. (the one where you can adjust screen resolutions)I have found a way to change the display settings via p/invoke but all...
View Article