Re: g77 (new), Windows XP Professional, CALL System(Command, Status), directory.

2004-03-22 Thread Lars Steinke
- On Sat, 20 Mar 2004, Lars Steinke wrote: Hello, call system('cmd.exe /c cls') works! Thank you Dave! Now I have a new problem with 'call system': I wolud like to start a batch-file named '1.bat'. 1.bat and my program are in the same directory (C:\test

g77 (new), Windows XP Professional, CALL System(Command, Status), directory.

2004-03-20 Thread Lars Steinke
Hello, call system('cmd.exe /c cls') works! Thank you Dave! Now I have a new problem with 'call system': I wolud like to start a batch-file named '1.bat'. 1.bat and my program are in the same directory (C:\test). call system('1.bat') pause end Error-message: 1.bat:

Re: g77, Windows XP Professional, CALL System(Command, Status)

2004-03-19 Thread Lars Steinke
Hi, first of all: thanks a lot for your answers! I have revised my PATH and now it is possible to do the following: write(*,*)'1' pause call system('clear') write(*,*)'2' pause end It works (Win-XP-shell)! ..but if I use: call system('cls') I get

Re: g77, Windows XP Professional, CALL System(Command, Status)

2004-03-19 Thread Lars Steinke
..sorry! Attachment: cygcheck check.txt Cygwin Win95/NT Configuration Diagnostics Current System Time: Fri Mar 19 16:21:43 2004 Windows XP Professional Ver 5.1 Build 2600 Service Pack 1 Path: C:\cygwin\usr\local\bin C:\cygwin\bin C:\cygwin\bin

g77, Windows XP Professional, CALL System(Command, Status)

2004-03-18 Thread Lars Steinke
Hello, I have a problem with: CALL System(Command, Status) I am using g77 (cygwin, Windows XP Professional). The routine call system does not work - nothing happens, no error-message, the program continues and the call system command seems to be ignored. Can you help me? BTW: What is

Re: GCC G77 Sleep Intrinsic

2003-12-12 Thread Lars Steinke
On Thursday 11 December 2003 02:14, Lars Steinke wrote: Hello, I am using G77 (cygwin, GCC G77 on Windows 98 SE) and I have a problem with the following function: Sleep Intrinsic CALL Sleep(Seconds) Seconds: INTEGER(KIND=1); scalar; INTENT(IN). Intrinsic groups: unix. Description

RE: GCC G77 Sleep Intrinsic

2003-12-12 Thread Lars Steinke
] Behalf | | Of Lars Steinke | | Sent: 12 December 2003 12:25 | | To: [EMAIL PROTECTED] | | Subject: Re: GCC G77 Sleep Intrinsic | | | | On Thursday 11 December 2003 02:14, Lars Steinke wrote: | | Hello, | | | | I am using G77 (cygwin, GCC G77 on Windows 98 SE) and | | I have a problem

GCC G77 Sleep Intrinsic

2003-12-11 Thread Lars Steinke
Hello, I am using G77 (cygwin, GCC G77 on Windows 98 SE) and I have a problem with the following function: Sleep Intrinsic CALL Sleep(Seconds) Seconds: INTEGER(KIND=1); scalar; INTENT(IN). Intrinsic groups: unix. Description: Causes the process to pause for Seconds seconds. See sleep(2).