I have a listView that lists a bunch of files, and a set of checkboxes that allow users to download them from an FTP server, like so:
Filename Size Last modified New version
[ ] someimage.jpg 120 kB 2010-01-13 16:12:59 Yes
[ ] otherfile.zip 12 kB 2009-12-29 09:33:15 No
[ ] folder - - -
I don't want to have a checkbox on the folder though, but I do need it (the folder) to be displayed in the list.
How do I best sort this?
Update: I'm using Windows Forms.