可 可乐 Unregistered / Unconfirmed GUEST, unregistred user! 2000-05-21 #1 我想将由TwebBrowser浏览到的感兴趣的网页内容(文本)复制出来(到edit或memo),请问该怎么做?前面有人回答了相关的问题,但是程序是打印的,我试了好久试不出复制的,只好问一问了,请各位帮帮忙.
我想将由TwebBrowser浏览到的感兴趣的网页内容(文本)复制出来(到edit或memo),请问该怎么做?前面有人回答了相关的问题,但是程序是打印的,我试了好久试不出复制的,只好问一问了,请各位帮帮忙.
N nuke Unregistered / Unconfirmed GUEST, unregistred user! 2000-05-21 #2 var Doc:IHTMLDocument2; begin Doc:=webbrowser1.document as IHtmlDocument2; ..... end;
可 可乐 Unregistered / Unconfirmed GUEST, unregistred user! 2000-05-22 #3 能不能请nuke兄写详细一点,因为您说的答案我在之前已经有试过但是行不通,所以我 想请你写的详细一点,最好是整个过程!不过还是现谢谢你了.
C CathyEagle Unregistered / Unconfirmed GUEST, unregistred user! 2000-05-27 #4 var Doc: IHTMLDocument2; begin Doc :=WebBrowser1.Document as IHTMLDocument2; if Doc.queryCommandEnabled('Copy') then Doc.execCommand('Copy',false,EmptyParam) end;
var Doc: IHTMLDocument2; begin Doc :=WebBrowser1.Document as IHTMLDocument2; if Doc.queryCommandEnabled('Copy') then Doc.execCommand('Copy',false,EmptyParam) end;