Jump to content

Recommended Posts

Posted

Hi

Im looking to read the contents of a text file but Im getting the error  "WARNING: $FO_Read: possibly used before declaration"

This error is flagged for the seconf line of below dont see why could anyone enlighten me?

Thanks.

Local Const $sFilePath ="\test-folder\test.txt"

Local $hFileOpen = FileOpen($sFilePath, $FO_Read)

Local $sFileRead = FileReadLine($hFileOpen, 1)

FileClose($hFileOpen)

Sleep(8000)

Send($sFileRead)

Posted (edited)

 #include <FileConstants.au3> ;  try to  put this line at beginning of your script

Edited by Chimp

 

image.jpeg.9f1a974c98e9f77d824b358729b089b0.jpeg Chimp

small minds discuss people average minds discuss events great minds discuss ideas.... and use AutoIt....

Posted

When you check the example in the help file you will see that you need to include the following line:

#include <FileConstants.au3>

My UDFs and Tutorials:

  Reveal hidden contents

 

Posted

I figured it out

I need to remove an include libray   #include <MsgBoxConstants.au3>  and use  #include <file.au3>

also the text file I named test.txt   but   its real name was test.txt.txt   as I didnt have the windows explorer option show extensions, that was a tricky one to spot.

 

 

 

 

Posted

Removing #include <MsgBoxConstants.au3>  didn't solve your problem. It simply removed a library which you didn't use in your script.
#include <file.au3> or #include <FileConstants.au3> solved your problem :)

My UDFs and Tutorials:

  Reveal hidden contents

 

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
  • Recently Browsing   0 members

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