I have experienced this problem several times. The loop variable in a for next loop will sometimes not increment when I run the loop in the debugger.
This can occur in a loop as simple as:
For X = 1 to 1000
debug.print X
Next
In the debugger this will behave like an unbounded loop and print zeros until I stop execution. The compiled code always works correctly.
Is this a know issue?
Does the debugger in 6.0 fix this?
I have also had the PB 5 IDE (PB5.EXE) kill my source file by saving a zero byte file over my existing source file. Again, known issue? Fixed in 6.0?
chris judge,
formfill, inc.
This can occur in a loop as simple as:
For X = 1 to 1000
debug.print X
Next
In the debugger this will behave like an unbounded loop and print zeros until I stop execution. The compiled code always works correctly.
Is this a know issue?
Does the debugger in 6.0 fix this?
I have also had the PB 5 IDE (PB5.EXE) kill my source file by saving a zero byte file over my existing source file. Again, known issue? Fixed in 6.0?
chris judge,
formfill, inc.
Comment