Title: RE: Using canned subroutines with includes - an answer of sorts
Doug Loud wrote, on Fri 7/8/2005 12:17

: in Windows XP Pro, SP2, I have to use:
:
: require 'includes/28ESP.pl';
:
: But in the *NIX days, I used:
:
: require "../includes/28ESP.pl";

Are you sure that isn't
 
require "./includes/28ESP.pl";
 
? Because the double-dot means *go up* a level, then come down in the includes directory; so that implies that includes is a sibling directory to the current one. The single-dot means than includes is a child of the current directory.
 
Joe

==============================================================
          Joseph P. Discenza, Sr. Programmer/Analyst
               mailto:[EMAIL PROTECTED]
 
          Carleton Inc.   http://www.carletoninc.com
          574.243.6040 ext. 300    fax: 574.243.6060
 
Providing Financial Solutions and Compliance for over 30 Years
 
_______________________________________________
Perl-Win32-Users mailing list
Perl-Win32-Users@listserv.ActiveState.com
To unsubscribe: http://listserv.ActiveState.com/mailman/mysubs

Reply via email to