是否可以跟踪事件处理程序触发时的顺序?

发布于 2024-07-29 11:02:20 字数 204 浏览 6 评论 0原文

使用 Excel 2002 并拥有一个包含一些用户窗体的 VBA“应用程序”。 主用户窗体包含许多触发各种 Enter/Exit 事件的文本框。

我现在遇到一个问题,其中一个文本框退出事件连续触发 2 次(我知道,因为每次都会出现一个消息框)。

Excel VBA 中是否有某种方法可以跟踪所有触发的事件及其顺序,而无需在每个事件/过程中编写代码?

Using Excel 2002 and have a VBA "app" that has some UserForms.
The main UserForm contains a number of textboxes that fire various Enter/Exit events.

I am now running into a issue where one of the textbox exit events fires 2x in a row (I know because a messagebox appears each time).

Is there some means within Excel VBA to track all the events that fire and their sequence without writing code in every event/procedure?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

习ぎ惯性依靠 2024-08-05 11:02:24

不知道您问题的答案,但插入此代码将有助于防止触发不需要的事件:

Application.EnableEvents = False   'avoid self firing events

  'run your code....

Application.EnableEvents = True    're-enable events

Don't know the answer to your question, but inserting this code will help prevent firing unwanted events:

Application.EnableEvents = False   'avoid self firing events

  'run your code....

Application.EnableEvents = True    're-enable events
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文