S
Steve
Hi can any body tell me why this code works for a table but not for a query
please
this works for a table.
Dim rst As DAO.Recordset
Set rst = CurrentDb.OpenRecordset("tblCustomer")
same code does not work for a query
Dim rst As DAO.Recordset
Set rst = CurrentDb.OpenRecordset("qryCSVSingleSale")
I get an error no 3061 To few parameters. Expected 1.
I just want to loop through a record set that would be created by a query
but still allow others to use the records while this action is taking place.
and Im not sure how to go about it.
Help most apreceated
Steve - from a land down under
please
this works for a table.
Dim rst As DAO.Recordset
Set rst = CurrentDb.OpenRecordset("tblCustomer")
same code does not work for a query
Dim rst As DAO.Recordset
Set rst = CurrentDb.OpenRecordset("qryCSVSingleSale")
I get an error no 3061 To few parameters. Expected 1.
I just want to loop through a record set that would be created by a query
but still allow others to use the records while this action is taking place.
and Im not sure how to go about it.
Help most apreceated
Steve - from a land down under