in reply to Re: Problem with Excel and Win32::OLE
in thread Problem with Excel and Win32::OLE
Quick test:
use strict; use warnings; use Win32::OLE; my $excel = Win32::OLE->CreateObject('Excel.Application'); $excel->{Visible} = 1; sleep 5; $excel->{Visible} = 'False'; sleep 5; $excel->{Visible} = 1; print "press enter..."; <STDIN>;
Excel will appear, then disappear for 5 seconds, then reappear.
|
|---|