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 strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Errors only on cmpiled version of project

Status
Not open for further replies.

JWilsonny

Programmer
May 8, 2001
46
US
I am finding lately that my compiled version bombs out on certain errors - but runs fine when running the prgs. The latest is a [too many variables] which only occurs with the compiled version. This makes it hard to debug when the prgs run fine and produce the correct result. ??? What's going on?
 
Hi !

Are you using some classes ?
I'm using classes too, when I'm building an apps. It works fine but when I recompiling, it made a huge error.

My error is when using array at that time.
If you're using class, you should check it out again !

Kampret
 
Arrays can use a lot of memvars, especially if you do a SELECT...INTO ARRAY on a large table. That can be a problem. To start with, put a statement like this in your CONFIG.FPW:

mvcount = 4096

Or even bump it up to more than 4096.
Dave S.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top