Ver Mensaje Individual
  #2 (permalink)  
Antiguo 09/03/2010, 03:47
jarogo
 
Fecha de Ingreso: septiembre-2009
Ubicación: Galicia
Mensajes: 111
Antigüedad: 15 años, 2 meses
Puntos: 3
Respuesta: Rellenar Automaticamente un DataGridView

Hola!

puedes hacerlo en el evento "RowsAdded" del datagridview

Código:
Private Sub DataGrid_RowsAdded(ByVal sender As Object, ByVal e As System.Windows.Forms.DataGridViewRowsAddedEventArgs) Handles DataGrid.RowsAdded
     DataGrid.Rows(DataGrid.CurrentRow.Index).Cells("Articulo").Value = TextBox1.Text
End Sub
Saludos!