P pankaj Active Member 1,817 2009 149 30 Aug 14, 2010 #1 I've added a datagridview with 2 columns, one contains song name and other song URL. datagridview1.rows.Add(dataforfirstcol, datafor2ndcol); But how to fill data only in second column or in first by using its column name.
I've added a datagridview with 2 columns, one contains song name and other song URL. datagridview1.rows.Add(dataforfirstcol, datafor2ndcol); But how to fill data only in second column or in first by using its column name.
L litewarez Active Member 1,367 2008 1 0 Aug 14, 2010 #2 can you not use an empty string. PHP: string[] first = { "Row 1", "Row 2", }; string[] second = { "", "Row 2", }; datagridview1.Rows.Add(first); datagridview1.Rows.Add(second);
can you not use an empty string. PHP: string[] first = { "Row 1", "Row 2", }; string[] second = { "", "Row 2", }; datagridview1.Rows.Add(first); datagridview1.Rows.Add(second);