I used to fill a listview with dataset that is set to details view. Now, I need to fill the listview with images and by that I believed that I'd set the view to large icons. How to do this?
this is how I feel the listview
foreach (DataRow dr in ds.Tables["tblEventType"].Rows)
{
ListViewItem lvi = new ListViewItem(dr["eventName"].ToString());
lvi.SubItems.Add(dr["startDateTime"].ToString());
lvi.SubItems.Add(dr["endDateTime"].ToString());
lvi.SubItems.Add(dr["location"].ToString());
lvi.SubItems.Add(dr["contactPerson"].ToString());
eventlv.Items.Add(lvi);
}