Thread Button bei event ausgrauen/disablen
(11 answers)
Opened by Gast at 2007-12-13 16:20
Teil 2
Code (perl): (dl
)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 my $id = $mw->repeat(10000, \&loop); MainLoop(); sub start { $textfield1->insert('end', "Eintrag"); } sub stop { $textfield1->delete(0); $textfield2->insert('end', "Eintrag geloescht"); } sub clear { $textfield1->selectionSet(0, 'end'); my @indexlist = $textfield1->curselection(); $textfield1->selectionClear(0, 'end'); # hier werden alle eintraege deselektiert foreach my $i ( @indexlist ) { $textfield1->delete(0); } } sub loop { $textfield1->selectionSet(0, 'end'); my @indexlist = $textfield1->curselection(); $textfield1->selectionClear(0, 'end'); # hier auch foreach my $i ( @indexlist ) { #do something } } |