RecordsetClone

J

JethroUK©

With RecordsetClone
.MoveFirst
.Find "[Ni No]= " & NI_NO 'Error - Object doesn't support
this (FIND) property ????????

Does Recordsetclone support 'find' method?

I also notice the Recordsetclone doesn't prompt for methods/properties which
makes me suspect missing refernce

Any ideas which refernce support recordsetclone?
 
J

JethroUK©

That worked thanks - i still figure i have refernce issue - any ideas why
recordsetclone. doesn't prompt for parameters?



Ken Snell (MVP) said:
RecordsetClone is a DAO recordset. Try using FindFirst, etc.

--

Ken Snell
<MS ACCESS MVP>

JethroUK© said:
With RecordsetClone
.MoveFirst
.Find "[Ni No]= " & NI_NO 'Error - Object doesn't support
this (FIND) property ????????

Does Recordsetclone support 'find' method?

I also notice the Recordsetclone doesn't prompt for methods/properties
which
makes me suspect missing refernce

Any ideas which refernce support recordsetclone?
 
D

Dirk Goldgar

JethroUK© said:
That worked thanks - i still figure i have refernce issue - any ideas
why recordsetclone. doesn't prompt for parameters?

In Access 2000 and later, the form's RecordsetClone property returns a
value of type Object, not specifically DAO.Recordset nor
ADODB.Recordset. Therefore, the VB Editor doesn't know the properties
and methods that belong to this object. The RecordsetClone property is
defined this way because a form's recordset (and hence its clone) might
be either a DAO Recordset or an ADODB Recordset, depending on whether
the form is in an MDB or an ADP file.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top