I have been using Delphi dev for a long time, and in the past I used a third-party development logging and debugging tool (called Smart Inspect), however now that I upgraded to Delphi XE, I want to try and use the IDE for debugging.
My question is, given a feature like
procedure MyFunction;
var
str : string;
begin
str := 'Foo';
//Debug, show value of str?
str := AnotherFunction(str);
//Debug, show value of str?
end;
how can I debug and get the str value without doing stupid things like ShowMessage (str);
If there is a video somewhere (or an article), then I am more than happy to read.
Is there any way to see / display the value of variables.
source
share