private void button1_Click(object sender, EventArgs e) { if (TXT_ID.Text == String.Empty || TXT_PASS.Text == String.Empty || TXT_FULLNAME.Text == String.Empty || TXT_CONFORM_PASS.Text == String.Empty) { MessageBox.Show("يجب ادخال جميع البيانات صحيحه", "تنبيه", MessageBoxButtons.OK, MessageBoxIcon.Error); return; } if (TXT_PASS.Text != TXT_CONFORM_PASS.Text) { MessageBox.Show("كلمه السر غير متطابقه", "تنبيه", MessageBoxButtons.OK, MessageBoxIcon.Error); } if (BTM_SAVE.Text == "حفظ المستخدم") { LOG.ADD_USER(TXT_ID.Text, TXT_PASS.Text, TXT_USER_TYPE.Text, TXT_FULLNAME.Text); MessageBox.Show("تمت الاضافه بنجاح", "اضافه مستخدم جديد", MessageBoxButtons.OK, MessageBoxIcon.Information); } else if (BTM_SAVE.Text == "تعديل المستخدم ") { LOG.EDIT_USER(TXT_ID.Text, TXT_PASS.Text, TXT_USER_TYPE.Text, TXT_FULLNAME.Text); MessageBox.Show("تمت التعديل بنجاح", " تعديل بيانات مستخدم", MessageBoxButtons.OK, MessageBoxIcon.Information); } TXT_ID.Clear(); TXT_CONFORM_PASS.Clear(); TXT_FULLNAME.Clear(); TXT_PASS.Clear(); TXT_ID.Focus(); }
public FRM_CONFIG() { InitializeComponent(); TXT_SERVER_NAME.Text = Properties.Settings.Default.server; TXT_DATABASE.Text = Properties.Settings.Default.Database; if (Properties.Settings.Default.Mode == "SQL") { radioButton2.Checked = true; TXT_NAME.Text = Properties.Settings.Default.id; TXT_PASS.Text = Properties.Settings.Default.password; } else { radioButton1.Checked = true; } TXT_NAME.Text = Properties.Settings.Default.id; TXT_PASS.Text = Properties.Settings.Default.password; TXT_NAME.Clear(); TXT_PASS.Clear(); TXT_NAME.ReadOnly = true; TXT_PASS.ReadOnly = true; }