KnowledgeBase Archive

An Archive of Early Microsoft KnowledgeBase Articles

View on GitHub

Q40718: BASIC TYPE…END TYPE Must Be Physically at Top of Program

Article: Q40718
Product(s): See article
Version(s): 4.00 4.00b 4.50
Operating System(s): MS-DOS
Keyword(s): ENDUSER | SR# S890117-64 B_BasicCom | mspl13_basic
Last Modified: 15-DEC-1989

The QuickBASIC TYPE...END TYPE statement must be physically at the top
of the program. If it isn't, the program may not compile correctly.
This information applies to QuickBASIC Versions 4.00, 4.00b, and 4.50,
Microsoft BASIC Compiler Versions 6.00 and 6.00b for MS-DOS and MS
OS/2, and Microsoft BASIC PDS Version 7.00 for MS-DOS and MS OS/2.

The code example shown below does not compile correctly. In the QB.EXE
editor, an error "Identifier cannot include a period" is reported on
Line 2. In BC.EXE, two errors are reported, as follows:

   Variable name not unique

   Type Mismatch

To correct the program, move the TYPE ... END TYPE block and the DIM
statement before the use of the variable. It is best to place these
types of statements at the beginning of the program.

The following is sample code:

GOSUB initvar
  PRINT x.str
END

initvar:
        TYPE user
            str AS STRING * 10
        END TYPE
        DIM x AS user
        x.str = "hello"
RETURN

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.