Hi!
I have big problem..I don't know how to read delimited file line by line.
for example:
my csv file looks like this
Michael;Jackson;Beat it;
Jay;Kay;Supersonic;Cosmic Girl;Star Child;
.
.
.
etc
.
program has to:
take name and put it into texbox1
take last name and put it into textbox2
Songs (each song) should be shown in messagebox. (list of songs may vary for each artists (from 1-20)
I dunno how to read delimited file line by line...(beginning of the line starts the process again for each line)
1,2,3,4
1,2,4,5,6,7,8
1,2
1,2,3
thx for help in advance!