Jump to content

Adding a 'space' between two variables


BALA
 Share

Recommended Posts

(Sorry about weird title, couldn't think of a good description that would fit.)

Global $inputREAL = GUICtrlRead($input) & GUICtrlRead($combo)

MsgBox( 0, "", $inputREAL)

I want to add a 'SPACE' between $input and $combo. Right now, if $input = "Hey" and $combo = "all!", $inputREAL = "Heyall!"

I want there to be a space between "Hey" and "all!"

[font="Comic Sans MS"]BA-LA[/font]http://ba-la.110mb.comJoin my community, CLICK HEREAlternative links to my site:http://www.ba-la.tkhttp://www.ba-la.co.nrContact me if you would like to help with some of my projects: joeythepirate@gmail.com
Link to comment
Share on other sites

(Sorry about weird title, couldn't think of a good description that would fit.)

Global $inputREAL = GUICtrlRead($input) & GUICtrlRead($combo)

MsgBox( 0, "", $inputREAL)

I want to add a 'SPACE' between $input and $combo. Right now, if $input = "Hey" and $combo = "all!", $inputREAL = "Heyall!"

I want there to be a space between "Hey" and "all!"

$input & ' ' & $combo
Link to comment
Share on other sites

Thanks, that's what I was thinking, I was afraid there was something wrong with the syntax, I guess not.

[font="Comic Sans MS"]BA-LA[/font]http://ba-la.110mb.comJoin my community, CLICK HEREAlternative links to my site:http://www.ba-la.tkhttp://www.ba-la.co.nrContact me if you would like to help with some of my projects: joeythepirate@gmail.com
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...