Horje
how to open chrome in vbscript Code Example
how to open chrome in vbscript
Dim iURL 
Dim objShell

iURL = "www.google.ie"

set objShell = CreateObject("Shell.Application")
objShell.ShellExecute "chrome.exe", iURL, "", "", 1
how to open chrome in vbscript
Dim objShell

objShell = CreateObject("Shell.Application")
objShell.ShellExecute("C:\Program Files (x86)\Google\Chrome\Application\chrome.exe", "www.google.ie", "", "", 1)
how to open chrome in vbscript
set objShell = CreateObject("WScript.Shell")
objShell.run(iURL)




22

Related
google apps script format date string Code Example google apps script format date string Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
12