Do i just replace what i have with that?

VB Code:
  1. If chkboxuf1.Value = True Then
  2.     Dim lngIndex As Long
  3.    
  4.     For lngIndex = List1.ListCount - 1 To 0 Step -1
  5.         If List1.List(lngIndex) = "AAA" Then
  6.             List1.RemoveItem lngIndex
  7.         End If
  8.     Next