如何用API函数开不同的浏览器窗口?(100分)

  • 主题发起人 主题发起人 leonstart
  • 开始时间 开始时间
L

leonstart

Unregistered / Unconfirmed
GUEST, unregistred user!
请问如何用WINDOWS API函数开不同的浏览器窗口?我用了SHELLEXECUTE函数,可是每次只<br>能开一个窗口,再执行时还是一个窗口。旧的内容都被新的内容覆盖了。怎样才能开新窗口?
 
看一下,是不是带参数的Exe。
 
uses ComObj;<br><br>procedure TForm1.Button1Click(Sender: TObject);<br>&nbsp; procedure OpenInIE(aURL: string); &nbsp; //need uses ComObj;<br>&nbsp; var<br>&nbsp; &nbsp; IE &nbsp; &nbsp; &nbsp; &nbsp;: Variant;<br>&nbsp; begin<br>&nbsp; &nbsp; IE := CreateOleObject('InternetExplorer.Application');<br>&nbsp; &nbsp; IE.Visible := true;<br>&nbsp; &nbsp; IE.Navigate(aURL);<br>&nbsp; end;<br>begin<br>&nbsp; OpenInIE('www.delphibbs.com');<br>end;
 
多人接受答案了。
 
后退
顶部