Sky Software Homepage LogicNP Software Knowledge Base And FAQ

 
Contact Product Support    SearchSearch      Subscribe to the RSS feed for this forum

HOWTO : Enumerate all the folders/files shown in FolderView ActiveX Control.

 
Subscribe to the RSS feed for this forum  Forum Index -> FolderView ActiveX Control
View previous topic :: View next topic  
Author Message
Support



Joined: 18 Jul 2005
Posts: 731

Posted: Sat Jul 30, 2005 11:54 am    Post subject: HOWTO : Enumerate all the folders/files shown in FolderView ActiveX Control.

To enumerate through all the nodes, you should use the GetFirstItem and GetNextItem properties.

Dim x As FolderViewControl.TreeNode
Set x = FolderView1.GetFirstItem
While x Is Nothing = False
Debug.Print x.DisplayName
Set x = FolderView1.GetNextItem
Wend
Back to top
Display posts from previous:   
Forum Index -> FolderView ActiveX Control All times are GMT
Page 1 of 1

 
Jump to:  


Powered by phpBB © 2001, 2005 phpBB Group