[an error occurred while processing this directive]
.DIM Statement QuickSCREENi

  QuickSCREEN      Details      Example      Contents      Index
ÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ
DIM - a declaration statement that names one or more variables and
      allocates storage space for them
Syntax
  DIM [SHARED] variable[(subscripts)] [AS type]
               [,variable[(subscripts)] [AS type]...
    þ variable is a BASIC variable name
    þ Use the SHARED keyword if you want all procedures in this module to
      be able to use this variable
    þ Use the optional (subscripts) to declare the size of arrays (see
      Details)
    þ AS type is a Detail
See Also  ERASE  REDIM  OPTION BASE