Hi All,
I've been looking to see if it's possible to resize radio boxes or the panel box that the radio box is in. So far, it seems that it's only possible to resize panel boxes if they contain list boxes, but not radio boxes. If you do it at the Panel Box() or Radio Box() level, the contents are empty in the panel box. If you define the Radio Box() as a variable, say "rb" and then call rb << Set width(xxxx), nothing happens.
I'm hoping to change the width of the radio box in my popup window, and maybe also change the wrap setting for the radio box().
Any help is much appreciated.
Thanks!,
DS
Here's some example code I'm working with to try and change the width.
Names Default To Here( 1 );
nwin = New Window( "This is a window",
Panel Box( "Options", rb = Radio Box( {"Option A", "Option B", "Option C"} ) )
);
Wait(2);
rb<<set width(10);