PDA

View Full Version : check boxes


Maui Girl57
12-30-2002, 09:40 PM
Hi. I am trying to make a 4 page site that includes the following:

-welcome page
-page with 5 possible choices (using check boxes)
-page with 3 possible choices (using check boxes)
-and a page where the multiple selections picked on the previous two pages appear. (using dynamic text boxes)

I can get the resutls to appear in the last page in my text box but where my problem starts is when the user checks more that one check box on a page. Then I only can get one of the results to show instead of them all. I would appreciated any help on the subject. Thankx, Maui Girl57

cheez
12-30-2002, 10:49 PM
Just a few ideas...

This is funny, I had a nice long list of code to put here when the idea I wanted to convey is much easier when typing english.

At some point you have:



if (checkbox.getValue==true) {
text = "You have hit box1";}



how about making it:



if (checkbox.getValue==true) {
text = text + "You have hit box1";}


Just throwing it out there ;)

Good luck,
Cheez