HELP!!!

  • Thread starter Thread starter rabraham
  • Start date Start date
R

rabraham

I am trying make a database for basketball stats.
I am now trying to make the player info screen.
I need a couple of things
1) On the left hand side, a list of all the players
2) when you click on the player, it brings up their stats (on the right)
3) the stats will come from a different form where I would enter that
players stats from each game

Thanks in advance
 
You could use a list box on the left that is bound to the primary key of your
player table. Name this list box "lboPlayer". Then add a subform on the right
that displays a single player's statistics. Set the Link Master/Child
properties of the subform control to the player primary key field and
lboPlayer.
 
Back
Top