in reply to PP - am I crazy or what!?
F.I. I used
Which worked in my normal perl script but to get it working with PAR as a PAR standalone executable I had to use:use Tk;
The same goes for:use Tk; use Tk::Menubutton; use Tk::Text; use Tk::FileSelect;
One of these seems to use Carp::Heavy;use IO::File; use File::Find;
When I included the extra modules my standalone exe worked like a charm. I found out which modules were missing by running the exe from the commandline on a machine on which I have no perl installed. The error output tell you the missing modulename. In your case you have to include at least;
I hope it solves your problems. It worked for me ;)use Archive::Zip; use Tk::Dialog;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: PP - am I crazy or what!?
by michaelg (Beadle) on Oct 15, 2003 at 14:44 UTC |