View Single Post
 
Old 05-19-2012, 10:00 PM
tinfanide tinfanide is offline Windows 7 64bit Office 2010 32bit
Expert
 
Join Date: Aug 2011
Posts: 312
tinfanide is on a distinguished road
Default

Code:
Option Explicit
Public oIE As Object
Public oSW As Object

Sub test()

Set oIE = CreateObject("InternetExplorer.Application")
Set oSW = CreateObject("Shell.Application")

For Each oIE In oSW.Windows
    MsgBox oIE.LocationURL
Next

End Sub
Found it.
Reply With Quote