I've created a simple winform with one databound datagridview. The user should be able to change values in the grid. One column of this grid is a combobox called comb1. The source of comb1 is a select to database. Everything works very well. But.....
After deleting one entry in the source of the combobox comb1 whitch is already used in the datagridview, the datagridview fails when opening. The combobox tries to validate the value in the datagridviewcolumn comb1. But this is not possible, because one entry of the combobox-source is deleted. Error: The datagridviewcomboboxcell-value is not valid.
Hope, you can understand.... How can I fix this? Thanks.