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版ip地址与整型互转

Delphi利用系统环境变量获取常用系统目录

Delphi 从listview组件中的选定行在数据库中删除

Delphi tsearchrec

Delphi 开关显示器操作

Delphi和金山词霸制作批量单词翻译

Delphi 判断文件类型函数

Delphi图像细化处理

Delphi 工程判断内存溢出reportmemoryleaksonshutdown := true;

如何判断硬盘是fat32还是ntfs

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



打赏

取消

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

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

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

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

评论

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