T Tim Wilson Apr 19, 2006 #2 Assuming that the CheckedListBox is set for single selection, you can change the text as shown below. if (this.checkedListBox1.SelectedIndex > -1) { this.checkedListBox1.Items[this.checkedListBox1.SelectedIndex] = "Updated"; }
Assuming that the CheckedListBox is set for single selection, you can change the text as shown below. if (this.checkedListBox1.SelectedIndex > -1) { this.checkedListBox1.Items[this.checkedListBox1.SelectedIndex] = "Updated"; }