saveyoursoul Posted December 11, 2006 Posted December 11, 2006 I need to create loop or something that will run lower commends after 30min from prog start , and when next 30 min will past it again run the same commands , never end ... hyh
mikehunt114 Posted December 11, 2006 Posted December 11, 2006 Check oout the helpfile, all you had to look up was "loop". You'd get: For...Next, While...Wend, Do...Until. While 1 RunSomething() sleep(1800000) WEnd IE Dev ToolbarMSDN: InternetExplorer ObjectMSDN: HTML/DHTML Reference Guide[quote]It is surprising what a man can do when he has to, and how little most men will do when they don't have to. - Walter Linn[/quote]--------------------[font="Franklin Gothic Medium"]Post a reproducer with less than 100 lines of code.[/font]
anixon Posted December 11, 2006 Posted December 11, 2006 I need to create loop or something that will run lower commends after 30min from prog start , and when next 30 min will past it again run the same commands , never end ... hyhHi I use this as a timer where I can change the durationCODE$var = 60For $i = $var to 1 Step -1; Do something Sleep(1000)NextCheers Ant
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