1. exw.exe & stdout
- Posted by "Patrick Barnes" <mistertrik at hotmail.com> Nov 16, 2003
- 465 views
When you open up the command line, and call a windows app. "exw sim.exw -my args" If the program has any calls to stdout, ie puts, a new window is opened to display them. Is there anyway to display them on true stdout? Ie on the commandline? MrTrick
2. Re: exw.exe & stdout
- Posted by Robert Craig <rds at RapidEuphoria.com> Nov 16, 2003
- 504 views
Patrick Barnes wrote: > When you open up the command line, and call a windows app. > > "exw sim.exw -my args" > > If the program has any calls to stdout, ie puts, a new window is opened > to display them. > > Is there anyway to display them on true stdout? Ie on the commandline? In 2.4 there's a program, makecon.exw, in euphoria\bin. Run it to create exwc.exe, a version of exw.exe that should do what you want. It uses the current console window (and current standard out) rather than popping up a new window. Regards, Rob Craig Rapid Deployment Software http://www.RapidEuphoria.com
3. Re: exw.exe & stdout
- Posted by "Elliott S. de Andrade" <quantum_analyst at hotmail.com> Nov 16, 2003
- 468 views
>From: Patrick Barnes <mistertrik at hotmail.com> >Subject: exw.exe & stdout > > >When you open up the command line, and call a windows app. > >"exw sim.exw -my args" > >If the program has any calls to stdout, ie puts, a new window is opened to >display them. > That's true. It's because the interpreter has a GUI subsystem. >Is there anyway to display them on true stdout? Ie on the commandline? > You need to convert it to a console app. Use setsubsys to do this. http://www.rapideuphoria.com/cgi-bin/asearch.exu?win=on&keywords=setsubsys Just run (on a copy): "setsubsys exw.exe /c" >MrTrick >