Adding different values to a textbox.

D

daman

I have a question. Is there a way to add several values
to a textbox? In my case the values are numbers but I do
not want the addition of the values. I need the textbox
to show me the values individual separated by a comma.
for example. mytextbox = val1, val2, val3

Any help will be grealty appreciated,

Thanks
 
R

Rick Brandt

daman said:
I have a question. Is there a way to add several values
to a textbox? In my case the values are numbers but I do
not want the addition of the values. I need the textbox
to show me the values individual separated by a comma.
for example. mytextbox = val1, val2, val3

mytextbox = val1 & ", " & val2 & ", " & val3
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top