Sounds like you're having fun!
I haven't found where Outlook is storing the feed list yet, although I know it's somewhere in the default information store.
However, each feed folder has a hidden message containing information about the feed, which you can access as a StorageItem object. The MessageClass is IPM.Sharing.Binding.In, and the Subject holds the URL for the feed, so with a little VBA prototyping:
Set fld = Application.ActiveExplorer.CurrentFolder
Set si = fld.GetStorage("IPM.Sharing.Binding.In", _
olIdentifyByMessageClass)
If Not si Is Nothing Then
MsgBox si.Subject
End If
BTW, if you enjoy this kind of digging, get yourself a copy of Outlook Spy or MFCMAPI.exe. |