为什么我的EXCEL中点击网站就是这样的啊?

2024-12-26 16:38:48
推荐回答(2个)
回答1:

因为这个链接是连接的本地文件,并非Internet文件。
1. 你本地保存的网页已经被你删除了。
2. 这个Excel是从别的电脑发过来的,并没有网页文件。

回答2:

给你个代码吧
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