C
Chris LaJoie
here's how its done:
private void lv_DoubleClick(object sender, System.EventArgs e)
{
if(lv.SelectedItems.Count > 0)
{
lv.SelectedItems[0].SubItems[4].Text = "testing";
}
}
also, use the FullRowSelect property on the listview (I'm pretty sure htats
what you're looking for)
Chris
private void lv_DoubleClick(object sender, System.EventArgs e)
{
if(lv.SelectedItems.Count > 0)
{
lv.SelectedItems[0].SubItems[4].Text = "testing";
}
}
also, use the FullRowSelect property on the listview (I'm pretty sure htats
what you're looking for)
Chris