Forum Discussion

rdsfernanda's avatar
rdsfernanda
Occasional Contributor
9 years ago
Solved

Local Panel isn't showing me the local variables available

Hi,   Please, does anybody can help me?   I need that my local panel show me the local variables available, but when start the execution of my code the panel doesn't show me anything.   I have ...
  • HKosova's avatar
    9 years ago

    Hi Fernanda,

     

    Your InicialTelnet procedure uses global variables and doesn't have any local variables. Local variables are defined like this:

     

    procedure Test;
    var LocalVar1, LocalVar2; // <------
    begin
    ...
    end;

    The Locals list shows just the locals and not globals, that's why it's empty. To watch global variables, add them to the Watch List instead, or evaluate them in the "calculator" (Ctrl + F12).