Hello
As you know, the "FileListBox" control only shows the file names, but doesn't show the icons of the files. Is there a listbox that can show both filenames and fileIcons? (I don't want a DialogBox, I need a ListBox).
Thank you
Printable View
Hello
As you know, the "FileListBox" control only shows the file names, but doesn't show the icons of the files. Is there a listbox that can show both filenames and fileIcons? (I don't want a DialogBox, I need a ListBox).
Thank you
There's no standard control that does that, but .NET controls are made to be extensible. You can inherit the ComboBox or ListBox and add that functionality yourself. You'll no doubt find that there are many third-party controls that have done just that. No doubt you could find a free one if you looked. The library in my signature includes a ComboBox that supports icons on the items but no ListBox. If I wanted one I'd be going to The Code Project first, then Googling.