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");
            }
        }

30 Kasım 2011 Çarşamba

Bazı C# metodlar

Lenght
textBox2.Text = textBox1.Text.Length.ToString(); //Girilen değerin karakter uzunluğunu belirtir.

ToUpper
textBox2.Text = textBox1.Text.ToUpper(); //Girilen değerin karakterlerini büyük yazdırır.

ToLower
textBox2.Text = textBox1.Text.ToLower(); //Girilen değerin karakterlerini küçük yazdırır.

StartsWith

if(textBox2.Text.StartsWith("e")) // Txt2 ' de " e " ile başlayan değerleri kontrol eder.
            {
                MessageBox.Show("Bu Harf ile başlayan var.");
            }

Trim
textBox1.Text = "    Kamil Turhan    ";
textBox2.Text = textBox1.Text.Trim(); //kenarlardaki boşlukları atarak yazdırır.

SubString
textBox1.Text = "Kamil Turhan"; //"K" harfi 0. karakterdir.
textBox2.Text = textBox1.Text.Substring(3,5); //3. karakterden yani "i" ' den başlar sonraki 5 karakteri yazdırır.

IndexOf
textBox1.Text = "Kamil Turhan";//"K" harfi 0. karakterdir.
textBox2.Text = textBox1.Text.IndexOf("a").ToString(); //"a" karakterinin kaçıncı sırada olduğunu belirtir.

Concat
textBox1.Text = "Kamil";
textBox3.Text = "Turhan";
textBox2.Text = string.Concat(textBox1.Text + textBox3.Text); //2 değeri birlikte yazdırmaya yarar.

Insert
label1.Text = "Kamil"; //"K" 0. Değer
label1.Text = label1.Text.Insert(5, " Turhan"); //5. karakterden sonra "Turhan" kelimesini yazdırmaya yarar.

Replace
textBox1.Text = "Kamil Turhan";
textBox2.Text = (textBox1.Text.Replace("a", "A")); //"a" karakterini "A"(büyük) yapmaya yarar.

Remove
label1.Text = "KamilTurhan"; 
textBox2.Text = label1.Text.Remove(0, 5); //"Kamil" kısmını atıp sadece "Turhan" yazdırır.

Kamil Turhan © :)