R
ryan.fitzpatrick3
I imagine this is really easy, I have a combobox that is linked to a
supplier table recordset. Is there away to click the recorset in the
combobox and make that supplier information pop up? Right now I have
the cbox populated with the date but upon click it doesn't bring the
respective recordset up.
I have.
Private Sub cboxsearch_Click()
On Error GoTo Err_cboxsearch_Click
DoCmd.GoToRecord , , ???????
Exit_cboxsearch_Click:
Exit Sub
Err_cboxsearch_Click:
MsgBox Err.Description
Resume Exit_cboxsearch_Click
End Sub
supplier table recordset. Is there away to click the recorset in the
combobox and make that supplier information pop up? Right now I have
the cbox populated with the date but upon click it doesn't bring the
respective recordset up.
I have.
Private Sub cboxsearch_Click()
On Error GoTo Err_cboxsearch_Click
DoCmd.GoToRecord , , ???????
Exit_cboxsearch_Click:
Exit Sub
Err_cboxsearch_Click:
MsgBox Err.Description
Resume Exit_cboxsearch_Click
End Sub