Hello this is my 1st one so pardon my ignorance

....
---
Im working on a form that contains 8 text field boxes, 6 drop down controls.
and a submit button.
it collects info of customer calls.. Name Phone address, call day /pm etc...
what i am trying to accomplish:
I need a copy button that would just copy all the field info once is entered and a paste button that allows me to paste all the info in the same fields.
we dont need to edit the info that would be too easy... so i just need a replica of the initial info that way i can change it into a new record if needed.
This is what i got so far BUT is not that easy it does copy the info entered in the "CSR_name" however i dont know how to get the rest of the fields in there i tried commas and parenthesis i googled stuff around and i dont if is possible... Maybe a macro could do it, but i dont know anything about macros and the youtube videos i found dont really show anything about copying or pasting ...
Thanks! and sorry in advance if i wasnt clear enough also if code doesnt show in the nice box...
Code:
Private Sub Command109_Click()
DoCmd.GoToControl "CSR_name"
DoCmd****nCommand acCmdCopy
End Sub
Private Sub Command108_Click()
DoCmd****nCommand acCmdPasteAppend
End Sub