开发者

MS Access 2003 - Form question about a control source of a text box

开发者 https://www.devze.com 2022-12-16 07:20 出处:网络
How can I write the control source into VBA instead of in the properties windo开发者_Go百科w For example if I have a textbox that divides two amounts in other text boxes, then i put

How can I write the control source into VBA instead of in the properties windo开发者_Go百科w

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.


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.)

0

精彩评论

暂无评论...
验证码 换一张
取 消