[fpc-pascal] Re: TProcess questions

2006-10-03 Thread Alexander Todorov
Adrian Maier wrote: It seems nice to have a way of specifying parameters like that (in which case I assume that strings given will be passed as-they-are). Another option is to use escaping for quote characters (and maybe some others) when specifying the TProcess.CommandLine property. __

[fpc-pascal] Re: TProcess questions

2006-10-03 Thread Alexander Todorov
Marco van de Voort wrote: > Can you add the following to TProcess instead of using the CommandLine property: > example: > property ProcessName: String - the process to be executed > property Params : TStringList - list of command line params to be > passed to the process > > Why should quote ch

Re: [fpc-pascal] Re: TProcess questions

2006-10-03 Thread Marco van de Voort
> Can you add the following to TProcess instead of using the CommandLine > property: > example: > property ProcessName: String - the process to be executed > property Params : TStringList - list of command line params to be > passed to the process > > Why should quote characters be stripped as it

Re: [fpc-pascal] Re: TProcess questions

2006-10-03 Thread Michael Van Canneyt
On Tue, 3 Oct 2006, Alexander Todorov wrote: > Can you add the following to TProcess instead of using the CommandLine > property: > example: > property ProcessName: String - the process to be executed > property Params : TStringList - list of command line params to be > passed to the process Ex

[fpc-pascal] Re: TProcess questions

2006-10-03 Thread Alexander Todorov
Can you add the following to TProcess instead of using the CommandLine property: example: property ProcessName: String - the process to be executed property Params : TStringList - list of command line params to be passed to the process Why should quote characters be stripped as it is in the curre