Lazarus Debugando

0

In delphi in debug mode I can check the value of a field, for example:

if Edit.text = '' then

If you hover over Edit, I can see the value of the field.

How do I do this on Lazarus? Or if there is another way to view the field values in debug mode.

    
asked by anonymous 13.03.2018 / 21:12

2 answers

0

In Delphi, that's right, hover over or press Ctrl + F7.

So, as in Delphi, you need to send the field in question to the Watch List , so you can follow the evolution of the values in Debug mode.

Look for something like "Castalia for Larazus" I think I already own it for github.

Setting up the Watch List on Lazarus

    
14.03.2018 / 12:10
0

In Lazarus go View-> Debug Windows-> Local Variables and View-> Debug Windows-> Watches together become more powerful than the Delphi tool, but they are not so simple

    
14.03.2018 / 14:07