Ejemplo n.º 1
0
        protected override void btnModificar_Click(object sender, EventArgs e)
        {
            if (this.dgvDatos.CurrentRow == null)
            {
                return;
            }
            DetalleCiudad p = new DetalleCiudad(Util.Entero(this.dgvDatos.CurrentRow.Cells["CiudadID"].Value));

            p.ShowDialog();
        }
Ejemplo n.º 2
0
 protected override void btnModificar_Click(object sender, EventArgs e)
 {
     if (this.dgvDatos.CurrentRow == null)
         return;
     DetalleCiudad p = new DetalleCiudad(Util.Entero(this.dgvDatos.CurrentRow.Cells["CiudadID"].Value));
     p.ShowDialog();
 }
Ejemplo n.º 3
0
 protected override void btnAgregar_Click(object sender, EventArgs e)
 {
     DetalleCiudad c = new DetalleCiudad();
     c.ShowDialog();
 }
Ejemplo n.º 4
0
        protected override void btnAgregar_Click(object sender, EventArgs e)
        {
            DetalleCiudad c = new DetalleCiudad();

            c.ShowDialog();
        }