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 optional (subscripts) to declare the size of arrays (see
) - Use the optional AS type clause to declare a data type for the array (see
) See Also