I have one form that had a button to copy the data from one table to another.
The code on click is the following:
Private Sub CopyToFlActive_Click()
DoCmd.OpenForm "frmFLActive", acNormal, , , acFormAdd
Forms![frmFlActive]!ENAME.Value = Me![ENAME].Value
Forms![frmFlActive]!EADR1.Value =...