| .REDIM Statement QuickSCREENi |
|
  QuickSCREEN       Details       Example       Contents       Index |
| ÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ |
| REDIM - a BASIC declaration that changes the space allocated to an |
|         array that has been declared $DYNAMIC |
|
| Syntax |
|   REDIM [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 (subscripts) to declare the size of arrays |
      (see Details ) |
|     ž Use the optional AS type clause to declare a data type for the |
      array (see Details ) |
|
See Also  DIM   ERASE |