I have a DataGridView, in which I have a column. This column is not readonly, and the purpose of it is to be able to write text in every cell. When I select a empty cell and start typing, it works as expected. However, when there already is text in a cell, and I start typing, all the existing text is removed. How can I prevent this?
Example:
The cell already contains "ABC". When I type D, I want the cell to contain "ABCD", but it only contains "D".