Any suggestions for speeding spreadsheet creation?

2003-09-11 Thread Randy Strauss
Is it Excel that's slow, or OLE- maybe the interprocess communication? As often as possible I try to apply formats to large ranges. But how about setting cell values? Is there a way to dump an array of values into a range? If every OLE call is calling the other process, perhaps if I can dump seve

RE: Win32::AdminMisc

2003-09-11 Thread Molumuri, Janardhan
This will do. c:\>ppm install http://www.roth.net/perl/packages/Win32-AdminMisc.ppd --janardhan. -Original Message- From: Bernard Kenik [mailto:[EMAIL PROTECTED] Sent: Thursday, September 11, 2003 9:07 PM To: [EMAIL PROTECTED]; Perl List Subject: Re: Win32::AdminMisc Importance: High

Mail::Sendmail module problem?

2003-09-11 Thread Xu, Qiang (XSSC SGP)
Hi, all: I am testing the perl module of Mail-Sendmail, which has been installed in my perl. Here is my script: #!d:/perl/bin/perl -w # testmail.pl - Send mail using the Mail::Sendmail module use strict; use Mail::Sendmail; my $reci

RE: Eject Zipfloppy

2003-09-11 Thread Thomas, Mark - BLS CTR
Title: Message If you don't mind invoking a command-line removable drive ejector: http://www.visi.com/~kmarty/software.html#AutoEject   - Mark. -Original Message-From: Ananthans [mailto:[EMAIL PROTECTED] Sent: Thursday, September 11, 2003 2:28 PMTo: [EMAIL PROTECTED]Subj

Re: Is there something like $SIG{__PRINT__} = sub {

2003-09-11 Thread Trevor Joerges [SendMIME Software]
You can trap any of the Perl signals and send then you a custom routine like: # trap warning and die messages and exit $SIG{'__WARN__'} = \&trap; $SIG{'__DIE__'} = \&trap; sub trap { my ($message) = @_; print "\nERROR: $message\n"; exit (1); } Trevor Joerges - Original Message - Fro