I created a table with called tblShipmaster .In this table , I have few fields namely :
vessel_type
Reg_country
Hull_type
I have created separate tables (like tblvessel, tblhull,tblcountry) to keep the strings/values for each of vessel_type( like cruise ship,military ship, cargo ship etc) ,Reg_country,Hull_type .
To enter the values of the fields vessel_type, Reg_country, Hull_type, in the table tblShipmaster ,I have created lookup , display control : List box and row source reading
[SELECT Shipclass.Vessel_type FROM Shipclass ORDER BY Shipclass.Vessel_type; ]
I am calling through the query different fields from different tables. I am also calling the vessel_type , Reg_country and Hull_type. The problem is that the user can change the values for these fields using the drop down values . How can I prevent these, I do not want someone to be able to change these. Only the fields I want to change can be changed.
Please help , am novice to Access
vessel_type
Reg_country
Hull_type
I have created separate tables (like tblvessel, tblhull,tblcountry) to keep the strings/values for each of vessel_type( like cruise ship,military ship, cargo ship etc) ,Reg_country,Hull_type .
To enter the values of the fields vessel_type, Reg_country, Hull_type, in the table tblShipmaster ,I have created lookup , display control : List box and row source reading
[SELECT Shipclass.Vessel_type FROM Shipclass ORDER BY Shipclass.Vessel_type; ]
I am calling through the query different fields from different tables. I am also calling the vessel_type , Reg_country and Hull_type. The problem is that the user can change the values for these fields using the drop down values . How can I prevent these, I do not want someone to be able to change these. Only the fields I want to change can be changed.
Please help , am novice to Access