我想用我的默認瀏覽器打開URL。使用默認瀏覽器打開瀏覽器/ URL
我試圖使用「Call Shell("C:\Program Files (x86)\Mozilla Firefox\firefox.exe -url" & strUrl, 1)
」,但Firefox不會打開URL。相反,Firefox從我的默認頁面開始。
當我使用「Call Shell(strURL,1)
」即時通訊獲取「文件未找到」錯誤。
Private Sub openurl_Click()
Dim urlopen As String
Dim User As String
Dim pass As String
urlopen = URL.Value
User = Username.Value
'pass = Passwort.Value
pass = InputBox("Passwort eingeben")
strUrl = "https://" & User & ":" & pass & "@" & urlopen
'MsgBox strURL <- TEST OUTPUT
'Call Shell("C:\Program Files (x86)\Mozilla Firefox\firefox.exe -t" & strUrl, 1)
'Call Shell(strURL, 1)
End Sub
運行時錯誤16388.廣東話跟隨超級鏈接 – rel0aded0ne
這串那樣你用strURL?它應該以「https://」開始,而不是「cmd」等。因此,Application.FollowHyperlink https://www.google.com「'會打開默認瀏覽器。作爲URL您可以使用其他任何東西,包括文件名 –