Moderators Robby Posted June 10, 2002 Moderators Posted June 10, 2002 Is there any way to use a custom cursor in VB.NET? Quote Visit...Bassic Software
Moderators Robby Posted June 10, 2002 Author Moderators Posted June 10, 2002 I figured it out. I don't know why MSDN says that you can't. Oh well. Quote Visit...Bassic Software
Jblake00 Posted September 28, 2003 Posted September 28, 2003 Robby please tell me how you did it. I was wondering about the same thing. Quote Looking to expand my VB.Net knowledge. Jblake00
aewarnick Posted September 28, 2003 Posted September 28, 2003 Take any cur file, add it to your project as an EmbeddedResource and then... Cursor prevCur=null; prevCur=new Cursor(this.GetType(), "PrevCursor7.cur"); this.pictureBox1.Cursor= prevCur; Quote C#
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.