Hello,
perhaps it's only that I don't understand the debugger.
I have a big program and I enable the compiler debug option.
But before my program reaches the line I'm interested in, the debugger stops because of things like:
"Array out of bounds" or "Memory object not initialized" because of a FreeMemory().
Things I can live with and don't want to correct.
Is there a way to tell the debugger to continue?
I know the few debugger commands available. Perhaps I don't understand them.
Thank's for a hint../tomio
debugger level
You can disable the debugger with and enable the debugger with . You must only add disable debugger before the specific command and enabledebugger after the Command.
CS2001
Code: Select all
DisableDebugger
Code: Select all
EnableDebugger
CS2001