Arama , Doğrulama , Picturebox


ŞARTLAR
* Doğrulama ( YesNo)
* Arama
* Picturebox


Formun Tamamı İçin Tıklayınız

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using System.Collections;
namespace WindowsFormsApplication9
{
    public partial class Form1 : Form
    {
        ArrayList okulno = new ArrayList();
        ArrayList ad = new ArrayList();
        ArrayList soyad = new ArrayList();
        public Form1()
        {
            InitializeComponent();
        }

        private void button1_Click(object sender, EventArgs e)
        {
            int m = 0;
            int n = 1;
            string durum;
            int a = okulno.IndexOf(textBox1.Text);
            if (a != -1)
            {
                MessageBox.Show("Aynı olamaz...");
                textBox1.Text = null;
                textBox1.Focus();
                n = 0;
            }
            if (textBox3.Text == "")
            {
                durum = (MessageBox.Show("Soyadı boş devam etmek isitiyo musun", "UYARI", MessageBoxButtons.YesNo)).ToString();
                if (durum == "Yes")
                {
                    m = 1;
                }
            }
            else
            {
                m = 1;
            }
            if (m == 1 && n == 1)
            {
                okulno.Add(textBox1.Text);
                ad.Add(textBox2.Text);
                soyad.Add(textBox3.Text);
                textBox1.Text = null;
                textBox2.Text = null;
                textBox3.Text = null;
            }
        }
        private void button2_Click(object sender, EventArgs e)
        {
            listBox1.Items.Clear();
            int c = 0;
            int k = ad.Count;
            for (int i = 0; i <= k - 1; i++)
            {
                listBox1.Items.Add(++c + ")" + okulno[i] + " " + ad[i] + " " + soyad[i]);
            }
        }
        private void button3_Click(object sender, EventArgs e)
        {
            listBox1.Items.Clear();
            int m = 0;
            int s = okulno.IndexOf(textBox4.Text);
            while (s != -1)
            {
                label6.Text = okulno[s].ToString();
                label8.Text = ad[s].ToString();
                label10.Text = soyad[s].ToString();
                s = okulno.IndexOf(textBox4.Text, s + 1);
                pictureBox1.Visible = true;
                label6.Visible = true;
                label8.Visible = true;
                label10.Visible = true;
                label11.Visible = false;
                m += 1;
            }
            if (m == 0)
            {
                label11.Visible = true;
                label11.Text = "Böyle Bir Öğrenci Yoktur";
                label6.Visible = false;
                label8.Visible = false;
                label10.Visible = false;
                pictureBox1.Visible = false;
            }

        }
        private void Form1_Load(object sender, EventArgs e)
        {
         
            label6.Visible = false;
            label8.Visible = false;
            label10.Visible = false;
            pictureBox1.Visible = false;
        }
    }
}

Hiç yorum yok:

Yorum Gönder