因为这个链接是连接的本地文件,并非Internet文件。
1. 你本地保存的网页已经被你删除了。
2. 这个Excel是从别的电脑发过来的,并没有网页文件。
给你个代码吧
Private Sub CommandButton7_Click()
On Error Resume Next
Set IE = CreateObject("InternetExplorer.application")
IE.Visible = True
IE.Navigate URL:=http://www.baidu.com
End Sub