confuseis Posted June 20, 2015 Posted June 20, 2015 HiIm 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)
Gianni Posted June 20, 2015 Posted June 20, 2015 (edited) #include <FileConstants.au3> ; try to put this line at beginning of your script Edited June 20, 2015 by Chimp Chimp small minds discuss people average minds discuss events great minds discuss ideas.... and use AutoIt....
water Posted June 20, 2015 Posted June 20, 2015 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 UDFs: Active Directory (NEW 2024-07-28 - Version 1.6.3.0) - Download - General Help & Support - Example Scripts - Wiki ExcelChart (2017-07-21 - Version 0.4.0.1) - Download - General Help & Support - Example Scripts OutlookEX (2021-11-16 - Version 1.7.0.0) - Download - General Help & Support - Example Scripts - Wiki OutlookEX_GUI (2021-04-13 - Version 1.4.0.0) - Download Outlook Tools (2019-07-22 - Version 0.6.0.0) - Download - General Help & Support - Wiki PowerPoint (2021-08-31 - Version 1.5.0.0) - Download - General Help & Support - Example Scripts - Wiki Task Scheduler (2022-07-28 - Version 1.6.0.1) - Download - General Help & Support - Wiki Standard UDFs: Excel - Example Scripts - Wiki Word - Wiki Tutorials: ADO - Wiki WebDriver - Wiki
confuseis Posted June 20, 2015 Author Posted June 20, 2015 I figured it outI 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.
water Posted June 20, 2015 Posted June 20, 2015 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 UDFs: Active Directory (NEW 2024-07-28 - Version 1.6.3.0) - Download - General Help & Support - Example Scripts - Wiki ExcelChart (2017-07-21 - Version 0.4.0.1) - Download - General Help & Support - Example Scripts OutlookEX (2021-11-16 - Version 1.7.0.0) - Download - General Help & Support - Example Scripts - Wiki OutlookEX_GUI (2021-04-13 - Version 1.4.0.0) - Download Outlook Tools (2019-07-22 - Version 0.6.0.0) - Download - General Help & Support - Wiki PowerPoint (2021-08-31 - Version 1.5.0.0) - Download - General Help & Support - Example Scripts - Wiki Task Scheduler (2022-07-28 - Version 1.6.0.1) - Download - General Help & Support - Wiki Standard UDFs: Excel - Example Scripts - Wiki Word - Wiki Tutorials: ADO - Wiki WebDriver - Wiki
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now