TWPRichText on TMS Panel, i.e. TAdvPanel or TAdvOfficePager

    • Offizieller Beitrag

    Q: I am using a TWPRichText editor with TMS controls. It seems to be impossible to place the cursor into an editor.

    A: Please add some code to Form.OnCreate to deactivate the doublebuffer for the panel which holds the editor.

    Code
    AdvPanel1.DoubleBuffered := false;


    or

    Code
    AdvOfficePager11.DoubleBuffered := false;
      AdvOfficePager12.DoubleBuffered := false;
      AdvOfficePager13.DoubleBuffered := false;

    Now it should work.