Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 10/26/2022 in all areas

  1. Uploaded a new Beta with the ProperCase directorynames. I've also changed the behavior of unsaved "Untitled *" files: the new autocomplete/dynamic includes will be switched off and revert to the standard autocomplete functionality. Jos
    1 point
  2. .... sure .... will be in the next version later today....
    1 point
  3. Let me think about that , so please check back again in 2 years!
    1 point
  4. Thanks for the reproducer and think I got that fixed now in the current available beta zip file. It should no use the full path when in isn't in the same subdir as the MasterScript. Jos
    1 point
  5. Code Fixed: Mode 1: #include <File.au3> $file = "c:\yourfile.txt" FileOpen($file, 0) For $i = 1 to _FileCountLines($file) $line = FileReadLine($file, $i) msgbox(0,'','the line ' & $i & ' is ' & $line) Next FileClose($file) Mode 2: #include <file.au3> $file = FileOpen("yourfile.txt", 0) While 1 $line = FileReadLine($file) If @error = -1 Then ExitLoop MsgBox(0,'',$line) WEnd FileClose($file) Mode 3: #include <Array.au3> #include <File.au3> Local $aInput $file = "yourfile.txt" _FileReadToArray($file, $aInput) For $i = 1 to UBound($aInput) -1 MsgBox (0,'',$aInput[$i]) Next all tested!
    1 point
×
×
  • Create New...