• Hi,

    I am using the function WPRTFEdit1.BookmarkSelect. So far so good it works and selects the Text that is associated with the bookmark. But the editor doesn't scroll to the marked position. So in a long text you must scoll yourself to find the selected text. Is it possible to automatically let the editor scroll in view.

  • Yes that works. But I had to add a further line of code:


    Code
    WPRichText1.SetFocus;

    before calling the BookmarkSelect function from a non modal popup form. After that it worked.

    Thank you!