今天在delphi里面写了一个简单的打开网页的语句
ShellExecute (Handle,'open','Http://www.sina.com.cn',nil,nil,SW_NORMAL);
发现无法打开网页,纳闷中差CSDN的以往帖
http://search.csdn.net/Expert/topic/2229/2229133.xml?temp=.4437982你不应该使用 
ShellExecute(Handle,  'Open', 'IEXPLORE.EXE', 'Http://haitian.myrice.com', 1) 的方法来打开,因为如果你的默认浏览器被修改了,或者IE被卸载了,那么你的代码将无效,應該是ShellExecute (Handle,'open','http://haitian.myrice.com',nil,nil,SW_NORMAL);为什么在我的电脑上必须指定IEXPLORE.EXE啊。后面的语句反而无效啊。我该怎么写代码。