我一向用这个:
Shell ("C:\Program Files\Internet Explorer\IEXPLORE.EXE " & sSite & "/index.html"), 1

解决方案 »

  1.   

    我一向用这个:
      Shell  ("C:\Program  Files\Internet  Explorer\IEXPLORE.EXE http://../index.html"),  1
      
      

  2.   

    Private Declare Function ShellExecute Lib "shell32.dll" Alias "ShellExecuteA" (ByVal hwnd As Long, ByVal lpOperation As String, ByVal lpFile As String, ByVal lpParameters As String, ByVal lpDirectory As String, ByVal nShowCmd As Long) As Long
    ret& = ShellExecute(Me.hwnd, "Open", "http://dyqing.533.net", "", App.Path, 1)
      

  3.   

    1. 用Shell调用IE2。用webBrowser控件自己做了浏览器
      

  4.   

    用shell不好,还是用控件整合吧