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

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

            s.ShowDialog();
        }