How do you change the default mouse pointer in windows in c# code?
I know you can do it via control panel and mouse properties but i would
like to write a console app that does it automaticly.
Also knowing how to set the desktop wallpaper from a console app would
be handy!!
Many thanx
Loading
markPosted Sep 9, 2005, 4:39 AM
just one app!
Mahesh ChandPosted Sep 8, 2005, 9:37 AM
Form1.Cursor = Cursors.Hand;
Same can be applied to any control.