Filtering question

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

background:
I have a form that builds a filtering string based on date range and a
Subject code.
that are saved as public variables. When opening the target form I see the
dates have been passed correctly but there are no records. (the immediate
window tells me the subject code has been properly set)

the cruxed:
If I unclick the filter button all the records in the table appear, when I
reclick the filter button viola' it filters on the subject code. Any ideas?

Thanks

Todd
 
I would try getting rid of the public variables (nasty beasts anyway) and
pass the date and subject in the OpenArgs where I open the form. Then, in
the On Open event of the form, I would set the filtering for the form based
 
Back
Top