Delphi Webbrowser IE 窗口选择中,选中的文字内容


本文整理自网络,侵删。

 Delphi Webbrowser IE 窗口选择中,选中的文字内容如何用API函数或delphi取出当前IE窗口已经选中的文本信息字符串?我的程序如下: 
var 
   Doc: IHtmlDocument2; 
   TxtRange: IHtmlTxtRange; 
   S:string; 
begin 
   Doc :=IE.Document as IHtmlDocument2;   //IE: IWebbrowser2; 
   TxtRange :=Doc.Selection.CreateRange as IHtmlTxtRange; 
   S:=TxtRange.Get_text; 
   ShowMEssage('选中的内容为:'+S); 
end; 

哪位高人知道哪里错了?应该如何才能取得文本信息? 
--------------------------------------------------------------- 

uses 
    msHtml, SHdocvw; 

var 
   I: Integer; 
   ShellWindow: IShellWindows; 
   IE: IWebbrowser2; 
   Doc: IHtmlDocument2; 
   TxtRange: IHtmlTxtRange; 
   S: string; 
   P: PChar; 
begin 
   ShellWindow := CoShellWindows.Create; 
   for I := 0 to ShellWindow.Count-1 do 
   begin 
     IE := ShellWindow.Item(I) as IWebbrowser2; 
     if IE <> nil then 
     begin 
       GetMem(P, MaxByte+1); 
       GetClassName(IE.HWND, P, MaxByte); 
       if SameText(P, 'IEFrame') then 
       begin 
         Doc := IE.Document as IHtmlDocument2; 
         if Doc.Selection <> nil then 
         begin 
           TxtRange := Doc.Selection.CreateRange as IHtmlTxtRange; 
           S := TxtRange.Get_text; 
           SHowMessage(S); 
         end; 
       end; 
       FreeMem(P); 
     end; 
   end; 
end;

相关阅读 >>

Delphi 10.2 新特性之―tfdbatchmovejsonwriter

Delphi vcl 的 tpagecontrol 控件,实现对页签的拖动

Delphi console程序中一种定时方法

Delphi 实现数据库连接封装到dll

Delphi tdownloadurl下载网络文件

Delphi webbroker 制作网站

Delphi xe5 android 黑屏的临时解决办法

Delphi整理五(枚举、子界、集合)

Delphi 利用tcomm组件 spcomm 实现串行通信

Delphi使用tclientdataset时不携带midas.dll的方法

更多相关阅读请进入《Delphi》频道 >>



打赏

取消

感谢您的支持,我会继续努力的!

扫码支持
扫码打赏,您说多少就多少

打开支付宝扫一扫,即可进行扫码打赏哦

分享从这里开始,精彩与您同在

评论

管理员已关闭评论功能...