I Ivan Jericevich Dec 30, 2006 #1 I want to join the text from a combobox and a textbox preferably with a space between, as string
T Tom Shelton Dec 30, 2006 #2 Ivan said: I want to join the text from a combobox and a textbox preferably with a space between, as string Click to expand... 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.
Ivan said: I want to join the text from a combobox and a textbox preferably with a space between, as string Click to expand... 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.