Thread Frage zum TK::Button (6 answers)
Opened by Kean at 2009-03-12 11:22

Kean
 2009-03-12 11:22
#119214 #119214
User since
2004-08-18
463 Artikel
BenutzerIn

user image
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?

View full thread Frage zum TK::Button