S
suek
My database has 28 "Station Sts". In the combo box, users can do a search on
the location (each has a unique asset number), but if the wrong one comes up,
they cannot move down the list and select the next station st.
My code is:
Private Sub btnSearch_Click()
Me.txtStreetName.SetFocus
DoCmd.FindRecord cboSearch1, , , acSearchAll, , , True
End Sub
Private Sub cboSearch_AfterUpdate()
Me.btnSearch.SetFocus
End Sub
I am not sure if the problem is here, or with the select query, and would
appreciate some help. Thanks
the location (each has a unique asset number), but if the wrong one comes up,
they cannot move down the list and select the next station st.
My code is:
Private Sub btnSearch_Click()
Me.txtStreetName.SetFocus
DoCmd.FindRecord cboSearch1, , , acSearchAll, , , True
End Sub
Private Sub cboSearch_AfterUpdate()
Me.btnSearch.SetFocus
End Sub
I am not sure if the problem is here, or with the select query, and would
appreciate some help. Thanks