Originally posted by Crayola465
Sorry to take so long to respond to this. I will get right on it now.
Crayola.
Could you post the exact SQL that you're currently using (that triggers this error). Any QueryDefs (Saved Queries) referred to should also have their SQL posted here. I'm sorry if you've passed this stage in the thread before but I need to focus on the SQL (Which is where your problem lies) and that's hard if you get overburdened with unconnected detail.
.ReQuery() / .Refresh()
A .Refresh() will only regrab info for those records it already knows to exist.
A .requery() will rerun the query again.
The latter will be required (in place of the former) if there are any records added or removed between separate runs.
Comment