ShellExecute和winExec调用浏览器访问网页为何没有反应?(40分)

  • 主题发起人 主题发起人 GuestUser
  • 开始时间 开始时间
G

GuestUser

Unregistered / Unconfirmed
GUEST, unregistred user!
ShellExecute(handle, 'open', 'IEXPLORE.EXE', 'http://www.51kk.com', nil,SW_SHOWNORMAL);

为什么没有反应???

ShellExecute(handle, 'open', '全路径+IEXPLORE.EXE', 'http://www.51kk.com', nil,SW_SHOWNORMAL);
这样的话是可以的,怎么回事???

帮忙解决一下,各位老大,谢谢。

 
ShellExecute(handle, 'open', 'http://www.51kk.com',nil, nil,SW_SHOWNORMAL);
不用指定程序名,且参数位置也不对。
 
用如下参数:
shellExecute(handle,nil,pchar('http://www.51kk.com'),nil,nil,SW_SHOWNORMAL);
 
后退
顶部