Recordset

L

Luis

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.
 
B

Brendan Reynolds

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).
 
Top