I have a form with data I populated with a ADO recordset from SQL server
what I would like to do now is create a recordset object from the data in the form
something like this
Dim rst As New adodb.Recordset
Set rst = Me.Recordset
Set rst = Nothing
this code runs without error
but I dont think it really works
because when I try to do anything with the recordset
such as .sort or .recordcount I get an error
is it possible to do what I'm trying to do?
what I would like to do now is create a recordset object from the data in the form
something like this
Dim rst As New adodb.Recordset
Set rst = Me.Recordset
Set rst = Nothing
this code runs without error
but I dont think it really works
because when I try to do anything with the recordset
such as .sort or .recordcount I get an error
is it possible to do what I'm trying to do?