Fast way to load a richtext from a database

  • What is the fastest way to load a RTF document stored in a database into a TWPRichText.

    I am currently using this procedure:

    AsString := Table1.Fields[1].AsString;

    But it currently represents a bottleneck in my routine. I would prefer not to use a TDBWPRichText component (although it is about 2 times faster) since I normally use DisableControls in order to prevent other DB controls to be updated.

    Thanks!