recordset clone!

Milan

Registered User.
Local time
Today, 14:44
Joined
Feb 17, 2002
Messages
85
What does recordset clone actually do?, when would i use it in my database?.


Thanks

Milan
 
A recordset clone is a disconnected duplicate of an already open recordset (Form recordset or a Recordset object).

You can use a clone to do your searching of records and moving the main recordset only when you found the one that you want. This can prevent the choppy look you get when programmatically move records on a form.

Basically anything you do to a clone does not directly effect the original recordset.
 
Thanks for clearing that up!!!
 

Users who are viewing this thread

Back
Top Bottom