Windows 7 wordpad and tables compatibility

  • Windows 7 wordpad doesn't perfectly read rtf file generated by wptools when they contain tables.

    The text after the tables is not shown.

    Instead all rft files generated by Openoffice or Microsoft Word work perfectly.

    Please fix this problem as soon as possible. Thank you.

    Best Regards
    Matteo

    • Offizieller Beitrag

    Interesting - if you change this unit in WPIOWriteRTF.pas it should work:

    Code
    procedure TWPRTFWriter.WritePard;
    begin
      WriteString('\pard');
      if TableLevel > 0 then
         WriteString('\intbl');
      if TableLevel > 1 then   // was: >0 - fix loading in WordPad 7
        WriteStringAndValue('\itap', FWritingTable);
    ...

    Hoqwever it was not wrong before.

    Julian