我正在寻找可以返回boolean
0
,1
或true
或false
的代码,以便它可以识别如果有人通过点击X
答案 0 :(得分:2)
打开VBA编辑器,然后继续ThisWorkbook
(在IDE左侧的项目树中),您将访问工作簿事件的代码。
然后,从左上角下拉菜单中选择BeforeClose
对象后,从右上角的下拉列表中选择事件Workbook
,您将在模块上获得以下代码:
Private Sub Workbook_BeforeClose(Cancel As Boolean)
End Sub
每次有人试图关闭工作簿时都会调用该宏。 在那里,您可以设置一个全局变量来控制操作,例如:
someoneIsClosing = True '<-- this is a globally defined variable
Cancel = True '<-- if you want to cancel the closing action
myMacro '<-- if you want to go back to "myMacro", i.e. any macro of your project and delegate it from handling the event.