我在textboxcolumn
中有一个comboboxcolumn
和datagridview
。我根据TextBoxColumn
的值成员在comboboxcolumn
输入值时需要更改selecteditem。
TextBoxColumn- name = itnum
ComboBoxColumn - name = itname
ComboBoxColumn
-------------------------
Value Display
--------- ----------
1 Item 1
2 Item 2
3 Item 3
-------------------------
Private Sub GV_CellEndEdit(ByVal sender As Object, ByVal e As System.Windows.Forms.DataGridViewCellEventArgs) Handles GV.CellEndEdit
Select Case GV.Columns(e.ColumnIndex).Name
Case "itnum"
GV.Item("itname", e.RowIndex).Value = GV.Item("itnum", e.RowIndex).Value
End Select
当我运行此代码时,错误弹出如下
我的要求是当我在TextBoxCell中输入 3 时,ComboBoxCell会自动将selectedItem更改为第3项