Application.OnTime未执行 [英] Application.OnTime not executed

查看:325
本文介绍了Application.OnTime未执行的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我试图在ThisWorkbook模块中的Workbook_Close例程中取消定时器。任何人都可以解释以下行为:

I am trying to cancel a timer in the Workbook_Close routine in the ThisWorkbook module. Can anyone explain the following behaviour?:

手动关闭工作簿
Application.OnTime函数为预期并取消定时器。
如果我尝试多次杀死相同的计时器,或者不存在定时器,我会收到错误

Closing the workbook manually Application.OnTime functions as expected and cancels the timer. If I try to kill the same timer more than once, or a non-existent timer, I get an error


错误:1004:对象'_Application'的方法'OnTime'失败

ERROR: 1004: Method 'OnTime' of object '_Application' failed

对我来说,这是证明该函数正常工作的证据。

To me, this is supporting evidence that the function is working properly.

使用ThisWorkbook关闭工作簿关闭
定时器不会被事实证明那就是:

Closing the Workbook using ThisWorkbook.Close The timer is not killed as evidenced by the facts that:


  1. 当定时器到期时,工作簿重新打开

  2. VBA不会抛出任何错误如果相同的计时器多次被杀死

  3. VBA不会在尝试杀死不存在的计时器时发生错误

其他上下文

Further Context

应用程序。对我来说,这表示应用程序对象仍然被加载,并且VBA运行时仍然正常运行。

Application.Run fires as expected in both cases. To me this indicates that the Application Object is still loaded and the VBA Runtime is still functioning properly.

测试代码

Test Code

在标准模块中称为minUnit

In a standard Module called minUnit

Private Sub testCallBack(name As String, nextTime As String)
  MsgBox "callback " & name & " " & nextTime
End Sub

Public Function sProcedure(callBackProcedure As String, mName As String, nextTime As Date) As String
' Constructs a properly formatted string to feed to OnTime for a call back with two parameters
  sProcedure = "'" & callBackProcedure & " " & """" & mName & """," & """" & fmtTime(nextTime) & """'"
End Function

Private Sub testTimerSet()
  gnextTime = Now() + TimeSerial(1, 0, 0)
  Application.OnTime gnextTime, sProcedure("Globals.testCallBack", _
                                            "testTimer", gnextTime)
End Sub

Public Sub testTimerKill()
  On Error Resume Next
  Application.OnTime gnextTime, sProcedure("Globals.testCallBack", _
                                           "testTimer", gnextTime), _
                                          , False
End Sub

在ThisWorkbook中

In ThisWorkbook

Private Sub Workbook_BeforeClose(Cancel As Boolean)

  Globals.testTimerKill
  Globals.testTimerKill
  Globals.testTimerKill

  On Error Resume Next

  Application.OnTime 0, "Nothing", , False

  Application.Run sProcedure("minUnit.testCallBack", "Application.Run", Now())

  Application.OnTime Now(), sProcedure("minUnit.testCallBack", "Application.OnTime Now()", Now()), , True

End Sub

Sub closeWorkbook()
    ThisWorkbook.Close
End Sub

跟踪手动关闭(按预期方式抛出错误).. 。

Trace for manual closing (errors thrown as expected)...


20:27:07:206 minUnit.testTimerSet:  START
20:27:07:209  Application.OnTime 'minUnit.testCallBack "testTimer","21:27:07"'                     :0.003532
20:27:07:212 minUnit.testTimerSet:  END                                                            :0.006447

20:27:13:618 minUnit.testTimerKill:  START
20:27:13:621 minUnit.testTimerKill:  END                                                           :0.003337

20:27:21:240 minUnit.testTimerSet:  START
20:27:21:244  Application.OnTime 'minUnit.testCallBack "testTimer","21:27:21"'                     :0.004301
20:27:21:246 minUnit.testTimerSet:  END                                                            :0.006274

20:27:33:946 ThisWorkbook.Workbook_BeforeClose:  START
20:27:33:949  minUnit.testTimerKill:  START
20:27:33:951  minUnit.testTimerKill:  END                                                          :0.001921
20:27:33:953  minUnit.testTimerKill:  START
20:27:33:957  minUnit.testTimerKill:  END
20:27:33:957**ERROR: 1004: Method 'OnTime' of object '_Application' failed                         :0.002433
20:27:33:963  minUnit.testTimerKill:  START
20:27:33:967  minUnit.testTimerKill:  END
20:27:33:967**ERROR: 1004: Method 'OnTime' of object '_Application' failed                         :0.002230
20:27:33:972  Application.OnTime 0, "Nothing", , False
20:27:33:972**ERROR: 1004: Method 'OnTime' of object '_Application' failed                         :0.024134
20:27:33:977  Application.Run 'minUnit.testCallBack "Application.Run","20:27:33"'                  :0.031184
20:27:33:983  minUnit.testCallBack:  START
20:27:35:995  minUnit.testCallBack:  END                                                           :2.012402
20:27:35:997  Application.OnTime Now() 'minUnit.testCallBack "Application.OnTime Now()","20:27:35"':2.051651
20:27:35:999 ThisWorkbook.Workbook_BeforeClose:  END                                               :2.053604


