ACC2000: How to Create a "Please Wait" MessageID: Q209608
|
Moderate: Requires basic macro, coding, and interoperability skills.
Sometimes you may want to display a status message to inform users that
they must wait for an action to be completed. For example, you may want to display the text "Please Wait" while Microsoft Access is initializing a database, running a long query, and so on. This article uses the sample database Northwind.mdb to show you how to create a "Please Wait" message.
To display a status message in Microsoft Access, do the following:
Form: PleaseWait
---------------------
Caption: TestForm
ScrollBars: Neither
Popup: Yes
Modal: Yes
RecordSelectors: No
NavigationButtons: No
Label
--------------------
Caption: Please Wait
Font Size: 18
The label caption is the message you want to display.
Macro Name Action
-----------------------------
Test1 OpenForm
RepaintObject
OpenQuery
Close
Test1 Actions
-----------------------------
OpenForm
Form Name: PLEASEWAIT
View: Form
Data Mode: Read Only
Window Mode: Normal
RepaintObject
Object Type: Form
Object Name: PLEASEWAIT
OpenQuery
Query Name: Order Details Extended
View: Datasheet
Close
Object Type: Form
Object Name: PLEASEWAIT
Save: No
NOTE: The above argument for OpenQuery is just an example of what you may want to run; this can be anything. The main macro actions in Test1 are OpenForm, RepaintObject, and Close.
Additional query words: statusbar status bar meter wait
Keywords : kbdta FmsOthr
Version : WINDOWS:2000
Platform : WINDOWS
Issue type : kbinfo
Last Reviewed: May 13, 1999