IanN1990 Posted June 9, 2012 Posted June 9, 2012 (edited) Just a quick question, Lets say i have this code $Store = "Test " $Store2 ="Test 2" $Store3 = $Store + $Store2 ConsoleWrite($Store3) How do i make it so $Store3 will output as "Test Test2" ? Edited June 9, 2012 by IanN1990
Exit Posted June 9, 2012 Posted June 9, 2012 (edited) $Store = "Test " $Store2 ="Test 2" $Store3 = $Store & $Store2 ; ampersand ConsoleWrite($Store3) Edited June 9, 2012 by forumer100 App: Au3toCmd UDF: _SingleScript()
IanN1990 Posted June 9, 2012 Author Posted June 9, 2012 Hahaha ^^ I knew the answer was going to be simple, but not that simple Thanks for your help and fast reply
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