D
Dave
Is there a way to use the acPasteAppend to update a record instead of adding
a new one? On my form I have a "Copy" button and a "Paste" button. This is
the code:
On the copy button (Command2) this code in the Click Event:
Private Sub Command2_Click()
DoCmd.RunCommand acCmdSelectRecord
DoCmd.RunCommand acCmdCopy
End Sub
On the paste button (Command3) this code in the Click Event:
Private Sub Command3_Click()
DoCmd.RunCommand acCmdPasteAppend
End Sub
a new one? On my form I have a "Copy" button and a "Paste" button. This is
the code:
On the copy button (Command2) this code in the Click Event:
Private Sub Command2_Click()
DoCmd.RunCommand acCmdSelectRecord
DoCmd.RunCommand acCmdCopy
End Sub
On the paste button (Command3) this code in the Click Event:
Private Sub Command3_Click()
DoCmd.RunCommand acCmdPasteAppend
End Sub