ACC2000: Status Bar Does Not Update After Opening a Pop-Up Form (303378)
The information in this article applies to:
This article was previously published under Q303378 Novice: Requires knowledge of the user interface on single-user computers.
This article applies to a Microsoft Access database (.mdb) and to a Microsoft Access project (.adp).
SYMPTOMS
When you move through the controls on a form, the text on the status bar may not update.
CAUSE
You have opened and closed a pop-up form from this form.
RESOLUTION
To resolve this issue, on the OnClose event of the pop-up form, open and close a form that is not a pop-up form. To do so, follow these steps:
- Open your pop-up form in Design view.
- Type the following code on the OnClose event of the form.
'Turn off screen updating.
DoCmd.Echo False
'Open any other form that is not a pop-up form, and then close it.
'<FormName> is the name of the form that you will open and close.
DoCmd.OpenForm "<FormName>"
DoCmd.Close acForm, "<FormName>"
'Turn on screen updating.
DoCmd.Echo True
- Close and then save the form.
STATUSMicrosoft has confirmed that this is a problem in the Microsoft products that are listed at the beginning of this article.
Modification Type: | Minor | Last Reviewed: | 7/16/2004 |
---|
Keywords: | kbbug KB303378 |
---|
|