gpt4 book ai didi

vba - 使用 Chrome 浏览器代替 InternetExplorer.Application

转载 作者:行者123 更新时间:2023-12-02 18:17:37 24 4
gpt4 key购买 nike

我知道如何使用 Excel VBA 和 IE,但我想知道是否可以使用 Google Chrome,因为我发现它比 IE 更快。

这就是我的具体意思:

Set IE = CreateObject("InternetExplorer.Application")

我可以用可以启动 Chrome 而不是 IE 的东西来替代它吗?

最佳答案

Google Chrome 不像 Internet Explorer 那样提供 Visual Basic 界面,因此您无法访问它的任何属性(例如 Document)。您只需传递给可执行文件即可在特定地址启动 chrome。

例如:

Dim path As String = Environment.GetFolderPath(Environment.SpecialFolder.ProgramFiles)
Dim executable As String = Path.Combine(path, "Google\\Chrome\\Application\\chrome.exe")

Process.Start(executable, "http://google.com")

关于vba - 使用 Chrome 浏览器代替 InternetExplorer.Application,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30018858/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com