MS Access 2003 - 有关文本框控制源的表单问题
如何将控制源写入VBA而不是属性窗口中
例如,如果我有一个文本框,它在其他文本框中划分两个金额,那么我将输入
=[textboxA]/[textboxB]
属性窗口的控制源。我如何在VB中完成这个,以便我可以通过事件触发它?我知道它不一样,因为我已经尝试过了。
How can I write the control source into VBA instead of in the properties window
For example if I have a textbox that divides two amounts in other text boxes, then i put
=[textboxA]/[textboxB]
in the control source of the properties window. how do i accomplish this in vb so that I can trigger it by events?? i know it is not the same because I already tried that.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这取决于您到底想做什么。如果您想将
textboxA / textboxB
的当前值放入textboxC
,请使用:另一方面,如果您想设置 < code>control source 属性,以便自动更新值,使用:
(代码未经测试,我现在没有可用的 Access。)
That depends on what exactly you want to do. If you want to put the current value of
textboxA / textboxB
intotextboxC
, use:On the other hand, if you want to set the
control source
property so that the value is updated automatically, use:(Code untested, I don't have Access available right now.)