how can i add an item to the list by clicking the check box,
like this?
VB Code:
  1. If chkboxuf1.Value = True Then
  2.       Dim lngIndex As Long
  3.     End If
  4.     For lngIndex = List1.ListCount - 1 To 0 Step -1
  5.         If List1.List(lngIndex) = "UF1" Then
  6.             List1.AddItem lngIndex
  7.                End If
  8.     Next