P
pdit
I have a combo box that I use to locate records in a form. I'm far (very far)
from an access export so I'm confused on why when I enter a new record, only
I am able to advance to the correct record. Others on the network are able to
see the name in the combo box but when they select it, it does not advance
the form to that name until they close out of the database and go back in.
Here is my code for the combo box. Is there something else I can add to make
the form refresh or requery (whichever one applies). The name of the form is
Arrest table Query.
Private Sub cboFindArrestID_AfterUpdate()
Me.cboFindArrestID.Requery
DoCmd.GoToControl "ArrestID"
DoCmd.FindRecord cboFindArrestID
DoCmd.GoToControl "LastName"
End Sub
from an access export so I'm confused on why when I enter a new record, only
I am able to advance to the correct record. Others on the network are able to
see the name in the combo box but when they select it, it does not advance
the form to that name until they close out of the database and go back in.
Here is my code for the combo box. Is there something else I can add to make
the form refresh or requery (whichever one applies). The name of the form is
Arrest table Query.
Private Sub cboFindArrestID_AfterUpdate()
Me.cboFindArrestID.Requery
DoCmd.GoToControl "ArrestID"
DoCmd.FindRecord cboFindArrestID
DoCmd.GoToControl "LastName"
End Sub