VBA中列表框中的选中项取消选中

2024-12-26 18:41:56
推荐回答(1个)
回答1:

建两个控件,如图:

写代码:


Private Sub CommandButton1_Click()
    Dim x
    For x = 1 To ListBox1.ListCount
        If ListBox1.Selected(x) = True Then ListBox1.Selected(x) = False
    Next x
    
End Sub



Private Sub UserForm_Activate()
    ListBox1.List = Range("a1:a5").Value
End Sub