WD: Cannot Trap WordBasic Err=7, "Out of Memory"Last reviewed: February 6, 1998Article ID: Q85369 |
The information in this article applies to:
SYMPTOMSIn Microsoft Word, you cannot trap the following error message using the On Error macro command:
WordBASIC Err=7 Out of memory STATUSMicrosoft has confirmed this to be a problem in the Microsoft products listed at the beginning of this article. This problem has been corrected in Microsoft Word 97 for Windows.
MORE INFORMATION
Steps to Reproduce ProblemThe following macro demonstrates this problem:
Sub MAIN On Error Goto Bye Error 7 ' Generates the "Out of memory" error message Bye: MsgBox "Did we get this far?" End SubWhen you run this macro, the "Out of memory" error message will be displayed. When you choose the OK button in the error message dialog box, the macro will halt. The MsgBox command will not be executed. All other WordBasic-generated error messages can be trapped using the On Error statement. For example, if you change the Error 7 statement in the above macro to Error 11 (that is, "Division by zero"), Word for Windows will jump correctly to the Bye: label and execute the MsgBox command. The Error 11 message box will not appear.
REFERENCES"Using WordBasic," by WexTech Systems and Microsoft, page 341
|
Additional query words: word95 word97 8.0 8.0 winword winword2 2.0 2.0a
© 1998 Microsoft Corporation. All rights reserved. Terms of Use. |