Guest weirdwes Posted December 13, 2003 Share Posted December 13, 2003 This is what I want to do and I am not sure how to go about it. $firstname = "Agent" $lastname = "J" $fullname = $firstname + $lastname msgbox(0,"your name is",$fullname) Any help would be greatly appreciated. Link to post Share on other sites
scriptkitty 1 Posted December 14, 2003 Share Posted December 14, 2003 I would probly use: $fullname = $firstname & " " & $lastname I like to see: $First="Bob" $Last="Smith" $Fullname="Bob Smith" instead of: $Fullname="BobSmith" or $fullname = $lastname & ", " & $firstname $Fullname="Smith, Bob" AutoIt3, the MACGYVER Pocket Knife for computers. Link to post Share on other sites
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