philbullock1223
Registered User.
- Local time
- Today, 05:51
- Joined
- Dec 31, 2011
- Messages
- 55
I need to duplicate a record in a table. I have been successful in duplicating the parent record with this code:
I would like to apply the same code somehow to also duplicate the Parent's associated child records.
I tried this code, with no luck:
Note: one of the fields in the child table is an "attachment" so an SQL INSERT INTO doesn't seem to work for me.
Thanks in advance for your help
Code:
DoCmd.RunCommand acCmdSelectRecord
DoCmd.RunCommand acCmdCopy
DoCmd.RunCommand acCmdRecordsGoToNew
DoCmd.RunCommand acCmdSelectRecord
DoEvents
DoCmd.RunCommand acCmdPaste
DoCmd.RunCommand acCmdSaveRecord
I would like to apply the same code somehow to also duplicate the Parent's associated child records.
I tried this code, with no luck:
Code:
DoCmd.OpenTable "ChildTable"
DoCmd.ApplyFilter , "ID = " & ID
DoCmd.RunCommand acCmdSelectAllRecords
DoCmd.RunCommand acCmdCopy
DoCmd.RunCommand acCmdRecordsGoToNew
DoEvents
DoCmd.RunCommand acCmdPaste
DoCmd.RunCommand acCmdSaveRecord
Note: one of the fields in the child table is an "attachment" so an SQL INSERT INTO doesn't seem to work for me.
Thanks in advance for your help