On 3/21/07, V. Sriram <[EMAIL PROTECTED]> wrote:
hi all,
my code has grown very bulky and i'm having trouble adding global variables. i 
have a structure of size about 160 bytes. i have declared an array of this 
structure with 100 elements. the compiler throws the following error:
"region datares is full (Debug/FlexiQ section .bss)"

please help me out on this one.

thats 160*100 which is 16K

you can only have 32K in your data segment. what i suggest you do;
is instead of making them globals; allocate the memory in runtime
using MemPtrNew() that way; only 4 bytes of globals will be used.

--
// Aaron Ardiri

--
For information on using the ACCESS Developer Forums, or to unsubscribe, please 
see http://www.access-company.com/developers/forums/

Reply via email to