请教两个API函数的用法 ( 积分: 50 )

  • 主题发起人 主题发起人 fuzengbin
  • 开始时间 开始时间
F

fuzengbin

Unregistered / Unconfirmed
GUEST, unregistred user!
我在使用ShellExecute和ShellAbout时发现两个问题,请问怎么解决?<br>1、ShellExecute 打开一个网页地址,如果当前窗口中没有打开的IE窗口,就无任何反应。<br>2、ShellAbout 默认的关于窗口不能显示在屏幕中央。<br>下面是我的写法:<br>URL := 'http://www.delphibbs.com/' ;<br>ShellExecute(handle,nil,pchar(URL),nil,nil,sw_ShowNormal);<br>a := '你好';b:= '中国';<br>shellabout(application.handle,pchar(a),pchar(b),application.Icon.Handle);
 
我在使用ShellExecute和ShellAbout时发现两个问题,请问怎么解决?<br>1、ShellExecute 打开一个网页地址,如果当前窗口中没有打开的IE窗口,就无任何反应。<br>2、ShellAbout 默认的关于窗口不能显示在屏幕中央。<br>下面是我的写法:<br>URL := 'http://www.delphibbs.com/' ;<br>ShellExecute(handle,nil,pchar(URL),nil,nil,sw_ShowNormal);<br>a := '你好';b:= '中国';<br>shellabout(application.handle,pchar(a),pchar(b),application.Icon.Handle);
 
Try It:<br>ShellExecute(handle,'open',pchar(URL),nil,nil,sw_ShowNormal);<br>
 
1、ShellExecute(handle,pchar('iexplorer.exe'),pchar(URL),nil,nil,sw_ShowNormal);<br><br>2、?
 
xuri的方法可以。但是第二问题怎么解决?
 
shellabout(handle,pchar(a),pchar(b),application.Icon.Handle); &nbsp;
 
多人接受答案了。
 
后退
顶部