I think there's more to it than attaching a bitmap to your cursor..
Why not just google for software to make a cursor with and rip it from maple?
i know its more than that, but, im not talking about global cursor image.
I mean just for the application.
You know how like, you can set the cursor to a hand when you hover over a button, i want it to change to a Cursor when it hovers over the app.
Not a Global Cursor.
When I want to change the icon, I usually do this in c#.
Code:
Bitmap bCursor = new Bitmap(@"NameOfFile.bmp");
IntPtr ipToCursor = bCursor.GetHicon();
Cursor cNewCursor = new Cursor(ipToCursor);
this.Cursor = cNewCursor;
Edit: You can also use a .png file if you have some transparency. Also added a program I created to change the cursor for that form. It includes the solution to it as well.
The Extension 'rar' was deactivated by an board admin, therefore this Attachment is not displayed.
Last edited by killersamurai on Sun Oct 07, 2007 12:59 pm; edited 2 times in total
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum You cannot attach files in this forum You can download files in this forum