组合框验证规则

时间:2015-05-22 09:40:19

标签: c# winforms combobox

大家好,你们可以帮我解决一下我的问题吗?我有Form comboboxPanel。我需要在Combobox (item1 = yes,item2=no) item 2中选择,面板制作visible=false(所有项目都有),以及面板中不可见的项目(radiobutton, textbox等),数据库中的表写入null这个项目。劳驾!我的语法错误;)这是我的表格

enter image description here

1 个答案:

答案 0 :(得分:1)

ComboBox1_SelectedIndexChanged上写代码

If ComboBox1.SelectedIndex = 0 Then 'Also take ComboBox1.SelectedItem='Yes'
            Panel1.Visible = True
        Else
            Panel1.Visible = False
 If RadioButton1.Checked = False Then
           Label1.Text="NULL"
        End If
        End If

将标签值传递给数据库。