I have a table that contains static data - a collection of game pieces. I would like to have a form display a datasheet (or listbox?) based on that table. To limit the records returned, I would like to have several radio buttons or check boxes (or the best suited control) that "builds" a filter (or a query? - getting lost in the terminology.
I would like the controls to work together - for example:
If you selected control 1, 2, and 4 the datasheet would only return those rows that I own, are on team 1, and have ability 1.
Can someone plese point me in the proper direction? Should I use a query or recordset? Should I use a listbox?
Thanks, PDUNCAN
I would like the controls to work together - for example:
Code:
control 1 = own
control 2 = Team 1
control 3 = Team 2
control 4 = Ability 1
control 5 = Ability 2
Can someone plese point me in the proper direction? Should I use a query or recordset? Should I use a listbox?
Thanks, PDUNCAN