Aug 11, 2002 #1 luvcloud Programmer Apr 23, 2002 24 MY i was wondering how do i use a 256 color cursor in my application?
Aug 15, 2002 #2 chiph Programmer Jun 9, 1999 9,878 US Any object that inherits from the Control class has a Cursor object. If you want to set the cursor, do this inside a method of one of those types: Code: Cursor.Current = New Cursor("C:\Cursors\MyWait.cur") Chip H. Upvote 0 Downvote
Any object that inherits from the Control class has a Cursor object. If you want to set the cursor, do this inside a method of one of those types: Code: Cursor.Current = New Cursor("C:\Cursors\MyWait.cur") Chip H.