Subject: | "pp -f Bytecode" with Tk on Windows fails |
Using ActivePerl 5.8.4 on XP, the sample script compiles successfully but fails to run because Bytecode.pm isn't found.
#----- Start Script -----
#!/usr/bin/perl
use Encode::Unicode;
use Tk;
use Tk::BrowseEntry;
my $valpbe;
my $mw = MainWindow->new;
my $be= $mw->BrowseEntry(-variable => \$valbe);
$be->pack(-side => 'left', -anchor => 'w', -fill => 'x', -expand => 1);
MainLoop;
#----- End Script -------