I have an array that needs to be dimensioned to the following specifications:
Dim m_dMTMDeals() as Double
.
.
.
ReDim m_dMTMDeals(1 To 2, 1 To 5100, 2003 To 2022, 1 To 12, 1 to 108)
The numbers above are represented as variables in the actual code. When VB tries to redim the variable, I get an out of memory error. The computer that is running the application has Windows 2000, 4 Intel XEO processors @ 2.20GHz, and 2 GB of RAM. I can't figure out why I don't have enough memory.
I need to get this resolved because the fifth dimension is only going to increase from 108...
Any help would be greatly appreciated!
Dim m_dMTMDeals() as Double
.
.
.
ReDim m_dMTMDeals(1 To 2, 1 To 5100, 2003 To 2022, 1 To 12, 1 to 108)
The numbers above are represented as variables in the actual code. When VB tries to redim the variable, I get an out of memory error. The computer that is running the application has Windows 2000, 4 Intel XEO processors @ 2.20GHz, and 2 GB of RAM. I can't figure out why I don't have enough memory.
I need to get this resolved because the fifth dimension is only going to increase from 108...
Any help would be greatly appreciated!