R
Raas
I'm using Access 2002. I am trying to set the usage of
the form's recordset so I can manipulate it. I
have "copied" the example, below, from Access 2002 VBA
Handbook, exactly:
Private Sub setRecordset()
Dim rst As ADODB.Recordset, frm As Form
Set frm = Forms!frmavailableLoads
Set rst = frm.RecordsetClone
End Sub
I get a message when reaching the statement "Set rst =
frm.recordsetClone. The message is "Runtime error '13'
Type mismatch.
Can someone help me with the correct coding so I can move
through and display on the form, using recordset method?
the form's recordset so I can manipulate it. I
have "copied" the example, below, from Access 2002 VBA
Handbook, exactly:
Private Sub setRecordset()
Dim rst As ADODB.Recordset, frm As Form
Set frm = Forms!frmavailableLoads
Set rst = frm.RecordsetClone
End Sub
I get a message when reaching the statement "Set rst =
frm.recordsetClone. The message is "Runtime error '13'
Type mismatch.
Can someone help me with the correct coding so I can move
through and display on the form, using recordset method?