vb编程:在窗体中有四个单选按钮和一个命令按钮,当选择一个单选按钮,单击命令按钮,就会出现另一个窗体

在命令按钮click中实现,如图,单击确定,弹出窗体2

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追问

我的程序也是这么写的,可是运行的时候,选择option1,则form3出来,form2不出来;选择option2的时候form2出来,选择option3的时候也是form2出来,选择option4的时候也是同样的情况,为什么?

追答

我现在电脑上没有VB,晚上我上网的话。你把程序发我邮箱,我帮你看看。

追问

好的!谢谢啊!你的邮箱是?

追答

56315113@qq.com 家里电脑上还有一些VB的资料,回头发给你。共享一下。

温馨提示:内容为网友见解,仅供参考
第1个回答  2012-05-28
你无需使用多重选择。
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
第2个回答  2012-05-28
Private Sub Command1_Click()
If Option1.Value = True Then form2.Show
End Sub
第3个回答  2012-05-28
if option.value=1 then
form2.show
end if
相似回答