|
-
Aug 13th, 2004, 04:33 AM
#1
Thread Starter
Hyperactive Member
mouse cursor (RESOLVED)
hi there..
is there a way to change the mouse cursor... I mean... can you associate it with an hourglass or with a label or image?
thanks in advance
Last edited by segrobiur; Aug 13th, 2004 at 05:00 AM.
-
Aug 13th, 2004, 04:39 AM
#2
VB Code:
Screen.MousePointer = vbHourGlass
-
Aug 13th, 2004, 04:41 AM
#3
Addicted Member
You can set the mouse cursor to a predefined icon like this:
Screen.MousePointer = vbHourglass
or to some .ico or .cur file like this:
Set Screen.MouseIcon = LoadPicture("C:\Graphic\Icons\30.ico")
Screen.MousePointer = vbCustom
-
Aug 13th, 2004, 04:59 AM
#4
Thread Starter
Hyperactive Member
thanks guys.. that's exactly what I wanted
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|