Пример #1
0
 protected override void btnModificar_Click(object sender, EventArgs e)
 {
     if (this.dgvDatos.CurrentRow == null)
         return;
     DetalleSubsistema s = new DetalleSubsistema(Util.Entero(this.dgvDatos.CurrentRow.Cells["SubsistemaID"].Value));
     s.ShowDialog();
 }
Пример #2
0
        protected override void btnModificar_Click(object sender, EventArgs e)
        {
            if (this.dgvDatos.CurrentRow == null)
            {
                return;
            }
            DetalleSubsistema s = new DetalleSubsistema(Util.Entero(this.dgvDatos.CurrentRow.Cells["SubsistemaID"].Value));

            s.ShowDialog();
        }
Пример #3
0
 protected override void btnAgregar_Click(object sender, EventArgs e)
 {
     DetalleSubsistema s = new DetalleSubsistema();
     s.ShowDialog();
 }
Пример #4
0
        protected override void btnAgregar_Click(object sender, EventArgs e)
        {
            DetalleSubsistema s = new DetalleSubsistema();

            s.ShowDialog();
        }