“Como abrir o Chrome em VBScript” Respostas de código

Como abrir o Chrome em VBScript

Dim iURL 
Dim objShell

iURL = "www.google.ie"

set objShell = CreateObject("Shell.Application")
objShell.ShellExecute "chrome.exe", iURL, "", "", 1
Crocadile

Como abrir o Chrome em VBScript

Dim objShell

objShell = CreateObject("Shell.Application")
objShell.ShellExecute("C:\Program Files (x86)\Google\Chrome\Application\chrome.exe", "www.google.ie", "", "", 1)
Crocadile

Como abrir o Chrome em VBScript

set objShell = CreateObject("WScript.Shell")
objShell.run(iURL)
Crocadile

Respostas semelhantes a “Como abrir o Chrome em VBScript”

Perguntas semelhantes a “Como abrir o Chrome em VBScript”

Procure respostas de código populares por idioma

Procurar outros idiomas de código