private void btAdicionar_Click(object sender, EventArgs e) { tlaAddFormato formato = new tlaAddFormato(); formato.ShowDialog(); formato.Dispose(); this.popularTabela(); }
private void btAtualizar_Click(object sender, EventArgs e) { if (dataGridFormato.SelectedRows.Count == 1) { tlaAddFormato edit = new tlaAddFormato(); edit.id = int.Parse(dataGridFormato["F_id", int.Parse(dataGridFormato.CurrentRow.Index.ToString())].Value.ToString()); edit.ShowDialog(); edit.Dispose(); this.popularTabela(); MessageBox.Show("Atualizado com sucesso", "Alerta | Knoodou"); } else MessageBox.Show("Selecione uma linha", "Alerta | Knoodou"); }
private void btAtualizar_Click(object sender, EventArgs e) { if (dataGridFormato.SelectedRows.Count == 1) { tlaAddFormato edit = new tlaAddFormato(); edit.id = int.Parse(dataGridFormato["F_id", int.Parse(dataGridFormato.CurrentRow.Index.ToString())].Value.ToString()); edit.ShowDialog(); edit.Dispose(); this.popularTabela(); MessageBox.Show("Atualizado com sucesso", "Alerta | Knoodou"); } else { MessageBox.Show("Selecione uma linha", "Alerta | Knoodou"); } }