| .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 |