home *** CD-ROM | disk | FTP | other *** search
/ PC World 2006 February / PCWorld_2006-02_cd.bin / software / vyzkuste / triky / triky.exe / autoit-v3-setup.exe / Examples / FileReadLine.au3 < prev    next >
Text File  |  2004-09-22  |  334b  |  17 lines

  1. $file = FileOpen("test.txt", 0)
  2.  
  3. ; Check if file opened for reading OK
  4. If $file = -1 Then
  5.     MsgBox(0, "Error", "Unable to open file.")
  6.     Exit
  7. EndIf
  8.  
  9. ; Read in lines of text until the EOF is reached
  10. While 1
  11.     $line = FileReadLine($file)
  12.     If @error = -1 Then ExitLoop
  13.     MsgBox(0, "Line read:", $line)
  14. Wend
  15.  
  16. FileClose($file)
  17.