Unable to navigate records after search

vancey

Registered User.
Local time
Today, 19:09
Joined
Mar 7, 2011
Messages
18
Dear all,
Im having a problem after searching for a certain record. I am unable to browse the other records again using the navigation buttons on the form again. I suspect that it opens one record instead of jumping to that record (all records still exists). How do i code it so that it 'jumps' to the record instead of opening it so that i can browse other records as well, after searching. Im new to access and learning on the go from the net. Please advise me on how do i recode it~ Thanks so much! :)
VanCe
 

Attachments

You are applying a filter to the form, which means that only the record matching matching the selection in your list box is being displayed.

What you need to do is remove the filter by using;
Code:
    Me.FilterOn = False
via a button click or other method.

I've added a button to your form which does just that.
 

Attachments

That helps a lot. Thanks John! :)
 

Users who are viewing this thread

Back
Top Bottom