D
Dave Elliott
I have a search combo list which is used to lookup customers on my form.
I want this error message NOT to appear if not in the list
The text you entered isn't an item in the list.
Select an item from the list,or enter text that matches one of the listed
items
I have my own message that I want to use
Thanks,
Dave
P.S. Here is the code for the lookup.
It is set to limit to list
After Update Event Code Below
Dim rs As Object
Set rs = Me.Recordset.Clone
rs.FindFirst "[TimeID] = " & Str(Me![Combo202])
Me.Bookmark = rs.Bookmark
Me![Combo202] = Null
Me!Labelsearch.Visible = True
I want this error message NOT to appear if not in the list
The text you entered isn't an item in the list.
Select an item from the list,or enter text that matches one of the listed
items
I have my own message that I want to use
Thanks,
Dave
P.S. Here is the code for the lookup.
It is set to limit to list
After Update Event Code Below
Dim rs As Object
Set rs = Me.Recordset.Clone
rs.FindFirst "[TimeID] = " & Str(Me![Combo202])
Me.Bookmark = rs.Bookmark
Me![Combo202] = Null
Me!Labelsearch.Visible = True