> -Original Message-
> Behalf Of Richard A. Evans
>
>
> I have seen (and have written) perl code such as:
>
> use Win32::OLE;
>
> # use existing instance if Excel is already running
> eval {$ex = Win32::OLE->GetActiveObject('Excel.Application')};
>
> So my question is... where do
---
From: Richard A. Evans [mailto:[EMAIL PROTECTED]]
Sent: Friday, February 15, 2002 10:47 AM
To: [EMAIL PROTECTED]
Subject: OLE Functions
I have seen (and have written) perl code such as:
use Win32::OLE;
# use existing instance if Excel is already running
eval {$ex = Win32::OLE->GetA
I have seen (and have written) perl code such as:
use Win32::OLE;
# use existing instance if Excel is already running
eval {$ex = Win32::OLE->GetActiveObject('Excel.Application')};
die "Excel not installed" if $@;
unless (defined $ex) {
$ex = Win32::OLE->new('Excel.Application', su