Hey all,
I am having some trouble getting VBA to focus on the IE child window after a link has been clicked.
The 1st page i have automated like so:

Sub Counties()

Dim IE As Object
Dim ctrl As Object
Dim str As String

' --------------------------------[ New Window ]--------------------------------------
    Set IE = CreateObject("InternetExplorer.Application") ' New InternetExplorer
    strURL = "http://staging.trueautomation.com/ta/index.php/PropertyAccess_noscript"

' ----------------------[ Navigate To  1st Page ]-----------------------------------
    
    IE.Visible = True
    IE.Navigate strURL
    
    Do Until Not IE.Busy: DoEvents: Loop
    Do Until IE.readyState = 4: DoEvents: Loop    
 ' ----------------------[ Click a Link ]---------------------------------------------
    Set doc = IE.Document
    Set ctrl = doc.getElementById("text")
    Set frm = doc.getElementById("gpx_content")
    frm.all(100).Click
    IE.Quit
The second page ("https://propaccess.trueautomation.com/clientdb/?cid=53"), if i just render this URL as the strUrl, then I can automate the 2nd page with this:
'Having alot of trouble aapplying= this to child window
'           |
'           |
'           |
'           |
'           |
'           |
'           |
'           |
'           V

'-----------------------------------[ Owner Name ]---------------------------------------
 
    Set frm = doc.getElementById("propertySearchOptions_table0")
    frm.all("propertySearchOptions_ownerName").Value = "Owner Name"

'-----------------------------------[ Tax Year ]-----------------------------------------
        
    Set frm = doc.getElementById("propertySearchOptions_rowTaxYear")
    frm.all("propertySearchOptions_taxyear").Value = ("2012")


'-----------------------------------[ Submit Forms]---------------------------------------
'
    Set frm = doc.getElementById("bottomOptions")
    frm.all("propertySearchOptions_search").Click

    Do Until Not IE.Busy: DoEvents: Loop
    Do Until IE.readyState = 4: DoEvents: Loop  
 
End Sub

Where I am totally stuck: I cannot seem to figure out how to get them to work together?? Once the child IE window comes into play, how do i reference it?

Parent WIndow = "http://staging.trueautomation.com/ta/index.php/PropertyAccess_noscript"
Child Window = "https://propaccess.trueautomation.com/clientdb/?cid=53"
Ultimately the Goal Window = "https://propaccess.trueautomation.com/clientdb/SearchResults.aspx"

Any help, advice or suggestions would be greatly appreciated. Thanks!