How do I use Addict with WPTools 4

  • With the release of Addict 3.4 a new approach has been taken with the interface between Addict and WPTools, following advice and suggestions from Julian.

    The new approach no longer requires a new component, but does allow multiple WPTools Controls to be "attached" to a single Addict control.

    The New Demo can be grabbed from:


    This new approach does require some code (unlike the component approach) but it is quite minimal. If you check out the OnCreate Event for the form in the demo you will see something akin to:

    WPAddict.AddictSpell := AddictSpell;
    WPAddict.AddictThesaurus := AddictThesaurus;

    WPAddict.AddLiveControl( WPRichText1 );

    // For WPTools: Change word delimiters
    WPWordDelimiterArray [#39] := FALSE;
    WPWordDelimiterArray ['_'] := FALSE;

    You can do as many AddLiveControl calls as needed.