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