I was checking out various folderitem properties:
http://msdn.microsoft.com/library/en-us/shellcc/platform/shell/reference/=
objects/folderitem/folderitem.asp
and found that the following code in a .vbs file:
'-----------------------------------------
Set oAppShell =3D CreateObject("Shell.Application")
set oFolder =3D oAppShell.BrowseForFolder(0, "Choose a Folder", 0)
msgbox "IsBrowsable =3D " & oFolder.Self.IsBrowsable,,oFolder.Self.Name
'For each oItem in oFolder.Items
' With oItem
' If .IsFolder then msgbox "IsBrowsable =3D " & .IsBrowsable,,.Name
' end with
'Next
'-----------------------------------------
will always show "False"???
Can anyone explain this to me?
Thank you,=20
Keith