Hi, i'm making a video game rental system for my A2 coursework and so far have made 4 tables, created a forum (and sub-forum) from a query pulling the relative sections from each table.
My tables are:
tblGames
PK: GameID
tblGamesCopy
PK:GCID(game copy ID)
FK: GameID
tblRental
PK: RentalID
FK: GCID
tblCust
PK: CustID
FK: RentalID.
The way my relationships are, a customer can make many rentals, a game can have many copies, a copy can be rented many times. (Say if I need to make further elaboration on the basics of this).
Now, my problems:
I created a combo box that included a Game Name, Price, Genre etc. Using VBA (e.g. Me.GameName = Me.ComboBox43.Column(0)) I tried to make it so the boxes would Auto-populate on the selection, however it won't work. I tried searching for a solution and all I got was if I changed it to "Limit to List" it'll work, but it still doesn't (when I make a selection, NOTHING auto-populates)
Secondly, I was wondering, how would I actually make it so a copy is taken? I have my form set where the employee would enter the name of the game, but don't know how to link it in the amount or available copies that can be rented.
I can't really move on with my coursework until I've got this finished :banghead:... Any help is really appreciated.
My tables are:
tblGames
PK: GameID
tblGamesCopy
PK:GCID(game copy ID)
FK: GameID
tblRental
PK: RentalID
FK: GCID
tblCust
PK: CustID
FK: RentalID.
The way my relationships are, a customer can make many rentals, a game can have many copies, a copy can be rented many times. (Say if I need to make further elaboration on the basics of this).
Now, my problems:
I created a combo box that included a Game Name, Price, Genre etc. Using VBA (e.g. Me.GameName = Me.ComboBox43.Column(0)) I tried to make it so the boxes would Auto-populate on the selection, however it won't work. I tried searching for a solution and all I got was if I changed it to "Limit to List" it'll work, but it still doesn't (when I make a selection, NOTHING auto-populates)

Secondly, I was wondering, how would I actually make it so a copy is taken? I have my form set where the employee would enter the name of the game, but don't know how to link it in the amount or available copies that can be rented.
I can't really move on with my coursework until I've got this finished :banghead:... Any help is really appreciated.