K
Kamil Dursun
Hi,
I want to create a temporary recordset from a set of tables in which I can
modify the data.
I do the following:
Dim Db As Database
Dim Qr As QueryDef
Dim Rc As Recordset
....
Set Db = CurrentDb
SQL = "... etc ..."
Set Qr = Db.CreateQueryDef("", SQL)
Set Rc = Qr.OpenRecordset(dbOpenDynaset)
I get the error message "Error 3061 Too few parameters Expected 1..."
on the last line.
Please what am i doing wrong? Is there an easier way of doing what I am
trying?
Thanks
Kamil
I want to create a temporary recordset from a set of tables in which I can
modify the data.
I do the following:
Dim Db As Database
Dim Qr As QueryDef
Dim Rc As Recordset
....
Set Db = CurrentDb
SQL = "... etc ..."
Set Qr = Db.CreateQueryDef("", SQL)
Set Rc = Qr.OpenRecordset(dbOpenDynaset)
I get the error message "Error 3061 Too few parameters Expected 1..."
on the last line.
Please what am i doing wrong? Is there an easier way of doing what I am
trying?
Thanks
Kamil