I need some help determining the best way to design thisapplication I’m being asked to write in Access. I thought I had it figured out but I’m having second thoughts.
Basically a user will need to open up a search form andselect the criteria they want to search on. This will be a handful of list boxes and date fields. I pretty much know how to design thispart.
Once the user has the parameters selected they will need toclick a search button that will run the search query and display the results ina datasheet view. From here this iswhere I’m getting hung up on.
So lets say the user selects his criteria, clicks the buttonand gets 200 records. From that 200 hemight only need 10 of those records so he will need to check (put a check in acheckbox or something of that nature) next to each of the 10 records. Or he might need all 200. Once he selects the 10 records I envision himpressing another button (maybe a submit button) that will store those recordsin a different table.
I am just not sure how to accomplish all of this. I had a query form created that would displaythe results in a subform on the bottom of the main from but I’m not sure how I wouldadd a checkbox to each record or a button that would “submit” those selectionsto another table.
The table the search query is based on is in SQL. I’dlike to keep this as a SQL backend but its not a requirement.