Dim rst As Recordset
Dim strSearchName As String
Set rst = Me.RecordsetClone
strSearchName = Str(Me!ICL_3)
rst.FindLast "ICL_3 = " & strSearchName
If rst.NoMatch Then
Else
Me.Bookmark = rst.Bookmark
End If
rst.Close
I believe that that code is to be used with a combo box.
How would I go about editing it? Where would I set the criteria for the textbox to not display "None" records?
I'm sorry if this is a stupid question, but I would appreciate your help!
Thanks!
----
Alex
Anytime things appear to be going better, you have overlooked something.
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.