Re: [mod_perl 2] Intermittent crashes on PostgreSQL 9.0.1 + ActivePerl 1007 + Apache 2.2.17 on Win2k3sp2

2010-11-15 Thread Kevin Field
I've updated it on StackOverflow with a few more details, if anybody has a minute to look at it. Thanks for your time, Kev On Thu, Nov 11, 2010 at 5:21 PM, Kevin Field kevinjamesfi...@gmail.comwrote: Hi everyone, I recently asked a question on StackOverflow about some intermittent crashes

[mod_perl 2] Intermittent crashes on PostgreSQL 9.0.1 + ActivePerl 1007 + Apache 2.2.17 on Win2k3sp2

2010-11-11 Thread Kevin Field
Hi everyone, I recently asked a question on StackOverflow about some intermittent crashes that have been giving us problems lately. I believe they started since our upgrade to Apache 2.2.17, if that helps. The full description is here:

Win32::OLE on MS Word using Selection.Find.Execute

2010-09-14 Thread Kevin Gibbs
Hi Peter, This is a translation of a script from technet that works: use Win32::OLE; use Win32::OLE::Const 'Microsoft Word'; # http://www.microsoft.com/technet/scriptcenter/resources/officetips/may05 /tips0512.mspx my $word = new Win32::OLE 'Word.Application','' or die Cannot start

Re: [Fwd: storable and Win32::OLE::Variant]

2008-02-07 Thread Kevin Beverly
to: 1. test whether or not a variable is indeed a Win32::OLE::Variant date object 2. stringify a Win32::OLE::Variant date object thanks, kevin Jan Dubois wrote: On Fri, 01 Feb 2008, Kevin Beverly wrote: i have an active state perl program that parses ms excel files for loading into postgresql

[Fwd: storable and Win32::OLE::Variant]

2008-02-01 Thread Kevin Beverly
details. thanks, kevin ___ Perl-Win32-Users mailing list Perl-Win32-Users@listserv.ActiveState.com To unsubscribe: http://listserv.ActiveState.com/mailman/mysubs

Problem returning empty Safearray from OLE Component

2006-10-16 Thread Kevin Godden
expect it to throw this error when the array is empty?It's all a bit of a pain as I sometimes need to return an empty array as part of normal operation, and I don't want to have to add loads of nasty extra code handle the situation as an error...Any help would be greatly appreciated, thank

Opening Files

2006-09-18 Thread Kevin Wells
I am attempting to open a file using the following command:open(FH,"",$file) or die "The file $file could not be found";I get the file path using the following command:chomp($file=STDIN);When I execute the program after entering the file name from the keyboard I get an error

Re: What's on your repository list?

2006-07-13 Thread Kevin J. Woolley
Bernie Cosell wrote: In response to a recent inquiry, I learned that a likely solution to my problem would be found in a module availabe via RothConsulting [Win32::AdminMisc --THANKS!!]. Made me wonder: are there other sites besides ActiveState and RothConsulting that it makes sense for me

Re: sleep oddness

2006-04-05 Thread Kevin J. Woolley
Steven Manross wrote: Has anyone seen an issue where sleep 1; causes an infinite loop in perl (100% CPU usage -- no movement in the script)? Build 816 in case it matters.. It just started happenning today in a script I wrote a very long time ago and haven't modified in a while. Similarly,

Re: Maill::Pop3Client - correction

2006-03-17 Thread Kevin J. Woolley
Chris wrote: Does anyone know if there's any legal issues with hosting encryption modules in the US? I run a farm of uber fast servers that I could add a PPM repository to for everyone. - Chris Hi Chris, I haven't looked at the US situation in a few years, but I believe it hasn't changed.

Re: Maill::Pop3Client - correction

2006-03-17 Thread Kevin J. Woolley
Chris wrote: Maybe the solution is to have a server in each country to distribute restricted modules to occupants only. There are a lot of companies (like Motorola for example) that limit access to software downloads based on the user's country of origin. I'm sure there are ways of obtaining

Re: Need SSL Help

2006-02-20 Thread Kevin Carothers
with me when I attempt to use it with SOAP::Lite- I just gave up on it and now use Curl command-lines in my Perl code . Kevin On 2/14/06, Chaddaï Fouché [EMAIL PROTECTED] wrote: Kevin Carothers a écrit : Hi Jaime- You need to provide more info. This link might help:http://johnbokma.com/perl

