I place a button on a form to make a filter using
DoCmd.RunCommand acCmdFilterByForm
After choosing the filter by checking the boxes etc I would then like to Apply the filter using
DoCmd.RunCommand acCmdApplyFilterSort
in another button or checkbox or whatever. The only problem is that it seems all buttons etc are disabled (except of course the controls which are bound to the data)on the Filter by Form form. I don't want to use a menu or toolbar toggle I wish to do it from the form.
DoCmd.RunCommand acCmdFilterByForm
After choosing the filter by checking the boxes etc I would then like to Apply the filter using
DoCmd.RunCommand acCmdApplyFilterSort
in another button or checkbox or whatever. The only problem is that it seems all buttons etc are disabled (except of course the controls which are bound to the data)on the Filter by Form form. I don't want to use a menu or toolbar toggle I wish to do it from the form.