WD: Err Msg: WordBasic Err=52! Bad File Name or NumberLast reviewed: February 2, 1998Article ID: Q97178 |
The information in this article applies to:
SYMPTOMSwhen you use the following statement in a macro
Open...For...As statement:may receive the following error message:
WordBasic Err=52! Bad File Name or Number CAUSEThis error message is displayed if you try to open a file for output using a number larger than 4. For example, the error message occurs if you use the following Open statement:
OPEN "C:\TEST.DOC" FOR OUTPUT as #5In WordBasic, you can open only four files at a time for output, input or append. The only acceptable numbers for these files are 1, 2, 3 or 4. NOTE: The "#" character in the above statement is optional, as shown in the following equivalent statement:
OPEN "C:\TEST.DOC" FOR OUTPUT as 5 REFERENCES"Using WordBasic," by WexTech Systems and Microsoft, page 263
|
Additional query words: wordmacro
© 1998 Microsoft Corporation. All rights reserved. Terms of Use. |