Text Feild Adding

R

Raashid

Good Morning,
I wand make calculation between text box to another text
box? how can and also i want change that value in to the
Table feild. Please help me
Thanks
Raashid
 
M

Michel Walsh

Hi,


You can capture the After update event of the CONTROL that just get
modified, and "push" the required modification. Note that in Access (by
opposition with VB6), a control modified through code does not fire the
AfterUpdate event of the control your modified by VBA code (that minimizes
possible "after_update loop", without having to supply extra logic to avoid
it).


Me.OtherControl = 1.07* Me.ThisControl



If you bind the other control to the field name of the table where it
should be store, "saving" the computed value will be automatic.




Hoping it may help,
Vanderghast, Access MVP
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top