I am trying to requery a subform from a command button on a main form. The two forms are not linked. The subform data source is a SQL query I am updating manually. After making the query update (which works correctly) - I have tried every combination of requery/refresh commands I can think of to make the subform display the new data.
From the Parent form:
Me!Subform.Form.Requery
Me.Subform.Form.Requery
Me.Subform.Requery
I even tried putting a command button on the subform to execute Me.Requery
None of these work. I can open the underlying SQL query and see that it has changed. But the subform will just not display the new data. It will refresh and display the correct data only if I close and reopen the form. Subform is a continuous form if that matters.
Any idea what I could be missing?
Thanks