stdin.readline
Hi,
There is program (I didn't write) which takes a parameter
to send its output. When I read the manual of this program
it says," The program pumps the data to the program you
use this program as standart input.
Or something else?
In brief I need the equivalent of the followind vb script code in Delphi
or another one doing the same job.
Regards,Suat.
====================================
Set StdOut = WScript.StdOut
Set StdIn = WScript.StdIn
Dim InputString
Do While Not StdIn.AtEndOfStream
InputString = StdIn.ReadLine
Loop
====================================
|