in reply to Re^4: problem with Tk::JComboBox
in thread problem with Tk::JComboBox
my @array= ('1', '2','123'); my $box1 = $Screen->JComboBox( ... , -choices= \@array ); my $box2 = $Screen->JComboBox( ... , -choices= \@array );
As long as you use a reference to the same array, the boxes are in sync to the first box, the master. At least that's how I understood the documentation.
|
|---|