Private Sub Command1_Click()
Dim TextLine, llRow As Long
llRow = 0
Open "c:\123.txt" For Input As #1 ' 打开文件。
Do While Not EOF(1) ' 循环至文件尾。
llRow = llRow + 1
Line Input #1, TextLine ' 读入一行数据并将其赋予某变量。
If llRow = 2 Then
text1 = Right(Trim(TextLine), 4)
Exit Do
End If
Loop
Close #1 ' 关闭文件。
End Sub