Leser: 1
|< 1 2 >| | 11 Einträge, 2 Seiten |
$frmBtnR3->Button(-text => 'Logfile Anzeigen', -width => 20, -command => [\&ShowLog("Login")])
QuoteEmpty list is not a valid callback at C:/Perl/site/lib/Tk/Widget.pm line 205.
at ccmUpload.pl line 166
$frmBtnR3->Button(-text => 'Logfile Anzeigen', -width => 20, -command => [\&ShowLog,"Login"])
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/usr/bin/perl
use strict;
use warnings;
use Tk;
my $mw = tkinit();
$mw->Button(-command => [\&change_text,"test"], -text => 'Drueck mich')->pack();
MainLoop;
sub change_text{
print $_,"\n" for(@_);
}
|< 1 2 >| | 11 Einträge, 2 Seiten |