Leser: 1
![]() |
|< 1 2 >| | ![]() |
20 Einträge, 2 Seiten |
1
2
3
4
5
6
use Tk;
$mw = tkinit;
$mw->update;
$mw->Busy;
sleep 2; # never use this in real Tk programs!
$mw->Unbusy;
1
2
3
4
5
6
7
8
9
10
11
12
13
sub tk_save () {
print "tk_save()\n" if $Config{debug};
$Config{main_window}->Busy(-recurse => 1);
speichere_aktuellen_ds();
speichere_daten();
gehe_zu($Config{Aktueller_DS});
$Config{main_window}->Unbusy;
} # sub tk_save;
1
2
3
4
5
6
7
8
9
10
11
12
13
sub tk_save () {
print "tk_save()\n" if $Config{debug};
$Config{main_window}->Busy(-recurse => 1);
speichere_aktuellen_ds();
speichere_daten();
gehe_zu($Config{Aktueller_DS});
$Config{main_window}->Unbusy;
} # sub tk_save;
![]() |
|< 1 2 >| | ![]() |
20 Einträge, 2 Seiten |