The following functions is for reading/writing the entire file content. Imports system.io Public Shared Function ReadTextFromFile(ByVal FullPath As String, _Optional ByRef ErrInfo As String = “”) As String Dim strContents As StringDim objReader As StreamReaderTryobjReader = New StreamReader(FullPath)strContents = objReader.ReadToEnd()objReader.Close()Return strContentsCatch Ex As ExceptionErrInfo = Ex.MessageEnd TryEnd Function Public Shared Function SaveTextToFile(ByVal strData As String,