Re: LWP for a passord protected site

2006-02-20 Thread Kevin Carothers
Try separating the username password with a colon. KCOn 2/14/06, Jerry Kassebaum [EMAIL PROTECTED] wrote: The code below is modified from Suehring's Beginning Perl Web Development.I'm thinking it is supposed to get me the format for entering my usernameand password. However, the result I get is

Re: website providers

2006-02-16 Thread Kevin Carothers
Unless I'm missing something can't you just go into excel and do a file - save as - filename.html and upload it to your web ISP.. KC On 2/15/06, Giuoco, Aaron [EMAIL PROTECTED] wrote: OnSmart will probably be good for what you want to do:http://www.onsmart.com/linux.htm$90/yearI've been using

Re: How the wrappers of C libraries work out?

2006-02-13 Thread Kevin Carothers
Hi Robbie- I may just be speaking for myself on this, but what I've done before is put my C functions in an ActiveX control- This control is then registered (via regsvr32) on the particular machine it will be used from. Then use Win32::OLE to bind to the DLL. Unless there is a way to write

Re: Need SSL Help

2006-02-13 Thread Kevin Carothers
Hi Jaime- You need to provide more info. This link might help: http://johnbokma.com/perl/https.html ...But command-line curl is all self-contained with no Perl interaction whatsoever- so personally I'm lost as to what it is you're describingunless your curl.exe can't find either: 1.

Re: Upgrading Perl

2006-02-09 Thread Kevin J. Woolley
Chris Wagner wrote: If ur talking about the ActiveState distribution u should be able to just install right over the top of the old installation. Everything will be preserved. Hello Chris, This method can actually cause problems with the PDK, among other things. For Windows software, read

Re: creating ZIP file that is password protected

2006-01-26 Thread Kevin Carothers
Hi Glen, It looks like cpan.org's Archive::Zip doesn't support encryption. Probably because it's more of a function of the WinZip front-end... I'm thinking this because good-old zip.exe doesn't know anything about passwords, either. Maybe you can encrypt the files that you add to your

Re: RAS

2006-01-23 Thread Kevin Carothers
Hi Daniel, Unless I'm missing something, it sounds like you have a transaction model- where each dial-up operation is a transaction. In such a model, you'd prolly like to have a service-date/time and a service completion date-time. If I was tasked with this, I'd start with adding data columns

Re: Win32::OLE and Acroread anybody?

2006-01-16 Thread Kevin Carothers
Hi Lynn, I haven't personally done this- but I've had some luck with Win32::OLE. Try $acroApp = Win32::OLE-new(AcroExch.App); $acroDoc = Win32::OLE-new(AcroExch.PDDoc); HTH- KC On 1/16/06, Lynn. Rickards [EMAIL PROTECTED] wrote: Greetings,Wondering if anyone has had any success

Re: grep question

2006-01-16 Thread Kevin J. Woolley
Spencer_Lists wrote: Greetings perl-win32-users, This is not a strictly win32 question but relates to files in a win32 system so ... The context is pretty obscure so I am including the very minimum code snippet. @files is an array of all the files in the path folder. I need to check

Re: Find the date of the newest file????

2005-06-20 Thread Kevin Carothers
Hi Chuck- On 6/18/05, Charles Maier [EMAIL PROTECTED] wrote: I have a Perl app that catalogs photo files. IS there a quicker way of finding the newest file date in a directory other than doing a stat on each file in it?? How?? TIA Chuck I know it sounds a little weird, but what I do

Re: Coping Records from one Database to another with Blank Data i n a field

2005-06-16 Thread Kevin Carothers
On 6/16/05, Gerber, Christopher J [EMAIL PROTECTED] wrote: -Original Message- Error Message. Missing SearchCondCh value New Search Value is Printing Record for Search Conditions 950 and 2 and 'MAINTENANCE TRAINING REQUI REMENTS REVIEW' IS FOUND OR 'MTRR' IS FOUND and SQL

Re: Output image via http

2005-04-18 Thread Kevin Carothers
Hi Chris, I may be way off-base here, but you might need to add a Content-Length: header too- HTH- Kdot On 4/18/05, Chris [EMAIL PROTECTED] wrote: I know I've seen the answer to this question in the past but I can't seem to find it in the archives or Google. How can I output an image

