how can i add a row to Datagridview C# code example

Example 1: add row to datagridview c#

DataGridViewRow row = (DataGridViewRow)yourDataGridView.Rows[0].Clone();
row.Cells[0].Value = "XYZ";
row.Cells[1].Value = 50.2;
yourDataGridView.Rows.Add(row);

Example 2: add rows to datagridview vb.net

'Add rows
Me.DataGridView1.Rows.Add(TextBox1.Text) 'TextBox1 = data being added to grid

'Remove rows

'making sure the user has chosen a row
If DataGridView1.SelectedRows.Count > 0 Then
	For i As Integer = DataGridView1.SelectedRows.Count - 1 To 0 Step -1
		DataGridView1.Rows.RemoveAt(DataGridView1.SelectedRows(i).Index)
	Next
Else
	MsgBox("No row(s) have been selected")
End If

Tags:

Vb Example