my $button1 = $frame4 -> Button(-text => "Suchen", -command =>[\&datenbank_suche, $scrl,$suchbegriff], -width=>'20' )
my $enter=$suchbegriff->bind('<Return>',[\&datenbank, $scrl,$suchbegriff]);
1
2
3
4
5
6
7
8
9
###
sub datenbank_suche {
###
my $scrl = shift;
my $hash = shift;
my $sucher = $hash->get;
....
}
2011-04-09T11:14:17 ProboHallo liebes Forum,
$scrl scheint beim <Enter> Event einfach nicht bei datenbank_suche anzukommen.
Warum nur klappt es beim Button?
1 2 3 4 5 6
my $button1; $button1 = $frame4 -> Button( -text => "Suchen", -command =>[\&datenbank_suche, $button1, $scrl, $suchbegriff], -width=>'20' );
1 2 3 4 5
my $button1 = $frame4 -> Button( -text => "Suchen", -width=>'20' ); $button1->configure(-command =>[\&datenbank_suche, $button1, $scrl, $suchbegriff]);