Text Feild Adding

  • Thread starter Thread starter Raashid
  • Start date Start date
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
 
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
 
Back
Top