ClaraBarton
Registered User.
- Local time
- Today, 12:46
- Joined
- Oct 14, 2019
- Messages
- 661
With rst
.FindFirst "[MemID] = " & intMemID & " And [ChildID] = " & intChildID
If .NoMatch Then
.AddNew
!MemID = "intMemID"
!ChildID = "intChildID"
.Update
.Bookmark = .LastModified
.Close
Operation is not supported by this type of object
I have set the recordset as DAO
I debugged intMemID and intChildID and both are returning proper integers
And still I get the above error on the Findfirst line. Can you help me?
.FindFirst "[MemID] = " & intMemID & " And [ChildID] = " & intChildID
If .NoMatch Then
.AddNew
!MemID = "intMemID"
!ChildID = "intChildID"
.Update
.Bookmark = .LastModified
.Close
Operation is not supported by this type of object
I have set the recordset as DAO
I debugged intMemID and intChildID and both are returning proper integers
And still I get the above error on the Findfirst line. Can you help me?