nr0mx has asked for the wisdom of the Perl Monks concerning the following question:
The subroutine that deals with the Tk part:D:\messaging>msgsrvr2.pl xxx.xx.com (10.156.6.45) : hi Free to wrong pool 1d1f228 not 222770 at D:/Perl/site/lib/Tk/MainWindo +w.pm line 55, <GEN1> line 1.
I am running WinXP. I have ActivePerl 5.8 and ActiveTcl 8.4.6.1 installations. Any ideas ? Is there another forum to pose this question ?sub client_connect { # Process a client connect - send our client either an "Ok" or # "Cancel" string, depending upon how the media change went. my($ns, $from) = @_; chomp( $_ = <$ns> ); my $mw = MainWindow->new; $mw->withdraw; $mw->bell; $mw->repeat(15 * 1000 => sub {$mw->bell}); my $reply = $mw->messageBox( -icon => 'info', -type => 'OKCancel', -message => "$from\n\n$_", -wraplength => '6i', -title => 'mediachanged', -background => '#ECFFFF', ); print $ns "$reply\n"; close $ns; exit; } # end client_connect
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Perl/Tk problem on Windows
by eserte (Deacon) on Jun 03, 2004 at 10:00 UTC | |
by nr0mx (Scribe) on Jun 03, 2004 at 10:16 UTC | |
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 Ven'Tatsu (Deacon) on Jun 03, 2004 at 14:28 UTC | |
|