A family of Microsoft relational database management systems designed for ease of use.
As long as you don't copy anything else to the clipboard, the record will remain on the clipboard, so you might try something like this:
Dim i As Long
Dim n As Long
DoCmd.RunCommand acCmdSelectRecord
DoCmd.RunCommand acCmdCopy
n = Val(Me.txtNumber)
For i = 1 To n
DoCmd.RunCommand acCmdRecordsGoToNew
DoCmd.RunCommand acCmdSelectRecord
DoCmd.RunCommand acCmdPaste
...
...
Next i