Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recordsetclone

Status
Not open for further replies.

Ascentient

IS-IT--Management
Nov 4, 2002
267
I have a created a recordsetclone of the data source of the form I am working on and it will not give me the .findfirst method.

The following is my code.

Code:
   Dim rs As Recordset
   Set rs = Me.RecordsetClone
   rs.FindFirst = "[Material] =" & """ & cboMaterialCode & """

I have used this method before (Not exactly the same but close.) and have not had this problem. What do I have setup incorrectly?

Ascent
~The only way to learn is live
 
Nevermind I found I had the "=" after the .FindFirst. I removed it and it works fine. (Also added the DAO. when declaring the recordset.)
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top