Re: Running Perl script without a command window

2005-04-14 Thread Kevin Carothers
On 4/14/05, Dan Baumbach [EMAIL PROTECTED] wrote: I'm running a perl script that checks the viability of a server. I have the script scheduled to run every 5 minutes. That means every five minutes I have a command window flash on the computer as the script is being run. Is there any way to

Re: Comparing strings

2005-04-11 Thread Kevin Carothers
On Apr 11, 2005 11:22 AM, Craig Cardimon [EMAIL PROTECTED] wrote: I am working with huge ASCII text files and large text fields. As needs and wants have changed, I will be reprocessing data we have already gone through to see if more records can be extracted. I will need to compare strings

Re: security diff between hidden fields and cookies

2005-03-28 Thread Kevin Carothers
On Mon, 28 Mar 2005 15:12:06 -0500, Thomas, Mark - BLS CTR [EMAIL PROTECTED] wrote: I would like to get some opinions on what is safter, hidden fields or cookies? You might be surprised to hear both are equally insecure. In either case, you're sending data to a browser, and you're assuming

Re: adding a title to a file on windows

2005-03-10 Thread Kevin Carothers
Wow- I never knew those properties even existed... It is possible there is some sort of a PIF file that's created when you create comments under the summary tab? KC On Thu, 10 Mar 2005 15:26:29 -0500, Earthlink-m_ryan [EMAIL PROTECTED] wrote: Chris wrote: The file comments are part of the

Re: Archive::Zip and CSV files for parsing

2005-03-09 Thread Kevin Carothers
On Wed, 9 Mar 2005 14:03:54 -0600, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Hi; I'm using Archive::Zip to unzip a bunch of CSV files that I want to extract information from. The problem is that when I extact a file, and I try and read it into an array for line by line handling, the

Re: Win32:OLE - Threadsafe?

2005-02-28 Thread Kevin Carothers
On Mon, 28 Feb 2005 13:12:40 +0100, Neil Burnett [EMAIL PROTECTED] wrote: Has anything happened to solve this clean up issue with Win::OLE and threads? Free to wrong pool ... during global destruction I am avoiding the error at the moment by taking jan and paul's advice (thanks)

Re: How to call a perl code in Windows from Unix

2005-02-28 Thread Kevin Carothers
On Mon, 28 Feb 2005 10:23:24 +0100, Bruno Georges [EMAIL PROTECTED] wrote: Hi One possible solution is to wrap the functions in Script B [on windows] with SOAP and expose it has a service via apache. [---] Bruno Georges [---] I need to run Script A in Unix , It will generate few

Re: Win32::OLE : Bizarre Push while Examining IE Events

2005-02-22 Thread Kevin Carothers
Hi Andrew, I really don't know what's going on, but I have tried running MSAccess as an OLE automation server; you too are obviously running IE as an OLE automation server. I hate it when people tell me something can't be done, but I really doubt that you can call events from a COM object via a

hummingbird hostexplorer ole

2005-01-30 Thread kevin
, looks like this: #! c:\Perl\bin\perl.exe -w use strict; use Win32::OLE; my $hex = Win32::OLE-GetObject('HostExplorer.Application'); $hex -RunCmd(Pf1); #will update the time in window Thanks, Kevin /// HostExplorer is a comprehensive PC-to-host

RE: Output to select windows??

2005-01-19 Thread Kevin Gibbs
); # make sure will be visible $childwins[$i][0]-update; # make our updates visible } sleep 1; } -Original Message- From: Glenn Linderman [mailto:[EMAIL PROTECTED] Sent: 18 January 2005 19:12 To: Charles Maier Cc: Kevin

RE: Output to select windows??

2005-01-18 Thread Kevin Gibbs
Chuck, Yes but you'll need to be clearer on what you want. If you're looking for create GUI interface then there is TK, Win32::GUI or WX. If you want to send characters to a multiple console windows then there is Win32::Setupsup. Kevin. -- Date: Sun, 16 Jan 2005

RE: Screen Saver settings

2004-09-03 Thread Kevin Gibbs
Hi John, The screen saver settings are stored in the registry. The following should tell you what the settings are: use Win32::TieRegistry (TiedRef = \$reg) ; use Win32; my $control = $reg-{CUser\\Control Panel}; my $desktop = $control-{Desktop}; print ScreenSaver: . scalar

