Well..
>If you have tables that are One-to-one relationships with table Instrument then you are going to have an extreemly hard job pursuading us that they ought to be in separate tables.
----You are right, most of the data can be placed all in one table. But from our point of view, a table filled with so much information is messy and cluttered, we want it to look more organized and be able to see everything related "one-to-one" (aside from Manufacturer and Sensors). So in this case we have pulled fields (a lot of them) and separated them in their respective tables. We want to try it this way first, but at a last resort may combine some of the tables.
>Unless you can justify why not ( in a single simple sentence ) then EVERY table should have a Primary Key.
----At the moment I do have a Primary Key for each table called ID which is the "Auto-Number". I just haven't figured out how to go about and set the relationship so that most of the tables can be "One-to-one" with the Instruments table.
>I recommend the following nameing convention :-
Table names start with tbl eg tblInstrument
The Primary key in a table has "tbl" taken off the front and "Id" added to the end eg InstrumentId
----I really like this naming convention of yours, a lot better to read and understand the relationships that will be setup.
>In the database's Relationships window establish relationships between InstrumentId and tblManufacturer.InstrumentRef and between InstrumentId and tblSensors.InstrumentRef
----Can there really be two refs connected to one InstrumentId?
Subforms is another good idea, but I want to stay away from it for this database. I'm really more interested in bringing up a full screen form for sensors that will only bring up the record for the current instrument being looked at. How would you go about doing this.
I know how to bring up another form from a button, but it usually starts at the first record in that table. Is there a way to popup the form with it's corresponding data?
Here's how my relationships with the tables have been setup thus far:
tblINSTRUMENT tblSENSORS
-ID* -- 1 to MANY -- -ID
-Name tblMANUFACTURER
-Manufacturer -- MANY to 1 -- -Name*
-Model Number -Address
-Serial Number -City
tblPURCHASE
tblDEPLOYMENTHISTORY
tblREPAIRHISTORY
tblLOCATION
The rest of the tables are all "strays" and should be "One-to-one" in some way with the 'tblINSTRUMENTS'. The * (asterisk) means that they are primary keys.
Thanks for all the excellent replies, I know this is really confusing since I'm trying to say it the way I see it (especially since I'm learning it from scratch myself). But thanks all the same.

All replies have been considered, and I'm trying to learn from your advice.
T