nonplayablecharacter Posted August 13, 2008 Posted August 13, 2008 i need to seperate these to put them in seperate columns with this thing: ||||||||||||||||||||||| but i tried a few things but they don't work because the variables wont work... CODEGUICtrlCreateListViewItem($variables"|"$variables"|"$variables"|"$variables, $variables) You can always count on me for the dumb questions ;)My Scripts:Rikku
Moderators SmOke_N Posted August 13, 2008 Moderators Posted August 13, 2008 You'll need to concatenate the string with an ampersand. Dim $s_one = "1", $s_two = "2" Dim $s_var_example = $s_one & "|" & $s_two MsgBox(64, "Info", $s_var_example) Common sense plays a role in the basics of understanding AutoIt... If you're lacking in that, do us all a favor, and step away from the computer.
nonplayablecharacter Posted August 13, 2008 Author Posted August 13, 2008 You'll need to concatenate the string with an ampersand.thx forgot about that... You can always count on me for the dumb questions ;)My Scripts:Rikku
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