jeffbrubaker
Technical User
I have a form with subforms built from underlying queries. The form doesn't recalculate until after I leave Access, which could cause problems. Any way to get the form to recalculate immediately?
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Private Sub qty_Change()
Me.result.SetFocus
Me.result.Text = Me.rate * Me.qty
Me.qty.SetFocus
End Sub
'================================
Private Sub rate_Change()
Me.result.SetFocus
Me.result.Text = Me.rate * Me.qty
Me.rate.SetFocus
End Sub
[purple]Yeah! . . . . . and you have control! . . . .[/purple]GreekPatriot said:[blue]It works the way I would have never . . .[/blue]