8 Aralık 2011 Perşembe

Şiddetle İstenen O Özel Kodlar Sadece Burada :))


        ArrayList okulno = new ArrayList();
        ArrayList ad = new ArrayList();
        public Form1()
        {
            InitializeComponent();
        }

        private void button1_Click(object sender, EventArgs e)
        {
            int m = okulno.IndexOf(textBox1.Text);
            if (m != -1)
            {
                MessageBox.Show("BAŞKA OKUL NO GİR");
                textBox1.Text = null;
                textBox1.Focus();
            }
            else
            {
                okulno.Add(textBox1.Text);
                ad.Add(textBox2.Text);
                textBox1.Text = null;
                textBox2.Text = null;
            }
        }

        private void button2_Click(object sender, EventArgs e)
        {
            listBox1.Items.Clear();
            int m=0;
            int a = okulno.Count;
            for (int i = 0; i <= a - 1; i++)
            {
                listBox1.Items.Add(++m + ")" + okulno[i] + " " + ad[i]);
            }
        }

        private void button3_Click(object sender, EventArgs e)
        {
            listBox1.Items.Clear();

            int p=0;
            int s = ad.IndexOf(textBox3.Text);
            while (s != -1)
            {
                listBox1.Items.Add(++p + ")" + okulno[s] + " " + ad[s]);
                s = ad.IndexOf(textBox3.Text, s + 1);
            }
            if (p == 0)
            {
                listBox1.Items.Add("Böyle bir öğrenci yoktur");
            }
        }

2 yorum:

  1. Merhaba arkadaşlar..
    ben tekno parkın genel kordinatörü İsmail İlgiç. Yazmış olduğunuz kodları beğenğiyorum özellikle Emre KOŞAR arkadaşınız çok zeki.

    YanıtlaSil
  2. http://hotfile.com/dl/137308647/7d94cfa/EMRE_KOAR-.rar.html

    YanıtlaSil