H
Henning
Hello!
I have "inherited" the following code:
use Win32::OLE::Const 'Microsoft Excel';
$Win32::OLE::Warn = 3;
$Excel = Win32::OLE->new('Excel.Application', 'Quit'); # get a new
excel
$Book1 = $Excel->Workbooks->Open("$abs_file_name"); # open Excel
file
When opening Excel (line 4), Excel tries to start any macros
associated with the file.
Is there a way to avoid this (meaning: force excel to open the file
with disabled macros)?
And how to do so? [I'm using Excel 2003 SP3]
Thanks a lot
Henning
I have "inherited" the following code:
use Win32::OLE::Const 'Microsoft Excel';
$Win32::OLE::Warn = 3;
$Excel = Win32::OLE->new('Excel.Application', 'Quit'); # get a new
excel
$Book1 = $Excel->Workbooks->Open("$abs_file_name"); # open Excel
file
When opening Excel (line 4), Excel tries to start any macros
associated with the file.
Is there a way to avoid this (meaning: force excel to open the file
with disabled macros)?
And how to do so? [I'm using Excel 2003 SP3]
Thanks a lot
Henning