Recordset

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

Guest

Hello.
How do i create a recordset based on a continuous form?
The ideia is to create an On Load event that performs actions on the records
that the form loads.


Thanks.
 
Dim rst AS DAO.Recordset
Set rst = Me.RecordsetClone

If you're using Access 2003, there's a pretty good help topic on the
RecordsetClone property - just type the word 'recordsetclone' in the 'Type a
question for help' box in the VBA editor (not the main Access window).
 
Back
Top