AgaBoogaBoo
Lifer
I'm writing an applet that involves 8 different shipping zones. The user will select the zone through a Checkbox. I think an array could be useful, but I'd like to construct each Checkbox at the same time. How should I go about doing that?
Checkbox[] shipZone = new Checkbox
that's what I'm thinking of doing, but I don't know what goes after the end so that I can construct each checkbox with their title.
http://java.sun.com/j2se/1.4.2/docs/api/java/awt/Checkbox.html For now, I want to use the second constructor they have listed that accepts a String
Checkbox[] shipZone = new Checkbox
that's what I'm thinking of doing, but I don't know what goes after the end so that I can construct each checkbox with their title.
http://java.sun.com/j2se/1.4.2/docs/api/java/awt/Checkbox.html For now, I want to use the second constructor they have listed that accepts a String