Just to add to my response, below is a simple example of how to open the file for read access using the StreamReader Class:
Dim fs As New FileStream(fileName, FileMode.Open, FileAccess.Read, FileShare.ReadWrite) Dim sr As New StreamReader(fs)
Paul ~~~~ Microsoft MVP (Visual Basic)