To add to my last message, although the programs are frozen, I am able to
set breakpoints in my code. For example:

procedure TForm1.FormCreate(Sender: TObject);
var
  I: Integer;
begin
  I := Random(100);
  Caption := IntToStr(I); // breakpoint here
end;

And the debugger stops on the breakpoint line. I am able to inspect the
variable 'I' by hovering the mouse over it.
--
_______________________________________________
Lazarus mailing list
[email protected]
http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus

Reply via email to