C#:
How can I make the mouse cursor change to a picture I've created (.cur)?
I tried to replace the picture in bin/debug, but it does't look like the picture is found by the following code lines:
Cursor cur = new Cursor(cursorName.cur);
this.Cursor = cur;
or- Cursor.Current = cursorName.cur;
Quick respone would be appreciated,
Thanks in advanced...
Loading
Santhosh NPosted Dec 30, 2009, 1:47 AM
you could check here for detailed steps on how to do this..
http://msdn.microsoft.com/en-us/library/system.windows.forms.cursor.aspx
check the comments in the code for detailed steps
Santhosh NPosted Dec 30, 2009, 11:09 AM
TmunaPosted Dec 30, 2009, 10:52 AM
It really really helped me!