Hi
I have a form with several bound textboxes to same table.
I added a filter button next to some of text boxes. Something similar to this
Private Sub cmdFilterProjectID_Click()
DoCmd.GoToControl "Project ID"
DoCmd.RunCommand acCmdFilterMenu
End Sub
Clicking the button will display a filter with check boxes.
The issues I am having is that I want to be able to set the filter on the first text box, then go to the next text box and set another filter ... e.g.; filter the filtered data. However, once I set the first filter, the second filter dialogue always appears as a "text" filter instead of a list of check boxes.
Individually, every filter button shows a list of item with check box for each. It is just when I try to use 2 filters in a row, the second filter dialog does not show the list of check boxes.
Any thought what I am missing?
thanks
Mike