I keep getting “Method or data member not found” with Clone method highlighted during compile time for the code listed below:
Private Sub datClone()
Dim rstClone As Recordset
rstClone = datCustomers.Clone(adLockReadOnly)
End Sub
datCustomers is my ADO object on the form, created during form design time.