コード例 #1
0
ファイル: subsistemas.cs プロジェクト: moisesiq/aupaga
 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
ファイル: subsistemas.cs プロジェクト: moisesiq/aupaga
        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
ファイル: subsistemas.cs プロジェクト: moisesiq/aupaga
 protected override void btnAgregar_Click(object sender, EventArgs e)
 {
     DetalleSubsistema s = new DetalleSubsistema();
     s.ShowDialog();
 }
コード例 #4
0
ファイル: subsistemas.cs プロジェクト: moisesiq/aupaga
        protected override void btnAgregar_Click(object sender, EventArgs e)
        {
            DetalleSubsistema s = new DetalleSubsistema();

            s.ShowDialog();
        }