Ñåðãåé ×åðíèåíêî wrote:

> 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";

This work's fine (if on smae drive) :

my $mylib = '/includes/28ESP.pl';
require $mylib;

Make sure the required script returns a true (eg: 1;).
Add the <drive>: if not on the same drive.

>     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


-- 
  ,-/-  __      _  _         $Bill Luebkert    Mailto:[EMAIL PROTECTED]
 (_/   /  )    // //       DBE Collectibles    Mailto:[EMAIL PROTECTED]
  / ) /--<  o // //      Castle of Medieval Myth & Magic http://www.todbe.com/
-/-' /___/_<_</_</_    http://dbecoll.tripod.com/ (My Perl/Lakers stuff)
_______________________________________________
Perl-Win32-Users mailing list
Perl-Win32-Users@listserv.ActiveState.com
To unsubscribe: http://listserv.ActiveState.com/mailman/mysubs

Reply via email to