Hello, Doug,

Wednesday, July 06, 2005, 7:39:57 PM, You wrote:

 
DL> Thanks.  I tried using 

DL> require "\\includes\\28ESP.pl"; 

DL> But got an error message of:

DL> Can't locate \includes\28ESP.pl in @INC (@INC contains: C:/Perl/lib
DL> C:/Perl/site/lib .) 

DL> The includes directory is in the same path as the code, along with the
DL> images directory that contains gifs and jpegs for the site.        
 
    Try this:
    
    my $mylib = "includes\\28ESP.pl";
    eval "require $mylib";

    And notice that in windows it's wrong when first symbol of path is
    path delimiter. There must be or driveletter or dot or name of
    file (or folder). E.g.

    "includes\\28ESP.pl" is good path the folder includes are in the
    same folder as requiring script
    ".\\includes\\28ESP.pl" also is good path and is the same as first
    "\\includes\\28ESP.pl" wrong path


Best regards,
Sergey


_______________________________________________
Perl-Win32-Users mailing list
Perl-Win32-Users@listserv.ActiveState.com
To unsubscribe: http://listserv.ActiveState.com/mailman/mysubs

Reply via email to