HI I need a little help.
Part of my Problem:
- First, Read a text file.
- Add the items from text file into TextBox and ListBox.
Sample Data in my text file is like this:
A;Cat;Dog;Rat;Bird
Where, ";" is the Delimiter and data is just one line only.
"A" has to load in TextBox and "Cat,.....,Bird" has to load in ListBox, one line per animal.
I've already read the text file and load "A" into text box.
But couldn't figure out how to load rest of the data into list box.
Any help would be great.