On Tuesday, January 11, 2000 9:52 AM, Aldo "dada" Calpini wrote:
>it seems you misunderstood the message; no surprise you're getting
>these results. "-group => 1" means: this is the starting of a new
>group. you should try with:
> #First Group
> $W->AddRadioButton(...);
> $W->AddRadioButton(...);
> $W->AddRadioButton(...);
> #Second Group
> $W->AddRadioButton(-group => 1, ...);
> $W->AddRadioButton(...);
> $W->AddRadioButton(...);
Actually, this does not seem to work. Is there a bug?
It does work with -group => 1, -group => 2 as in my other post.
John McNamara