开发者

How to disable Drag/drop TRichEdit or TRzRichEdit

开发者 https://www.devze.com 2023-01-05 13:14 出处:网络
How to block the drag and drop in TRichEdit? delphi code I work with Rich edit and having difficulties on blocking the drag and drop feature specially dragging text from out开发者_JAVA技巧side the for

How to block the drag and drop in TRichEdit? delphi code I work with Rich edit and having difficulties on blocking the drag and drop feature specially dragging text from out开发者_JAVA技巧side the form let say comming from IE to my RichEdit.


See RevokeDragDrop on MSDN;

uses
  activex;

RevokeDragDrop(RichEdit1.Handle);


try changing on key down/ up event setting it to readonly. onkey down, set it up to richedit1.readonly := false; and then on keyup richedit1.readonly := true; it works.. it evern disbled the paste features

0

精彩评论

暂无评论...
验证码 换一张
取 消