Ver Mensaje Individual
  #2 (permalink)  
Antiguo 26/05/2009, 21:40
Avatar de jaullo
jaullo
 
Fecha de Ingreso: abril-2009
Mensajes: 994
Antigüedad: 15 años
Puntos: 30
Respuesta: Interaccion entre Form

En el evento click o doble click de tu datagrid agrega lo siguiente

form2.show

columna1TextBox.Text = Convert.ToString(Me.dgv.CurrentRow.Cells(0).Value)

columna2TextBox.Text = Convert.ToString(Me.dgv.CurrentRow.Cells(1).Value)

columna3TextBox.Text = Convert.ToString(Me.dgv.CurrentRow.Cells(2).Value)


y asi con cada valor de tu datagrid

Saludos,