Nothing?
I can give a better example here.
If I have this code here...
Code Snippet
With Data2000DataSet.Data2000.Rows
.Add(txtTextBox1.Text, txtTextBox2.Text)
End With
Now, this will add the information that is within those text boxes into my DataGridView.
By this I mean that:
"txtTextBox1.Text" will be added under the 1st Column in the new row.
"txtTextBox2.Text" will be added under the 2nd Column in the new row.
This is due to the order that they are added... which is fine!
But I'm trying to specify which COLUMN that text is added to in the row, mainly by telling it the Column Name.