在读取的位置不要直接把文本全读出来
Open tempFile For Input As #1
Line Input #1, szbuf
text1.text=szbuf
Do While Not EOF(1)
Line Input #1, szbuf
text1.text=text1.text & vbcrlf & szbuf
Loop
rows = rows + 1
Text1.Text = ""
Open "c:\1.txt" For Input As 1
Do While (Not EOF(1))
Line Input #1, Data
i = i + 1
If i = rows Then
Exit Do
End If
Loop
Text1.Text = Data
Close 1
' 就是这里 怎么读取 text1文本的每行内容啊 因为有multiline属性为ture
End Sub