|
dev
newsgroups
|
|||||||||||||||||||||||
|
|||||||||||||||||||||||
RSSTool.exeThe RSSTool found at
http://msdn2.microsoft.com/en-us/library/aa218660(office.11).aspx is a blessing. Simple and sweet. If you look at the web page near the bottom, the VBA coding for listing the folders is discussed. I don't know VBA, so I was wondering if there is a way to modify the code slightly so when the folders are listed it shows their partial or full path, rather than the folder names? For example, I have folders like \news, \news\01, \images, and \images\01. When I use the RSSTool and it lists the folders, I only see: news, images, 01, 01....which as you can see could be a little confusing. Thank you. Matt Forgot to include the code cited on the web page:
------------ For Each objFolder In objSite.AllFolders intLocation = InStr(1, Mid(objFolder.Name, 1, 1), "_") If Not objFolder.IsRoot And intLocation = 0 Then lstFolders.AddItem objFolder.Name End If Next ---------------- Show quoteHide quote "Matthew Schwarz" wrote: > The RSSTool found at > http://msdn2.microsoft.com/en-us/library/aa218660(office.11).aspx is a > blessing. > > Simple and sweet. > > If you look at the web page near the bottom, the VBA coding for listing the > folders is discussed. I don't know VBA, so I was wondering if there is a way > to modify the code slightly so when the folders are listed it shows their > partial or full path, rather than the folder names? > > For example, I have folders like \news, \news\01, \images, and \images\01. > > When I use the RSSTool and it lists the folders, I only see: news, images, > 01, 01....which as you can see could be a little confusing. > > Thank you. > Matt Hi Matt:
I have used that tool and you're right - it is sweet. But it does need some modifications. I am trying to find out who the author is to see if it can be updated. -- Show quoteHide quote~ Kathleen Anderson Microsoft MVP - FrontPage Spider Web Woman Designs Expression Web Resources: http://www.spiderwebwoman.com/xweb/ FrontPage Resources: http://www.spiderwebwoman.com/resources/ Please reply to the newsgroup for the benefit of others "Matthew Schwarz" <MatthewSchw***@discussions.microsoft.com> wrote in message news:675BEBE4-D8A2-4225-AEAB-D057BE41A042@microsoft.com... > The RSSTool found at > http://msdn2.microsoft.com/en-us/library/aa218660(office.11).aspx is a > blessing. > > Simple and sweet. > > If you look at the web page near the bottom, the VBA coding for listing > the > folders is discussed. I don't know VBA, so I was wondering if there is a > way > to modify the code slightly so when the folders are listed it shows their > partial or full path, rather than the folder names? > > For example, I have folders like \news, \news\01, \images, and \images\01. > > When I use the RSSTool and it lists the folders, I only see: news, images, > 01, 01....which as you can see could be a little confusing. > > Thank you. > Matt
widescreen monitors
Include Page difference in 2002 and 2003 Running an EXE file outside of MSIE? Printing Form sent via Email How to Make a Form Send an Email database result page IE doesnt hide status bar on window.open "status=no" Mouse over message display unable to create new pages Drop-Down Box Options Line Spacing |
|||||||||||||||||||||||