Get Text from and to database (replace DBWPRichText)

    • Offizieller Beitrag

    The best is to use the TWPRichText with the AsString property:

    Code
    Field.AsString := WPRichText1.AsString;
    
    
    WPRichText1.AsString := Field.AsString;

    Of course the DBWPRichText can be used, too, but it will likely post the data more often that if you do it manually and is so discouraged with client server systems.