VB中单选按钮和组合框的一个小问题
大概是这样的,在两个单选按钮中,我选中其中一个,它的caption就添加到组合框中,而当选中另一个单选按钮,组合框中的刚才添加的内容被删除,而添加第二个按钮的captio...
大概是这样的,在两个单选按钮中,我选中其中一个,它的caption就添加到组合框中,而当选中另一个单选按钮,组合框中的刚才添加的内容被删除,而添加第二个按钮的caption,同时不影响组合框内的其他内容。谢谢
展开
展开全部
Private Sub Command1_Click()
If Option1.Value = True Then
If List1.List(List1.ListCount - 1) = Option2.Caption Then
List1.RemoveItem List1.ListCount - 1
End If
List1.AddItem Option1.Caption
ElseIf Option2.Value = True Then
If List1.List(List1.ListCount - 1) = Option1.Caption Then
List1.RemoveItem List1.ListCount - 1
End If
List1.AddItem Option2.Caption
End If
End Sub
你也可以把事件写到option1和2的click事件中。
If Option1.Value = True Then
If List1.List(List1.ListCount - 1) = Option2.Caption Then
List1.RemoveItem List1.ListCount - 1
End If
List1.AddItem Option1.Caption
ElseIf Option2.Value = True Then
If List1.List(List1.ListCount - 1) = Option1.Caption Then
List1.RemoveItem List1.ListCount - 1
End If
List1.AddItem Option2.Caption
End If
End Sub
你也可以把事件写到option1和2的click事件中。
展开全部
Private Sub Option1_Click()
If Option1.Value = True Then Combo1.AddItem Option1.Caption
End Sub
Private Sub Option2_Click()
If Option2.Value = True Then
Combo1.RemoveItem (Combo1.ListCount - 1)
Combo1.AddItem Option2.Caption
End If
End Sub
If Option1.Value = True Then Combo1.AddItem Option1.Caption
End Sub
Private Sub Option2_Click()
If Option2.Value = True Then
Combo1.RemoveItem (Combo1.ListCount - 1)
Combo1.AddItem Option2.Caption
End If
End Sub
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询