Microsoft Office 2007 宏 - 奇怪的行为。光标跳跃
我希望有人对此有一些见解。
我在第 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试在宏的持续时间内将屏幕更新设置为 false。
这不仅会隐藏宏运行时所做的各种屏幕跳转,而且如果不需要不断更新屏幕,宏也会运行得更快。
Try setting Screen Updating to false for the duration of the macro.
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.