Re: Determining Available Disk Space

2004-08-26 Thread Kevin Gibbs
Just for the record, there is also Win32::DriveInfo::DriveSpace(). Kev. -- Message: 14 Date: Wed, 25 Aug 2004 12:34:03 -0500 From: Dirk Bremer \(NISC\) [EMAIL PROTECTED] Subject: Re: Determining Available Disk Space To: [EMAIL PROTECTED] Message-ID: [EMAIL PROTECTED]

Detecting and controling switch ports with Perl

2004-06-11 Thread Kevin Shaw
. Regards, Kevin ___ Perl-Win32-Users mailing list [EMAIL PROTECTED] To unsubscribe: http://listserv.ActiveState.com/mailman/mysubs

RE: Pipe and redirect STDOUT

2004-02-23 Thread Kevin Hill
Guys, My understanding is that there is a bug in the file extension/application to execute code, that is part of windows, that stops redirection from working if Microsoft does this lookup itself. Stopping it having to do this lookup, by invoking Perl.exe directly, gets around this issue. This

RE: Perl-Win32-Users digest, Vol 1 #1729 - 17 msgs

2003-12-30 Thread Kevin Gibbs
Bill, Just out of interest I tried a variation on your script with 3 buttons to open up the html file. One button used System, one used the windows shell (via OLE) and one used OLE to control IE directly. On my machine (w2k), Shell takes the longest, system is slightly quicker, and OLE is

RE: Array within an array...? I'm confused

2003-12-19 Thread Gould, Kevin
Read through perldoc perldsc - it's an excellent way to learn how this works. From: Brian Gibson [mailto:[EMAIL PROTECTED] Sent: Friday, December 19, 2003 4:27 PMTo: [EMAIL PROTECTED]Subject: Array within an array...? I'm confused Hello all,I am having trouble understanding some

Win32::SetupSup and ActiveState Perl 8

2003-12-16 Thread Kevin Gibbs
Does anyone know of a ppm for SetupSup that works with the latest version of Perl? Thanks, Kevin. This e-mail is confidential and may contain legally privileged information. You should not disclose its contents to any other person. If you are not the intended recipient, please notify

RE: Wierd Perl syntax ($#$dlr) explanation, please!

2003-11-21 Thread Kevin Hill
Dietmar, Thanks for the response. I read that in the manual but it didn't make sense to me in the way that this was being used. There is a loop and, within it, the following: next if ($#$dlr == -1); How would the awk-stuff below fit with this code above? Ta. K. Kevin Hill AVP

Fork/wait generating GPF at 0x0000000c in Perl.exe

2003-11-12 Thread Kevin Hill
$pid exitted with status: $?\n; } print Parent after wait.\n; Kevin Hill AVP Programmer TradeWeb Europe Ltd 99 Gresham Street London EC2V 7NG Tel: +44 (0)20 7776 3200 Fax: +44 (0)20 7776 3201 www.tradeweb.com

RE: input redirection question

