Hi Wendy,
Not too sure on your question, but you can use Requery on most objects and
controls to get the latest information. For e.g.
To update a form:
Me.Requery
or
Forms!FormName.Requery
To update a control
Me.ControlName.Requery
or
Forms!FormName!ControlName.Requery
If you want to run the AfterUpdate event for a control from another
procedure then this is also possible. Say you have a textbox named
txtFirstName. The after update event for this control would look like:
Private Sub txtFirstName_AfterUpdate()
' Code for procedure goes here
End If
To run this code from anywhere else you would call it
Call txtFirstName_AfterUpdate
or
txtFirstName_AfterUpdate
Call is not required for this to work - more typing but easier to read. Its
up to you which way you do it.
HTH,
Neil.