tengo este codigo para llenarlos segun... darle click ... o seleccionar fila..
Cita:
Como podria hacerlo .. para seleccionar los datos de la fila 0 .... para ponerlo en el envento LOAD.. del form.. Private Sub DataGridView1_CellClick(ByVal sender As System.Object, ByVal e As System.Windows.Forms.DataGridViewCellEventArgs) Handles DataGridView1.CellClick
txtRut.Text = DataGridView1.Rows(e.RowIndex).Cells(0).Value
txtNombre.Text = DataGridView1.Rows(e.RowIndex).Cells(1).Value
txtApellido.Text = DataGridView1.Rows(e.RowIndex).Cells(2).Value
End Sub
txtRut.Text = DataGridView1.Rows(e.RowIndex).Cells(0).Value
txtNombre.Text = DataGridView1.Rows(e.RowIndex).Cells(1).Value
txtApellido.Text = DataGridView1.Rows(e.RowIndex).Cells(2).Value
End Sub
De Antemano Michas Gracias! =)