Answers for "HOW to insERT DATA THROUGH DATAGRID VIEW cells"

0

HOW to insERT DATA THROUGH DATAGRID VIEW cells

dataGridView1.Columns[0].Name = "column2";
 dataGridView1.Columns[1].Name = "column6";

 string[] row1 = new string[] { "column2 value", "column6 value" };
 dataGridView1.Rows.Add(row1);
Posted by: Guest on January-09-2021

Code answers related to "HOW to insERT DATA THROUGH DATAGRID VIEW cells"

Browse Popular Code Answers by Language