You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 lines
210 B
Perl

#!/usr/bin/perl -w
use Win32::OLE;
$filename = 'wordFile.doc';
$doc = Win32::OLE->GetObject( $filename )
or die "Cannot load file $filename from Word, $!";
# Print document.
$doc->PrintOut();