I've gotta be missing something simple here.

How is it possible to store the values of multiple checkbuttons in an array?
The code below acts like I've created a single checkbutton: for example, selecting 
one of ten selects all ten. 


for ($x = 0; $x <= $file_counter-1; $x++) {
 $win_ckbox_array[$x] =
   
$right2->Checkbutton(-background=>'blue',-variable=>\$ckbox_stat[\$x])->pack(pady=>2);
}


Not storing the checkbutton variable in an array works fine. That's great for one
or two checkbuttons, but that won't work in this instance.

-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to