Microsoft Office 2007 宏 - 奇怪的行为。光标跳跃

发布于 2024-09-19 18:10:01 字数 385 浏览 4 评论 0原文

我希望有人对此有一些见解。

我在第 1 页上有一个复选框,单击它时,它将启动一个宏和一个宏。将值插入第 10 页上的文本框。 简单

问题是,宏中的脚本正在查找第 5 页上另一个文本框的值以进行一些计算。每当我这样做

text5value = Val(oFFld("Text5").Result)

If (Val(oFFld("Text5").Result) = "") Then

光标会突然从第 1 页移动到第 5 页。对用户来说非常混乱。

每当我尝试获取文本框的值时,就会发生这种行为。无论该文本框位于当前文档中的何处,它都会跳转到该文本框。

请帮忙

I hope someone have some insight into this.

I have a check box on page 1 and when it's clicked, it will launch a macro & insert a value to a text box on page 10. Simple

The problem is, the script in the macro is looking for the value of another text box on page 5 to do some calculation. Whenever i do

text5value = Val(oFFld("Text5").Result)

or

If (Val(oFFld("Text5").Result) = "") Then

The cursor will suddenly move from page 1 to page 5. Very confusing to user.

This behavior happens whenever I try to get the value of a textbox. Wherever that textbox is in the current document, it will jump to it.

Please help

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

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

发布评论

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

评论(1

请你别敷衍 2024-09-26 18:10:01

尝试在宏的持续时间内将屏幕更新设置为 false。

Application.ScreenUpdating = False

这不仅会隐藏宏运行时所做的各种屏幕跳转,而且如果不需要不断更新屏幕,宏也会运行得更快。

Try setting Screen Updating to false for the duration of the macro.

Application.ScreenUpdating = False

Not only will this hide the various screen jumps it is doing while the macro runs, the macro will also run faster if it doesn't have to constantly update the screen.

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