VB中单选按钮和组合框的一个小问题

大概是这样的,在两个单选按钮中,我选中其中一个,它的caption就添加到组合框中,而当选中另一个单选按钮,组合框中的刚才添加的内容被删除,而添加第二个按钮的captio... 大概是这样的,在两个单选按钮中,我选中其中一个,它的caption就添加到组合框中,而当选中另一个单选按钮,组合框中的刚才添加的内容被删除,而添加第二个按钮的caption,同时不影响组合框内的其他内容。谢谢 展开
 我来答
lxz1969
2008-07-02 · TA获得超过1.1万个赞
知道大有可为答主
回答量:8524
采纳率:33%
帮助的人:1.1亿
展开全部
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事件中。
湘湖泛舟
2008-07-02 · TA获得超过1076个赞
知道大有可为答主
回答量:833
采纳率:0%
帮助的人:902万
展开全部
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
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式