Tukata Posted October 19, 2006 Posted October 19, 2006 (edited) Sorry for this stupid question. I have this code and I get 51 , 511 , 5111 ... but I want to get 6 , 7 , 8... $w=5 While 1 $w=$w & 1 MsgBox(4096,"",$w) Sleep(5000) WEnd Thank you Tuk Edited October 19, 2006 by Tukata
PaulIA Posted October 19, 2006 Posted October 19, 2006 (edited) Try: $w=5 While 1 $w=$w + 1 MsgBox(4096,"",$w) Sleep(5000) WEnd Edited October 19, 2006 by PaulIA Auto3Lib: A library of over 1200 functions for AutoIt
Danny35d Posted October 19, 2006 Posted October 19, 2006 $w=$w & 1changed for$w=$w + 1 AutoIt Scripts:NetPrinter - Network Printer UtilityRobocopyGUI - GUI interface for M$ robocopy command line
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