メモリの動的配列全体の領域が最大許容値の 64KB を超えました。以下に例を示します。
ReDim MyArr(-20000 To 20000) As Integer ' This declares an array with 40,001 elements of 2 bytes each. ' The declared array size is greater than 64K.
ReDim ステートメントを使用して、配列のサイズを減らしてください。