datagridview - click on DataGridViewTextBox cell and create DataGridViewComboBox control
I'm populating a DataGridView's columns with values from a C++ dll and the initial load of string and integer values are handled byDataGridViewTextBoxColumns.
What I want to be able to do is to click on any of those cells containing the string values in that cell and have that cell display a dropdown combo box with values from a specific collection.
Is there a way to change at runtime from aDataGridViewTextBoxColumnsto a DataGridViewComboBoxColumn display?
Thanks, -Greg

