Jump to content

question about $variables


Recommended Posts

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...

CODE
GUICtrlCreateListViewItem($variables"|"$variables"|"$variables"|"$variables, $variables)

You can always count on me for the dumb questions ;)My Scripts:Rikku

Link to comment
Share on other sites

  • Moderators

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.

Link to comment
Share on other sites

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...