En .Net abrir un fichero de texto es muy facil.
Declararemos tres variables:
Dim oFile As System.IO.File
Dim oRead As System.IO.StreamReader
Dim EntireFile As String
oFile es una variable de tipo fichero, oRead nos sirve para leer el fichero y EntireFile es donde se almacenarça el fichero en una variable tipo texto.
oRead = oFile.OpenText(PathDelFichero)
EntireFile = oRead.ReadToEnd()
Ya tenemos el fichero cargado en la variable texto.
sacado de:
http://www.mistrucos.net/trucos/truc...o=303&Pagina=1