Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Error C032 Line 172: Variable limit exceeded: !?!?!

Status
Not open for further replies.

bbhullar

Programmer
Oct 26, 2004
3
0
0
US
Anyone know the number limitation on this?? And possible solutions?
 
Do you have quite a few variables defined? This text from the help file may point to your problem:

Up to 256 global variables of each data type can be defined in a single script. In addition, a user can define up to 256 global variable arrays for each of the data types. This allows the user to define up to 2048 unique global variables in a single script!

The number of local variables allowed is limited by the run-time stack space available at the time the procedure or function is called. In general, this should not be considered a limitation; the stack can grow as large as 64K, which would allow for over 15,000 integer variables! If the run-time stack cannot accommodate the space required by a procedure’s or function’s local variables, a stack overflow error will occur, and the script will terminate.

 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top