Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

How do I display a timed message, o

Status
Not open for further replies.

jrf

Technical User
Jan 4, 2001
15
US
How do I display a timed message, one that appears on the screen only while a routine is running.

Such as "Please wait while calculating billings." while the bill writing program is running.

 
dear jrf,

you could create a form, that displays only your message, having noe of the window-own close thing like the x in the upper right corner and whatsoever.
you make the form not editable to the user.
you show it before your procedure starts doing the while loop.
you close it after the while loop is done.

regards astrid

Correct me if I am wrong
 
You could use a custom form, or, I often invoke the hourglass pointer.
Code:
DoCmd.Hourglass True
just before routine and
Code:
DoCmd.Hourglass False
after......
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top