Log in

View Full Version : Remove bp & run program at same time...


Saje
May 1st, 2003, 03:03
I'd like to do the following:

Set some breakpoints, when a breakpoint is reached remove it and continue running program. Obviously this can be done by pressing F2 then F9 - what I want is to do this in a single keypress. Is this possible? Can I map a certain key to trigger F2 then F9? Any help would be very appreciated.

Saje.

Anonymous
May 1st, 2003, 05:05
if you want to see what breakpoints are reached in which order, just use a logged breakpoint instead of a breakpoint which causes the program to pause.

Anonymous
May 17th, 2003, 01:07
how can i set breakpoint on every line when my program is running?
i don't wonna press F2 on every line, is there some shortest way?

sorry to my bad englesh....

Anonymous
May 17th, 2003, 03:23
F8 will place a breakpoint on the next line for you so you can step through the code. I don't any reason to "set a breakpoint on every line".