Hello
I need a DatagridView with the option of read-only for existing record but
that I can insert new records
I try with
this.dataGridView1.ReadOnly = false;
this.dataGridView1.AllowUserToAddRows = true;
this.dataGridView1.AllowUserToDeleteRows = false;
but the problem is that the user can update existing records and I want only
able to insert new ones.
if I use
this.dataGridView1.ReadOnly = true;
the user have a new record but can edit the information a the new one
Please I think the solution is very simple but I have invest a lot of time
with different combinations without any positive result
please help
MajorTom