Set A = Sheets(4)
If A Is Nothing Then
res = MsgBox("找不到該sheet" & vbCrLf & "動作中止", vbOKOnly + vbCritical)
Exit Sub
End If作者: GBKEE 時間: 2011-11-23 15:34
本帖最後由 GBKEE 於 2011-11-23 15:37 編輯
回復 1#lorlcool
'On Error Resume Next 前面的紅點是註解 程式就不會執行
Option Explicit
Sub Ex()
Dim A As Worksheet
On Error Resume Next
AA:
Set A = Sheets(4)
If A Is Nothing Then
If MsgBox("找不到該sheet" & vbCrLf & "動作中止", vbYesNo + vbCritical) = vbYes Then