ShovelinFishHeads
Registered User.
- Local time
- Today, 13:02
- Joined
- Aug 4, 2016
- Messages
- 57
I have three comboboxes on a subform that are synchronized with the first combox on the subform (four comboboxes total). I have the three "dependent" comboboxes synched by way of individual queries that read the PK of the first combobox. The AfterUpdate event of the first combobox requeries the three queries that drive the three dependent comboboxes.
These are all associated with a subform that is part of a main form such that there are muliple records driving the main form with nav buttons and the subform also has multiple records
with nav buttons.
My problem is that when I navigate to a record in the main form, the comboboxes on the subform DON'T DISPLAY INFO even though all of the text boxes related to them do show information properly.
I tried putting this in the AfterUpdate event of the main form:
Forms![Jobs]![Assignment Form].Form!CboEmployeeSelect.Requery
Forms![Jobs]![Assignment Form].Form!CboToolSelect.Requery
Forms![Jobs]![Assignment Form].Form!CboVehicleSelect.Requery
The results were not what I need.
How would you suggest this be correct?
Any help is greatly appreciated. Thanks!
These are all associated with a subform that is part of a main form such that there are muliple records driving the main form with nav buttons and the subform also has multiple records
with nav buttons.
My problem is that when I navigate to a record in the main form, the comboboxes on the subform DON'T DISPLAY INFO even though all of the text boxes related to them do show information properly.
I tried putting this in the AfterUpdate event of the main form:
Forms![Jobs]![Assignment Form].Form!CboEmployeeSelect.Requery
Forms![Jobs]![Assignment Form].Form!CboToolSelect.Requery
Forms![Jobs]![Assignment Form].Form!CboVehicleSelect.Requery
The results were not what I need.
How would you suggest this be correct?
Any help is greatly appreciated. Thanks!