private void bbAddValor_Click(object sender, EventArgs e) { if (bsCaracteristica.Current != null) { Utils.InputBox ibp = new Utils.InputBox(); ibp.Text = "Valor Caracteristica"; string ret = ibp.ShowDialog(); if (!string.IsNullOrEmpty(ret)) { try { TCN_ValorCaracteristica.Gravar(new TRegistro_ValorCaracteristica { Id_caracteristica = (bsCaracteristica.Current as TRegistro_Caracteristica).Id_caracteristica, Valor = ret.ToUpper() }, null); bsCaracteristica_PositionChanged(this, new EventArgs()); } catch (Exception ex) { MessageBox.Show("Erro gravar registro: " + ex.Message.Trim()); } } else { MessageBox.Show("Obrigatório informar valor para gravar.", "Mensagem", MessageBoxButtons.OK, MessageBoxIcon.Information); } } }
private void bbAltValor_Click(object sender, EventArgs e) { if (bsValor.Current != null) { Utils.InputBox ibp = new Utils.InputBox(string.Empty, (bsValor.Current as TRegistro_ValorCaracteristica).Valor); ibp.Text = "Alterar Valor Caracteristica Produto"; string ret = ibp.ShowDialog(); if (!string.IsNullOrEmpty(ret)) { try { TCN_ValorCaracteristica.Gravar(new TRegistro_ValorCaracteristica { Id_caracteristica = (bsValor.Current as TRegistro_ValorCaracteristica).Id_caracteristica, Id_item = (bsValor.Current as TRegistro_ValorCaracteristica).Id_item, Valor = ret.ToUpper() }, null); bsCaracteristica_PositionChanged(this, new EventArgs()); } catch (Exception ex) { MessageBox.Show("Erro alterar registro: " + ex.Message.Trim()); } } } }