Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
这是一个愚蠢的问题,但我想遍历表单上的控件列表并更改它们的值。当我这样做时,它实际上显示了所有控件的变化。这为我的执行增加了很多时间。有没有办法关闭这个功能?
这表明您正在使用未绑定的表单。也许您应该考虑更改为绑定表单并更新记录以更改值。
您还可以隐藏表单,仅在更改完成时显示。
您可以使用 Application.Echo 方法:
Application.Echo False 'Do something Application.Echo True
只是不要忘记将 Application.Echo True 添加到您的错误处理程序中。