• If I use an TWPCustomRichText in a form, is there a way to set up some protected text.

    In other words, I want the first sentence to be completely uneditable. This way, I can place part of the prompt at the beginning and the user can respond in the remainder.

    My form bsically has areas like...

    "Site Description:


    "

    and the user has the remainder of th eline after "Site Description:" plus two additional lines to decribe the site.

    Since the "ContinuingText" doesn't work the way I'd hoped (for that matter, I don't even know how it works since there's no documentation), this would solve my problem and allow multi-line fields that have only partial first lines.

    Any suggestions?

    John-David Biggers

  • Figured a solution out myself.

    If the focussed control is a TWPCustomRichText and the paragraphc number (CPParNr) is 1, then I Set_ParIndent(X,0,0) where "X" is an integer I store somewhere in the base class (hopefully I can access something like a "formula" field).

    JD