LanaR Member Local time Today, 16:01 Joined May 20, 2021 Messages 113 Jun 17, 2021 #1 I must be missing something very basis as the following is throwing a Runtime Error 13 Type Mismatch Code: Dim rst As Recordset Set rst = Me.RecordsetClone On the Set command The code is in the On Click event of a button
I must be missing something very basis as the following is throwing a Runtime Error 13 Type Mismatch Code: Dim rst As Recordset Set rst = Me.RecordsetClone On the Set command The code is in the On Click event of a button
MajP You've got your good things, and you've got mine. Local time Today, 02:01 Joined May 21, 2018 Messages 9,503 Jun 17, 2021 #2 dim rst as dao.recordset it is probably dimensioning it as and ADODB.recordset and the form returns a dao recordset thus a type mismatch.
dim rst as dao.recordset it is probably dimensioning it as and ADODB.recordset and the form returns a dao recordset thus a type mismatch.
LanaR Member Local time Today, 16:01 Joined May 20, 2021 Messages 113 Jun 17, 2021 #3 Thanks that did the trick