Ok. I'm finally home with my laptop. So what i did to do the same thing your wanting to do is i used a ListView that i fill in dynamically from a datatable. Here is the code (summary of what i'm doing with is as at the bottom after code):
For i = 0 To frmSelection.MechDataTable2.Rows.Count - 1
Dim tmpGroup As ListViewGroup = New ListViewGroup(frmSelection.MechDataTable2.Rows(i).Item("MechName"))
ltvMechs.Groups.Add(tmpGroup)
Dim tmpListItem1 As ListViewItem = New ListViewItem(tmpGroup)
Dim tmpListItem2 As ListViewItem = New ListViewItem(tmpGroup)
Dim tmpListItem3 As ListViewItem = New ListViewItem(tmpGroup)
Dim tmpListItem4 As ListViewItem = New ListViewItem(tmpGroup)
Dim tmpListItem5 As ListViewItem = New ListViewItem(tmpGroup)
'row1
tmpListItem1.SubItems.Add("co1")
tmpListItem1.SubItems.Add("co2")
tmpListItem1.SubItems.Add("co3")
tmpListItem1.SubItems.Add("co4")
tmpListItem1.SubItems.Add("co5")
tmpListItem1.SubItems.Add("co6")
tmpListItem1.SubItems.Add("co7")
tmpListItem1.SubItems(0).Text = "Select"
tmpListItem1.SubItems(1).Text = frmSelection.MechDataTable2.Rows(i).Item("Price")
tmpListItem1.SubItems(2).Text = frmSelection.MechDataTable2.Rows(i).Item("MechID")
tmpListItem1.SubItems(3).Text = "Faction Orientation"
tmpListItem1.SubItems(4).Text = frmSelection.MechDataTable2.Rows(i).Item("FactionOrientation")
tmpListItem1.SubItems(5).Text = "Engine HDP"
tmpListItem1.SubItems(6).Text = frmSelection.MechDataTable2.Rows(i).Item("EngineHardPoint")
'row2
tmpListItem2.SubItems.Add("co1")
tmpListItem2.SubItems.Add("co2")
tmpListItem2.SubItems.Add("co3")
tmpListItem2.SubItems.Add("co4")
tmpListItem2.SubItems.Add("co5")
tmpListItem2.SubItems.Add("co6")
tmpListItem2.SubItems.Add("co7")
tmpListItem2.SubItems(0).Text = ""
tmpListItem2.SubItems(1).Text = ""
tmpListItem2.SubItems(2).Text = ""
tmpListItem2.SubItems(3).Text = "Required Rep"
tmpListItem2.SubItems(4).Text = frmSelection.MechDataTable2.Rows(i).Item("RequiredRep")
tmpListItem2.SubItems(5).Text = "Generator HDP"
tmpListItem2.SubItems(6).Text = frmSelection.MechDataTable2.Rows(i).Item("GeneratorHardPoint")
'row3
tmpListItem3.SubItems.Add("co1")
tmpListItem3.SubItems.Add("co2")
tmpListItem3.SubItems.Add("co3")
tmpListItem3.SubItems.Add("co4")
tmpListItem3.SubItems.Add("co5")
tmpListItem3.SubItems.Add("co6")
tmpListItem3.SubItems.Add("co7")
tmpListItem3.SubItems(0).Text = ""
tmpListItem3.SubItems(1).Text = ""
tmpListItem3.SubItems(2).Text = ""
tmpListItem3.SubItems(3).Text = "Resilience"
tmpListItem3.SubItems(4).Text = frmSelection.MechDataTable2.Rows(i).Item("Resilience")
tmpListItem3.SubItems(5).Text = "Heavy HDP"
tmpListItem3.SubItems(6).Text = frmSelection.MechDataTable2.Rows(i).Item("HeavyHardPoint")
'row4
tmpListItem4.SubItems.Add("co1")
tmpListItem4.SubItems.Add("co2")
tmpListItem4.SubItems.Add("co3")
tmpListItem4.SubItems.Add("co4")
tmpListItem4.SubItems.Add("co5")
tmpListItem4.SubItems.Add("co6")
tmpListItem4.SubItems.Add("co7")
tmpListItem4.SubItems(0).Text = ""
tmpListItem4.SubItems(1).Text = ""
tmpListItem4.SubItems(2).Text = ""
tmpListItem4.SubItems(3).Text = "Weight"
tmpListItem4.SubItems(4).Text = frmSelection.MechDataTable2.Rows(i).Item("Weight")
tmpListItem4.SubItems(5).Text = "Medium HDP"
tmpListItem4.SubItems(6).Text = frmSelection.MechDataTable2.Rows(i).Item("MediumHardPoint")
'row5
tmpListItem5.SubItems.Add("co1")
tmpListItem5.SubItems.Add("co2")
tmpListItem5.SubItems.Add("co3")
tmpListItem5.SubItems.Add("co4")
tmpListItem5.SubItems.Add("co5")
tmpListItem5.SubItems.Add("co6")
tmpListItem5.SubItems.Add("co7")
tmpListItem5.SubItems(0).Text = ""
tmpListItem5.SubItems(1).Text = ""
tmpListItem5.SubItems(2).Text = ""
tmpListItem5.SubItems(3).Text = "Structure"
tmpListItem5.SubItems(4).Text = frmSelection.MechDataTable2.Rows(i).Item("Class")
tmpListItem5.SubItems(5).Text = "Light HDP"
tmpListItem5.SubItems(6).Text = frmSelection.MechDataTable2.Rows(i).Item("LightHardPoint")
ltvMechs.Items.Add(tmpListItem1)
ltvMechs.Items.Add(tmpListItem2)
ltvMechs.Items.Add(tmpListItem3)
ltvMechs.Items.Add(tmpListItem4)
ltvMechs.Items.Add(tmpListItem5)
Next
Basically, each list item is a row in the group, each subitem is a cell in the row (similar to what you would see in excel, access ect.) subitem(0) is in col1, subitem(1) is in col2 ect. For your first column you will have subitem(0) of listItem1 be the picture and all of the other subitem(0)'s you will want to make blank. As i said im my comment above, i coded this in vb.net but by all accounts i've seen it isn't that much different than C#. Also here is a picture of part of what this code produces. sorry for the quality but it's the best i could do with what i had to work with. 