refresh tbox value

R

ryan.fitzpatrick3

I have a textbox where I input a number. I want it to refresh another
tbox that calculates a formula

would it be

Private Sub tboxbatchsize_AfterUpdate()
Refresh me.tboxpercofcomptotal
End Sub


tboxpercofcomptotal is the tbox name that is to be refreshed.
 
J

Jeff Boyce

Another possibility might be to use:

Me.Repaint

Regards

Jeff Boyce
Microsoft Office/Access MVP
 
Top