W
WRainbug!
Unregistered / Unconfirmed
GUEST, unregistred user!
function GetHtmlStr(const WebBrowser: TWebBrowser): string;
begin
Result := '';
if not Assigned(WebBrowser.Document) then Exit;
Result := IHtmlDocument2(WebBrowser.Document).Body.InnerText;
end;
用这个函数可以得到本程序里的 webbrowser 的html
请问如何得到其他程序里边的 webbrowser 的html?
用handle 嘛?
高手给点提示. 谢谢
begin
Result := '';
if not Assigned(WebBrowser.Document) then Exit;
Result := IHtmlDocument2(WebBrowser.Document).Body.InnerText;
end;
用这个函数可以得到本程序里的 webbrowser 的html
请问如何得到其他程序里边的 webbrowser 的html?
用handle 嘛?
高手给点提示. 谢谢