Some questions:
1) Is the memory space available to a program dependent on the
physical RAM present, or will Window's memory manager allocate
virtual memory if my app needs more than what's physically available?
2) Is there a fixed limit to the memory space available to GLOBAL vars/arrays?
I'm getting error 9s & 7s currently as a result of dimensioning my global
arrays while also allocating over 5MB for (GLOBAL) fixed length strings.
3) Can GLOBAL arrays be dimensioned at an address (overlaying fixed length
strings)? If so, can they be redimmed (PRESERVE) at the same address?
------------------
Bernard Ertl
1) Is the memory space available to a program dependent on the
physical RAM present, or will Window's memory manager allocate
virtual memory if my app needs more than what's physically available?
2) Is there a fixed limit to the memory space available to GLOBAL vars/arrays?
I'm getting error 9s & 7s currently as a result of dimensioning my global
arrays while also allocating over 5MB for (GLOBAL) fixed length strings.
3) Can GLOBAL arrays be dimensioned at an address (overlaying fixed length
strings)? If so, can they be redimmed (PRESERVE) at the same address?
------------------
Bernard Ertl
Comment