Returns an FPHTMLWindow2 object. The Document property of the FPHTMLWindow2 object points to the DispFPHTMLDocument object of the frames page.
expression.FrameWindow
expression Required. An expression that returns a PageWindowEx object.
This example retrieves the IHTMLLocation property of the FrameWindow object.
Private Sub GetFrameWindowLocation()
Dim myWeb As WebEx
Dim myPage As PageWindowEx
Dim myFrameWindowLocation As String
Set myWeb = Webs("C:\My Webs\Rogue Cellars")
Set myPage = _
myWeb.ActiveWebWindow.ActivePageWindow
myFrameWindowLocation = myPage.FrameWindow.Location.href
End Sub