ranjith2523
Board Regular
- Joined
- Apr 29, 2014
- Messages
- 137
- Office Version
- 365
Hi Experts,
I am new for VBA and this FORUM, actually i am trying to click a link called "Multiple Product Query" in webpage which i used in my office.
I tried in many ways but i was not able to achieve hence seeking your help.
Hope someone will assist me to complete the coding. (HTML Code copied in below vba coding)
End sub
Thanks,
Ranjith
I am new for VBA and this FORUM, actually i am trying to click a link called "Multiple Product Query" in webpage which i used in my office.
I tried in many ways but i was not able to achieve hence seeking your help.
Hope someone will assist me to complete the coding. (HTML Code copied in below vba coding)
Code:
Sub test()
Dim ie As Object
Set ie = CreateObject("InternetExplorer.application")
With ie
.Visible = True
.Navigate ("myurl")
While .busy Or .ReadyState <> 4: DoEvents: Wend
End With
'html code ------------ Multiple Product QueryMultiple Product Query --------
End sub
Thanks,
Ranjith