コード例 #1
0
ファイル: ubicaciones.cs プロジェクト: moisesiq/aupaga
 protected override void btnModificar_Click(object sender, EventArgs e)
 {
     if (this.dgvDatos.CurrentRow == null)
         return;
     DetalleUbicacion u = new DetalleUbicacion(Util.Entero(this.dgvDatos.CurrentRow.Cells["ParteUbicacionID"].Value));
     u.ShowDialog();
 }
コード例 #2
0
        protected override void btnModificar_Click(object sender, EventArgs e)
        {
            if (this.dgvDatos.CurrentRow == null)
            {
                return;
            }
            DetalleUbicacion u = new DetalleUbicacion(Util.Entero(this.dgvDatos.CurrentRow.Cells["ParteUbicacionID"].Value));

            u.ShowDialog();
        }
コード例 #3
0
        protected override void btnAgregar_Click(object sender, EventArgs e)
        {
            DetalleUbicacion u = new DetalleUbicacion();

            u.ShowDialog();
        }
コード例 #4
0
ファイル: ubicaciones.cs プロジェクト: moisesiq/aupaga
 protected override void btnAgregar_Click(object sender, EventArgs e)
 {
     DetalleUbicacion u = new DetalleUbicacion();
     u.ShowDialog();
 }