[Lazarus] How can a program executing a command via TProcess detect an input prompt and create a graphical dialog for the input?

2013-01-01 Thread Frank Church
How can a Lazarus/FPC program that is executing a command via TProcessdetect an input prompt and create a graphical dialog for the input? e.g. say I execute an ssh command via TProcess which requires a password to be input - how could it detect it, prompt for it with a graphical dialog and pass

Re: [Lazarus] Can't create calculated field

2013-01-01 Thread Alejandro Gonzalo
Try this: In the interface part of the form unit insert this prototype into the Private declarations:   private     { Private declarations }     Procedure OnCalcFields(DataSet: TDataSet);  // insert this   Early in the implementation part insert the event procedure:   Procedure

[Lazarus] [OT] Nice post about Brook framework

2013-01-01 Thread silvioprog
Hello, Please see here: http://pascalgeek.blogspot.com.br/2012/12/brook-framework-new-web-application.html Thank you and happy new year! :) -- Silvio Clécio My public projects - github.com/silvioprog -- ___ Lazarus mailing list

Re: [Lazarus] Can't create calculated field

2013-01-01 Thread Mattias Gaertner
On Tue, 1 Jan 2013 11:54:43 -0800 (PST) Alejandro Gonzalo parkingspac...@yahoo.com wrote: Try this: In the interface part of the form unit insert this prototype into the Private declarations:   private     { Private declarations }     Procedure OnCalcFields(DataSet: TDataSet);  // insert