Hi again Remi,
No, a requery is generally not required when applying/removing filters, but
since your filter isn't working, I was wondering if you could force a requery
to see if it resolved your issue.
Disregard that, as I have tested here and reproduced your problem. Requery
doesn't fix it on its own, but if you reset the subforms recordsource and
then requery it your problem will be resolved... like this:
Me.SUBFORM1.Form.Filter = ""
Me.SUBFORM1.Form.FilterOn = False
Me.SUBFORM1.Form.RecordSource = "TABLE1"
Me.SUBFORM1.Requery
Me.SUBFORM2.Form.Filter = ""
Me.SUBFORM2.Form.FilterOn = False
Me.SUBFORM2.Form.RecordSource = "TABLE2"
Me.SUBFORM2.Requery
Must be an undocumented feature of Access... I tested on A2003.
Damian.
> Not requerying - it isn't necessary when I change the filter, I
> wouldn't expect it to be necessary here... (Am I wrong?) Another
[quoted text clipped - 55 lines]
> > > Regards,
> > > Remi.
Rémi - 14 Mar 2007 17:54 GMT
Thanks.
I suppose its' that, or continuing to assign "invalid" criteria to my
filter - criteria that will return all records.
Regards,
Remi.
On Mar 13, 5:26 pm, Damian S <Dami...@discussions.microsoft.com>
wrote:
> Hi again Remi,
>
[quoted text clipped - 79 lines]
> > > > Regards,
> > > > Remi.