Recordset

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hello.
I have a form set to continuous with several information. After i enter
information i need to perform some operations on those records.
Is it possible to create a recordset with the data from the continuous form ?

Thanks.
 
Luis said:
I have a form set to continuous with several information. After i enter
information i need to perform some operations on those records.
Is it possible to create a recordset with the data from the continuous form ?


The form object provides a ready made recordset that you can
refer to by using Me.RecordsetClone. This recordset has an
independent current record so moving around in it will not
cause the form to navigate around it records.

I will add that this is a rather uncommon thing to do. Are
you sure you can not get the desired effect using a simpler
approach?
 
Back
Top