Aug 26, 2003 #1 allis Technical User Oct 16, 2002 11 US When the user moves the mouse over the hyperlink, I'd like it to changer from an arrow pointer to a hand, how do I do this? Thanks
When the user moves the mouse over the hyperlink, I'd like it to changer from an arrow pointer to a hand, how do I do this? Thanks
Aug 26, 2003 #2 paulbent Programmer Mar 4, 2002 1,071 GB You need to find a hand cursor icon file, add an Image control and make it invisible. Set its Picture property to the hand icon. Then in the form load event: lblURL.Caption = "http://www.northwindit.co.uk"lblURL.MouseIcon = imgURLIcon.Picture Paul Bent Northwind IT Systems http://www.northwindit.co.uk Upvote 0 Downvote
You need to find a hand cursor icon file, add an Image control and make it invisible. Set its Picture property to the hand icon. Then in the form load event: lblURL.Caption = "http://www.northwindit.co.uk"lblURL.MouseIcon = imgURLIcon.Picture Paul Bent Northwind IT Systems http://www.northwindit.co.uk
Aug 26, 2003 #3 SonOfEmidec1100 Technical User Aug 12, 2001 965 AU You also need to set the mousepointer to 99 lblurl.MousePointer = 99 Upvote 0 Downvote