Re: Batch file help needed!

2005-06-30 Thread Angus Leeming
Johann Kellerman wrote: Then Ruurd's clever stuff to hide the console window in os_win32.C kicks in. just add: cmdow @ /HID and include cmdow.exe from http://www.commandline.co.uk/cmdow/cmdow.zip. Very powerful window manager console program read more at http://www.commandline.co.uk/cmdow/

Re: Batch file help needed!

2005-06-30 Thread Johann Kellerman
> Then Ruurd's clever stuff to hide the console window in os_win32.C kicks in. just add: cmdow @ /HID and include cmdow.exe from http://www.commandline.co.uk/cmdow/cmdow.zip. Very powerful window manager console program read more at http://www.commandline.co.uk/cmdow/ Regards, Johann

Re: Batch file help needed!

2005-06-30 Thread Angus Leeming
Alstrup, Asger Kunuk Ottar wrote: Try @echo off if "%LANG%"=="" SET LANG=de_DE if "%~1" == "~1" goto win95 start "lyx" "C:\Program Files\LyX\bin\lyx.exe" %* goto end :win95 start "lyx" "C:\Program Files\LyX\bin\lyx.exe" %1 %2 %3 %4 %5 %6 %7 %8 %9 :end Good! That works so long as I write it:

RE: Batch file help needed!

2005-06-30 Thread Alstrup, Asger Kunuk Ottar
Try @echo off if "%LANG%"=="" SET LANG=de_DE if "%~1" == "~1" goto win95 start "lyx" "C:\Program Files\LyX\bin\lyx.exe" %* goto end :win95 start "lyx" "C:\Program Files\LyX\bin\lyx.exe" %1 %2 %3 %4 %5 %6 %7 %8 %9 :end There is no way around the goto. Regards, Asger