Y
Yousoft
Hi, All
I want find or search the vendor name on the list object, by typing or
matching at least 8 letters,
The following code only it is searching by typing the first letter, so I
need some one to help me to find the vendor name while typing full first name
or full name on the list object
Thanks
Private Sub List53_AfterUpdate()
' Find the record that matches the control.
Dim rs As Object
Set rs = Me.Recordset.Clone
rs.FindFirst "[Vendor] = '" & Me![List53] & "'"
If Not rs.EOF Then Me.Bookmark = rs.Bookmark
End Sub
I want find or search the vendor name on the list object, by typing or
matching at least 8 letters,
The following code only it is searching by typing the first letter, so I
need some one to help me to find the vendor name while typing full first name
or full name on the list object
Thanks
Private Sub List53_AfterUpdate()
' Find the record that matches the control.
Dim rs As Object
Set rs = Me.Recordset.Clone
rs.FindFirst "[Vendor] = '" & Me![List53] & "'"
If Not rs.EOF Then Me.Bookmark = rs.Bookmark
End Sub