Check Box to Number

A

Ashley

Form View, I have a number of Check boxes on a Form Page.

When a Check Box is clicked I would like it to genarate a number unique to
that Box.

I then need to total up all the check Boxes to give me a total score.

I AM VERRY NEW TO THIS AND WILL NEED DUMMY TALK

Regards
 
S

Storrboy

Ashley said:
Form View, I have a number of Check boxes on a Form Page.

When a Check Box is clicked I would like it to genarate a number unique to
that Box.

I then need to total up all the check Boxes to give me a total score.

I AM VERRY NEW TO THIS AND WILL NEED DUMMY TALK

Regards


Check boxes only have two values (not including null in tripple states),
True and False or -1 and 0.
If you need to store or work with other numbers, then you need to either
programatically assign the appropriate value to some other control when a
check box is selected, or use a different control such as an option group or
combobox. You have not supplied enough info on your circumstances to really
advise as to the best method though.
 
Top