PDA

Click to See Complete Forum and Search --> : Clearing Filter Recordsets


adam01
Sep 26th, 2000, 12:07 PM
Hello. My question is relatively simple for all of you but bear with me. How can I clear a recordset after I have used a filter on it? i.e. I want the original recordset before the filter. Thanks in advance.....

simonm
Sep 27th, 2000, 07:02 AM
Either of the following will work:

1) rs.Filter = ""

2) rs.Filter = adFilterNone


Simon.