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(); }
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(); }
protected override void btnAgregar_Click(object sender, EventArgs e) { DetalleSucursal s = new DetalleSucursal(); s.ShowDialog(); }