debugging - How to use Condition in Delphi Breakpoint properties -


i found nested loop fails when particular condition reached, somehow when = 1, j = 3 , k = 5

i tried right click on breakpoint , in condition set

(i = 1) , (j = 3) , (k = 5)

anyway breakpoint doesn't stop...

what wrong?

i've tried in d2007 , works fine. version using?

procedure tform85.formclick(sender: tobject); var i,j,k : integer;     z:integer; begin    := 0 10   j := 0 10   k := 0 10   begin     z := z + * j * k; // breakpoint on line.   end;    showmessage(inttostr(z)); end; 

have considered breakpoint may not reached because condition not being met?


Comments

Popular posts from this blog

asp.net - repeatedly call AddImageUrl(url) to assemble pdf document -

java - Android recognize cell phone with keyboard or not? -

iphone - How would you achieve a LED Scrolling effect? -