Adding different values to a textbox.

  • Thread starter Thread starter daman
  • Start date Start date
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
 
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
 
Back
Top