NOTE: use Perl; is on undef hiatus. You can read content, but you can't post it. More info will be forthcoming forthcomingly.
All the Perl that's Practical to Extract and Report
Stories, comments, journals, and other submissions on use Perl; are Copyright 1998-2006, their respective owners.
Win32::OLE (Score:2)
Reply to This
Re:Win32::OLE (Score:2)
Thanks for the pointer. Maybe I can do this entirely in pure Perl, and drop any intermediate file formats. :)
J. David works really hard, has a passion for writing good software, and knows many of the world's best Perl programmers
Win32::OLE + XML/HTML (Score:1)
use Win32::OLE;
sub wdFormatHTML {8}
sub wdFormatXML {11}
my $msword = Win32::OLE->new("Word.Application");
my $doc = $msword->Documents->Open($src_name);
$doc->SaveAs($target_name, wdFormatXML);
Re:Win32::OLE + XML/HTML (Score:2)
Thank you for the concrete example. That looks like it may work very well.
J. David works really hard, has a passion for writing good software, and knows many of the world's best Perl programmers