SergeySpandaryan Posted December 11, 2012 Share Posted December 11, 2012 For $i = 1 To 10 Send $i Next Can you tell me, how can I make this loop not end? Link to comment Share on other sites More sharing options...
BrewManNH Posted December 11, 2012 Share Posted December 11, 2012 $i = 1 While 1 Send($i) $i += 1 Wend If I posted any code, assume that code was written using the latest release version unless stated otherwise. Also, if it doesn't work on XP I can't help with that because I don't have access to XP, and I'm not going to.Give a programmer the correct code and he can do his work for a day. Teach a programmer to debug and he can do his work for a lifetime - by Chirag GudeHow to ask questions the smart way! I hereby grant any person the right to use any code I post, that I am the original author of, on the autoitscript.com forums, unless I've specifically stated otherwise in the code or the thread post. If you do use my code all I ask, as a courtesy, is to make note of where you got it from. Back up and restore Windows user files _Array.au3 - Modified array functions that include support for 2D arrays. - ColorChooser - An add-on for SciTE that pops up a color dialog so you can select and paste a color code into a script. - Customizable Splashscreen GUI w/Progress Bar - Create a custom "splash screen" GUI with a progress bar and custom label. - _FileGetProperty - Retrieve the properties of a file - SciTE Toolbar - A toolbar demo for use with the SciTE editor - GUIRegisterMsg demo - Demo script to show how to use the Windows messages to interact with controls and your GUI. - Latin Square password generator Link to comment Share on other sites More sharing options...
SergeySpandaryan Posted December 11, 2012 Author Share Posted December 11, 2012 $i = 1 While 1 Send($i) $i += 1 Wend Thank you. I meant can this count anew after 10? Link to comment Share on other sites More sharing options...
kaotkbliss Posted December 11, 2012 Share Posted December 11, 2012 While 1 For $i = 1 To 10 Send($i) Next Wend 010101000110100001101001011100110010000001101001011100110010000 001101101011110010010000001110011011010010110011100100001 My Android cat and mouse gamehttps://play.google.com/store/apps/details?id=com.KaosVisions.WhiskersNSqueek We're gonna need another Timmy! Link to comment Share on other sites More sharing options...
czardas Posted December 11, 2012 Share Posted December 11, 2012 (edited) You don't need nested loops for thisCAUTION - INFINITE LOOPFor $i = 1 To 11 If $i > 10 Then $i = 1 ;Send($i) NextHere's another versionFor $i = 1 To 10 ;Send($i) If $i = 10 Then $i = 0 NextI would use the While loop posted by kaotkbliss, but it's always good to know which options are available. Edited December 11, 2012 by czardas operator64 ArrayWorkshop Link to comment Share on other sites More sharing options...
SergeySpandaryan Posted December 11, 2012 Author Share Posted December 11, 2012 (edited) You don't need nested loops for this CAUTION - INFINITE LOOP For $i = 1 To 11 If $i > 10 Then $i = 1 ;Send($i) Next Here's another version For $i = 1 To 10 ;Send($i) If $i = 10 Then $i = 0 Next I would use the While loop posted by kaotkbliss, but it's always good to know which options are available. Thank you very much. Why would you use the While loop? Edited December 11, 2012 by SergeySpandaryan czardas 1 Link to comment Share on other sites More sharing options...
czardas Posted December 11, 2012 Share Posted December 11, 2012 Okay, it's a hunch that's all. I think it might be faster. I'll just test it and see becasue I may be wrong. Back in 5 mins. operator64 ArrayWorkshop Link to comment Share on other sites More sharing options...
czardas Posted December 11, 2012 Share Posted December 11, 2012 (edited) Yep I was right. Kaotkblis' while loop is faster. Here's the test (run in SciTE). Global $iLoopCount = 0, $iTimer = TimerInit() For $i = 1 To 10 ;Send($i) If TimerDiff($iTimer) > 10000 Then ExitLoop $iLoopCount += 1 If $i = 10 Then $i = 0 Next ConsoleWrite($iLoopCount & @CRLF) $iTimer = TimerInit() $iLoopCount = 0 While 1 For $i = 1 To 10 ;Send($i) If TimerDiff($iTimer) > 10000 Then ExitLoop 2 $iLoopCount += 1 Next WEnd ConsoleWrite($iLoopCount & @CRLF) I think the reason is that the While loop is handled internally and runs quicker than keep querying the value of $i in my code. There's not so much in it though. Edited December 11, 2012 by czardas operator64 ArrayWorkshop Link to comment Share on other sites More sharing options...
SergeySpandaryan Posted December 11, 2012 Author Share Posted December 11, 2012 2760309 4124717 2857175 3744562 My results Link to comment Share on other sites More sharing options...
czardas Posted December 11, 2012 Share Posted December 11, 2012 (edited) Yeah the number of loops run in 10 seconds is greater using the while loop. The conditional statement slows the first test down. It's a bigger difference than I thought. Edited December 11, 2012 by czardas operator64 ArrayWorkshop Link to comment Share on other sites More sharing options...
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