text into checkedListBox

  • Thread starter Thread starter Hrvoje Voda
  • Start date Start date
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";
}
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top