PDA

Click to See Complete Forum and Search --> : Remove filter


hlieu
Mar 30th, 2000, 12:59 AM
Hi,

The following code is to filter the records:


datPrimaryRS.Recordset.Filter = "StudentNam = '" & txtYear3 & "'"


Question: How to remove the filter and go back to the normal form.

Thanks.

Forest Dragon
Mar 30th, 2000, 06:11 PM
Try: datPrimaryRS.Recordset.Filter=0

If you still have problems, tell me!

hlieu
Mar 30th, 2000, 09:25 PM
Hi Forest Dragon,

That line of code that you gave me works beautyfully.

Thank you very much.