Let me explain my self; :Address was the wrong word in my first post!
I have form which uses a table called "Vehicles" and two combo boxes. Each
combo box has a table. Example: One of the tables is called "cars" and the
other table is call "trucks". When I open the form a go the the field call
"cars" the combo box appears and allow me to select the "car" that I want and
puts the car in the "Vehicles" table, and the "trucks" combo box does the
same thing. The person
entering the data will not be allowed to edit the data. If the person
entrering the data can edit the data, then this person will not take the time
to ask a question, about the data,then this combo box table will be full of
useless data.
Again:
A combo box IS NOT FULL OF DATA.
A combo box just *displays* data from a table. The table could be full of
useless data, if you don't do something to prevent it!
I'm totally not understanding your table structures. A car is a vehicle; a
truck is another type of vehicle; an SUV might be considered either a car or a
truck depending on how it's used. What are your Tables? How are they related?
Are you copying data from the Cars table and storing it redundantly in the
Vehicles table? If so why? If not, what ARE you doing?
How many combo boxes can be used with a form?
Probably up to 255, though I can't imagine any reason to do so.
That question simply makes no sense to me. Subforms are useful for depicting
one to many relationships... but I don't understand your tables or their
relationships, so I have no idea if you need one or not.
Just to summarize: the usual function of a combo box is to allow you to select
one value of one field from a table (the combo's Row Source), and store that
value into a different field in a different table (the form's Recordsource
table, and the combo box's Control Source). For instance, your Vehicles table
might contain a field for the MakeID; you would have a table of Makes (with a
MakeID primary key and a Make, for example "Toyota", "Ford", "Rolls Royce").
The combo would let you update the MakeID field in the Vehicles table with a
choice from this table.