Ver Mensaje Individual
  #10 (permalink)  
Antiguo 16/06/2008, 10:39
Avatar de SOFT2k
SOFT2k
 
Fecha de Ingreso: junio-2008
Mensajes: 5
Antigüedad: 16 años, 5 meses
Puntos: 0
Respuesta: Leer una linea completa de un archivo de texto

Podrías hacer:

Using Lector As New StreamReader("Ruta y nombre del archivo")
Dim Linea As String

While Lector.EndOfStream = False
Linea = Lector.ReadLine()
If Linea.Contains("ERROR") Then
'acá podes llamar a una función que haga algo
End If
End While

End Using