Hello
I've got a form with a duplicate command and a search combobox, both created with the wizard.
Code:
Private Sub cmdDuplicar_Click()
On Error GoTo Err_cmdDuplicar_Click
DoCmd.RunCommand acCmdSelectRecord
DoCmd.RunCommand acCmdCopy
DoCmd.RunCommand acCmdRecordsGoToNew
DoCmd.RunCommand acCmdSelectRecord
DoCmd.RunCommand acCmdPaste
Exit_cmdDuplicar_Click:
Exit Sub
Err_cmdDuplicar_Click:
MsgBox Err.Description
Resume Exit_cmdDuplicar_Click
End Sub
-----
Private Sub Cuadro_combinado219_AfterUpdate()
' Buscar el registro que coincida con el control.
Dim rs As Object
Set rs = Me.Recordset.Clone
rs.FindFirst "[ID_Producto] = " & Str(Nz(Me![Cuadro_combinado219], 0))
If Not rs.EOF Then Me.Bookmark = rs.Bookmark
End Sub
When I press the "Duplicate" button I get "error 13 mismatch". The error points to the line in red. Also, japanese characters are shown in the combo afterwards. 
I can't understand why I get this error, because I am not using this control.
Can anybody help me?