Hi!
Скажите пожайлуста как прочитать сразу 4-ю строку текстового файла.
Необходимо прочитать 1955.
например:
"Иванов", "Иван", 1955
спасибо всем заранее.
Dim str As String
dim nStr as Long
nStr=4
Open "text.txt" For Input As 1
For i = 1 To nStr
Input #1, str
If i = nStr Then MsgBox str
Next
Close #1
Open "text.txt" For Input As 1
Input #1, a, s, d, str
MsgBox str
Close #1
Dim sss as string
Open "C:\test.txt" For Input As #1
sss = Input(LOF(1), 1)
Close #1
Dim aaa() As String
aaa() = Split(sss, vbCrLf)
MsgBox aaa(3)
Dim s as string
dim i as integer
Open "C:\test.txt" For Input As #1
for i = 1 to 4
line input #1,s
next
Close #1
Сейчас этот форум просматривают: Google-бот, Yandex-бот и гости: 139