Hi all, I have a bound combobox with 2 columns AccountID, AccountName, bound to column 1 and with rows set at 0",1".
This works great on the form... I select the combobox and it fills with all the account names, when I save, the accountID is stored in the table... Just like I wanted!
The issue I'm having is when I call the form from another form, I'm passing through AccountID from the calling form expecting that the combobox will then be pre-populated with the account info that was on the first form.
i.e.
Code:
Dim strLinkCriteria As String
strLinkCriteria = "[AccountID]=" & Forms!frmAccountDetail![AccountID]
DoCmd.OpenForm "frmAccountContactJoin", , , strLinkCriteria
However, when I call the form, the combobox (On frmAccountContactJoin) is not populated... what am I doing wrong?