in reply to Excel on screen

Maybe this could help you get started:
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
    Thanks. It was the "Visible" line that I needed to know about.