Hello !!

Question 1 : am I crasy to attempt this ?

Question 2 :

Here is my sorted list declaration, it's already been populated :
private SortedList<String, FileRepresentation> myFiles = new SortedList<String, FileRepresentation>();

My big problem is that I don't know how to draw my item as I don't have an index inside !!
Code:
        void listView1_RetrieveVirtualItem(object sender, RetrieveVirtualItemEventArgs e)
        {
            int i = e.ItemIndex;
            e.Item = new ListViewItem(
        }
if I understood well, the frameworks calls in e the index it requires to draw, right ?

If yes how can I draw the good item from my sortedlist ?