Sky Software Homepage LogicNP Software Knowledge Base And FAQ

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

HOWTO : Display custom icons and texts to files/folders shown in FileView ActiveX Control.

 
Subscribe to the RSS feed for this forum  Forum Index -> FileView ActiveX Control
View previous topic :: View next topic  
Author Message
atul
Site Admin


Joined: 18 Jul 2005
Posts: 8

Posted: Fri Jul 29, 2005 8:30 am    Post subject: HOWTO : Display custom icons and texts to files/folders shown in FileView ActiveX Control.

To change the text shown for a ListItem, you should use the Text property. You can change this property for each node in the OnAfterItemAdd event which is called after each node is added.

item1.Text = item1.DisplayName + "*"

To change the icons shown for a ListItem, you should use the IconIndex property. You can change this property for each node in the OnAfterItemAdd event which is called after each node is added.

item1.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.

Dim index as Integer
index= filevw.AddCustomIcon("c:\test.ico",Nothing)
item1.IconIndex = index
Back to top
Display posts from previous:   
Forum Index -> FileView ActiveX Control All times are GMT
Page 1 of 1

 
Jump to:  


Powered by phpBB © 2001, 2005 phpBB Group