Is there anyone to "cut and paste" information from one
acess program to another program without having to reenter
all information and starting from scratch?
An Access *database* is not a Program; it's a collection of data.
There might be "program" - VBA code, forms and so on - in the
database, but the data stored in the database is a different issue.
You can append the data in an Access table into a table in another
database using an Append Query. Open the database into which you wish
to insert the data; use File... Get External Data... Link to link to
the table containing the data; and run an Append query from the linked
table to the target table. If there is no target table, use a
MakeTable query instead, or use File... Get External Data... Import.