我都叫你下个离线包回来慢慢看,ie5tools是个unit,提供了一些有用的函数
看清楚了啊
IE5Tools is a collection of 60+functions, that makes it easy to
configure Internet Explorer:
IE5 Tools also makes it easy to create Explorer Bars, add entries into the standard context menus or into
the Tools menu and buttons to the toolbar in Internet Explorer 5 - from a Delphi program.
IE5 Tools
IE5Tools is a collection of 60+functions, that makes it easy to?configure Internet Explorer:The following example shows how easy it is to expand Internet Explorer
5 with a Vertical Explorer Bar and a Toolbar button to activate it.
?var
S : String;
begin
S:=AddExplorerBar(Sample Explorer Bar', 'http://www.somewhere.com/mypage.htm', 200,TRUE);
AddToolbarBtn(TRUE,EXPLORER_BAR,'Explorer
Bar','light.ico','gray.ico',S);
end;
?The following lines of code remove the same Explorer Bar and tool
button from the registry and Internet Explorer:??begin
RemoveExplorerBar('Sample Explorer Bar');
RemoveToolbarBtn('Explorer Bar');
end;?