Alynuzzu Posted August 30, 2008 Posted August 30, 2008 Hi , I have a problem. I am working with autoit 3 and I don`t know how to save in one variabile some vectors. variabiles is used as character I need help , the structure is ------------ $n=12 for $i=1 to $n $char = $char + $v[$i] next ------------ Advanced thank`s you!!!
Andreik Posted August 30, 2008 Posted August 30, 2008 (edited) You should define initial value for $char. $n=12 $char = "" for $i=1 to $n $char = $char & $v[$i] next If $v is string you must replace + with & Edited August 30, 2008 by Andreik
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