我试图通过下拉选项创建一种在单个文本框中显示不同数据列的方法。
就像当我在第一个上选择“first”而在第二个上选择“first”时,文本框将绑定指定的列,这是“第一个”的情况。
Private Sub Button1_Click(sender As System.Object, e As System.EventArgs) Handles Button1.Click
If ComboBox2.Text = "First" Then
Textbox1.text = databindings - first first < Columns name
elseif combox2.text = "second" then
Textbox1.text = databindings - first second
End If
elseif combox1.text ="second" then
If ComboBox2.Text = "First" Then
Textbox1.text = databindings - second first
elseif combox2.text = "second" then
Textbox1.text = databindings - second second
End If
elseif combox1.text ="third" then
If ComboBox2.Text = "First" Then
Textbox1.text = databindings - third first
elseif combox2.text = "second" then
Textbox1.text = databindings - third second
End If
else
If ComboBox2.Text = "First" Then
Textbox1.text = databindings - fourth first
elseif combox2.text = "second" then
Textbox1.text = databindings - fourth second
End If
End If
我知道有一个属性选项,但每个文本框只有一个绑定。 有人知道我能做些什么来使其发挥作用还是不可能?
我正在使用数据网格和绑定导航器,并且只使用1个表,Visual Studion 10和Access 13作为数据库。