i have a field called Amount Due and Amount Paid
I want to hit a button and copy the value in Amount Due to Amount Paid. I tried this
Private Sub Command16_Click()
Me!amountDue.SetFocus
DoCmd.RunCommand acCmdCopy
Me!amountPaid.SetFocus
DoCmd.RunCommand acCmdPaste
i get an error that command or action Paste is not available now. Is that because it is not acutally copying the amountDue first?
I want to hit a button and copy the value in Amount Due to Amount Paid. I tried this
Private Sub Command16_Click()
Me!amountDue.SetFocus
DoCmd.RunCommand acCmdCopy
Me!amountPaid.SetFocus
DoCmd.RunCommand acCmdPaste
i get an error that command or action Paste is not available now. Is that because it is not acutally copying the amountDue first?