如何使用宏在Google Chrome中打开多个标签

时间:2017-01-24 23:46:47

标签: excel google-chrome

我的学校教育需要帮助,我非常忙碌而且大多数时间都落后了,我使用Excel来记录我的成绩和其他必需品,但我需要的是一种打开Chrome的方法他们将在下面的网站。在制作这个代码的时候我没有把我当前的代码留给我,但是我在其中一个链接上打开了chrome,我打算使用一个命令按钮来运行它。我迫切需要帮助,任何事都可以。

我会在能够发布当前代码的副本。

链接:

https://www.desmos.com/calculator

https://auth.edgenuity.com/Login/Login/Student

第三个是Bing ......由于我是新手,我的链接受到限制

1 个答案:

答案 0 :(得分:0)

您可以使用 Shell 属性执行此操作:

Sub Chrome()

Dim cpath As String

gpath = """C:\Program Files\Google\Chrome\Application\chrome.exe"""

Shell (cpath & " -url https://www.desmos.com/calculator")
Shell (cpath & " -url https://auth.edgenuity.com/Login/Login/Student")
Shell (cpath & " -url http://stackoverflow.com/")

End Sub

请注意,如果您的chrome.exe文件存储在标准路径以外的其他位置,则需要更新上面的路径。