VB中怎样确定多个单选按钮中是哪个被选中

2024-11-18 17:42:43
推荐回答(3个)
回答(1):

添加一个OPTION控件,复制-粘贴,建立 控件组
比如复制6个代码如下:Private Sub Command1_Click() For i = 0 To 5 If Option1(i).Value = True Then MsgBox Option1(i).Caption & "被选中" NextEnd Sub

回答(2):

Private Sub Command1_Click()
If (Option1.Value = True) Then MsgBox ("Option1 is select!")
If (Option2.Value = True) Then MsgBox ("Option2 is select!")
End Sub

回答(3):

value值不同