I need to add a ComboBox column in my datagrdiview (winform) with these simple functionalities:
- Autocomplete
- Loads items from database dinamically, based on typed value (all items starting with typed text)
- Possibility to insert new value (type text with no match on database values)
I tried to set datasource of myComboBoxColumn at KeyDown event of editing control (the combobox) with no success.