|
-
May 1st, 2007, 10:21 AM
#1
Thread Starter
Fanatic Member
[RESOLVED] Show an egg timer
I have a FlexGrid with a load of records in it - the user can click on the column headings to re-sort the grid but it takes a few seconds to execute.
I am using
.redraw = False and .redraw = True ....
How can I get an egg-timer to appear between .redraw = False and True?
Thanks for any help.
-
May 1st, 2007, 10:23 AM
#2
Re: Show an egg timer
I don't believe I've ever heard of it referred to as an Egg Timer before. 
Try
Code:
Screen.MousePointer = vbHourGlass
-
May 1st, 2007, 12:30 PM
#3
Re: Show an egg timer
Code:
Screen.MousePointer = vbHourGlass
DoEvents
.redraw = False
'do your stuff
.redraw = True
Screen.MousePointer = vbDefault
DoEvents
The most difficult part of developing a program is understanding the problem.
The second most difficult part is deciding how you're going to solve the problem.
Actually writing the program (translating your solution into some computer language) is the easiest part.
Please indent your code and use [HIGHLIGHT="VB"] [/HIGHLIGHT] tags around it to make it easier to read.
Please Help Us To Save Ana
-
May 2nd, 2007, 02:38 AM
#4
Thread Starter
Fanatic Member
Re: Show an egg timer
 Originally Posted by Hack
I don't believe I've ever heard of it referred to as an Egg Timer before.
Try
Code:
Screen.MousePointer = vbHourGlass
Must be a British thing!
Thanks for the answer and to others who replied too.
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
|