Exemple #1
0
 protected override void btnModificar_Click(object sender, EventArgs e)
 {
     if (this.dgvDatos.CurrentRow == null)
         return;
     DetalleMunicipio p = new DetalleMunicipio(Util.Entero(this.dgvDatos.CurrentRow.Cells["MunicipioID"].Value));
     p.ShowDialog();
 }
Exemple #2
0
        protected override void btnModificar_Click(object sender, EventArgs e)
        {
            if (this.dgvDatos.CurrentRow == null)
            {
                return;
            }
            DetalleMunicipio p = new DetalleMunicipio(Util.Entero(this.dgvDatos.CurrentRow.Cells["MunicipioID"].Value));

            p.ShowDialog();
        }
Exemple #3
0
        protected override void btnAgregar_Click(object sender, EventArgs e)
        {
            DetalleMunicipio p = new DetalleMunicipio();

            p.ShowDialog();
        }
Exemple #4
0
 protected override void btnAgregar_Click(object sender, EventArgs e)
 {
     DetalleMunicipio p = new DetalleMunicipio();
     p.ShowDialog();
 }