Thread Prompt Eingabe (10 answers)
Opened by Gast at 2004-08-13 15:09

ptk
 2004-08-19 12:43
#42672 #42672
User since
2003-11-28
3645 Artikel
ModeratorIn
[default_avatar]
Also doch mit einer GUI? Dazu koennte man beispielsweise Tk nehmen:

Code: (dl )
1
2
3
4
5
6
7
8
9
10
use Tk;
my $mw = MainWindow->new;
my $suchbegriff;
Tk::grid($mw->Label(-text => "Suchbegriff:"),
my $e = $mw->Entry(-textvariable => \$suchbegriff),
-sticky => "w");
$e->bind("<Return>" => sub { $mw->destroy });
MainLoop;

warn "Nun mach was mit <$suchbegriff>";


Je nach Geschmack um Ok/Cancel-Button, Fehlerabfrage etc. erweiterbar.

View full thread Prompt Eingabe