The information in this article applies to:
SYMPTOMSWhen you use the following statement in a macro Open...For...As statement:you may receive the following error message:
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
Keywords : kberrmsg kbmacro wordnt winword ntword macword word6 winword2 word7 word95 |
Last Reviewed: November 3, 1999 © 2000 Microsoft Corporation. All rights reserved. Terms of Use. |