KnowledgeBase Archive

An Archive of Early Microsoft KnowledgeBase Articles

View on GitHub

Q28158: Misleading QB.EXE Message Using Reserved Word in SUB

Article: Q28158
Product(s): See article
Version(s): 6.00 6.00b 7.00 | 6.00 6.00b 7.00
Operating System(s): MS-DOS | OS/2
Keyword(s): ENDUSER | B_QuickBas | mspl13_basic
Last Modified: 2-FEB-1990

Illegally using the reserved word "SEG" in a SUB statement can give
you a misleading error message.

To generate the misleading message, start up the QB.EXE environment of
Microsoft BASIC Compiler Version 6.00 or 6.00b or Microsoft QuickBASIC
Version 4.00, 4.00b, or 4.50, and type the following:

   SUB foo(SEG x AS INTEGER)

The environment highlights the SEG keyword and returns the following:

   Expected: variable or BYVAL or SEG or )

This is because the parser correctly detects that SEG is illegal in a
SUB statement, but shares the error message with DECLARE, so SEG is
misleadingly listed as "expected."

This error message has been clarified in the QBX.EXE environment of
Microsoft BASIC Professional Development System (PDS) Version 7.00 for
MS-DOS and MS OS/2. This situation now produces the following error,
indicating that the SEG keyword is not allowed in that context:

   Expected: parameter or )

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.

Copyright Microsoft Corporation 1986-2002.