i am running a program within which millions of pieces of data are stored in arrays. i am not having an issue with speed of the program, but i am having a problem in that when too much data is entered into the areas (the file size is variable), i receive an Out of Memory message once it encounters one of the arrays
Redim Array(x,y,z,a)
Does anyone know why this may be happening? Are there limitations as to storage during single runs? Also, is there a way to clear memory during a program to avoid such things from happening? thanks
Redim Array(x,y,z,a)
Does anyone know why this may be happening? Are there limitations as to storage during single runs? Also, is there a way to clear memory during a program to avoid such things from happening? thanks