• Jueves 7 de Noviembre de 2024, 23:05

Autor Tema:  Agregar Fila a un Datagridview  (Leído 3475 veces)

fm89-10

  • Miembro activo
  • **
  • Mensajes: 75
  • Nacionalidad: ni
    • Ver Perfil
Agregar Fila a un Datagridview
« en: Martes 18 de Noviembre de 2008, 04:39 »
0
Hola, necesito agregar una fila en un datagridview, al dar click derecho sobre el datagridview me aparezca un contexmenustrip y me diga que si quiero agregar una fila, el problema que tengo es que solo me agrega una fila pero si quiero seguir agregando filas no me las agrega.

Les dejo el codigo
 
Código: Text
  1.    Private Sub DataGridView1_CellMouseDown_1(ByVal sender As System.Object, ByVal e As System.Windows.Forms.DataGridViewCellMouseEventArgs) Handles DataGridView1.CellMouseDown
  2.         If e.Button = Windows.Forms.MouseButtons.Right Then
  3.             ContextMenuStrip1.Show(DataGridView1, New Point(e.X, e.Y))
  4.         End If
  5.     End Sub
  6.    
  7. Private Sub AgregarColumnaToolStripMenuItem_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles AgregarColumnaToolStripMenuItem.Click
  8.     Dim a As Integer = 1
  9.         Dim i As Integer
  10. Dim r as integer = 10
  11.             DataGridView1.RowCount = r + a
  12.             For i = 1 To DataGridView1.RowCount
  13.                 DataGridView1.Rows(i - 1).Cells(1).Value = ""
  14.             Next
  15.  
  16.         End If
  17.         a += a
  18.     End Sub
  19.  
  20.  

Espero su ayuda, gracias de antemano