You could use FindWindow to get the Window Titles, Etc, but this method allows you access to the HTMLDoc property and thus, any value on an html page.

VB Code:
  1. Sub main()
  2.  
  3. Dim objShell As Object
  4. Dim objShellWindows As Object
  5. Dim sWin As Object
  6. Dim x As Integer
  7.    
  8.     Set objShell = CreateObject("Shell.Application")
  9.     Set objShellWindows = objShell.Windows
  10.     'Here we place all open sessions of IE into a collection.
  11.     'So the first instance of IE would be item(0), the
  12.     'second item(1), the third Item(2) and so on. You can
  13.     'the Window count by using objShellWindows.Count
  14.    
  15.     For Each sWin In objShellWindows
  16.         'Set the on Error, just in case an instance of IE does
  17.         'not exist.
  18.        
  19.         On Error Resume Next
  20.         'Once set, you can do anything with IE that you could
  21.         'do with the Webbrowser control. You have total control
  22.         'of the available features.
  23.         MsgBox sWin.Application.Document.Title & "---URL " & sWin.Application.Document.location.href
  24.         If Err Then
  25.             Err.Clear
  26.         End If
  27.    
  28.     Next
  29.     Set sWin = Nothing
  30.     Set objShellWindows = Nothing
  31.     Set objShell = Nothing
  32.    
  33. End Sub