in reply to tty in Tk app
#!/usr/bin/perl use Tk; use Tk::ExecuteCommand; my $mw = MainWindow->new; $ec = $mw->ExecuteCommand( -command => '', -entryWidth => 50, -height => 10, -label => '', -text => 'Execute', )->pack; $ec->configure( -command => 'dir' ); $ec->execute_command; $ec->bell; $ec->update; MainLoop;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: tty in Tk app
by gri6507 (Deacon) on Jul 31, 2004 at 16:33 UTC |