Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Opposite of Set Step On

Status
Not open for further replies.

RacingSoftwareGuy

Programmer
Jul 19, 2005
9
US
Is there a command that will cancel the Debugger?

I have issued Set Step on on one procedure and want to stop the debugger after that and close its window. Is there a command that does it?


Don Higgins
 
RESUME

boyd.gif

SweetPotato Software Website
My Blog
 

Don,

Either type RESUME in the command window (as per Craig's suggestion) or click the Resume button in the debugger's toolbar.

You don't need to close the debugger, but you can if you want (your app will run faster with the debugger window closed).

Mike


__________________________________
Mike Lewis (Edinburgh, Scotland)

My sites:
Visual FoxPro (www.ml-consult.demon.co.uk)
Crystal Reports (www.ml-crystal.com)
 
I want to close the debugger and close the debugger window because the Skins Class runs afterwards and it takes forever in the debug mode.

Thanks for the info. I already used Resume but was just wondering if there was a command that closed the window and canceled the debugger.

No big deal, just trying to save a few keystrokes.



Don Higgins
 
If you're running the debugger within the FoxPro frame then you can use something like RELEASE WINDOW WATCH to close the window. Don't know what to do if the debugger's running as a separate process.

Geoff Franklin
 
Mike,

Hence the addendum to Geoff's post.
I haven't tried to deal deal with releasing the debugger in a separate frame issue myself, but issuing those statements still releases the windows in the debugger. It may still speed things up.



-Dave Summers-
[cheers]
Even more Fox stuff at:
 

Dave,

Yes, that's true. Actually, you can still do RELEASE WINDOW TRACE, ... WATCH, ... LOCALS, etc if the debugger is in a separate frame. They will release the individual windows, but not the debugger itself (as far as I can see).

In any case, it's surely much easier just to click the X button in the debugger's title bar.

Mike


__________________________________
Mike Lewis (Edinburgh, Scotland)

My sites:
Visual FoxPro (www.ml-consult.demon.co.uk)
Crystal Reports (www.ml-crystal.com)
 
You got there JUST before me. <g>

CLEAR DEBUG is the other one that's often overlooked.

Dan
 

Dan,

CLEAR DEBUG is the other one that's often overlooked.

You don't mean that CLEAR DEBUG is the same as CLOSE DEBUG, do you?

CLEAR DEBUG restores the debugger windows to their default state, and clears all breakpoints and the Watch list. It opens the debugger if it is not already open.

Mike

__________________________________
Mike Lewis (Edinburgh, Scotland)

My sites:
Visual FoxPro (www.ml-consult.demon.co.uk)
Crystal Reports (www.ml-crystal.com)
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top