如何在调试 window [MS-Access] 中禁用错误消息
How to disable error message in debug window [MS-Access]
我有一个带有未绑定文本框的表单。
在控件的 ControlSource 中,我有一个 RowNum() 函数来显示连续形式的行数。
当我打开表单时,调试 window:
中出现一条错误消息
RowNum() error 7951
出现此错误是因为我还没有任何 RecordSource。
单击按钮后,我将设置表单的 RecordSource。
有没有办法在我打开表单时禁用调试 window 中的错误消息,而不是在关闭表单时启用错误消息?
我试过:
Application.SetOption "Unassociated Label and Control Error Checking", False
和
Application.SetOption " Invalid Control Properties Error Checking", False
但是没用。
感谢任何建议。
感谢社区在评论部分的帮助,我能够在出现 Debug.Print
的此函数的错误处理程序中捕获错误。
我有一个带有未绑定文本框的表单。 在控件的 ControlSource 中,我有一个 RowNum() 函数来显示连续形式的行数。 当我打开表单时,调试 window:
中出现一条错误消息RowNum() error 7951
出现此错误是因为我还没有任何 RecordSource。 单击按钮后,我将设置表单的 RecordSource。
有没有办法在我打开表单时禁用调试 window 中的错误消息,而不是在关闭表单时启用错误消息?
我试过:
Application.SetOption "Unassociated Label and Control Error Checking", False
和
Application.SetOption " Invalid Control Properties Error Checking", False
但是没用。
感谢任何建议。
感谢社区在评论部分的帮助,我能够在出现 Debug.Print
的此函数的错误处理程序中捕获错误。