dim ie
set ie = CreateObject("internetexplorer.application")
ie.navigate "http://www.csdn.net"
ie.visible = true

解决方案 »

  1.   

    用shell ieexefile其中ieexefile是ie程序路径和文件名。
      

  2.   

    Dim IE_path as string
    '****************IE_path 是ie路径
    IE_path="C:\Program Files\Internet Explorer\IEXPLORE.EXE", 
    d = Shell(IE_path, vbNormalFocus)
      

  3.   

    karma(无为) 是对的。
    也可以声明API函数:shellexecute;
    shellexecute  0,"open","http://www.csdn.net",vbnullstring,vbnullstring,3
      

  4.   

    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 LongPrivate Sub Command1_Click()
     ShellExecute hwnd, "http://www.263.net/", addr, vbNullString, vbNullString, 0
    End Sub
      

  5.   

    To:karma(无为)你的方法很好嘛,我爱你