Why it doesn't save changes into datatable from datagridview?
I have binded datagridview with datatable ( Growns ). My main goal is, that user can work with datagridview ( dataGridView1 ), filling and updating data and when button SAVE is clicked, all data would be saved into datatable, because I need it for further work. Everything works fine, exept saving data into datatable . What am I doing wrong? Here is my code: private void Form2_Load(object sender, EventArgs e) { // TODO: This line of code loads data into the 'tekmovalecDataSet.Odrasli' table. You can move, or remove it, as needed. this.grownsTableAdapter.Fill(this.competitorDataSet.Odrasli); }