nokia6300 Posted April 8, 2009 Posted April 8, 2009 For $i = 1 to 5 MsgBox(0, "Count down!", $i) if $i= 5 then ContinueLoop NextI want to know how can I make it so that when it reach to number 5 it again start from 1 & end @ 5 & this process continue?
monoceres Posted April 8, 2009 Posted April 8, 2009 For $i = 1 to 5 MsgBox(0, "Count down!", $i) if $i= 5 then $i=1 Next Broken link? PM me and I'll send you the file!
nokia6300 Posted April 8, 2009 Author Posted April 8, 2009 But @ 2nd time it miss "1" & directly start from "2"
monoceres Posted April 8, 2009 Posted April 8, 2009 But @ 2nd time it miss "1" & directly start from "2" Sorry, what I meant was For $i = 1 to 5 MsgBox(0, "Count down!", $i) if $i= 5 then $i=0 Next Broken link? PM me and I'll send you the file!
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