Hi well i posted a earlier thread but no one has replied in three days i have one reply, but it's not what i wanted.
he cursor i am using is one from axialis cursor workshop examples. it is a .cur and it does work as i have changed my windows default cursors to them. it is a colored cursor blue if you want to see it find it here
i have used these methods;
this.Cursor = new Cursor(GetType(), "a.cur");
Cursor myCursor = new Cursor("myCursor.cur");
MyControl1.Cursor = myCursor
IntPtr ptr = IMP.Properties.Resources.zoom_in.GetHicon();
Cursor c = new Cursor(ptr);
this.Cursor = c;
The last method does work but you need to put the ENTIRE image/Cursor over the component IE button. also you need to use an image file. What i would like to achieve would be to use a .cur/.ani file on a windows form that my cursor
(here)will become the cursor on my form instead of the windows default one
Any help is MUCH appreciated
Thanks in advance,
NSSLTD