S
sherifffruitfly
Hi,
Here's a skeleton-handler of what I'm trying to do:
private void editBbListView_ItemCheck(object sender,
System.Windows.Forms.ItemCheckEventArgs e)
{
string qEnabled = "";
string indexid = ITEM_IN_ROW_WHOSE_CHECK_JUST_CHANGED.Text;
(Update the database linked to the listview, based upon
indexid)
}
How do I determine ITEM_IN_ROW_WHOSE_CHECK_JUST_CHANGED?
I know how to determine, for example the item.text of the currently
selected row, if any. But that doesn't help here, since you can check
on/off a row without actually selecting the row.
Thanks for any ideas,
cdj
Here's a skeleton-handler of what I'm trying to do:
private void editBbListView_ItemCheck(object sender,
System.Windows.Forms.ItemCheckEventArgs e)
{
string qEnabled = "";
string indexid = ITEM_IN_ROW_WHOSE_CHECK_JUST_CHANGED.Text;
(Update the database linked to the listview, based upon
indexid)
}
How do I determine ITEM_IN_ROW_WHOSE_CHECK_JUST_CHANGED?
I know how to determine, for example the item.text of the currently
selected row, if any. But that doesn't help here, since you can check
on/off a row without actually selecting the row.
Thanks for any ideas,
cdj