Monday 25 June 2012

UnCheck all checked In list Box


How to uncheck  all in  checked list box









  1. Public Sub CheckAll(ByVal checkedListBox As CheckedListBox)   
  2. For i As Integer = 0 To checkedListBox.Items.Count - 1   
  3. checkedListBox.SetItemChecked(i, True)   
  4. Next   
  5. End Sub  

No comments:

Post a Comment

Passwords Made Easy

Today i thought i would write about password security. As we are all aware passwords are important but we continue to use very poor password...