大家好,你们可以帮我解决一下我的问题吗?我有Form
combobox
和Panel
。我需要在Combobox (item1 = yes,item2=no) item 2
中选择,面板制作visible=false
(所有项目都有),以及面板中不可见的项目(radiobutton, textbox
等),数据库中的表写入null这个项目。劳驾!我的语法错误;)这是我的表格
答案 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
将标签值传递给数据库。