Home All Groups Group Topic Archive Search About
Author
8 Nov 2007 3:02 AM
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

Author
8 Nov 2007 3:31 AM
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
----------------

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
Are all your drivers up to date? click for free checkup

Author
8 Nov 2007 5:50 PM
Kathleen Anderson
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.

--

~ 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






Show quoteHide quote
"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

Bookmark and Share

Post Thread options