I'm guessing that you have (or should have) a main form that is designed to
show a single record (like customer name and address) and has tblCustomer or
similar query as its record source. A subform control, designed as a
datasheet or continuous form (and having tblOrders, or similar query as its
record source) would then be placed on the main form, and used to show all
related orders for that customer.
Those two forms are kept synchronized by setting the master link property to
the primary key of the record source of the main form, and the child link
property to the foreign key (same data type) of the record source for the
subform. This setup will allow a single customer to have many related
orders, distinguished by date and/or order#. If all that sounds confusing
(as it should to a novice) then use the subform wizard when rebuilding your
form and it will walk you through all the steps.
Again though, your data tables need the correct structure and
relationship(s). You can copy ideas and objects from the Northwind sample
database or better still, use the inventory template to create a new
database. It will set up your tables, forms and reports from info you
pick/supply. Modify them as necessary, copy in your data, and your in
business!
Good luck
-Ed