Использование представления сетки данных.
Сегмент кода предполагает, что вы создали элемент управления datagridview с именем "SubmittedDataGridView" и создали столбцы в IDE во время разработки, или указали их во время выполнения.время, прежде чем вы сюда попали.
Я не знаю, что означает или используется переменная " bDoNotEdit ", поэтому я проигнорировал ее.
'step one, create a datagridrow
Dim aRow As New System.Windows.Forms.DataGridViewRow
'Step two, create a prototypical Row from the datagridview control
aRow.CreateCells(SubmittedDataGridView)
'Step Three, specify the values
aRow.Cells(0).Value = "value one"
aRow.Cells(1).Value = "Value two"
aRow.Cells(2).Value = "value three"
'Append the row to the DataGridView
SubmittedDataGridView.Rows.Add(aRow)