new2world2
New Member
- Joined
- Mar 24, 2018
- Messages
- 3
Hi,
Could anyone please help me in this task i am working on. I am looking to navigate url from the list one by one with certain delay of time let's say 1 minute.
I tried this code below it opened url but not the way I would like it to be.
Could anyone please help me in this task i am working on. I am looking to navigate url from the list one by one with certain delay of time let's say 1 minute.
I tried this code below it opened url but not the way I would like it to be.
Code:
[HTML]
Dim HTMLDoc As HTMLDocumentDim MyBrowser As InternetExplorer Sub MyGmail()
Dim MyHTML_Element As IHTMLElement Dim MyURL As String On Error GoTo Err_Clear MyURL = "http://www.google.com" Set MyBrowser = New InternetExplorer MyBrowser.Silent = True MyBrowser.navigate MyURL MyBrowser.Visible = True[/HTML]
Last edited by a moderator: