Can somebody tell how to open a password protected webpage in VBA,
Currently I use the below code to open a webpage

Sub openweb()
strURI = "www.google.com"
Set ie = CreateObject("internetexplorer.application")
ie.Navigate strURI
End sub