debugger level

Just starting out? Need help? Post your questions and find answers here.
Tomio
Enthusiast
Enthusiast
Posts: 291
Joined: Sun Apr 27, 2003 4:54 pm
Location: Germany

debugger level

Post 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
CS2001
User
User
Posts: 14
Joined: Mon Jun 09, 2003 6:17 pm
Location: Germany
Contact:

Post 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
Tomio
Enthusiast
Enthusiast
Posts: 291
Joined: Sun Apr 27, 2003 4:54 pm
Location: Germany

Post by Tomio »

Thank you CS2001
../tomio
Post Reply