-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathOgretimUyesi_Ekle.cs
289 lines (242 loc) · 11.3 KB
/
OgretimUyesi_Ekle.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Data.OleDb;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
using System.Data.OleDb;
namespace OkulOtomasyonSitemi
{
public partial class OgretimUyesi_Ekle : Form
{
int flagForOld = 0; // Yaş doğrulaması
OleDbConnection conn = new OleDbConnection("Provider=Microsoft.ACE.Oledb.12.0;Data Source = C:\\Users\\yakup\\OneDrive\\Masaüstü\\OgrenciOtomation1.accdb");
public OgretimUyesi_Ekle()
{
InitializeComponent();
}
private void Form1_Load(object sender, EventArgs e)
{
comboBox1.DropDownStyle = ComboBoxStyle.DropDownList; // Sadece seçeneklerden bir text seç
comboBox2.DropDownStyle = ComboBoxStyle.DropDownList;
comboBox3.DropDownStyle = ComboBoxStyle.DropDownList;
}
private void çıkışToolStripMenuItem_Click(object sender, EventArgs e)
{
this.Close();
}
private void yardımAlToolStripMenuItem_Click(object sender, EventArgs e)
{
MessageBox.Show("Boşlukları Doğru Şekilde Doldurarak Öğretim Üyesi Kayıt İşleminizi Gerçekleştirebilirsiniz.", "İnfo", MessageBoxButtons.OK, MessageBoxIcon.Information);
}
public static int TCKontrol(string TCno)
{
if (string.IsNullOrEmpty(TCno))
{
return 0;
}
else
{
int flag = 0;
int Algoritma_Adim_Kontrol = 0, TekBasamaklarToplami = 0, CiftBasamaklarToplami = 0, TumBasamaklarToplami = 0, Basamak_10 = 0, Basamak_11 = 0;
if (TCno.Length == 11) Algoritma_Adim_Kontrol = 1;
foreach (char chr in TCno) { if (Char.IsNumber(chr)) Algoritma_Adim_Kontrol = 2; }
if (TCno.Substring(0, 1) != "0") Algoritma_Adim_Kontrol = 3;
int[] arrTC = System.Text.RegularExpressions.Regex.Replace(TCno, "[^0-9]", "").Select(x => (int)Char.GetNumericValue(x)).ToArray();
for (int i = 0; i < TCno.Length; i++)
{
TumBasamaklarToplami += Convert.ToInt32(arrTC[i]);
if (((i + 1) % 2) == 0)
{
if (i + 1 != 10) CiftBasamaklarToplami += Convert.ToInt32(arrTC[i]);
else Basamak_10 = Convert.ToInt32(arrTC[i]);
}
else
{
if (i + 1 != 11) TekBasamaklarToplami += Convert.ToInt32(arrTC[i]);
else
{
Basamak_11 = Convert.ToInt32(arrTC[i]);
TumBasamaklarToplami = TumBasamaklarToplami - Basamak_11;
}
}
}
int ilkDeger = (TekBasamaklarToplami * 7) - CiftBasamaklarToplami;
int ilkDeger_mod10 = ilkDeger % 10;
if (Basamak_10 == ilkDeger_mod10) Algoritma_Adim_Kontrol = 4;
int ikinciDeger_mod10 = TumBasamaklarToplami % 10;
if (Basamak_11 == ikinciDeger_mod10) Algoritma_Adim_Kontrol = 5;
if (Algoritma_Adim_Kontrol == 5)
{
flag = 1;
return flag; // "TC No Doğru";
}
else
return flag; // "TC No Yanlış";
}
}
private int idariNoDogrula(string idariNo)
{
int flag = 0;
conn.Open();
OleDbCommand cmd = new OleDbCommand("Select * from ogretimuyesi where idarino = '" + textBoxIdariNo.Text + "'", conn);
OleDbDataReader read = cmd.ExecuteReader();
if (read.Read() == true)
{
if (textBoxIdariNo.Text == read["idarino"].ToString())
{
flag = 1;
}
}
conn.Close();
return flag; // 1 ise Okul NO Zaten var , 0 ise Okul No yok
}
private void textBoxIdariNo_KeyPress(object sender, KeyPressEventArgs e)
{
if (!char.IsControl(e.KeyChar) && !char.IsDigit(e.KeyChar))
{
e.Handled = true;
}
}
private void textBoxPhone_KeyPress(object sender, KeyPressEventArgs e)
{
if (!char.IsControl(e.KeyChar) && !char.IsDigit(e.KeyChar))
{
e.Handled = true;
}
}
private void textBoxTC_KeyPress(object sender, KeyPressEventArgs e)
{
if (!char.IsControl(e.KeyChar) && !char.IsDigit(e.KeyChar))
{
e.Handled = true;
}
}
private void button1_Click(object sender, EventArgs e)
{
int tcKontrol = TCKontrol(textBoxTC.Text); // Doğru tc girimi yapıldı mı?
int idariNoKontrol = idariNoDogrula(textBoxIdariNo.Text);
if( textBoxIdariNo.Text != "" && textBoxTC.Text != "" && textBoxName.Text != "" &&
textBoxSurname.Text != "" && comboBox1.Text != "" && comboBox2.Text != "" &&
textBoxPhone.Text != "" && textBoxEposta.Text != "" && comboBox3.Text != "" &&
dateTimePicker1.Value != DateTime.Now && (radioButton1.Checked == true || radioButton2.Checked == true || radioButton3.Checked == true))
{
if (idariNoKontrol != 1)
{
if (tcKontrol == 1)
{
if( flagForOld != 1 )
{
conn.Open();
// Öğrenci kayıt için veri tabanına kaydedilen bilgiler.
OleDbCommand cmd = new OleDbCommand("INSERT INTO ogretimuyesi (idarino, tc, ad, soyad, ulke, sehir, telefon, eposta, bolum, dogumtarihi, cinsiyet) VALUES (@idarino, @tc , @ad, @soyad, @ulke, @sehir, @telefon, @eposta, @bolum, @dogumtarihi, @cinsiyet)", conn);
cmd.Parameters.AddWithValue("@idarino", textBoxIdariNo.Text);
cmd.Parameters.AddWithValue("@tc", textBoxTC.Text);
cmd.Parameters.AddWithValue("@ad", textBoxName.Text);
cmd.Parameters.AddWithValue("@soyad", textBoxSurname.Text);
cmd.Parameters.AddWithValue("@ulke", comboBox1.Text);
cmd.Parameters.AddWithValue("@sehir", comboBox2.Text);
cmd.Parameters.AddWithValue("@telefon", textBoxPhone.Text);
cmd.Parameters.AddWithValue("@eposta", textBoxEposta.Text);
cmd.Parameters.AddWithValue("@bolum", comboBox3.Text);
cmd.Parameters.AddWithValue("@dogumtarihi", dateTimePicker1.Text);
cmd.Parameters.AddWithValue("@cinsiyet", radioButton1.Checked ? radioButton1.Text : radioButton2.Checked ? radioButton2.Text : radioButton3.Text);
try
{
cmd.ExecuteNonQuery();
conn.Close();
MessageBox.Show("Yeni Öğretim Üyesi Bilgileri Sisteme Eklendi!", "İşlem Başarılı.");
textBoxIdariNo.Clear();
textBoxTC.Clear();
textBoxName.Clear();
textBoxSurname.Clear();
comboBox1.Text = "";
comboBox2.Text = "";
textBoxPhone.Clear();
textBoxEposta.Clear();
comboBox3.Text = "";
dateTimePicker1.Value = DateTime.Now;
radioButton1.Checked = false;
radioButton2.Checked = false;
radioButton3.Checked = false;
}
catch (Exception ex)
{
MessageBox.Show("BÖYLE BİR ÖĞRETİM ÜYESİ SİSTEMDE KAYITLI!!! ", "Başarısız!");
conn.Close();
}
finally
{
conn.Close();
}
} else
{
MessageBox.Show("Lütfen Yaşınızı Doğru Giriniz!" , "Yaşını Doğrula" , MessageBoxButtons.OK,MessageBoxIcon.Error);
}
}
else
{
MessageBox.Show("TC YANLIŞ GİRİLDİ!!!", "Başarısız.");
}
}
else
{
MessageBox.Show("Bu İdari Numaraya Sahip Öğretim Üyesi Sİstemde Kayıtlıdır!", "Başarısız!");
}
} else
{
MessageBox.Show("Tüm Bilgileri Eksiksiz Giriniz Lütfen!", "Bilgiler Tam Değil", MessageBoxButtons.OK, MessageBoxIcon.Information);
}
}
private void textBoxPhone_TextChanged(object sender, EventArgs e)
{
// Her 3 karakter sonra bir '-' ekleyin.
if (textBoxPhone.Text.Length == 3 || textBoxPhone.Text.Length == 7)
{
textBoxPhone.Text += "-";
textBoxPhone.SelectionStart = textBoxPhone.Text.Length;
}
}
private void dateTimePicker1_ValueChanged(object sender, EventArgs e)
{
DateTime now = DateTime.Today;
DateTime dob = dateTimePicker1.Value;
int age = now.Year - dob.Year;
if (now < dob.AddYears(age)) age--;
label14.Visible = true;
if( age > 22 )
{
flagForOld = 0;
label14.Text = $"Şu An ki Yaşınız: {age}";
} else
{
label14.Text = "Lütfen Yaşınızı Doğru Girin";
}
if( age < 22 )
{
flagForOld = 1;
}
}
private void label14_Click(object sender, EventArgs e)
{
}
private void textBoxName_KeyPress(object sender, KeyPressEventArgs e)
{
if (!char.IsLetter(e.KeyChar) && !char.IsControl(e.KeyChar))
{
e.Handled = true; // Giriş işlemi engellenir
}
}
private void textBoxSurname_KeyPress(object sender, KeyPressEventArgs e)
{
if (!char.IsLetter(e.KeyChar) && !char.IsControl(e.KeyChar))
{
e.Handled = true; // Giriş işlemi engellenir
}
}
}
}