Private Sub Combo35_AfterUpdate()
' Find the record that matches the control.
Dim rs As Object
Set rs = Me.Recordset.Clone
rs.FindFirst "[AttendeeID] = " & Me![Combo35]
Let Me.AttendeeID = Me![Combo35]
Me.Bookmark = rs.Bookmark
Me.Refresh
End Sub
Please help thanks
' Find the record that matches the control.
Dim rs As Object
Set rs = Me.Recordset.Clone
rs.FindFirst "[AttendeeID] = " & Me![Combo35]
Let Me.AttendeeID = Me![Combo35]
Me.Bookmark = rs.Bookmark
Me.Refresh
End Sub
Please help thanks