OK, so I've managed to give myself a nice headache and nothing much else 
What I'm trying to do is create a simple database tracking a model railway collection. From this, I have four basic item types (Loco, wagon, coach, other), for each of which I've created a table.
I've also created a secondary lookup table to hold manufacturer details, which works as intended.
Where I'm falling down is in creating an overall index, and from there a cascading form for data entry. I was hoping (Assuming?) that I could create a 'root' table, holding a unique ID for each model, and from there create a 1-1 relationship between these and the secondary tables, but I can't get that working right
My current structure looks like this:
Table: Stock Records
StockID (Autonumber, primary key)
StockType
Table: Locomotives
StockID (Primary key)
Various secondary data fields, these work.....
Table: Coaches
StockID (Primary key)
Various secondary data fields, these work.....
Table: Freight
StockID (Primary key)
Various secondary data fields, these work.....
Table: Other
StockID (Primary key)
Various secondary data fields, these work.....
Basically then, I'm hoping to create a form that cascades so when I select the stock type, it'll automatically cascade and create an entry in the correct table.
I've defined 1-1 relationships between all instances of StockID, but I'm confused and stuck
(I can create forms or enter data into any one table at the moment, but not cascade between them)

What I'm trying to do is create a simple database tracking a model railway collection. From this, I have four basic item types (Loco, wagon, coach, other), for each of which I've created a table.
I've also created a secondary lookup table to hold manufacturer details, which works as intended.
Where I'm falling down is in creating an overall index, and from there a cascading form for data entry. I was hoping (Assuming?) that I could create a 'root' table, holding a unique ID for each model, and from there create a 1-1 relationship between these and the secondary tables, but I can't get that working right

My current structure looks like this:
Table: Stock Records
StockID (Autonumber, primary key)
StockType
Table: Locomotives
StockID (Primary key)
Various secondary data fields, these work.....
Table: Coaches
StockID (Primary key)
Various secondary data fields, these work.....
Table: Freight
StockID (Primary key)
Various secondary data fields, these work.....
Table: Other
StockID (Primary key)
Various secondary data fields, these work.....
Basically then, I'm hoping to create a form that cascades so when I select the stock type, it'll automatically cascade and create an entry in the correct table.
I've defined 1-1 relationships between all instances of StockID, but I'm confused and stuck

(I can create forms or enter data into any one table at the moment, but not cascade between them)