DoCmd.HourGlass True
or
DoCmd.HourGlass False
It has the following argument: True/False, or 0/-1.
Web Development and Programming Blog
Get paid for your opinions! Click on the banner above to join Planet Pulse. Its totally free to sign up, and you can earn UNLIMITED. Find out more by visiting PLANET PULSE. |
2 comments:
You mention that you can use the Hourglass method to show any icon you want, but you don't give any examples or tell how to show any other icon than the hourglass. I'd like to know how to show something other than the hourglass if this can be done.
Hi, for example,
Screen.MousePointer = 1 'Standard Cursor
Screen.MousePointer = 3 ' I Beam
Screen.MousePointer = 7 'Double Arrow Vertical
Screen.MousePointer = 9 'Double Arrow Horizontal
Screen.MousePointer = 11 'HourGlass
Post a Comment