WD: WordBasic Doesn't Support END Command

Last reviewed: February 2, 1998
Article ID: Q41743
The information in this article applies to:
  • Microsoft Word for Windows, versions 1.0, 1.1, 1.1a, 2.0, 2.0a, 2.0a-CD, 2.0b, 2.0c, 6.0, 6.0a, 6.0c
  • Microsoft Word for Windows 95, version 7.0
  • Microsoft Word for the Macintosh, versions 6.0, 6.0.1

SUMMARY

Many versions of BASIC support the END command to exit the current program. Although the Microsoft Word for Windows WordBasic macro language is similar to BASIC, it does not support this command. Using END causes a macro error.

MORE INFORMATION

To exit out of a WordBasic macro, use the following:

  • A Goto statement with a Lable just before End Sub.

    Sub Main
       Msgbox "This is the first message box"
       Goto Bye
       MsgBox "This is the second message box that will not appear"
     Bye:
     End Sub
    
    
-or-
  • Use the STOP command. The STOP command will initiate a dialog box stating "Macro Interrupted".

REFERENCES

"Using WordBasic" pages 230 and 292.


KBCategory: kbusage kbmacro
KBSubcategory:
Additional query words: pop up 1.x 2.0 2.0a word6 7.0 word95
word7 winword2 2.0a-CD 2.0b 2.0c 6.0 6.0a 6.0c macword 6.0.1
Keywords : kbmacroexample macword ntword winword word6 word7 word95 wordnt kberrmsg kbmacro
Version : WINDOWS:2.0,2.0a,2.0a-CD,2.0b,2.0c,6.0,6.0a,6.0c,7.0,7.0a; MACINTOSH:6.0,6.0.1,6.0.6.0.1a


THE INFORMATION PROVIDED IN THE MICROSOFT KNOWLEDGE BASE IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND. MICROSOFT DISCLAIMS ALL WARRANTIES, EITHER EXPRESS OR IMPLIED, INCLUDING THE WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. IN NO EVENT SHALL MICROSOFT CORPORATION OR ITS SUPPLIERS BE LIABLE FOR ANY DAMAGES WHATSOEVER INCLUDING DIRECT, INDIRECT, INCIDENTAL, CONSEQUENTIAL, LOSS OF BUSINESS PROFITS OR SPECIAL DAMAGES, EVEN IF MICROSOFT CORPORATION OR ITS SUPPLIERS HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. SOME STATES DO NOT ALLOW THE EXCLUSION OR LIMITATION OF LIABILITY FOR CONSEQUENTIAL OR INCIDENTAL DAMAGES SO THE FOREGOING LIMITATION MAY NOT APPLY.

Last reviewed: February 2, 1998
© 1998 Microsoft Corporation. All rights reserved. Terms of Use.