Open App.Path & "\Ket.txt" For Input As #1
Do While Not EOF(1)
Line Input #1, sStr
colTmp.Add sStr
Loop
Close #1
For i = 2 To 7
Debug.Print colTmp(i)
Next i
请问是否有直接读取的方法? 作者:
wshzw 时间: 2008-4-20 16:44
原来 Nothing 在2楼已经讲得很清楚了,我没理解透。
代码如下就避免了3楼那样多拐了一个弯:
Dim sStr$, i%
Open App.Path & "\Key.txt" For Input As #1
Do While i < 7 And Not EOF(1)
i = i + 1
Line Input #1, sStr
If i >= 2 And i <= 7 Then
Debug.Print sStr
End If
Loop
Close #1
谢谢 Nothing 作者:
Nothing 时间: 2008-4-29 17:20