Help with navigation

A

Andrew

I have a form with a subform. the subform shows client
records. When I dblclick a client, it opens a form
showing their information. On the form that opens up
after dblClicking it, I have a button that opens a search
form, the problem I am having is it will not let me go to
another record. but if I open the client form from the
object window, I can open the search form, and it will
let me go to any record I want to.

Does any body know how to fix this, or is there a code
that I can but on the search button to release the form,
so you can navigate to differant records.

Thanks, Andrew
 
W

Wayne Morgan

I suspect that you are opening the pop-up form in a filtered state. If so,
try clicking the Apply Filter button on the toolbar to turn the filter off.
 
A

Andrew

Is there a way to use that menu action as code on a button
on the form to turn the filter off when they click the
search button?
 
W

Wayne Morgan

Depending on where the button is:
Me.FilterOn = False
or
Forms!MyForm.FilterOn = False
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top