C
Charles Phillips
Hello,
I have an MS-Access 97 database.
I have created a "Find Record" feature using the following:
Private Sub Combo126_AfterUpdate()
' Find the record that matches the control.
Dim rs As Object
Set rs = Me.Recordset.Clone
rs.FindFirst "[ContactID] = " & Str(Me![Combo126])
Me.Bookmark = rs.Bookmark
End Sub
The list in the combo-box is getting to long, I need to create a "Search"
feature...
The form has four (4) fields (LastName, FirstName, UserID, & EmailAddress)
that I want to use as search criteria.
You must supply data to three (3) of the 4 fields, to get a match...
Can someone point me in the right direction???
Thank you,
Charles L. Phillips
I have an MS-Access 97 database.
I have created a "Find Record" feature using the following:
Private Sub Combo126_AfterUpdate()
' Find the record that matches the control.
Dim rs As Object
Set rs = Me.Recordset.Clone
rs.FindFirst "[ContactID] = " & Str(Me![Combo126])
Me.Bookmark = rs.Bookmark
End Sub
The list in the combo-box is getting to long, I need to create a "Search"
feature...
The form has four (4) fields (LastName, FirstName, UserID, & EmailAddress)
that I want to use as search criteria.
You must supply data to three (3) of the 4 fields, to get a match...
Can someone point me in the right direction???
Thank you,
Charles L. Phillips