Jump to content

Recommended Posts

Maybe...

#include <file.au3>

Dim $aRecords, $File_Location = @ScriptDir & "\Execuatble.log"

If Not _FileReadToArray($File_Location, $aRecords) Then
    MsgBox(4096, "Error", " Error reading log to Array     error:" & @error)
    Exit
EndIf

If IsArray($aRecords) Then
    For $X = 1 To UBound($aRecords) - 1
        If FileExists($aRecords[$X]) Then
            MsgBox(0, "Test", $aRecords[$X])
        EndIf
    Next
Else
    MsgBox(0, "Test", "Please place file in....      " & @CRLF & $File_Location & "    ", 5)
EndIf

... Or mix and match your script and this

8)

NEWHeader1.png

Link to comment
Share on other sites

Autoit is ever changing and getting bigger and better everyday. I do recall Jon or Valik stating some of the limitations have been lifted. That help statement should be changed, but remember this is all volunteer work here too!

Thanks for the note and "someone" will get to it eventually.

8)

NEWHeader1.png

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...