I've googled this and surprisingly didn't find much about how combobox's work in general, so I'm hoping to get some verification. Basically, I'm following some other commands and unsure of why they work. I have a theory and hoping someone can verify what i think to be true, is, in fact, true.
A combox serves as a dropdown box to select information (I've got that much, lol). It is based on a field which is based on the record source. In this particular case, my record source is a query (an important point), and the field I've turned into a combobox is the field used to join my two tables. If I then change the row source to the actual table the rest of the data is pulling from, rather than updating a record, changing the value in the combobox instead pulls up the information which is connected in the one to many relationship. In essence, by choosing the field carefully to create the combobox, and then changing the row source information to the actual table, I can pull up the record information for the other fields in the form.
What this is akin to (in my user mind), is essentially using the combobox as a filter. I select the value, and the rest of the information in the remaining fields populates.
Is this correct? Are there any other critical points which I need to understand and use properly?