Hi,
Have you consulted the PAR::Tutorial?
It has a section named Packing GUI Applications.
It may be of some help.
UPDATE: I just had a thought, have you used a font that is not installed on the other machines you are experiencing the problem with?
Martin | [reply] |
According to the documentation on CPAN, it says that I need to link a library path to the executable......how do I do this? It doesn't explain how.
Also, to the other question, the font is standard - I haven't chnaged anything.
Any suggestions?
| [reply] |
Hi,
I cant test this at the moment but try:
pp -l TK --gui -0 file.exe file.pl
Or
pp -M TK --gui -0 file.exe file.pl
its getting late and I dont have access to a machine with Perl at the moment. Let me know how you get on with this.
Hope this helps.
Martin
| [reply] |
I've never used pp on WinXP, but I see a few things which "could" be a factor. First, maybe the --gui option is misplaced in the comman line, try "pp --gui -o file.exe file.pl"
Second, try it without the --gui option. I think --gui just calls wperl instead of perl
I'm not really a human, but I play one on earth.
flash japh
| [reply] |
You can also try to insert more: use pragmas.. Like:
use Tk::Frame;
use Tk::Notebook;
#And whatever you may be using...
That way its included if missed with par... | [reply] [d/l] |
You have to add
use Encode::Unicode to you script... But add it as the first use-Statement... | [reply] [d/l] |
perlapp file.pl --exe file.exe
cheers
--- | [reply] [d/l] |