Hey guys, i'm new to this. I tried googling and searching in the forum but it hasn't been of much help.
I would like to know what the macros is to open a certain website, if you know or can link me some information I'll be grateful
Thanks!
How to open a certain website
Re: How to open a certain website
I don't know if anyone will see this, but I found a way to solve this.
You need to open a new file in notepad, then write this:
DIM A
Set A=CreateObject("Shell.Application")
A.ShellExecute "Chrome.exe","https://www.google.com","","",1
Depending on the browser you use u can use "Iexplore.exe", "Firefox.exe", "Chrome.exe" or "Opera.exe". And of course change the URL to wherever you want to go.
Then save the as a .vbs, for example "google.vbs". You can select the file in Hidmacros and it will open the website.
Not sure if someone wants to do this, but I googled it and couldn't find it
You need to open a new file in notepad, then write this:
DIM A
Set A=CreateObject("Shell.Application")
A.ShellExecute "Chrome.exe","https://www.google.com","","",1
Depending on the browser you use u can use "Iexplore.exe", "Firefox.exe", "Chrome.exe" or "Opera.exe". And of course change the URL to wherever you want to go.
Then save the as a .vbs, for example "google.vbs". You can select the file in Hidmacros and it will open the website.
Not sure if someone wants to do this, but I googled it and couldn't find it
-
- Posts: 3
- Joined: 20 Jun 2022, 12:27
Re: How to open a certain website
i typed https://google.com/ in the run application window and it opened that website using default browser (which is chrome for me)