I have a form frmMember, it has a search button that performs a complex search of fields. after performing my search my [BaseDues] field shows #Name? BaseDues is set by a CBO in the field above.
It works correctly except after the search...
Here is the Code for the Search Button:
Private Sub cmdSearchForm_Click()
On Error GoTo Err_cmdSearchForm_Click
Dim stDocName As String
Dim stLinkCriteria As String
stDocName = "frmSearch"
DoCmd.OpenForm stDocName, , , stLinkCriteria
Exit_cmdSearchForm_Click:
Exit Sub
Err_cmdSearchForm_Click:
MsgBox Err.Description
Resume Exit_cmdSearchForm_Click
End Sub
frmSearch Row Source is:
"CompanyName";"PhysicalAddress";"MailingAddress";" ContactFirstName";"ContactLastName";"ContactPhone" ;"BusinessPhone";"Fax";"Email";"WebSite";"Business Type";"KeyWords"