My datagrid view contains three columns, column types are checkbox, textbox and combobox.
If I check one row, it will load corresponding rows combobox only. How can I do it?
My datagrid view contains three columns, column types are checkbox, textbox and combobox.
If I check one row, it will load corresponding rows combobox only. How can I do it?
maybe this could help (example)
Dim dgvcc As DataGridViewComboBoxCell
dgvcc = DataGridView1.Rows(2).Cells(0)
dgvcc.Items.Add("comboitem1")
dgvcc.Items.Add("comboitem2")