Access 2010 Web 数据库 - 从本地变量更新文本框值?
如何将文本框值更改为局部变量中的值?
我有表达式生成器和宏 - 但没有 VBA 宏,因为似乎无法在访问 Web 表单上使用 VBA 宏。
How do I change a textbox value to the one I have in a local variable?
I have expression builder and macros - but not the VBA macros as there seems to be no way of having VBA macros on access web forms.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用宏将 Web 表单上的控件的值设置为局部变量。
下面是一个基本示例(Access 2010 宏是用 XML 编写的)。有两个代码块 - 一个用于设置局部变量,另一个用于设置文本框的值。
并且:
有关 UI 宏的基本概述,请观看此视频:http://office.microsoft.com/en-us/access-help/video-create-a-user-interface-ui-macro-VA101814109.aspx
有关 SetProperty 的详细信息,请参阅 http://msdn.microsoft.com/en-我们/library/ff194340.aspx
You can use a macro to set the value of a control on a web form to a local variable.
Here is a basic example (Access 2010 macros are written in XML). There are two code blocks - one that sets the local variable, and one that sets the value of the text box.
And:
For a basic overview of UI macros, watch this video: http://office.microsoft.com/en-us/access-help/video-create-a-user-interface-ui-macro-VA101814109.aspx
For more information about SetProperty, see http://msdn.microsoft.com/en-us/library/ff194340.aspx