hi,
I can able to read the text file, following is the code for your reference......
In this code messagebox displays only the first line three times...... please let me know how to display each line in messagebox..... .
Thanks in advance.....
I can able to read the text file, following is the code for your reference......
Code:
Dim file As New System.IO.StreamReader("E:\Dialer.txt") Dim readLine As String = file.ReadLine Dim I As Integer = 1 Do Until file.ReadLine Is Nothing Dim s As String = readLine MessageBox.Show(s) I += 1 Loop
Thanks in advance.....
Comment