Hi all,
Sometimes when I have the debugger open with Trace, Watch and Local windows active my code will stop when there is no breakpoint set.
I've cleared all breakpoints, I've opened the Breakpoint dialog and made sure there is no breakpoints set at all.
I've deleted my foxuser.dbf.
I've deleted any configuration files that I might have saved via the debugger.
Have I missed something?
Very frustrating when it happens in a Scan/Endscan of 10,000+ records.
I've had to use this code to get around it:
But having this peppered all over my code looks sloppy after a while.
Thanks!
Sometimes when I have the debugger open with Trace, Watch and Local windows active my code will stop when there is no breakpoint set.
I've cleared all breakpoints, I've opened the Breakpoint dialog and made sure there is no breakpoints set at all.
I've deleted my foxuser.dbf.
I've deleted any configuration files that I might have saved via the debugger.
Have I missed something?
Very frustrating when it happens in a Scan/Endscan of 10,000+ records.
I've had to use this code to get around it:
Code:
IF .T.
SET STEP ON
ENDIF
But having this peppered all over my code looks sloppy after a while.
Thanks!