The Select all button facilitates selecting all unused variables listed so they can be deleted at once.
For i As Integer = 0 To lstVars.Items.Count - 1
lstVars.SetSelected(i, True)
Next
The Clear All button reverses this by simply setting SetSelected to False:
For i As Integer = 0 To lstVars.Items.Count - 1
lstVars.SetSelected(i, False)
Next
The Invert Sel button facilitates picking all but one or two variables by simply swapping the selected states:
For i As Integer = 0 To lstVars.Items.Count - 1
If lstVars.GetSelected(i) = True Then
lstVars.SetSelected(i, False)
ElseIf lstVars.GetSelected(i) = False Then
lstVars.SetSelected(i, True)
End If
Next
Download just the program or executable file
No comments:
Post a Comment