You have to go through a
DataGridViewRow[
^].
The DataGridView has a property "Rows" that has a function
Add( ... )
.
In order to use this "manual" way of adding rows you cannot set the DataSource propery. If you did set the DataSource property you need to change the DataSet, Table, ... in order to add the rows.
Hope this clarifies things for you.