Hi all,
I am working on a large project. And now I got a strange problem.
The following line have been in my code for weeks, and worked fine:
This morning it started to GPF!
expage(...) is a global array. ch is static.
If I add a msgbox everything is fine (the msgbox returns the correct value,
and there is no GPF):
Can anybody explain the fact that adding a msgbox solves the problem?
The project is very large. Have I hit some limit for global memory?
HELP!
If I change ch to local, there is no GPF.
Regards
Peter
------------------
[This message has been edited by Peter P Stephensen (edited April 18, 2001).]
I am working on a large project. And now I got a strange problem.
The following line have been in my code for weeks, and worked fine:
Code:
ch.graph(1).lpDataY = varptr(expage(0,%W))
expage(...) is a global array. ch is static.
If I add a msgbox everything is fine (the msgbox returns the correct value,
and there is no GPF):
Code:
msgbox format$(expage(0,%W)) ch.graph(1).lpDataY = varptr(expage(0,%W))
The project is very large. Have I hit some limit for global memory?
HELP!
If I change ch to local, there is no GPF.
Regards
Peter
------------------
[This message has been edited by Peter P Stephensen (edited April 18, 2001).]
Comment