ACC97: Error When You Close a Form That Instantiates a Class Module (269471)
The information in this article applies to:
This article was previously published under Q269471 Advanced: Requires expert coding, interoperability, and multiuser skills.
SYMPTOMS
When you try to close a form that contains code that instantiates a class object, Microsoft Access may stop responding (hang), or you may receive the following error message.
In Microsoft Windows 95 or Microsoft Windows 98:
This program has performed an illegal operation and will be shut down.
If the problem persists, contact the program vendor.
When you click Details (on Microsoft Windows Millennium Edition, press ALT+D), you receive the following message: MSACCESS caused an invalid page fault in MSACCESS.EXE at 0167:3007fld9.
NOTE: The actual memory address may vary.
In Microsoft Windows NT:
An application error has occurred and an application error log is being
generated.
MSACCESS.EXE
Exception: access violation (0xc0000005, address:0x3007f1d9)
In Microsoft Windows 2000
Microsoft Access may quit without any error messages.
CAUSE
This problem occurs when both of the following are true:
- WithEvents is being used in the class module to track the form's events.
- In the Close or Unload event of the form, an object is being destroyed by the following statement:
Set object = Nothing
RESOLUTION
To work around this behavior, create a command button on the form to destroy the object and to close the form. To do so, follow these steps:
- Open the form in Design view.
- Add a command button to the form, and then set the OnClick property of the command button to the following event procedure:
Set fObj = Nothing
DoCmd.Close
- Open the form in Form view, and then close the form by clicking the command button. Note that the form closes without error.
STATUSMicrosoft has confirmed that this is a problem in the Microsoft products that are listed at the beginning of this article. REFERENCESFor more information about class modules, in the Visual Basic Editor, click Microsoft Visual Basic Help on the Help menu, type class modules in the Office Assistant or the Answer Wizard, and then click Search to view the topic.
Modification Type: | Major | Last Reviewed: | 9/25/2003 |
---|
Keywords: | kbbug kberrmsg kbpending KB269471 |
---|
|