display this comma delimited text ??

  • Thread starter Thread starter Ron
  • Start date Start date
R

Ron

so if my textbox is named textbox1 and my listbox is named
ltsdisplay, for the button that would make this all happen I would
just need to:

lstdisplay.items.textbox1(delimited.Split(",".ToCharArray()))


is that right? or no? I try this and I get an error...


On Feb 26, 5:20 pm, "Herfried K. Wagner [MVP]" <hirf-spam-me-



- Hide quoted text -
- Show quoted text -
 
OK I figured it out.
lstdisplay.Items.AddRange(TextBox1.Text.Split(",".ToCharArray()))

now is there a way for me to insert something before each line for
example:

FIRST NAME: then the delimited text
LASTNAME: then the delimited text
etc..

?
 
Back
Top