帮我研究一下(200分)

  • 主题发起人 主题发起人 wqhatnet
  • 开始时间 开始时间
W

wqhatnet

Unregistered / Unconfirmed
GUEST, unregistred user!
我想连接IE,MYIE等浏览器来获取地址栏的地址
找到一段代码
可是看不太懂
谁能看看
比如连接IE用什么函数,获取地址该怎么做?
http://topic.csdn.net/t/20040813/21/3272934.html
 
其实那段代码中有一个: FDocument:IHTMLDocument2
得到地址用:fdocument.url
其实获取到了fdocument,所有的操作都可以很简单实现。
 
var
hwnd: Integer;
abc: tIEConnector;
BEGIN
hwnd:=0;
hwnd:=FindWindow('IEFrame',nil);
showmessage(intTostr(hwnd));

abc:=tIEConnector.Create;
// abc:=IEConnector.Connector.Create;

if abc.Connect(hwnd)=false then showmessage('ok');

if abc.Connected then
showmessage(abc.WebBrowser.LocationURL);

//IEConnector.Connector.WebBrowser.LocationURL);
abc.Free;
end;


连接不上啊
 
后退
顶部