Hi All,
Question. What's the best way to debug code within For...Next Loops.
I tried the obvious... i.e. writing to the 'interpretation' window
from within the loop... but this doesn't work. As evidenced by this
very simple code example which doesn't produce any output from within
the loop.
"hello";
WriteVal(100);
for( i=0; i<BarCount; i++ )
{
"i = ";
WriteVal(i);
WriteIf(i==100,"TRUE","FALSE");
}
Only the "hello" and first WriteVal() give output.
So, how best to debug from within a For...Next Loop....???
Thanks