in reply to Re: pp/prima problem
in thread pp/prima problem

I don't know if you know this link, PP Man Pages, Take a look at it.
When you include modules with pp like Foo::Boo, be sure you include the Foo module too, sometimes it causes problems cause the Boo module might uses Foo module, or it's functions

``The wise man doesn't give the right answers, he poses the right questions.'' TIMTOWTDI

Replies are listed 'Best First'.
Re^3: pp/prima problem
by c6ackp (Novice) on May 30, 2005 at 19:57 UTC
    The Prima GUI standalone exe is now working ok...

    Seems like the dependency detection within PP prefers this:

    use Prima; use Prima::Buttons; use Prima::Application; use Prima::MsgBox; use Prima::StdBitMap;

    to this...

    use Prima qw(StdBitmap Buttons Application MsgBox);
    Many Thanks :) Steve