Hi
I have an unbound data entry form with a combo box to select a contact (cboApplicant). The user then enters various bits of data about the person but whereas the combo shows forename, surname and address line 1 when it is open, once you have moved on it only shows surname.
I have tried to add another set of unbound textboxes to try to get the full data on the contact as a means of verification whilst the data is being entered.
The code I have used is
When I select the applicant from the combo box the textboxes simply say #Name?
I tried putting Me.Refresh in the after update event of the combo but it had no effect.
Is what I want possible or would I be better to base these results on bound textboxes from an underlying query?
Thanks
I have an unbound data entry form with a combo box to select a contact (cboApplicant). The user then enters various bits of data about the person but whereas the combo shows forename, surname and address line 1 when it is open, once you have moved on it only shows surname.
I have tried to add another set of unbound textboxes to try to get the full data on the contact as a means of verification whilst the data is being entered.
The code I have used is
Code:
=DLookUp("strConAdd1","tblContacts","[lngConId] = " & [Me].[cboApplicant] & "")
I tried putting Me.Refresh in the after update event of the combo but it had no effect.
Is what I want possible or would I be better to base these results on bound textboxes from an underlying query?
Thanks