Subj : Re: Error: Too much global data defined in file To : borland.public.cpp.borlandcpp From : Bob Gonder Date : Mon Feb 28 2005 07:37 am Morosh wrote: >this new error "Error: Too much global data defined in file" saying that I >have a lot of global variables. I counted the space required for my global >data it's around 14k , it didn't exceed 64k. Did you include all of your string literals in that count? char Error[64]; 64 bytes of data strcpy( Error, "Error: Too much global data defined in file"); Another 44 bytes of data. Total: 108 bytes .