Update Datagridview From Another Form
问题 First I should say i saw this link : How to refresh datagridview when closing child form? And i did like this: (i have datagridview in Form1) Form1: public void FillDataGridView(DataTable dt1) { bindingSource1.DataSource = dt1; bindingSource1.ResetBindings(false); dataGridView1.DataSource = bindingSource1; //here i checked number of rows of dt1 and it shows the correct value } Form2: SqlConnection cnn = new SqlConnection(@"My connection string"); private Form1 Handled_frm1; public Form2(Form1