in reply to OLE from CGI - Is it possible?
use Win32::OLE; #my $Word = Win32::OLE->new('Word.Application')or die "Couldn't open w +ord"; ## use the following if Word is already running my $Word = Win32::OLE->GetActiveObject("Word.Application", \&QuitApp); Word->Documents()->Open("c:\\Projects\\wtemplates\\TEMPLATE.DOC");
|
|---|