I am trying to make my own explorer using the Treeview control.

Does anyone know of examples from the net ?

I can find all the folder names by the following code:

"
Dim numOfFolders
numOfFolders = dirSelect.ListCount

Dim folderCount
Dim folderName

for folderCount = 0 to numOfFolders - 1

folderName = dirSelect.List(folderCount)

Next folderCount
"

But how do I find out all the subfolder names and all the files that belong to these foldes ???

I CANNOT USE the filesystem object. Is there any other way ??

Thanks for your help.
Predator.