Page 1 of 1

debugger level

Posted: Sun Jul 20, 2003 3:14 pm
by Tomio
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

Posted: Sun Jul 20, 2003 4:25 pm
by CS2001
You can disable the debugger with

Code: Select all

DisableDebugger
and enable the debugger with

Code: Select all

EnableDebugger
. You must only add disable debugger before the specific command and enabledebugger after the Command.

CS2001

Posted: Sun Jul 20, 2003 8:57 pm
by Tomio
Thank you CS2001
../tomio