N
Nick
I am keying letter into a combo box to look up names. Sometime the name I
am looking for is not in the data base and I receive an error message. What
would I use to stop the error message and request Y/N that the name be added.
Private Sub Combo155_AfterUpdate()
' Find the record that matches the control.
Dim rs As Object
Set rs = Me.Recordset.Clone
rs.FindFirst "[SSI] = '" & Me![Combo155] & "'"
If Not rs.EOF Then Me.Bookmark = rs.Bookmark
End Sub
am looking for is not in the data base and I receive an error message. What
would I use to stop the error message and request Y/N that the name be added.
Private Sub Combo155_AfterUpdate()
' Find the record that matches the control.
Dim rs As Object
Set rs = Me.Recordset.Clone
rs.FindFirst "[SSI] = '" & Me![Combo155] & "'"
If Not rs.EOF Then Me.Bookmark = rs.Bookmark
End Sub