It seems like in order to use "TextFieldParser " you need to include the path of the file to be parsed. Is it possible to use OpenFileDialog1 and then choose a file? I keep getting error messages.
-------------------------------
Public Class Form1
Private Sub btnOpen_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnOpen.Click
Dim openFileDialog1 As New OpenFileDialog()
Using MyReader As New Microsoft.VisualBasic.FileIO.TextFieldParser(openFileDialog1.InitialDirectory = "C:\Users\Documents\")
--------------------------
-------------------------------
Public Class Form1
Private Sub btnOpen_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnOpen.Click
Dim openFileDialog1 As New OpenFileDialog()
Using MyReader As New Microsoft.VisualBasic.FileIO.TextFieldParser(openFileDialog1.InitialDirectory = "C:\Users\Documents\")
--------------------------