I keep getting a Run-Time Error '3061' when I attempt to open a recordset with
the following code:
Code:
Dim dbs As DAO.Database
Dim rst As DAO.Recordset
Set dbs = CurrentDb
strSQL = "SELECT M_tbl.ID, M_tbl.Asm, M_tbl.Desc FROM M_tbl WHERE M_tbl.ID =forms!MACaddr_frm!Device"
Set rst = dbs.OpenRecordset(strSQL)
But while my form is open, I can create the following query and it displays the data that I want:
Code:
SELECT M_tbl.ID, M_tbl.Asm, M_tbl.Desc, FROM M_tbl WHERE M_tbl.ID =forms!MACaddr_frm!Device;
Why is that and how do I fix this problem?
Thanks