private void pbxBack_Click(object sender, EventArgs e) { UserProfileAllForm userprofileallForm = new UserProfileAllForm(); userprofileallForm.Show(); this.Hide(); }
private void pbxSave_Click(object sender, EventArgs e) { if (string.IsNullOrEmpty(lblId.Text)) { SqlConnection sqlConnect = new SqlConnection(connectionString); try { GetData(); sqlConnect.Open(); string sql = "INSERT INTO USER_PROFILE(NAME, ACTIVE) VALUES (@name, @active)"; SqlCommand cmd = new SqlCommand(sql, sqlConnect); cmd.Parameters.Add(new SqlParameter("@name", name)); cmd.Parameters.Add(new SqlParameter("@active", active)); cmd.ExecuteNonQuery(); MessageBox.Show("Adicionado com sucesso!"); Log.SalvarLog("Perfil Adicionado", "Adição", DateTime.Now); CleanData(); } catch (Exception ex) { MessageBox.Show("Erro ao adicionar perfil!" + ex.Message); CleanData(); } finally { sqlConnect.Close(); } } else { SqlConnection sqlConnect = new SqlConnection(connectionString); try { sqlConnect.Open(); string sql = "UPDATE USER_PROFILE SET NAME = @name, ACTIVE = @active Where ID = @id"; SqlCommand cmd = new SqlCommand(sql, sqlConnect); cmd.Parameters.Add(new SqlParameter("@id", this.lblId.Text)); cmd.Parameters.Add(new SqlParameter("@name", this.tbxName.Text)); cmd.Parameters.Add(new SqlParameter("@active", this.cbxActive.Checked)); cmd.ExecuteNonQuery(); MessageBox.Show("Alterações salvas com sucesso!"); Log.SalvarLog("Perfil Editado", "Edição", DateTime.Now); } catch (Exception Ex) { MessageBox.Show("Erro ao editar este perfil!" + "\n\n" + Ex.Message); throw; } finally { sqlConnect.Close(); UserProfileAllForm userProfileAllForm = new UserProfileAllForm(); userProfileAllForm.Show(); this.Hide(); } } }