ReDim
Resize a dynamic array.
Syntax
ReDim [Preserve] varname(subscripts)[,varname(subscripts)]...
Key
Preserve Preserve existing data in the array where possible
varname The name of the array variable
subscripts The upper bound of the array dimension(s)
comma separated if more than one.
Example
redim strPrintQueues(50)