http://qs1969.pair.com?node_id=410125


in reply to Win32::OLE Word Macro Conversion

You have

With Options .LocalNetworkFile = False

Now... Options is unqualified which means it belongs to the Application object (VBA assumes this), perl won't... try:

$Word->Options->{LocalNetworkFile}=0; ... $Word->Options->{LabelSmartTags}=0;
(untested!)... HTH - Mark