I want a row to add data grid view that is linked to dataset and datatable.
Aftet that I want to that new row in the first cell i want to put a new value (data)
myConn.Open()
myCommand1.CommandText = "select * from groups"
myCommand1.Connection = myConn
myAdapter1.SelectCommand = myCommand1
MyBuilder1 = New MySql.Data.MySqlClient.MySqlCommandBuilder(myAdapter9)
myAdapter1.Fill(MyDataset1, "groups")
MyDataTable1 = MyDataset1.Tables("groups")
DataGridView1.SelectionMode = DataGridViewSelectionMode.FullRowSelect
DataGridView1.AutoSizeColumnsMode = DataGridViewAutoSizeColumnsMode.Fill
DataGridView1.DataSource = MyDataTable
myConn.Close()