Here is a bit of code for the AFTERUPDATE on a combo box. This works ok but It does not show the selected item in the combo box window
Sub FindEmployee_AfterUpdate()
Me.RecordsetClone.FindFirst "[EmployeeId] = " & Me!FindEmployee
If Me.RecordsetClone.EOF Then
Else
Me.Bookmark = Me.RecordsetClone.Bookmark
End If
End Sub
It uses the ID to find the record set and I want to show the Employer Name. The Form query pulls all the employer IDs and Names.
Sub FindEmployee_AfterUpdate()
Me.RecordsetClone.FindFirst "[EmployeeId] = " & Me!FindEmployee
If Me.RecordsetClone.EOF Then
Else
Me.Bookmark = Me.RecordsetClone.Bookmark
End If
End Sub
It uses the ID to find the record set and I want to show the Employer Name. The Form query pulls all the employer IDs and Names.