in reply to Re: Perl/Tk problem on Windows
in thread Perl/Tk problem on Windows
sub client_connect { my ( $ns, $from ) = @_; chomp($_=<$ns>); print "$from : $_\n"; my $mw = MainWindow->new(); my $t= $mw->Scrolled('Text'); $t->pack(-expand => 1, -fill => 'both' ); tie ( *TEXT, 'Tk::Text', $t ); print TEXT "$from\n\n$_\n"; $mw->destroy; close $ns; CORE::exit(); }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: Perl/Tk problem on Windows
by eserte (Deacon) on Jun 03, 2004 at 10:22 UTC | |
by nr0mx (Scribe) on Jun 03, 2004 at 10:29 UTC | |
by eserte (Deacon) on Jun 03, 2004 at 11:53 UTC | |
by nr0mx (Scribe) on Jun 03, 2004 at 13:13 UTC | |
by Ven'Tatsu (Deacon) on Jun 03, 2004 at 14:28 UTC | |
by nr0mx (Scribe) on Jun 03, 2004 at 15:05 UTC | |
by JamesNC (Chaplain) on Jun 04, 2004 at 04:44 UTC | |
|