Hola
laura_milefv
Que has logrado hasta ahorita?, Ya lograste llenar tu DataGridView?, si no puedes utilizar algo similar a lo siguiente:
Código vb:
Ver originalPublic Sub CargarDataGridView(ByVal ElDataGridView, ByVal LaConsulta)
_ObjConn = New SqlConnection(CadenaConexion)
Dim ElDataTable As DataTable = New DataTable
Dim ElReader As SqlDataReader
Dim ElComando As SqlCommand
Try
_ObjConn.Open()
ElComando = New SqlCommand(LaConsulta, _ObjConn)
ElReader = ElComando.ExecuteReader()
ElDataTable.Load(ElReader)
ElDataGridView.DataSource = ElDataTable
_ObjConn.Close()
Catch ex As Exception
MsgBox("Error al cargar el DataGridView.", MsgBoxStyle.Critical, "Error")
End Try
End Sub
Con respecto al update como lo haras?, los rows del DataGridView serán editables?, tendrás otra pantalla de edición?
Saludos!