I have the follwoing in the AfterUpdate event of my combo box
Sub cboFind_AfterUpdate()
' Find the record that matches the control.
Me.RecordsetClone.FindFirst "[Atten_ID] = " & Me![cboFind]
Me.Bookmark = Me.RecordsetClone.Bookmark
End Sub
if a user changes their mind and dletes a name selected in the combo and then tabs out of the combo, they get a runtime error.
Do I need to specify a default value?
Sub cboFind_AfterUpdate()
' Find the record that matches the control.
Me.RecordsetClone.FindFirst "[Atten_ID] = " & Me![cboFind]
Me.Bookmark = Me.RecordsetClone.Bookmark
End Sub
if a user changes their mind and dletes a name selected in the combo and then tabs out of the combo, they get a runtime error.
Do I need to specify a default value?