in reply to Re: Re: cat worddoc1.doc worddoc2.doc worddoc3.doc > bigOlWordDoc.doc
in thread cat worddoc1.doc worddoc2.doc worddoc3.doc > bigOlWordDoc.doc

Do you have MSWord installed? Is $MSWord defined before you try the open() ?
  • Comment on Re: Re: Re: cat worddoc1.doc worddoc2.doc worddoc3.doc > bigOlWordDoc.doc

Replies are listed 'Best First'.
Re: Re: Re: Re: cat worddoc1.doc worddoc2.doc worddoc3.doc > bigOlWordDoc.doc
by LameNerd (Hermit) on Jan 24, 2003 at 20:47 UTC
    Yes I have MSWord installed.
    And I check that $MSWord is defined with die
    my $MSWord = Win32::OLE->new('Word.Application') or die "Can't get wor +d!:$!\n";
    Is that the right way to verify that $MSWord is defined? Thanks again :)