Gdilan Posted July 7, 2012 Posted July 7, 2012 Hi all, I want to make this script loop. $FILE = FileOpen(@Homedrive & "wanip.txt", 0) $LINE1 = FileReadLine($FILE, 22) $IP = INetGet ("http://whatsmyip.net/", @Homedrive & "wanip.txt") $FILE = FileOpen(@Homedrive & "wanip.txt", 0) $LINE = FileReadLine($FILE, 22) FileClose(@Homedrive & "wanip.txt") If $Line1 = $Line Then Exit Else RunWait(@ScriptDir & "\Email.exe") EndIf I played with For...Next While...WEnd Do...Until For...In...Next and i couldn`t figured out how to make it loop. Thank you in advanced
water Posted July 7, 2012 Posted July 7, 2012 What do you want to achieve? I don't get why you read the same line two times? My UDFs and Tutorials: Spoiler 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
Gdilan Posted July 7, 2012 Author Posted July 7, 2012 im trying to email IP address. i found the script when searching for something that will email me when my IP changed. the problem was that it didnt work so i created another Email script thats run if line in the the wanip.txt is changed. what im trying to achive is that the script will continue to check if the line changed every 30 min or so... if the line changed i want it to run the email script. i want it to continue runing until i close it.
Kidney Posted July 7, 2012 Posted July 7, 2012 Use While 1 ;infinite loop ... Code here ... Sleep(60000) ;sleeps for 1 minute. Change as needed WEnd
Gdilan Posted July 7, 2012 Author Posted July 7, 2012 UseWhile 1 ;infinite loop...Code here...Sleep(60000) ;sleeps for 1 minute. Change as neededWEndThanks alot KidneyThat solved my problem
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