erezlevi Posted January 18, 2008 Posted January 18, 2008 hi, how can I create numbers with leading zero's like: $z=000001 $q=000002 and to increment them using a $var by one so $z becomes 000002 and $q 000003 ?
DjDeep00 Posted January 18, 2008 Posted January 18, 2008 $Start=000001 MsgBox(4096,"",StringFormat("%05d", $Start + 10))
erezlevi Posted January 18, 2008 Author Posted January 18, 2008 $Start=000001 MsgBox(4096,"",StringFormat("%05d", $Start + 10)) Thanks, it is working here it is in an Array: $Start = 000 For $o = 1 To 250 _ArrayInsert($E, $o, StringFormat("%03d", $Start + $o)) Next _ArrayDisplay($E)
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