convert ascii delimited file into listview with split function?
If openFileDialog1.ShowDialog() = System.Windows.Forms.DialogResult.OKThen
myStream = openFileDialog1.OpenFile() If (myStreamIsNotNothing)ThenParseFile(myStream)
EndIfI am wanting to open a pipe delimited ascii file and parse all the elements into a list view.
The first row of the file will contain the column names (also delimited by pipes).Rows are delimited by CR/LF.
I believe the split function will be the mechanism...but has anyone done this?
Thank you.
Greg