2003-04-04 Thread Kevin Horvatin
You shouldn't have to do anything at all --- if you post a simple program that you believe should work you will get more help. -Kevin -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Peter Eisengrein Sent: Friday, April 04, 2003 2:01 PM To: '[EMAIL

RE: Update Windows 2000 Time via Internet-NTP-Server

2003-03-25 Thread Gould, Kevin
. Kevin Gould Sr. I/T Specialist Gentiva Health Services, Overland Park, KS 913-814-2369 -Original Message- From: Harald Wopenka [mailto:[EMAIL PROTECTED] Sent: Monday, March 24, 2003 6:37 PM To: [EMAIL PROTECTED] Subject: Update Windows 2000 Time via Internet-NTP-Server Hi there, does

Re: Trouble with my variables.

2003-02-18 Thread Kevin Horvatin
. HTH - Kevin ___ Perl-Win32-Users mailing list [EMAIL PROTECTED] To unsubscribe: http://listserv.ActiveState.com/mailman/mysubs

Re: Saving File from Internet Explorer (OLE Variant)

2003-01-17 Thread Kevin . ADM-Gibbs
Thomas, Thanks for that but it seems to suffer from the same problem. The Save As button doesn't use the ExecWB function but calls execCommand(SaveAs...) on the document in the browser. I've tried adding an additional button that calls ExecWB(4, 3, filename) but the javascript doesn't save,

User Full Name from Active Directory

2003-01-07 Thread kevin . mortensen
Hi All, I have a perl/cgi script that grabs user account attributes from the domain pdc and generates listboxes sorted by username, user full name, etc. Since we have migrated to a new w2k active directory, it appears that the USER_FULL_NAME attribute in

RE: Perl Recursive

2003-01-03 Thread Gould, Kevin
-Original Message- Yeah well this is my home directory /home/xcomb what i would like to do it to go all the subdirectories of that home directory that has many folders and in each folder to create Trash folder untill it reaches the end of subdirectory i know it has

Re: Net::Telnet on Win2K

2002-12-13 Thread Kevin Pendleton
something some of them call console mode. Kevin _ STOP MORE SPAM with the new MSN 8 and get 2 months FREE* http://join.msn.com/?page=features/junkmail ___ Perl-Win32-Users mailing list

IIS/CGI question

2002-12-12 Thread kevin . mortensen
Hiya all-- I am having problems with a CGI script I'm trying to run off an IIS 5.0 server-- the script does a File::DosGlob::glob(otherserver\\d\$\\folder\\*.txt) type call, where otherserver is a server in the same domain as the IIS server. I am currently in the local administrators

RE: what does exit(n) give you

2002-11-18 Thread Gould, Kevin
I believe the proper usage for if errorlevel is If errorlevel 3 echo yes You only test equivalence when evaluating it as a variable. Unless it works both ways now. -Original Message- From: Edwards, Mark (CXO) [mailto:[EMAIL PROTECTED]] Sent: Monday, November 18, 2002 8:17 AM To:

RE: Browsing for SMB machines using a network broadcast? (Peter McGowan)

2002-11-14 Thread Kevin . ADM-Gibbs
You could try using use Win32::NetAdmin. It has a various options for looking at different machines on the network, eg use Win32::NetAdmin::GetServers($Opdc, $dom, SV_TYPE_NT, \%nt); and the keys in %nt will be the NT machines your network, Win32::NetAdmin::GetServers($Opdc, $dom,

RE: Win32::AdminMisc -- Any risks??

2002-10-31 Thread Gould, Kevin
Put down the keyboard and step away from the computer and I'm sure you'll be safe :-) You have nothing to worry about as a consequence of the module in and of itself. There is no particular reason that AdminMisc would blow anything up any more than any other arbitrary application or

RE: Gui rip off.

2002-10-23 Thread Gould, Kevin
If you look under your Activestate install, there's an Eg/tk directory. Run Widget.bat I think you'll find it has more than ample to keep you busy. -Original Message- From: Beckett Richard-qswi266 [mailto:Richard.Beckett;motorola.com] Sent: Wednesday, October 23, 2002 3:33 AM To:

Authenticated user retrieval when running under IIS Anonymous user

2002-10-23 Thread Gould, Kevin
). If anyone has any alternate suggestions for running privileged tasks which wouldnt require me storing a password and manually impersonating, Im open to education. Kevin Gould Sr. Technical Specialist, Server Administration and Management Gentiva Health Services - Overland Park, KS 913-814-2369

RE: Win32::AdminMisc problems

2002-10-10 Thread Gould, Kevin
I'd check permissions on the directory. Likely you're not running the program as the same id interactively and through the webserver. Use www.sysinternals.com filemon to monitor inetsrv.exe to see if you're getting permission denied. -Original Message- From: Krishna, Hari

RE: Win32::Job/Process - maintaining constant number of sub-processes

2002-10-04 Thread Gould, Kevin
Be sure and wait against your sub processes. When theyre done, that will ensure they clear. Disclaimer: I cut this out of something I wrote and cleaned it up for consumption so I may have missed something here and there in the cleanup. Something like this: foreach $Something

RE: Active directory madness - where is the phone number and the emai l

2002-10-02 Thread Gould, Kevin
I've attached what LDAP gave me for a test user's attributes on a test script I was playing with the other day for your reference. The list will likely block it, but it should reach you directly. -Original Message- From: Steven Manross [mailto:[EMAIL PROTECTED]] Sent: Wednesday,

Resolve IP address

2002-09-18 Thread Kevin
Hello, Is there a module that anyone can recommend that will reverse resolve an IP address and return a domain. TIA. --Kevin ___ Perl-Win32-Users mailing list [EMAIL PROTECTED] To unsubscribe: http://listserv.ActiveState.com/mailman/mysubs

RE: Regualr Expression Again...

2002-09-11 Thread Gould, Kevin
It almost looks like you're working on a backslash, not a forward slash - which did you intend? I presume that's all you want to match, you are ONLY looking for the forward slash on the end of the line? $scandir=~/\/$/; or my preference, $scandir=~!/$!; -Original Message- From:

Image Magick Failure under Perl

2002-08-30 Thread Cutts Kevin-CKC006
I've been using ImageMagick under perl to make thumbnails and scale pictures quite successfully. (I've done this under Win2k and WinXP). Recently I got a new computer and faithfully installed active perl 633. Using PPM I verified that I have the latest Image-Magick (5.26). On this computer even

