wpTABMovesToNextEditField tab backwards

  • I second that request!

    But this might help in the meantime... as per Julian's hint from a recent post, I disabled the wpTABMovesToNextField option, and did it myself in the KeyDown event:

    Code
    if Key = VK_TAB then
        begin
          Key := 0;
          if ssShift in Shift then
            WPRichText_Cmt.MoveToPreviousField(false)
          else
            WPRichText_Cmt.MoveToNextField(false);
          WPRichText_Cmt.Refresh();
        end;