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
Printable View
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
VB Code:
Screen.MousePointer = vbHourGlass
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
thanks guys.. that's exactly what I wanted :thumb: :thumb: