如何用vb读入txt文件中的任意某一行的内容?

2025-01-24 02:47:07
推荐回答(1个)
回答1:

Open "D:\123.txt" For Input As #1
While Not EOF(1)
N = N + 1
Line Input #1, S
If N = 3 Then Print S 'N=3 表示读取第3行
Wend
Close #1