Re: [fpc-pascal] TProcess, Batch script and Windows

2013-05-17 Thread Mark Morgan Lloyd
Michael Van Canneyt wrote: On Wed, 15 May 2013, Marcos Douglas wrote: Hi, I want to execute a batch file on Windows (FPC 2.6.2 and Laz trunk) using TProcess class. It ONLY works if I use the [poWaitOnExit] and DO NOT USE [poNoConsole] options. I do not want to see the console so, I need to

Re: [fpc-pascal] TProcess, Batch script and Windows

2013-05-16 Thread Marcos Douglas
On Thu, May 16, 2013 at 12:51 PM, Michael Van Canneyt wrote: > > > On Wed, 15 May 2013, Marcos Douglas wrote: > >> Hi, >> >> I want to execute a batch file on Windows (FPC 2.6.2 and Laz trunk) >> using TProcess class. >> It ONLY works if I use the [poWaitOnExit] and DO NOT USE [poNoConsole] >> opt

Re: [fpc-pascal] TProcess, Batch script and Windows

2013-05-16 Thread Michael Van Canneyt
On Wed, 15 May 2013, Marcos Douglas wrote: Hi, I want to execute a batch file on Windows (FPC 2.6.2 and Laz trunk) using TProcess class. It ONLY works if I use the [poWaitOnExit] and DO NOT USE [poNoConsole] options. I do not want to see the console so, I need to use [poNoConsole] option. Is