|
-
Oct 6th, 2000, 09:48 AM
#1
Thread Starter
New Member
When running a long database query, how do you change the mouse pointer to the hourglass, then back to the pointer when the query is over? Any help would be appreciated...VolFans
-
Oct 6th, 2000, 09:54 AM
#2
Code:
Screen.MousePointer = vbHourGlass
'Run query here
Screen.MousePointer = vbDefault
-
Oct 6th, 2000, 01:28 PM
#3
It is always best to use Screen, as Serge showed, because it will have a cursor on every one of your forms. Whereas if you were to just put something like Form1.MousePointer = vbHourGlass, than it would only show the cursor for that form.
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
|