I have converted an Access 97 database to Access 2003
The following code now fails and returns Run-time error '3420'
Dim rst as DAO.recordset
Set rst = Forms!frm1!frm2 .Form.Recordset Clone
I have installed the latest updates to Access and Jet
I have checked the references and they are fine
I have disabled the 'Sandbox' mode
I have imported the database into a new shell
I have run the following as a test
Dim rst as DAO.recordset
Set rst = Forms!frm1.Reco rdsetClone
Set rst = Forms!frm1!frm2 .Form.Recordset Clone
The code defines the higher level forms 'frm1' recordset but fails to
define the subforms 'frm2' recordset with the 'Object invaild or no
longer set' error
This is starting to drive me insane and I would really appreaciate any
help from the enlightened masses
The following code now fails and returns Run-time error '3420'
Dim rst as DAO.recordset
Set rst = Forms!frm1!frm2 .Form.Recordset Clone
I have installed the latest updates to Access and Jet
I have checked the references and they are fine
I have disabled the 'Sandbox' mode
I have imported the database into a new shell
I have run the following as a test
Dim rst as DAO.recordset
Set rst = Forms!frm1.Reco rdsetClone
Set rst = Forms!frm1!frm2 .Form.Recordset Clone
The code defines the higher level forms 'frm1' recordset but fails to
define the subforms 'frm2' recordset with the 'Object invaild or no
longer set' error
This is starting to drive me insane and I would really appreaciate any
help from the enlightened masses
Comment