我试图阻止 excel 工作簿根据复选框的状态关闭。
我放置在“ThisWorkbook”中的示例代码:
Private Sub Workbook_BeforeClose(Cancel As Boolean)
If CheckBox0.Value = "FALSE" Then
b = MsgBox("Are you sure that you want to submit?", vbYesNo)
End If
If b = vbNo Then Cancel = True
End Sub
目前,我收到运行时错误 424 ,需要对象,并且调试点位于 IfCheckBox0.Value.....
行。
我不确定我做错了什么,而且我不是普通的 VBA 用户。
请帮忙。