I have a [Visits] form where our clients can log in their visit when they come into our office.
Our clients are assigned to a Branch which is assigned to a parent District.
There are many Branches in a District and many Districts.
At times our clients remember their Branch number [BranchNo] but do not remember their District number [DistrictNo].
I have created a query wherein the various Branches are shown with their assigned District. This query forms the base for my [Combo52] ComboBox.
Once selected, I move the Branch information and District Information from the [Combo52] ComboBox to their respective fields in the form: BranchNo and DistrictNo.
eg: BranchNo.Value = Me.Combo52 and
DistrictNo.Value = Me.Combo52.Column(3)
This works well on the first pass. ... The BranchNo and DistrictNo show on the form with their selected values.
However if the client changes his mind vis-a-vis his Branch Number and goes back to the [Combo52] ComboBox, for a second or n-th time, the selections are updated in the Combo52 combobox but the form fields: BranchNo and DistrictNo are not refreshed until I actually click on them in the form.
What can I do do to show these refreshed fields similar to the first time a selection is made?
Thank you so much for your help! MBA
Our clients are assigned to a Branch which is assigned to a parent District.
There are many Branches in a District and many Districts.
At times our clients remember their Branch number [BranchNo] but do not remember their District number [DistrictNo].
I have created a query wherein the various Branches are shown with their assigned District. This query forms the base for my [Combo52] ComboBox.
Once selected, I move the Branch information and District Information from the [Combo52] ComboBox to their respective fields in the form: BranchNo and DistrictNo.
eg: BranchNo.Value = Me.Combo52 and
DistrictNo.Value = Me.Combo52.Column(3)
This works well on the first pass. ... The BranchNo and DistrictNo show on the form with their selected values.
However if the client changes his mind vis-a-vis his Branch Number and goes back to the [Combo52] ComboBox, for a second or n-th time, the selections are updated in the Combo52 combobox but the form fields: BranchNo and DistrictNo are not refreshed until I actually click on them in the form.
What can I do do to show these refreshed fields similar to the first time a selection is made?
Thank you so much for your help! MBA