qbasic.hlp (Topic list)
Duplicate definition
This error occurs if you try to change the dimensions of a
static array while your program is running. To correct this,
declare the array as dynamic using the REDIM statement.
 
This error also occurs if you try to change the dimensions
of a dynamic array using the DIM statement without first
deallocating the array. To correct this, add an ERASE
statement before dimensioning the array.
 
ERR code: 10