Hi,

I am trying to automate a web form-filling process, and when the form is
submitted a child window of IE pops up with the results...I am having a lot
of trouble assigning a new object to this new instance of IE (so that I can
further manipulate this in my VBA code).

Could someone please detail the code required to do this? So far I have:

---------------------
Sub AutoIE()

Dim IE1 As InternetExplorer
Dim IE2 As InternetExplorer

Set IE1 = New InternetExplorer


' Do my stuff with IE1 and submit the form
'....
' New child window pops up here


'< Need your help here on how to set IE2 to the new child window (with IE1
still
' open/running) >


End Sub

---------------------

Any help or suggestions would be greatly appreciated! Many thanks for your
time in advance!