T
tompen1978
Hi,
I have a problem I have been struggling with for some time now. I have
a conitnuous form with a number of comboboxes showing data from
different queries related to the record in question. My problem is in
refreshing the data for these comboboxes. I use a method to first
requery the underlying query of the box and then select ItemData(0):
Forms![MS_Maintenance].DueMS.Requery
Forms![MS_Maintenance].DueMS = Forms![MS_Maintenance].DueMS.ItemData
(0)
This works perfectly on an individual record. But it only works on an
individual record not as a general refresh of all records on opening
of the form. The way I worked around it was to make a loop that walks
through each record and applies the method above. My problem is that
takes quite some time if there are many records in the list.
Really appreciate some help on this one!
//Thomas
I have a problem I have been struggling with for some time now. I have
a conitnuous form with a number of comboboxes showing data from
different queries related to the record in question. My problem is in
refreshing the data for these comboboxes. I use a method to first
requery the underlying query of the box and then select ItemData(0):
Forms![MS_Maintenance].DueMS.Requery
Forms![MS_Maintenance].DueMS = Forms![MS_Maintenance].DueMS.ItemData
(0)
This works perfectly on an individual record. But it only works on an
individual record not as a general refresh of all records on opening
of the form. The way I worked around it was to make a loop that walks
through each record and applies the method above. My problem is that
takes quite some time if there are many records in the list.
Really appreciate some help on this one!
//Thomas