Re: [Lazarus] more locals: variable values in sub-functions

2009-10-28 Thread David Emerson
On Tue 27 Oct 2009, Martin wrote: But all versions of lazarus can do it, using the stack window. In the stack window you can set the current frame to any stack-frame you want. The local-var window, the hint, and the watches window, will all follow this Thanks, Martin! Works beautifully,

Re: [Lazarus] more locals: variable values in sub-functions

2009-10-27 Thread Martin
David Emerson wrote: procedure foo; var a : longint; procedure bar; var b : longint; begin writeln (a); end; Given the above, is there a way to make the Locals window display the value of a while stepping through the code in proc bar? I believe the latest 0.9.29

Re: [Lazarus] more locals: variable values in sub-functions

2009-10-27 Thread Marc Weustink
Martin wrote: David Emerson wrote: procedure foo; var a : longint; procedure bar; var b : longint; begin writeln (a); end; Given the above, is there a way to make the Locals window display the value of a while stepping through the code in proc bar? I believe the

Re: [Lazarus] more locals: variable values in sub-functions

2009-10-27 Thread Martin
Marc Weustink wrote: Martin wrote: David Emerson wrote: procedure foo; var a : longint; procedure bar; var b : longint; begin writeln (a); end; Given the above, is there a way to make the Locals window display the value of a while stepping through the code in proc bar?