RE: Disregarding Folders In A Directory

2002-08-28 Thread Gould, Kevin
if (not -d $filespec) { print $filespec: I am a file\n } -Original Message- From: Barlow, Neil [mailto:[EMAIL PROTECTED]] Sent: Wednesday, August 28, 2002 8:49 AM To: [EMAIL PROTECTED] Subject: Disregarding Folders In A Directory Hi all, I am a newbie to perl... I am using the

Quick Question - Decimals

2002-07-24 Thread Kevin
that 113 wil be 1.13 and 1045 will be 10.45 Any help will be appreciated. --Kevin ___ Perl-Win32-Users mailing list [EMAIL PROTECTED] To unsubscribe: http://listserv.ActiveState.com/mailman/mysubs

DBI::XBase

2002-07-15 Thread Kevin
is that the computer freezes and I have to reset the machine. Thanks in advance. Kevin. [EMAIL PROTECTED] ___ Perl-Win32-Users mailing list [EMAIL PROTECTED] To unsubscribe: http://listserv.ActiveState.com/mailman/mysubs

Perl TK question

2002-06-25 Thread Kevin
component inside of the application (IE component - can I use activeX?). When minimized, the application will run on the system tray. Is this possible with Perl/TK? thanks --Kevin [EMAIL PROTECTED] ___ Perl-Win32-Users mailing list [EMAIL PROTECTED

Fw: Hash of Hashes

2002-05-07 Thread Kevin
Kevin wrote: Hello, I am having a bit of a problem working with nested data structures and after spending some time with the perl man pages, I am turning to the list for help. I am reading a DBI record into a hash reference - my $row = $sth-fetchrow_hashref() - I would like

Mail::Sender and HTML::Template question

2002-05-03 Thread Kevin
{smtp = 'smtp.irubin.com', from = '[EMAIL PROTECTED]'}; $sender-Open({to = $Email, subject = 'SUBJECT'}); $sender-Send($thtml-output); $sender-Close; Thanks in advance. -Kevin [EMAIL PROTECTED] http://www.irubin.com ___ Perl-Win32-Users mailing

RE: style

2001-03-15 Thread Ireland, Kevin
$file="${invar1}.txt"; Kevin Ireland Sr. Systems Engineer Gentiva Health Services (913) 814-2169 [EMAIL PROTECTED] -Original Message- From: Jean-Paul Felix [mailto:[EMAIL PROTECTED]] Sent: Thursday, March 15, 2001 15:46 To: Perl-Win32-Users (E-mail) Subject: style Is th

RE: mkdir

2001-03-15 Thread Ireland, Kevin
Christopher, You need to encase the parms in (). The following statements are equivalent due to the default mask that is applied. mkdir ("dirname"); mkdir ("dirname", "0777"); Kevin Ireland Sr. Systems Engineer Gentiva Health Services (913) 814-2169 [EM

(no subject)

2001-02-12 Thread Foster, Kevin
Has anyone used Net::Telnet to connect to a Cisco Switch? Thanks, Kevin Foster Systems Administrator Engineering Services - Vignette Corp. Desk: (512) 741-1356 Cell: (512) 970-6748 "Building a better idiot through automation" ___ Perl-W

RE: Date math

2000-11-20 Thread Kevin Crow
the author's warning about size and speed. My recommendation comes from the surprisingly good results I am able to achieve with this package. The original post was fairly sparse and not knowing the writer's requirements, I recommended the most full-featured module that I have experience with. Kevin