1. First step turn STDOUT buffering off
$|=1; #put at top of code
This allows error messages and normal prints to appear in the order of execution.

2. You have one doc that works and one that doesn't.
Add error checking on the opens and new operations.
my $word =Win32::OLE->new('Word.Application','Quit') or die "blah$!";
my $doc = $word->{Documents}->Open("$word_file") or die "bla2$!";

3. Add some prints for each variable - look for something weird like undef value

Update:
From your description, it looks like tabler 1 in the failing doc is what is failing.
Try cut and paste the table that works from doc 1 to doc 2.
Again make sure the open worked. you could conceiveably get your error if the Word doc didn't open.

Do both docs render ok on the screen? Can you print them without problems?

It is possible with the drawing tools to make something that looks like a table, but is not a table in the Word sense.


In reply to Re: WIn32::OLE debug by Marshall
in thread WIn32::OLE debug by Anonymous Monk

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.