vb编程:在窗体中有四个单选按钮和一个命令按钮,当选择一个单选按钮,单击命令按钮,就会出现另一个窗体
发布网友
发布时间:2022-06-02 07:27
我来回答
共4个回答
热心网友
时间:2023-10-09 16:15
private sub command1_click()
If Option1.Value = True Then
form2.Show
elseif Option2.Value = True Then
form3.Show
elseif Option3.Value = True Then
form5.Show
elseif Option4.Value = True Then
form5.Show
endif
end sub
热心网友
时间:2023-10-09 16:15
你无需使用多重选择。
Private Sub command1_click()
If Option1.Value = True Then form2.Show
If Option2.Value = True Then form3.Show
If Option3.Value = True Then form4.Show
If Option4.Value = True Then form5.Show
End Sub
热心网友
时间:2023-10-09 16:16
Private Sub Command1_Click()
If Option1.Value = True Then form2.Show
End Sub
热心网友
时间:2023-10-09 16:16
if option.value=1 then
form2.show
end if