IanN1990 20 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 Share this post Link to post Share on other sites
Exit 149 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() Share this post Link to post Share on other sites
IanN1990 20 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 Share this post Link to post Share on other sites