vote up 4 vote down star
1

Is there a way to programmatically change the screen resolution or enable/disable multiple monitors in Windows XP? For example to change from 1024x768 with one monitor to 1280x104 on two monitors? I would be most interested in a win32 function to do this but anything that can be tied to a windows shortcut would suffice.

flag

71% accept rate
I trust you would not even think of doing that without permission from the user. If you fiddled with my screen resolution, I'd be entirely pissed off with you - and would probably not use your program a second time. – Jonathan Leffler Oct 19 '08 at 6:27
I totality agree with the previous commenter. Unless this was some sort of utility for managing powerpoint presentations, it is hard to imagine an app where this would be a useful function. – David L Morris Oct 19 '08 at 6:54
That was "I totally agree... " – David L Morris Oct 19 '08 at 8:14
I'm looking to do this for myself -- as a convenience for when I remote into a system – jacobsee Oct 20 '08 at 22:45

3 Answers

vote up 4 vote down check

You can use EnumDisplayDevices to figure out what displays you have available and EnumDisplaySettings to get a list of available resolutions for your displays. Use ChangeDisplaySettings to set the resolution you need.

link|flag
vote up 0 vote down

Yes, but its not part of .NET. You will need to use, invoke or write a wrapper to access the Win32 API.

See ChangeDisplaySettings and related function.

Here you can find a basic example.

link|flag
vote up 0 vote down

what does .NET do here ?!

link|flag

Your Answer

Get an OpenID
or

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