3

I wonder if there's any way i could reach and change the check boxes in the performance options (visual effects) from C#.

Now I reached only the advanced tab by:

control.exe sysdm.cpl,0,3

but I didn't know a way to continue any further ..

Also, in general, is there a way that we could change somethings in the control panel via code ? like increasing the mouse pointer speed, or adjusting screen resolution .. etc (navigating via code) it would be really cool .. :)

vexe
  • 5,433
  • 12
  • 52
  • 81
  • Um, that's going to change the value system wide, not just for your application. The user may have set the visual settings that way for a reason. – Raymond Chen Jul 15 '12 at 02:40

1 Answers1

0

You can directly set the values: msdn. A similar theme has already been discussed here. You can also click controls on the windows with UI Automation.

Community
  • 1
  • 1
Alex Butenko
  • 3,664
  • 3
  • 35
  • 54