|
| KiXtart Command Reference |
READLINEactionReads a line from a file. syntaxREADLINE (file number) parameterFile number A numeric expression indicating the file number of the file to open. Possible values range from 1 to 10. remarksREADLINE reads a string ending in a carriage return. If successful, the function returns the string without a carriage return. If it encounters an error, @ERROR returns an error code. returns
exampleIF Open(3, @LDRIVE + "\CONFIG\SETTINGS.INI") = 0 $x = ReadLine(3) WHILE @ERROR = 0 ? "Line read: [" + $x + "]" $x = ReadLine(3) LOOP Close (3) ELSE BEEP ? "Config file not opened, error code: [" + @ERROR + "]" ENDIF |