Private Sub CommandButton1_Click()
'讀入壹個ANSI編碼的文本文件,並顯示在textbox中
On Error GoTo errhand
ipath = ThisWorkbook.Path & "\test.txt"
Open ipath For Input As #1
TextBox1.MultiLine = True
TextBox1.Value = StrConv(InputB(LOF(1), 1), vbUnicode)
Close #1
Exit Sub
errhand:
If Err.Number = 53 Then
MsgBox "當前工作薄目錄下未找到test.txt"
Else
MsgBox "未知錯誤!"
End If
End Sub