我想在VB脚本中运行Excel宏,但是没有VBA会给出运行时错误提示,即使该宏有未被捕获的运行时错误。
理想情况下,我想捕获实际的运行时错误消息,但我很高兴能够在不与对话框交互的情况下恢复脚本。
这是我所说的最简单的例子。
test.vbs:
Option Explicit
Dim Excel: set Excel = CreateObject("Excel.Application")
Dim wb: set wb = Excel.Workbooks.Open("C:\Temp\test.xls")
On Error Resume Next
Excel.run "Hello"
On Error Goto 0
wb.Close
Excel.Quit
在名为test.xls的Excel电子表格的module1中:
Option Explicit
Sub Hello()
Dim x As Integer
x = 1 / 0 ' Just causing an error for this example's purposes
End Sub
关于这个问题背后的动机的简短解释。这是一个自动化任务,除了我无法更改需要自动化的宏的代码,因此我无法控制我调用的宏是否会发生未被捕获的运行时错误。
Stackoverflow上有许多关于使用VB脚本运行Excel宏的问题,但是我找不到任何能够抑制VBA运行时错误提示的地址。
答案 0 :(得分:1)
请在In rountine
之后继续错误继续下一步选项明确
Sub Hello()
On Error Resume Next
' Please include the error statement after sub routine.
Dim x As Integer
x = 1 / 0 ' Just causing an error for this example's purposes
End Sub