rahulbassi
Board Regular
- Joined
- Aug 14, 2011
- Messages
- 130
I added two libraries :
Microsof HTML Object Library
Microsoft Internet Controls
I'm using below code to access a web page:
Dim IE As Object
Dim objElement As Object
Dim objCollection As Object
Dim objIE As InternetExplorer
Set objIE = CreateObject("InternetExplorer.Application")
objIE.Visible = True
objIE.navigate "MyURL"
Working so far.... No i want to login into that page..
The below code is not working:
Set objCollection = IE.document.getElementsByTagName("input")
Please suggest some alternative..
Microsof HTML Object Library
Microsoft Internet Controls
I'm using below code to access a web page:
Dim IE As Object
Dim objElement As Object
Dim objCollection As Object
Dim objIE As InternetExplorer
Set objIE = CreateObject("InternetExplorer.Application")
objIE.Visible = True
objIE.navigate "MyURL"
Working so far.... No i want to login into that page..
The below code is not working:
Set objCollection = IE.document.getElementsByTagName("input")
Please suggest some alternative..