I have this problem i can't seem to figure out,i'll do my best to explain it here.
I have a series of checkboxes each one having a name and a value and a person can choose either one or all of the boxes(it can't be radiobuttons because you can only make a single choice)
I want to know if it is possible to calculate the total amount if the person chooses any number of checkboxes from one to eight.
I.e checkbox1 value = 5
checkbox2 value = 15
checkbox3 value = 7.
etc
I would apprieciate any kind of help here thanks
============================================================
Below is a clarfied version of the question
Its part of a project i am trying to build.After a client chooses what car they want and how many days they want to rent it for ,you would then calculate the total amount owed for the rental.i have that part worked out,the second part is the one that i can't figure.
after the vehicle selection has been made the client chooses from five differant extras,these are,
Childseat @ 10 fixed rate
sat-nav@ 5 fixed rate
Luggage rack @ 15 fixed rate
Ski-Equiped @ 10 fixed rate
Amounts above are currency (pounds,Euros,Dollars)
Choice on the form is made via a checkbox for each item,the client can choose either one or all of the extras,my problem is how to workout how to calculate the total owing for the extras based on how many checkboxes have been choosen
Public class Rentalform
Const CHILDSEAT_EXTRA as Decimal = 10
Const SATNAV_EXTRA as decimal = 5
const LUGGAGE_RACK_EXTRA as decimal = 15
Const SKI_EQUIPED_EXTRA as decimal = 10
if chkChildseat.checked = true and
chkSatnav.checked = false and
chkLuggageRack.checked = false and
chkSkiEquiped.checked = false then
txtTotal.text = CHILDSEAT_EXTRA
If chkchildseat.checked = true and
chkSatNav.checked = false and
chkLuggageRack.checked = True and
chkSkiEquiped.checked = false then
txtTotal.text = (CHILDSEAT_EXTRA + LUGGAGE_RACK_EXTRA )
Do i have to churn out streams of code to cover every possible choice variation i.e chilseat only,childseat and Luggagerack or maybe the client chooses all of the extras. Help please