Thread Frage zum TK::Button
(6 answers)
Opened by Kean at 2009-03-12 11:22
Ich habe folgenden Code:
Code (perl): (dl
)
1 2 3 4 5 6 7 my $button_update = $update->Button(-text => 'Update suchen', -relief => "raised", -command => sub { $listbox->addOptions("0.9.2","0.9.3","0.9.4"); $button_update->configure(-text => "Installieren"); }, )->place( -x => 22, -y => 71, -width => 251, -height => 44); Beim drücken des Buttons bringt er natürlich die Fehlermeldung das die Variable $button_update undefined ist. Wie kann ich das lösen? |