Пример #1
0
 private void dgvRolForma_CellDoubleClick(object sender, DataGridViewCellEventArgs e)
 {
     frmRolForma fr = new frmRolForma();
     fr.rolform = temList[dgvRolForma.CurrentCell.RowIndex];
     AbrirVentana(fr);
     LoadGrid();
 }
Пример #2
0
 private void btnModificar_Click(object sender, EventArgs e)
 {
     if (dgvRolForma.CurrentCell.RowIndex >= 0)
     {
         frmRolForma fr = new frmRolForma();
         fr.rolform = temList[dgvRolForma.CurrentCell.RowIndex];
         AbrirVentana(fr);
         LoadGrid();
     }
     else
     {
         MessageBox.Show("Debes selecciona un elemento para poder modificar");
     }
 }