missinglinq
Programmer
I'm trying to duplicate a record using the code below:
Me.AllowAdditions = True
DoCmd.RunCommand acCmdSelectRecord
DoCmd.RunCommand acCmdCopy
DoCmd.RunCommand acCmdPasteAppend
Me.AllowAdditions = False
I get a message that an error in the PasteAppend action has resulted in the data being inserted into an error table. As you can see, AllowAdditions = True, and at the table level Duplicates Allowed is set to Yes.
Any ideas?
The Missinglinq
There's ALWAYS more than one way to skin a cat!
Me.AllowAdditions = True
DoCmd.RunCommand acCmdSelectRecord
DoCmd.RunCommand acCmdCopy
DoCmd.RunCommand acCmdPasteAppend
Me.AllowAdditions = False
I get a message that an error in the PasteAppend action has resulted in the data being inserted into an error table. As you can see, AllowAdditions = True, and at the table level Duplicates Allowed is set to Yes.
Any ideas?
The Missinglinq
There's ALWAYS more than one way to skin a cat!