Hey well i am using microsoft visual c# 2008 professional edition and i seem to be having trouble using the cursor. The 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 various methods such as the msdn one
this.Cursor = new Cursor(GetType(), "a.cur");
and others but i just cant get it working instead i get this error
Object reference not set to an instance of an object.
for other methods i get this
Image format is not valid. The image file may be corrupted.Parameter name:stream
i get that error from
Cursor.Current = new Cursor("a.cur");
Any help would be much appreciated thanks in advance!
NSSLTD