Public Sub tt()
On Error GoTo errs
Dim i As Integer
i = CInt("abc")
errs:
MsgBox "error"
End Sub
这段程序代码没有捕捉到错误而是有程序自己报错了求指教