Can somebody tell how to open a password protected webpage in VBA,
Currently I use the below code to open a webpage
Currently I use the below code to open a webpage
Code:
Sub openweb()
strURI = "[URL unfurl="true"]www.google.com"[/URL]
Set ie = CreateObject("internetexplorer.application")
ie.Navigate strURI
end sub