通过运行closeWorkbook(应该在20:30:11:979中抛出第一个错误)关闭的跟踪...

Trace for closing with .Close by running closeWorkbook (should have thrown the first error at 20:30:11:979)...


20:29:48:201 minUnit.testTimerSet:  START
20:29:48:204  Application.OnTime 'minUnit.testCallBack "testTimer","21:29:48"'                     :0.003342
20:29:48:206 minUnit.testTimerSet:  END                                                            :0.005207

20:29:51:942 minUnit.testTimerKill:  START
20:29:51:945 minUnit.testTimerKill:  END                                                           :0.002946

20:29:55:444 minUnit.testTimerSet:  START
20:29:55:448  Application.OnTime 'minUnit.testCallBack "testTimer","21:29:55"'                     :0.003535
20:29:55:450 minUnit.testTimerSet:  END                                                            :0.005446

20:30:11:966 ThisWorkbook.closeWorkbook:  START
20:30:11:971  ThisWorkbook.Workbook_BeforeClose:  START
20:30:11:973   minUnit.testTimerKill:  START
20:30:11:975   minUnit.testTimerKill:  END                                                         :0.001994
20:30:11:979   minUnit.testTimerKill:  START
20:30:11:981   minUnit.testTimerKill:  END                                                         :0.001847
20:30:11:983   minUnit.testTimerKill:  START
20:30:11:986   minUnit.testTimerKill:  END                                                         :0.002271
20:30:11:988   Application.OnTime 0, "Nothing", , False                                            :0.016905
20:30:11:991   Application.Run 'minUnit.testCallBack "Application.Run","20:30:11"'                 :0.019140
20:30:11:996   minUnit.testCallBack:  START
20:30:13:976   minUnit.testCallBack:  END                                                          :1.979131
20:30:13:977   Application.OnTime Now() 'minUnit.testCallBack "Application.OnTime Now()","20:30:13"':2.005963
20:30:13:985  ThisWorkbook.Workbook_BeforeClose:  END                                              :2.013265



推荐答案

我做了一些修改。为了测试的目的,我们只需要一个msgbox来注意该程序是否已正常运行/停止。

I have made some modifications. For testing purposes we only need a msgbox to notice whether the routine has been run/stopped correctly.

在标准模块中:

Option Explicit
Public dTime As Date ' Needs to be a public/global variable

Public Sub TimerStart()
    dTime = Now() + TimeSerial(0, 0, 5)
    Application.OnTime dTime, "TimerStart"

    MsgBox "Callback " & TimeValue(dTime)
End Sub

Public Sub TimerKill()
    On Error Resume Next
    Application.OnTime dTime, "TimerStart", , False
End Sub

Public Sub CloseWB()
    TimerKill
    ThisWorkbook.Close SaveChanges:=True
End Sub

在ThisWorkbook模块中:

In ThisWorkbook module:

Option Explicit

Private Sub Workbook_BeforeClose(Cancel As Boolean)
    Run "CloseWB"
End Sub

Private Sub Workbook_Open()
    Run "TimerStart"
End Sub

这对我有用。以下情况已经测试:

This works for me. Following scenarios have been tested:


  • 手动运行TimerSet等待几个msgbox>手动运行TimerKill。

  • 手动运行TimerSet等待几个msgbox>关闭工作簿

  • 打开工作簿>等待几个msgbox>关闭工作簿。

  • 打开工作簿>等待几个msgbox>使用CloseWB宏关闭工作簿

  • Run "TimerSet" manually > Wait for a few msgboxes > Run "TimerKill" manually.
  • Run "TimerSet" manually > Wait for a few msgboxes > Close workbook.
  • Open workbook > Wait for a few msgboxes > Close workbook.
  • Open workbook > Wait for a few msgboxes > Close workbook using the CloseWB macro.

我发现了是:


  • 从Workbook_BeforeClose 运行TimerKill不起作用。该工作簿重新开放。

  • 从Workbook_BeforeClose 工作运行CloseWB。

  • Running "TimerKill" from Workbook_BeforeClose does not work. The workbook reopens.
  • Running "CloseWB" from Workbook_BeforeClose works.

很抱歉,我无法解释为什么 。但是,现在应该适合你。

I'm sorry I can't explain why this is. However, it should work for you now.

这篇关于Application.OnTime未执行的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