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 bkrike on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Hello! I'm creating an aplication a

Status
Not open for further replies.

Gunga

IS-IT--Management
Oct 8, 2002
8
BR
Hello! I'm creating an aplication and when I use a 'find method'(rsRecSort.Find mSql) it rases this error: 'Compile Error: Method or data member not found.' I'm not sure of what Reference or Component must I include once I've tried almost all.

More: I'm handling a MSACCESS2000 database, and ConnectionString = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=P:\srbr\simma_sd.mdb"
ADODB.Recordset
ADODB.Connection
 
what is mSQL equal to?

Also in your find the syntax if I remember is like.

rsRecSort.Recordset = SET YOUR RECORDS

If rsRecSort.RecordCount > 0 then
rsRecSort.MoveFirst
rsRecSort.Find "Col1 = 10"
End If

If rsRecSort.EOF then
MsgBox "Not found"
Else
MsgBox "Record Found"
End If
Craig, mailto:sander@cogeco.ca

Si hoc legere scis, nimis eruditionis habes
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top