Hi
Below combo box after update event is not working
form record source is tblEntries
No records are showing in text boxes for that EntryNo (PK) of tblEntries.
Combo box row source
cboEntryNo is unbound combo box which select the EntryNo from query.
I want on form after update of combo box to show the selected entry row information on form.
Below combo box after update event is not working
Code:
Private Sub cboEntryNo_AfterUpdate()
Me.Recordset.FindFirst "EntryNo = " & Nz(cboEntryNo, 0)
End Sub
form record source is tblEntries
No records are showing in text boxes for that EntryNo (PK) of tblEntries.
Combo box row source
Code:
SELECT [QryCash&BankEntrySelection].EntryNo FROM [QryCash&BankEntrySelection];
cboEntryNo is unbound combo box which select the EntryNo from query.
I want on form after update of combo box to show the selected entry row information on form.