J
John
I recently changed a replicated database back to a standard database by
importing all objects minus the system fields in the tables. I have one
problem with a form. There are navagation buttons on the form and an event
procedure in the "On Current" form property.
Private Sub Form_Current()
Dim recClone As Recordset
Set recClone = Me.RecordsetClone()
Seems straight forward, but when it runs I get Run-time error '13', Type
mismatch. The "Set recClone= Me.RecordsetClone()" line is highlighted
when I click on Debug. Everything else on the form works ok, but each time a
new record is loaded I get this error.
Any help appreciated
John
importing all objects minus the system fields in the tables. I have one
problem with a form. There are navagation buttons on the form and an event
procedure in the "On Current" form property.
Private Sub Form_Current()
Dim recClone As Recordset
Set recClone = Me.RecordsetClone()
Seems straight forward, but when it runs I get Run-time error '13', Type
mismatch. The "Set recClone= Me.RecordsetClone()" line is highlighted
when I click on Debug. Everything else on the form works ok, but each time a
new record is loaded I get this error.
Any help appreciated
John