C
coolqiang
Unregistered / Unconfirmed
GUEST, unregistred user!
我用ShellExecute来打开网址链接,如下:<br> ShellExecute(0, nil, PChar(url), nil, nil, SW_SHOWNORMAL);<br>但我发现它不能区分大小写,一律转为小写处理,如<br> http://www.symantec.com/avcenter/download/pages/US-N95.html<br>上面的网址是诺顿最新病毒库下载网址,但用ShellExecute打开,发现IE的地址栏上是<br> http://www.symantec.com/avcenter/download/pages/[red]us-n[/red]95.html<br>很明显被转为小写了,因为网上很多服务器是区分大小写的,这样导致很多网址打不开,<br>有何办法可以解决?<br>