Access 2007 has a great new feature with the multiple value field, unfortunately you can not access these ‘childrecords’ to add more fields or add another childrecord.
For an already developed theatre reservation system they would like to create pricingsets. Which mean that for each show you select the appropriate pricingset.
Now I have created the following tables:
tblRank
- RankId
- Rank (dress-circle for example)
tblPricingTypes
- PricingTypeId
- PricingTypeName
tblDaySelection
- DaySelectionId
- DayName
- checkbox field for the days (Monday, Tuesday, Wednesday etc.)
tblTimeSelection
- TimeSelectionId
- TimeName
- Start Time
- End Time
Above tables are needed to create the pricing set, which have the following main table:
tblPricingSet
- PricingSetId
- PricingSetName
- Valid From Date
- Valid to Date
The second level of this table will contain the Pricingtypes:
tblPricingSet_PricingTypes
- PricingSet_PricingTypesId
- FKPricingSetId
- FKPricingTypeId
- Details of a group or combo ticket.
After creating the ticketset is created on a form I would like to have a kind of listview, which looks likes the multiple value field in Access 2007 to create the appropriate child records.
This list contains all the rows of the tblPricingTypes and simply to check or uncheck a checkbox the child record will be created or deleted.
After choosing the right Pricing Types you will have the following listviews with checkboxes to choose the:
- RankSelection
- DaySelection
- TimeSelection
For each dayselection you can choose the different timeselections. The Rank will be added to all fields. Which gives you the following hierarchy:
- Pricing Set
- - Pricing Type
- - - Day Selection
- - - - Time Selection
- - - - - Rank
So I was thing to do above in one table as a child record of the tblPricingSet_PricingTypes:
tblPricingSet_PricingTypesSub
- PricingSet_PricingTypesSubId
- FKPricingSet_PricingTypesId
- FKDaySelectionId
- FKTimeSelectionId
- FKRankId
- Price
Hopefully someone can help me to create these kind of listviews with checkboxes. The create the appropriate childrecords. I do not want to create each record with a dropdownbox (already have it) as it take more time to check if all the pricingtypes are added. A listview with a checkbox gives you a much better overview.
I have tried to use an unbound check box on a continues form, but this won’t work.
This method is based on another system also in made in access which have above possibility, but I’ve only seen some screenshots, and the developer won’t tell me how it works.
For each show we run a query to give an overview of the possible prices per rank.
For an already developed theatre reservation system they would like to create pricingsets. Which mean that for each show you select the appropriate pricingset.
Now I have created the following tables:
tblRank
- RankId
- Rank (dress-circle for example)
tblPricingTypes
- PricingTypeId
- PricingTypeName
tblDaySelection
- DaySelectionId
- DayName
- checkbox field for the days (Monday, Tuesday, Wednesday etc.)
tblTimeSelection
- TimeSelectionId
- TimeName
- Start Time
- End Time
Above tables are needed to create the pricing set, which have the following main table:
tblPricingSet
- PricingSetId
- PricingSetName
- Valid From Date
- Valid to Date
The second level of this table will contain the Pricingtypes:
tblPricingSet_PricingTypes
- PricingSet_PricingTypesId
- FKPricingSetId
- FKPricingTypeId
- Details of a group or combo ticket.
After creating the ticketset is created on a form I would like to have a kind of listview, which looks likes the multiple value field in Access 2007 to create the appropriate child records.
This list contains all the rows of the tblPricingTypes and simply to check or uncheck a checkbox the child record will be created or deleted.
After choosing the right Pricing Types you will have the following listviews with checkboxes to choose the:
- RankSelection
- DaySelection
- TimeSelection
For each dayselection you can choose the different timeselections. The Rank will be added to all fields. Which gives you the following hierarchy:
- Pricing Set
- - Pricing Type
- - - Day Selection
- - - - Time Selection
- - - - - Rank
So I was thing to do above in one table as a child record of the tblPricingSet_PricingTypes:
tblPricingSet_PricingTypesSub
- PricingSet_PricingTypesSubId
- FKPricingSet_PricingTypesId
- FKDaySelectionId
- FKTimeSelectionId
- FKRankId
- Price
Hopefully someone can help me to create these kind of listviews with checkboxes. The create the appropriate childrecords. I do not want to create each record with a dropdownbox (already have it) as it take more time to check if all the pricingtypes are added. A listview with a checkbox gives you a much better overview.
I have tried to use an unbound check box on a continues form, but this won’t work.
This method is based on another system also in made in access which have above possibility, but I’ve only seen some screenshots, and the developer won’t tell me how it works.
For each show we run a query to give an overview of the possible prices per rank.