Compiler Limit Exceeded

I got this error today, when trying to add the last module to my program....

Is the a Global Variable limit?    or a total number of variables limit??  or a limit of something else that was exceeded?

BUILD: ERROR: ERROR: assembler: Compiler limit exceeded while assembling globals; 255 fields allowed, 257 found

Disappointed   I was so close !

  • There is a hard limit on the number of entries (variables, constants, enums) in an object table (classes and modules... globals is a module). This is typically pretty easy to work around by organizing all of your global entries into sub modules.