Help with navigation

  • Thread starter Thread starter Andrew
  • Start date Start date
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
 
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.
 
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?
 
Depending on where the button is:
Me.FilterOn = False
or
Forms!MyForm.FilterOn = False
 
Back
Top