Dim cell As New DataGridViewComboBoxCell
'Configure cell here'
DataGridView1(columnIndex, rowIndex) = cell
Dim cell As New DataGridViewComboBoxCell
'Configure cell here'
DataGridView1(columnIndex, rowIndex) = cell
Hi .Thank you for your answer @jmcilhinneyYou can assign a cell of any type at any location within the grid at which a cell already exists, e.g.
VB.NET:Dim cell As New DataGridViewComboBoxCell 'Configure cell here' DataGridView1(columnIndex, rowIndex) = cell