Help for this page

Select Code to Download


  1. or download this
     
    use Win32::OLE;
    my ($t_row, $t_col) = (3,3);
    ...
    $table->Cell(3,3)->Range->{Text} = "Data33";
    $word->Selection->MoveDown(5,4);
    $doc->ActiveWindow->Selection -> TypeText("This line should be after t
    +he table");
    
  2. or download this
    use Win32::OLE;
    my ($t_row, $t_col) = (3,3);
    ...
    $table->Cell(3,3)->Range->{Text} = "Data33";
    $word->Selection->MoveDown(5,4);
    $doc->ActiveWindow->Selection -> TypeText("This line should be after t
    +he table");