Önceki yıllarda görsel programlama dersine girerken ders içinde hazırlamış olduğumuz bir örnektir. Formumuz üzerinde bulunan Ad, Soyad, Meslek ve Medeni Hal bilgilerinin bulunduğu textboxlar doldurulduktan (Adı alanına bilgi girmek zorunlu) sonra Ekle butonuna tıklanırsa textboxlara girdiğimiz bilgiler listboxlara aktarılmaktadır. Bu şekilde kayıtlar girildikten sonra Kaydet butonuna tıklanırsa eklediğimiz bilgiler C sürücümüzün altına akif.txt olarak kaydedilmektedir. Bir kayıt silinmek isteniyorsa seçilip Sil butonu tıklanmalı, kayıt düzenlenmek isteniyorsa seçilen kayıt üzerinde değişiklik yaptıktan sonra Düzenle butonu tıklanmalıdır. Form ilk açılışta her zaman boş olarak gelmektedir. Daha önce eklediğimi kayıtları görmek için Yükle butonu tıklanmalıdır. Kayıtlar arasında gezinmek için formun altında bulunan navigasyon tuşları kullanılabilir.
Programı indirmek için TIKLAYINIZ
Formun ekran görüntüsü aşağıdadır.
Programın Kodları :
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 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 |
using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Text; using System.Windows.Forms; using System.IO; namespace listekutusu { public partial class Form1 : Form { public Form1() { InitializeComponent(); } private void Form1_Load(object sender, EventArgs e) { comboBox1.Items.Add("Doktor"); comboBox1.Items.Add("Hakim"); comboBox1.Items.Add("Öğretmen"); comboBox1.Items.Add("İşçi"); comboBox2.Items.Add("Evli"); comboBox2.Items.Add("Bekar"); comboBox2.Items.Add("Dul"); } //EKLE private void button1_Click(object sender, EventArgs e) { if (textBox1.Text == "") MessageBox.Show("Adınızı Giriniz.."); else { int a; a = listBox1.Items.Count; listBox1.Items.Add(a + 1); if (comboBox1.Text == "Meslek") listBox4.Items.Add(""); else listBox4.Items.Add(comboBox1.Text); if (comboBox2.Text == "Medeni Hal") listBox5.Items.Add(""); else listBox5.Items.Add(comboBox2.Text); listBox2.Items.Add(textBox1.Text); listBox3.Items.Add(textBox2.Text); } textBox1.Text = ""; textBox2.Text = ""; comboBox1.Text = "Meslek"; comboBox2.Text = "Medeni Hal"; textBox1.Focus(); } private void listBox1_Click(object sender, EventArgs e) { int a; a=listBox1.SelectedIndex; listBox2.SelectedIndex = a; listBox3.SelectedIndex = a; listBox4.SelectedIndex = a; listBox5.SelectedIndex = a; textBox3.Text = Convert.ToString(a + 1); textBox4.Text = Convert.ToString(listBox2.SelectedItem); textBox5.Text = Convert.ToString(listBox3.SelectedItem); textBox6.Text = Convert.ToString(listBox4.SelectedItem); textBox7.Text = Convert.ToString(listBox5.SelectedItem); } private void listBox2_Click_1(object sender, EventArgs e) { int a; a = listBox2.SelectedIndex; listBox1.SelectedIndex = a; listBox3.SelectedIndex = a; listBox4.SelectedIndex = a; listBox5.SelectedIndex = a; textBox3.Text = Convert.ToString(a + 1); textBox4.Text = Convert.ToString(listBox2.SelectedItem); textBox5.Text = Convert.ToString(listBox3.SelectedItem); textBox6.Text = Convert.ToString(listBox4.SelectedItem); textBox7.Text = Convert.ToString(listBox5.SelectedItem); } private void listBox3_Click_1(object sender, EventArgs e) { int a; a = listBox3.SelectedIndex; listBox2.SelectedIndex = a; listBox1.SelectedIndex = a; listBox4.SelectedIndex = a; listBox5.SelectedIndex = a; textBox3.Text = Convert.ToString(a + 1); textBox4.Text = Convert.ToString(listBox2.SelectedItem); textBox5.Text = Convert.ToString(listBox3.SelectedItem); textBox6.Text = Convert.ToString(listBox4.SelectedItem); textBox7.Text = Convert.ToString(listBox5.SelectedItem); } private void listBox4_Click_1(object sender, EventArgs e) { int a; a = listBox4.SelectedIndex; listBox2.SelectedIndex = a; listBox3.SelectedIndex = a; listBox1.SelectedIndex = a; listBox5.SelectedIndex = a; textBox3.Text = Convert.ToString(a + 1); textBox4.Text = Convert.ToString(listBox2.SelectedItem); textBox5.Text = Convert.ToString(listBox3.SelectedItem); textBox6.Text = Convert.ToString(listBox4.SelectedItem); textBox7.Text = Convert.ToString(listBox5.SelectedItem); } private void listBox5_Click_1(object sender, EventArgs e) { int a; a = listBox5.SelectedIndex; listBox2.SelectedIndex = a; listBox3.SelectedIndex = a; listBox1.SelectedIndex = a; listBox4.SelectedIndex = a; textBox3.Text = Convert.ToString(a + 1); textBox4.Text = Convert.ToString(listBox2.SelectedItem); textBox5.Text = Convert.ToString(listBox3.SelectedItem); textBox6.Text = Convert.ToString(listBox4.SelectedItem); textBox7.Text = Convert.ToString(listBox5.SelectedItem); } //Sil private void button2_Click(object sender, EventArgs e) { int a,b,i; a = listBox1.SelectedIndex; if (a < 0) MessageBox.Show("Silinecek Elemanı Seçiniz.."); else { listBox1.Items.RemoveAt(a); listBox2.Items.RemoveAt(a); listBox3.Items.RemoveAt(a); listBox4.Items.RemoveAt(a); listBox5.Items.RemoveAt(a); listBox1.Items.Clear(); b = listBox2.Items.Count; for (i = 1; i <= b; i++) listBox1.Items.Add(i.ToString()); } } //Düzenle private void button3_Click(object sender, EventArgs e) { int a; a = listBox1.SelectedIndex; if (a < 0) MessageBox.Show("Düzenlenecek Elemanı Seçiniz.."); else { a = listBox1.SelectedIndex; listBox2.Items[a] = textBox4.Text; listBox3.Items[a] = textBox5.Text; listBox4.Items[a] = textBox6.Text; listBox5.Items[a] = textBox7.Text; } } private void button4_Click(object sender, EventArgs e) { FileStream fs; StreamWriter sw; string id, ad, soyad, meslek, m_hal; int kayit_sayisi; fs = new FileStream("c:\\akif.txt", FileMode.Create, FileAccess.Write); sw = new StreamWriter(fs); kayit_sayisi = listBox1.Items.Count; if (kayit_sayisi > 0) { for (int i = 0; i < kayit_sayisi; i++) { id = listBox1.Items[i].ToString(); ad = listBox2.Items[i].ToString(); soyad = listBox3.Items[i].ToString(); meslek = listBox4.Items[i].ToString(); m_hal = listBox5.Items[i].ToString(); sw.WriteLine(id + "," + ad + "," + soyad + "," + meslek + "," + m_hal); } } sw.Close(); fs.Close(); } private void button5_Click(object sender, EventArgs e) { FileStream fs; StreamReader sr; string dosya_adi; char[] karakter = new char[1]; karakter[0] = ','; string[] dizi = new string[5]; string satir; dosya_adi = "c:\\akif.txt"; fs = new FileStream(dosya_adi, FileMode.Open, FileAccess.Read); sr = new StreamReader(fs); while ((satir = sr.ReadLine()) != null) { dizi = satir.Split(karakter); listBox1.Items.Add(dizi[0].ToString()); listBox2.Items.Add(dizi[1].ToString()); listBox3.Items.Add(dizi[2].ToString()); listBox4.Items.Add(dizi[3].ToString()); listBox5.Items.Add(dizi[4].ToString()); } sr.Close(); fs.Close(); listBox1.Items.Clear(); int b = listBox2.Items.Count; for (int i = 1; i <= b; i++) listBox1.Items.Add(i.ToString()); listBox1.SelectedIndex = 0; listBox2.SelectedIndex = 0; listBox3.SelectedIndex = 0; listBox4.SelectedIndex = 0; listBox5.SelectedIndex = 0; } private void button6_Click(object sender, EventArgs e) { listBox1.SelectedIndex = 0; listBox2.SelectedIndex = 0; listBox3.SelectedIndex = 0; listBox4.SelectedIndex = 0; listBox5.SelectedIndex = 0; textBox3.Text = Convert.ToString(listBox1.SelectedItem); textBox4.Text = Convert.ToString(listBox2.SelectedItem); textBox5.Text = Convert.ToString(listBox3.SelectedItem); textBox6.Text = Convert.ToString(listBox4.SelectedItem); textBox7.Text = Convert.ToString(listBox5.SelectedItem); } private void button9_Click(object sender, EventArgs e) { int a; a = listBox2.Items.Count; listBox1.SelectedIndex = a-1; listBox2.SelectedIndex = a-1; listBox3.SelectedIndex = a-1; listBox4.SelectedIndex = a-1; listBox5.SelectedIndex = a-1; textBox3.Text = Convert.ToString(listBox1.SelectedItem); textBox4.Text = Convert.ToString(listBox2.SelectedItem); textBox5.Text = Convert.ToString(listBox3.SelectedItem); textBox6.Text = Convert.ToString(listBox4.SelectedItem); textBox7.Text = Convert.ToString(listBox5.SelectedItem); } private void button8_Click(object sender, EventArgs e) { int a,b; b = listBox1.Items.Count; a=listBox1.SelectedIndex; if ((b-1) == a) MessageBox.Show("Son Kayıttasınız"); else { listBox1.SelectedIndex = a + 1; listBox2.SelectedIndex = a + 1; listBox3.SelectedIndex = a + 1; listBox4.SelectedIndex = a + 1; listBox5.SelectedIndex = a + 1; textBox3.Text = Convert.ToString(listBox1.SelectedItem); textBox4.Text = Convert.ToString(listBox2.SelectedItem); textBox5.Text = Convert.ToString(listBox3.SelectedItem); textBox6.Text = Convert.ToString(listBox4.SelectedItem); textBox7.Text = Convert.ToString(listBox5.SelectedItem); } } private void button7_Click(object sender, EventArgs e) { int a; a = listBox1.SelectedIndex; if (a==0) MessageBox.Show("İlk Kayıttasınız"); else { listBox1.SelectedIndex = a - 1; listBox2.SelectedIndex = a - 1; listBox3.SelectedIndex = a - 1; listBox4.SelectedIndex = a - 1; listBox5.SelectedIndex = a - 1; textBox3.Text = Convert.ToString(listBox1.SelectedItem); textBox4.Text = Convert.ToString(listBox2.SelectedItem); textBox5.Text = Convert.ToString(listBox3.SelectedItem); textBox6.Text = Convert.ToString(listBox4.SelectedItem); textBox7.Text = Convert.ToString(listBox5.SelectedItem); } } } } |