Re: Recordset.FindFirst
- From: "David W. Fenton" <XXXusenet@xxxxxxxxxxxxxxxxxxx>
- Date: Thu, 20 Sep 2007 19:59:15 -0500
"Allen Browne" <AllenBrowne@xxxxxxxxxxxxxx> wrote in
news:OxQoJPz#HHA.700@xxxxxxxxxxxxxxxxxxxx:
FWIW, I've had better results from:
Set rs = Me.RecordsetClone
rather than:
Set rs = Me.Recordset.Clone
I just don't understand why you'd bother to set a recordset variable
for the recordsetclone, instead of just using:
With Me.RecordsetClone
...
End With
It's much more efficient and doesn't require any cleanup. Given that
this recordset exists before you use it, I don't see what benefit
there is to assigning a pre-existing object to a newly created
variable.
--
David W. Fenton http://www.dfenton.com/
usenet at dfenton dot com http://www.dfenton.com/DFA/
.
- References:
- Re: Recordset.FindFirst
- From: Allen Browne
- Re: Recordset.FindFirst
- Prev by Date: Re: What is common practice?
- Next by Date: Re: Go to new record on a new day
- Previous by thread: Re: Recordset.FindFirst
- Next by thread: Filtering a Form
- Index(es):
Relevant Pages
|