Read : How to Insert data from MySQL Database Into DataGridView
How to Make a Connections Using ODBC
Create New Project (Fill Selected Value to another grid)
Open our visual studio, and make new project with name "SelectedGrid", and please design our form1.vb just look like this images :Source Code Button1
Dim Dr As New DataGridViewRow
For Each Dr In DataGridView1.SelectedRows
DataGridView2.Rows.Add(Dr.Cells(0).Value, Dr.Cells(1).Value, Dr.Cells(2).Value, Dr.Cells(3).Value, Dr.Cells(4).Value)
' you can add more value
Next