qb45qck.hlp (Table of Contents; Topic list)
REDIM Statement QuickSCREEN
  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