How can I display my own icons and texts to files/folders shown in FolderView ActiveX Control?
You can display your own text or icons for files/folders shown in FolderView. To change the text shown for a TreeNode, you should use the Text property. You can change this property for each node in the OnAfterNodeAdd event which is called after each node is added. node1.Text = node1.DisplayName + “*” To change the icons shown for a Treenode, you should use the IconIndex property. You can change this property for each node in the OnAfterNodeAdd event which is called after each node is added. node1.IconIndex = 22 The above method allows you to display only those icons which are present in the system imagelist. If you want to display your own icons for nodes, then you should use the AddCustomIcon method. This method returns an index which you can then use with the IconIndex property.