Esempio n. 1
0
 protected override void btnModificar_Click(object sender, EventArgs e)
 {
     if (this.dgvDatos.CurrentRow == null)
         return;
     DetalleSistemaCaracteristica s = new DetalleSistemaCaracteristica(Util.Entero(this.dgvDatos.CurrentRow.Cells["ParteSistemaID"].Value));
     s.ShowDialog();
 }
Esempio n. 2
0
        protected override void btnModificar_Click(object sender, EventArgs e)
        {
            if (this.dgvDatos.CurrentRow == null)
            {
                return;
            }
            DetalleSistemaCaracteristica s = new DetalleSistemaCaracteristica(Util.Entero(this.dgvDatos.CurrentRow.Cells["ParteSistemaID"].Value));

            s.ShowDialog();
        }
Esempio n. 3
0
 protected override void btnAgregar_Click(object sender, EventArgs e)
 {
     DetalleSistemaCaracteristica s = new DetalleSistemaCaracteristica();
     s.ShowDialog();
 }
Esempio n. 4
0
        protected override void btnAgregar_Click(object sender, EventArgs e)
        {
            DetalleSistemaCaracteristica s = new DetalleSistemaCaracteristica();

            s.ShowDialog();
        }