关于api 函数的问题 ( 积分: 50 )

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

warong

Unregistered / Unconfirmed
GUEST, unregistred user!
你好:我想问个问题,是这样的:<br> &nbsp; 我用这样一句话打开一个网站:ShellExecute(handle,'open','http://www.wjds.gov.cn/wjtax/manage/login.jsp?vUser=sjth&amp;&amp;vPwd=tohotsoft',nil,nil,SW_NORMAL);<br> 但是,我使用了两个button按钮打开两个网站,但是只能在同一个ie窗口中打开,请问能不能在两个窗口中打开两个网站!<br> 谢谢了!50分
 
你好:我想问个问题,是这样的:<br> &nbsp; 我用这样一句话打开一个网站:ShellExecute(handle,'open','http://www.wjds.gov.cn/wjtax/manage/login.jsp?vUser=sjth&amp;&amp;vPwd=tohotsoft',nil,nil,SW_NORMAL);<br> 但是,我使用了两个button按钮打开两个网站,但是只能在同一个ie窗口中打开,请问能不能在两个窗口中打开两个网站!<br> 谢谢了!50分
 
大虾们,给个答案嘛!我现在在线上等了!!!!
 
var<br> TS: TStrings;<br>begin<br> &nbsp;TS := TstringList.Create;<br> &nbsp;Ts.SaveToFile('c:/htm.html');<br> &nbsp;ShellExecute(handle, '',<br> &nbsp;'http://www.tsml.com.cn',nil, nil,SW_NORMAL);<br><br> &nbsp;ShellExecute(handle, '',<br> &nbsp;'c:/htm.html', nil, nil,SW_NORMAL);<br><br> &nbsp;ShellExecute(0, 'open',<br> &nbsp;'http://ts002/asp', nil, nil, SW_MAXIMIZE);<br> // deleteFile('c:/htm.html');<br> 好像是IE的问题吧,我试过这样还是不行,网站打开后还是不会用C:/htm.thml的窗口打开http://ts002/asp
 
我的只要一句就可以了,結貼吧,省得有些人又在後面瞎跟。。。<br><br>ShellExecute(handle,'open','IEXPLORE.exe','http://www.wjds.gov.cn/wjtax/manage/login.jsp?vUser=sjth&amp;&amp;vPwd=tohotsoft',nil,sw_maximize);
 
ShellExecute(0,'open',iexplore.exe','http://www.wjds.gov.cn/wjtax/manage/login.jsp?vUser=sjth&amp;&amp;vPwd=tohotsoft',nil,SW_NORMAL);<br>可以打开多个!
 
//先找到IE路劲<br> //路劲不能有空 格可以用&quot;&quot;<br> Winexec('&quot;D:/Program Files/Internet Explorer/IEXPLORE.exe&quot; http://www.tsml.com.cn', sw_maximize);<br> Winexec('&quot;D:/Program Files/Internet Explorer/IEXPLORE.exe&quot; http://www.tsml.com.cn', sw_maximize);<br>
 
我的想法和 weekboy 的一样,这是最方便的了
 
后退
顶部