in reply to Listbox, radio buttons and text box in sub function?
my $localpath = $entry->get();
runs before the MainLoop(), so nothing is assigned to $localpath. That's why Entries have textvariables:
my $entry = $mw->Entry( -textvariable => \ my $localpath )->pack;
Update: It seems the last item in the list is not displayed, or rather, the Exit button is displayed over it. Don't put the button into the list, it might be better to use the unused $lsb frame for both the list and the button.
($q=q:Sq=~/;[c](.)(.)/;chr(-||-|5+lengthSq)`"S|oS2"`map{chr |+ord }map{substrSq`S_+|`|}3E|-|`7**2-3:)=~y+S|`+$1,++print+eval$q,q,a,
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Listbox, radio buttons and text box in sub function?
by Ppeoc (Beadle) on Feb 10, 2016 at 18:01 UTC | |
by choroba (Cardinal) on Feb 10, 2016 at 20:12 UTC | |
by Ppeoc (Beadle) on Feb 12, 2016 at 19:54 UTC |