private void BtnAdd_Click(object sender, EventArgs e) { try { using (DBAuditDataContext dc = new DBAuditDataContext()) { var strEncPass = Security.EncryptPassword(TxtPassword); dc.ProAddUser(TxtFirstName.Text, TxtLastName.Text, TxtAddress.Text, TxtTelephone.Text, TxtUserName.Text, strEncPass, int.Parse(ComboUserGroups.SelectedValue.ToString()), _intDisbled, _intLocked, TxtNotes.Text); } MessageBox.Show(@"تمت إضافة بيانات المستخدم بنجاح", @"المراجع الذكي", MessageBoxButtons.OK, MessageBoxIcon.Information); Close(); new FrmNewUser().Show(); } catch (Exception ex) { MessageBox.Show(ex.Message); } }