Thread Neues MainWindow öffnen, altes schließen (8 answers)
Opened by J-jayz-Z at 2005-04-28 11:15

renee
 2005-04-28 12:19
#43764 #43764
User since
2003-08-04
14371 Artikel
ModeratorIn
[Homepage] [default_avatar]
Als Anfang...

Code: (dl )
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#! /usr/bin/perl

use strict;
use warnings;
use Tk;

my $mw = MainWindow->new();
$mw->Button(-text => 'offen', -command => \&topl)->pack();

MainLoop;

sub topl{
 my $toplevel = $mw->Toplevel(-title => 'Test');
 local $SIG{ALRM} = sub {$toplevel->destroy()};
 alarm(6);
}
\n\n

<!--EDIT|renee|1114676414-->
OTRS-Erweiterungen (http://feature-addons.de/)
Frankfurt Perlmongers (http://frankfurt.pm/)
--

Unterlagen OTRS-Workshop 2012: http://otrs.perl-services.de/workshop.html
Perl-Entwicklung: http://perl-services.de/

View full thread Neues MainWindow öffnen, altes schließen