private void m_INSTRUMENTDataGridView_DataError(object sender, DataGridViewDataErrorEventArgs e) { e.Cancel = true; MessageBoxWithDetails message = new MessageBoxWithDetails("Пожалуйста, проверьте корректность введенных данных!", "Ошибка", e.Exception.Message); message.ShowDialog(); }
private void bindingNavigatorAddNewItem_Click(object sender, EventArgs e) { AddUser adduser = new AddUser(); if (adduser.ShowDialog() == DialogResult.OK) { var config = ConfigurationManager.OpenExeConfiguration(ConfigurationUserLevel.None); var connectionStringsSection = (ConnectionStringsSection)config.GetSection("connectionStrings"); string conn = connectionStringsSection.ConnectionStrings["MusicalInstruments.Properties.Settings.ConnectionString"].ConnectionString; FirebirdSql.Data.Services.FbSecurity security = new FirebirdSql.Data.Services.FbSecurity(conn); FirebirdSql.Data.Services.FbUserData user = new FirebirdSql.Data.Services.FbUserData(); try { user.UserName = adduser.User; user.UserPassword = adduser.Password; //user.RoleName = adduser.RoleName; var cn = new FbConnection(conn); var cmd = new FbCommand(); cmd.CommandType = CommandType.Text; cmd.Connection = cn; if (adduser.RoleName.ToUpper().Equals("RDB$ADMIN")) { cmd.CommandText = @"CREATE USER " + user.UserName + " PASSWORD '" + user.UserPassword + "' GRANT ADMIN ROLE"; adduser.RoleName = "RDB$ADMIN"; execute(cmd); } else { //security.AddUser(user); //cmd.CommandText = @"grant " + adduser.RoleName + " to " + user.UserName; cmd.CommandText = @"CREATE USER " + user.UserName + " PASSWORD '" + user.UserPassword + "'"; execute(cmd); cmd.CommandText = @"grant " + adduser.RoleName + " to " + user.UserName; execute(cmd); } int i = m_USERSTableAdapter.InsertQuery(adduser.User, adduser.Role); this.tableAdapterManager.UpdateAll(this.musDataSet); this.Validate(); this.m_USERSTableAdapter.Fill(this.musDataSet.M_USERS); MessageBox.Show("Пользователь добавлен.", "Действие завершено", MessageBoxButtons.OK, MessageBoxIcon.Information); } catch (Exception ex) { MessageBoxWithDetails message = new MessageBoxWithDetails("Ошибка при добавлении пользователя!", "Ошибка", ex.Message); message.ShowDialog(); } } }
private void m_TYPEDataGridView_DataError(object sender, DataGridViewDataErrorEventArgs e) { if (e.Exception.HResult == -2146233033) { return; } e.Cancel = true; MessageBoxWithDetails message = new MessageBoxWithDetails("Пожалуйста, проверьте корректность введенных данных!", "Ошибка", e.Exception.Message); message.ShowDialog(); }
private void m_DELIVERYBindingNavigatorSaveItem_Click(object sender, EventArgs e) { try { this.Validate(); this.m_DELIVERYBindingSource.EndEdit(); this.tableAdapterManager.UpdateAll(this.musDataSet); } catch (Exception ex) { MessageBoxWithDetails message = new MessageBoxWithDetails("Пожалуйста, проверьте корректность введенных данных!", "Ошибка", ex.Message); message.ShowDialog(); } }
private void deleteRow_Click(object sender, EventArgs e) { if (MessageBox.Show("Удалить пользователя?", "Требуется подтверждение", MessageBoxButtons.YesNo, MessageBoxIcon.Warning) == DialogResult.No) { return; } var config = ConfigurationManager.OpenExeConfiguration(ConfigurationUserLevel.None); var connectionStringsSection = (ConnectionStringsSection)config.GetSection("connectionStrings"); string conn = connectionStringsSection.ConnectionStrings["MusicalInstruments.Properties.Settings.ConnectionString"].ConnectionString; FirebirdSql.Data.Services.FbSecurity security = new FirebirdSql.Data.Services.FbSecurity(conn); FirebirdSql.Data.Services.FbUserData user = new FirebirdSql.Data.Services.FbUserData(); if (currentRow == -1 || m_USERSDataGridView.Rows[currentRow].Cells[1].Value.ToString().Equals("SYSDBA")) { if (currentRow == -1) { MessageBox.Show("Выберите пользователя для удаления.", "Предупреждение", MessageBoxButtons.OK, MessageBoxIcon.Warning); return; } else if (m_USERSDataGridView.Rows[currentRow].Cells[1].Value.ToString().Equals("SYSDBA")) { MessageBox.Show("Невозможно удалить пользователя SYSDBA.", "Предупреждение", MessageBoxButtons.OK, MessageBoxIcon.Warning); return; } } user.UserName = m_USERSDataGridView.Rows[currentRow].Cells[1].Value.ToString(); try { security.DeleteUser(user); m_USERSTableAdapter.DeleteQuery((int)((Int64)m_USERSDataGridView.Rows[currentRow].Cells[0].Value)); this.tableAdapterManager.UpdateAll(this.musDataSet); this.Validate(); this.m_USERSTableAdapter.Fill(this.musDataSet.M_USERS); MessageBox.Show("Пользователь удален.", "Действие завершено", MessageBoxButtons.OK, MessageBoxIcon.Information); currentRow = 0; } catch (Exception ex) { MessageBoxWithDetails message = new MessageBoxWithDetails("Ошибка при удалении пользователя!", "Ошибка", ex.Message); message.ShowDialog(); } }