我想在某些到期时间/日期后打开 PPT 文件时关闭我的 power point 演示文稿。我们需要它在 VBA 中使用宏。
下面的代码我们正在尝试执行上述要求。
///////////////////////
Sub Auto_Open()
ExpirationCode
End Sub
Sub ExpirationCode()
Dim ExpirationDate As Date
ExpirationDate = DateSerial(2011, 5, 8)
MsgBox "Check1"
If Now() >= ExpirationDate
Then
Application.Windows(1).Close
MsgBox "Check2"
End If
End Sub