Integrar datos visual studio a sql mediante datagridview
Estoy realizando un programa de ventas y al momento de ingresar mis ventas en el datagridview para guardarlo en el SQL este ultimo solo registra la 1era venta realizada, envio la programacion que le doy al boton guardar para que me ayuden .
Necesito que registre todas las ventas ingresadas al datagridview.
Agradezco de antemano su ayuda.
Slds
Dim dts As New vventas
Dim func As New fventa
Try
dts.gid_codigo = DataGridView2.SelectedCells.Item(0).Value
dts.gdescripcion = DataGridView2.SelectedCells.Item(1).Value
dts.gprecio_venta = DataGridView2.SelectedCells.Item(2).Value
dts.gcantidad = DataGridView2.SelectedCells.Item(3).Value
dts.gtotal = DataGridView2.SelectedCells.Item(4).Value
dts.gfecha = DataGridView2.SelectedCells.Item(5).Value
If func.insertar(dts) Then
MessageBox.Show("guardado")
mostrar()
limpiar()
Label6.Text = ""
TextBox9.Text = ""
TextBox10.Text = ""
DataGridView2.Rows.Clear() ' esto limpiara todo lo que tenga el datagrid
Else
MessageBox.Show("producto no registrado, re ingresar ")
mostrar()
limpiar()
Label6.Text = ""
TextBox9.Text = ""
TextBox10.Text = ""
End If
Catch ex As Exception
MsgBox("selecione un Items")
End Try
End Sub