This is what you want to do
1) Create a Form with a text box (txtTable) where user can type in Table Name he wants to copy
2) Put a command button on the form
3) On Click event of thye Command Button put this code
DoCmd.CopyObject , date, acTable, txtTable
That should do it.
Good luck!