Requery Query

G

Guest

I have a combo box that has a query as a rowsource. It seems that when I
update the table that forms the query, the combo box doesn't display the
updated information even when I perform a combo box requery. Is it because
the query as the rowsource is not being updated? Is there a requery command
for a query as well? Thanks.
ck
 
V

Van T. Dinh

There may be timing problem that can re-surface later. For example, if you
update the Table, the update may still be in the cache and yet to be updated
into the Table. If you do the Query at this time, your ComboBox may not
pick up the updated data.

Use the Idle Method to make sure the data is updated into the Table before
Requery.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads


Top