Is there a way to handle quotes with a field in text tab delimited file
example:

"This program works "really" nicely and is helpful"

my reading and understand thus far is that while the file is tab delimited fields can also begin and end with quotes. Therefore is a field contains a quote it gets interpreted as end of field

code Code:
  1. Dim sql As String = String.Format("Select * From {0} WHERE " & Status & " <> @Status AND [" & SubjId & "] <> @SubjAdd ", safeFileName)
  2.         '    Dim comm As New OleDb.OleDbCommand(sql, con)
  3.         '    comm.Parameters.AddWithValue("@Status", Form11.Closed_Code.Text)
  4.         '    comm.Parameters.AddWithValue("@SubjAdd", 111111)
  5.         '    Dim dalist As New OleDbDataAdapter(comm)
  6.         '    dalist.Fill(dtlist)