consatenate text fom combobox & textbox

  • Thread starter Thread starter Ivan Jericevich
  • Start date Start date
I

Ivan Jericevich

I want to join the text from a combobox and a textbox preferably with a
space between, as string
 
Ivan said:
I want to join the text from a combobox and a textbox preferably with a
space between, as string

dim s as string
s = combobox.text & " " & textbox.text

or

s = string.format ("{0} {1}", combobox.text, textbox.text)

lot's of ways to do this :) I would take the first option for simple
cases, but the second can be usefull if you need formating options.
 
Back
Top