Re: use lib failing on IIs

2002-06-07 Thread csaba . raduly
On 06/06/2002 22:24:36 perl-win32-users-admin wrote: Group, I got all my stuff run on my local box with perl/apache/mysql and then I went to move everything to the main IIs server. However. when I ran my scripts that worked before in the same directory structure on my local box I got the

Re: use lib failing on IIs

2002-06-07 Thread Sisyphus
Can't locate STDLIB.pm in @INC (@INC contains: ../ C:/Perl/lib C:/Perl/site/lib .) at D:\web\cgi-bin\scripts\admin\admin.pl line 35. BEGIN failed--compilation aborted at D:\web\cgi-bin\scripts\admin\admin.pl line 35. If 'STDLIB.pm' is indeed located in 'D:\web\cgi-bin\scripts\' (or in the

Newton Raphson's or Bisection Interpolation in perl

2002-06-07 Thread parvez
Hi, Does anybody know of a module that helps in interpolation using Newton Raphson's method or Bisection method in Perl. Parvez ___ Perl-Win32-Users mailing list [EMAIL PROTECTED] To unsubscribe: http://listserv.ActiveState.com/mailman/mysubs

RE: use lib failing on IIs

2002-06-07 Thread Tillman, James
Can't locate STDLIB.pm in @INC (@INC contains: ../ C:/Perl/lib C:/Perl/site/lib .) at D:\web\cgi-bin\scripts\admin\admin.pl line 35. BEGIN failed--compilation aborted at D:\web\cgi-bin\scripts\admin\admin.pl line 35. If 'STDLIB.pm' is indeed located in 'D:\web\cgi-bin\scripts\'

RE: Newton Raphson's or Bisection Interpolation in perl

2002-06-07 Thread Charbeneau, Chuck
From: parvez [mailto:[EMAIL PROTECTED]] Subject: Newton Raphson's or Bisection Interpolation in perl Does anybody know of a module that helps in interpolation using Newton Raphson's method or Bisection method in Perl. Wolf book, Chapter 16, pgs. 638 - 640. You can probably get the

Re: Parsing Mime emails and Mail::Pop3Client

2002-06-07 Thread Trevor Joerges
Yes. It is called MIME-Parser and I believe it is part of the MIME-Tools bundle. It allows you to parse the messages either to disk or in memory. There are good examples in the docs. If you have trouble let me know and I can give you some examples. Hope this helps. Kind regards, Trevor J.

Printing to 2 destinations with one statement in Windows

2002-06-07 Thread Cutts III, James H.
I am using ActiveState Perl v5.6.1 build 631 for a bunch of different projects. I keep coming up with the same need in most of my programs. I would like to be able to direct output to both the screen and a file without having to use pairs of print statements. The code: print

RE: Printing to 2 destinations with one statement in Windows

2002-06-07 Thread Hanson, Robert
I can think of a few approaches... 1. write a subroutine to do this. 2. write a source filter (http://www.samag.com/documents/s=1287/sam03030004/) 3. use tie I would probably choose the third. It is possible to create a module that you simulate a filehandle (or hash, or array, etc). The short

Re: Printing to 2 destinations with one statement in Windows

2002-06-07 Thread Charles Oppenheimer
--- Cutts III, James H. [EMAIL PROTECTED] wrote: I am using ActiveState Perl v5.6.1 build 631 for a bunch of different projects. I keep coming up with the same need in most of my programs. I would like to be able to direct output to both the screen and a file without having to use pairs