in reply to Excel on screen
use Win32::OLE;
use Win32::OLE::Const 'Microsoft Excel';
$Excel = Win32::OLE->new("Excel.Application");
$Excel->{Visible} = 1;
$Book = $Excel->Workbooks->Open("C:/spreadsheet.xls");
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Excel on screen
by esr (Scribe) on Nov 23, 2004 at 00:05 UTC |