RSSTool.exe

  • Thread starter Matthew Schwarz
  • Start date
M

Matthew Schwarz

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
 
M

Matthew Schwarz

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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top