Adding row to DataGridView
-
I have DataGridView namely datagridview1 with having three columns. Now i want to add rows on DataGridView that is specific to datagridview1. I don't want to make Generic row and add like DataGridViewRow row = new DataGridViewRow(); I want to make row that is Specific to my datagridview1. Thanks in Advance.......
-
I have DataGridView namely datagridview1 with having three columns. Now i want to add rows on DataGridView that is specific to datagridview1. I don't want to make Generic row and add like DataGridViewRow row = new DataGridViewRow(); I want to make row that is Specific to my datagridview1. Thanks in Advance.......
Piyush Vaishnav wrote:
Now i want to add rows on DataGridView that is specific to datagridview1
What is so specific ? simply add a row : DataGridView a = new DataGridView(); a.Rows.Add(...); OR a.Rows.AddRange(...); OR a.Rows.AddCopy(...); :) :)
Have Fun Never forget it