Re: Form search using a combo selection
- From: "So-Ange" <acurry@xxxxxxxxxxx>
- Date: 17 Jan 2006 10:51:40 -0800
Al,
Thank you so much! You were on point with exactly what I needed.
I wasn't sure where to insert the code, but it worked on first try.
Here is the workable code
Dim rs As Object
Set rs = Me.Recordset.Clone
rs.FindFirst "[VendorCompanyName] = '" & Me![Combo44] & "'"
If Not rs.EOF Then Me.Bookmark = rs.Bookmark
If Recordset.EOF = True Then
MsgBox "No more records to display"
Exit Sub
End If
Me.FilterOn = False
Me.Filter = "[VendorCompanyName] = '" & Me![Combo44] & "'"
Me.FilterOn = True
End Sub
Can I profess, I Love this User group.
.
- References:
- Form search using a combo selection
- From: So-Ange
- Re: Form search using a combo selection
- From: Al Camp
- Form search using a combo selection
- Prev by Date: Re: Command Button To Enter Time
- Next by Date: Dialog Box
- Previous by thread: Re: Form search using a combo selection
- Next by thread: Command Button To Enter Time
- Index(es):