Hi all,

How can I read the the .csv file and display the particular string (channel 1) in textbox?

say I have write into a .csv file using code below

SW = File.CreateText("C:\" & "test" & ".csv")
SW.Write("Channel 1, Channel 2, Channel 3, Channel 4, Channel 5, Channel 6, Channel 7, Channel 8")
SW.Close()

Cheyne