> Hi guys, > > As a newbie to both Perl and Win32:GUI I am a little confused with an > error message I am receiving after running the simple Perl script below. > > -- Can't locate loadable object for module Win32::GUI in @INC (@INC > contains: C:/Perl/lib C:/Perl/Site/lib .) at (eval 2) line 3 -- > > The script is as follows: > > <Job Id="First Win32::GUI attempt"> > <script language=PerlScript> > > use Win32::GUI; > $main = Win32::GUI::Window->new(-width => 100, -height => 100); > $main->AddLabel(-text => "Hello Mark"); > $main->Show(); > > </script> > </job> > > I have ActivePerl installed in C:/Perl and Win32::GUI installed in > C:/Perl/site/lib/Win32GUI > I also tried copying GUI.pm from C:/Perl/site/lib/Win32GUI into > C:/Perl/site/lib, but to no avail. > > What 'loadable object' is it looking for? GUI.pm or something else? > > Can anyone help me?? > > I look forward to your reply, > > Regards, > > Mark > >