How to append a documento to another one

    • Offizieller Beitrag

    This would not work with RTF text:
    WPRichText1.AsString := Data1 + Data2;

    This works:
    WPRichText1.AsString := Data1;
    WPRichText1.CPPosition := MaxInt;
    WPRichText1.SelectionAsString := Data2;

    WPReporter will also do a good and fast job. Esspecially if Data1 is always the same and only some fields have to be exchanged.

    Regards,
    Julian

  • Zitat von wpsupport

    This would not work with RTF text:
    WPRichText1.AsString := Data1 + Data2;

    This works:
    WPRichText1.AsString := Data1;
    WPRichText1.CPPosition := MaxInt;
    WPRichText1.SelectionAsString := Data2;

    WPReporter will also do a good and fast job. Esspecially if Data1 is always the same and only some fields have to be exchanged.

    Regards,
    Julian

    Julian, I'm trying to do this, but I'm having a problem. The images are not copied, just the text. I had explained better in that topic http://wpcubed.com/forum/viewtopic.php?t=1822, but no answers yet. Please, take a look in that topic, I need help!!