vb编程:在窗体中有四个单选按钮和一个命令按钮,当选择一个单选按钮,单击命令按钮,就会出现另一个窗体 5
4个回答
展开全部
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
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,晚上我上网的话。你把程序发我邮箱,我帮你看看。
展开全部
你无需使用多重选择。
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
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
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
Private Sub Command1_Click()
If Option1.Value = True Then form2.Show
End Sub
If Option1.Value = True Then form2.Show
End Sub
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
if option.value=1 then
form2.show
end if
form2.show
end if
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询