First of all, I looked up this related question in here but the solution dataGridView1.Rows.Add() doesn't work in my case.
In my Datagridview, I have 3 TextBoxes for data input and 2 ComboBoxes for the user to choose the values (which are bound into the database). One of my TextBoxes is set to read only so that the users can only populate it outside the datagrid (with a normal TexBox and a Button).
When the users fill a DataGridView with data, there is always an empty row at the bottom; so I disable this and I used this code to prevent the users from adding a new row inside the datagrid...
dataGridView1.AllowUserToAddRows = false
I only want to add a new row when the users click the button I mentioned above (which throws an error).
The error message I got was:
"Rows cannot be programmatically added to the datagridview's row collection when the control is data-bound"
the one with a red arrow is a ComboBox, and the one with green arrow is a read only TextBox
Edit1: Finally I found the solution for this :D thanks a lot guys... the "NewRow" method works perfectly.
But I got another problem, when I assign the button to add the value into a new row, the entire cell will be on edit mode, until I clicked on other cell or tabbed till the end of the row, then it will end the edit mode. im using dataGridView.BeginEdit(true); So, if I insert another value and press the button, the new value will replace the old value that was inserted previously. I was trying to use dataGridView.EndEdit(); but it doesn't end the edit mode :( does anyone know how to solve this?