I have recently become the ScoreKeeper for a "couples" dart group. Each week, every player is randomly assigned to a two-person team. A team is eliminated after two losses. Winners keep playing unti there is only one team without two losses.
I have an access db with several queries and these tables:
Players: ID, Name
MatchDates: Match-Number, Cal-Date
Scores: Match-Number, ID, Score [ Player-ID ]; a player can have multiple scores in each week ]
Teams: Match-Number, ID-1, ID-2 [ Match ID's ]
MatchUps: Match-Nmbr, ID-1, ID-2 [ Team ID's ]
I have quite a bit of dba experience, but very little form experience. I want to create one (or more) forms to:
1. Pick the team-members for each team
2. Pick the team matchups
By "Pick", I mean in each case, I would like to see a (scrollable) list of choices that let's me click on one "name" at a time until two have been chosen and then have the corresponding ID inserted into the table. It would also be nice if already selected entries are removed from the next "pick".
If anyone has already done something like this, you could save me a lot of trouble. Thanks in advance.