MS Access 2003 - 有关文本框控制源的表单问题

发布于 2024-08-17 09:32:05 字数 179 浏览 5 评论 0原文

如何将控制源写入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 技术交流群。

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

发布评论

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

评论(1

娇俏 2024-08-24 09:32:05

这取决于您到底想做什么。如果您想将 textboxA / textboxB当前值放入 textboxC,请使用:

Me!textboxC.Value = Me!textboxA.Value / Me!textboxB.Value

另一方面,如果您想设置 < code>control source 属性,以便自动更新值,使用:

Me!textboxC.ControlSource = "=[textboxA]/[textboxB]"

(代码未经测试,我现在没有可用的 Access。)

That depends on what exactly you want to do. If you want to put the current value of textboxA / textboxB into textboxC, use:

Me!textboxC.Value = Me!textboxA.Value / Me!textboxB.Value

On the other hand, if you want to set the control source property so that the value is updated automatically, use:

Me!textboxC.ControlSource = "=[textboxA]/[textboxB]"

(Code untested, I don't have Access available right now.)

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