Hi guys,
I have a txt file that only read the first or only one line line and then skip and not scan the rest of the file. I use vb6.
I use the following code:
I attached the txt that I am using.
Someone can help me on this please?
I have a txt file that only read the first or only one line line and then skip and not scan the rest of the file. I use vb6.
I use the following code:
Code:
Dim cont, n_fil As Integer Dim mivariable As String n_fil = FreeFile Open App.Path & "\EM.txt" For Input As #n_fil While Not EOF(n_fil) Line Input #n_fil, mivariable cont = cont + 1 Wend Close #n_fil
Someone can help me on this please?
Comment