22 Eylül 2011 Perşembe

Nesne Tabanlı Programlama C# Örnekleri ve Cevapları(Kolay)

36 yorum:

  1. label2.Text = +1 +")"+ textBox1.Text;
    label3.Text = +2 + ")" + textBox1.Text;
    label4.Text = +3 + ")" + textBox1.Text;
    label5.Text = +4 + ")" + textBox1.Text;
    label6.Text = +5 + ")" + textBox1.Text;

    Siftah

    YanıtlaSil
  2. // ekrandan girilen 2 sayının toplamını ve ortalamsını bulan kod.

    label3.Visible = true;
    label4.Visible = true;

    int a = Convert.ToInt32(textBox1.Text);
    int b = Convert.ToInt32(textBox2.Text);
    int top = 0;
    int ort = 1;
    top = a + b;
    ort = top / 2;

    label3.Text = top.ToString();
    label4.Text = ort.ToString();

    YanıtlaSil
  3. // ekrandan girilen 2 sayının tel olanın kup çift olanın karesini yaz.

    int a = Convert.ToInt32(textBox1.Text);
    int b = Convert.ToInt32(textBox2.Text);

    if (a % 2 == 1)
    {
    int kup1 = a * a * a;
    kup.Text = kup1.ToString();
    }
    else
    {
    int kare1 = a * a;
    kare.Text = kare1.ToString();
    }
    if (b % 2 == 1)
    {
    int kup2 = b * b * b;
    kup.Text = kup2.ToString();
    }
    else
    {
    int kare2 = b * b;
    kare.Text = kare2.ToString();
    }

    YanıtlaSil
  4. // ekrandan girilen 5 sayının tek olanların toplamını cift olanların carpımını bulan formu yazınız.
    int top = 0;
    int carp = 1;
    int a = Convert.ToInt32(textBox1.Text);
    int b = Convert.ToInt32(textBox2.Text);
    int c = Convert.ToInt32(textBox3.Text);
    int d = Convert.ToInt32(textBox4.Text);
    int h = Convert.ToInt32(textBox5.Text);
    if (a % 2 == 1)
    {
    top = top + a;
    }
    else
    {
    carp = carp * a;
    }
    if (b % 2 == 1)
    {
    top = top + b;
    }
    else
    {
    carp = carp * b;
    }
    if (c % 2 == 1)
    {
    top = top + c;
    }
    else
    {
    carp = carp * c;
    }
    if (d % 2 == 1)
    {
    top = top + d;
    }
    else
    {
    carp = carp * d;
    }
    if (h % 2 == 1)
    {
    top = top + h;
    }
    else
    {
    carp = carp * h;
    }
    label6.Text = top.ToString();
    label7.Text = carp.ToString();

    YanıtlaSil
  5. //yaşı kadar adını daha sonra ;
    yası kadar soyadını listboxa yazdıran kodları yazınız.


    int a=Convert.ToInt32(textBox3.Text);
    for (int i = 1; i <= a; i++)
    {
    listBox1.Items.Add(textBox1.Text);
    }
    for (int i = 1; i <= a; i++)
    {
    listBox1.Items.Add(textBox2.Text);
    }

    YanıtlaSil
  6. // kullanıcan adını yasını soy adını alan yası tek ise adını yaşı çift ise soyadını yası kadar yazdıran sıra numarsı.
    string ad = textBox1.Text;

    string soyad = textBox2.Text;
    int m = 0;
    int n = 0;
    int yas = Convert.ToInt32(textBox3.Text);
    if (yas % 2 == 1)
    {
    for (int a = 1; a <= yas; a++)
    {
    listBox1.Items.Add(++m + textBox1.Text);
    }
    }
    else
    {

    for (int b = 1; b <= yas; b++)
    {
    listBox1.Items.Add(++n + textBox2.Text);
    }
    }

    YanıtlaSil
  7. Ekrandan girilen ögrencinin adını yazılı1, yazılı2 ve sözlü notlarını alan
    ortalaması 45in üzerinde ise "gecenler" listbox'ı na atan
    45in altında ise "kalanlar" listbox'ı na atan formu yazınız.


    int a = Convert.ToInt32(textBox2.Text);
    int b = Convert.ToInt32(textBox3.Text);
    int c = Convert.ToInt32(textBox3.Text);
    int d = (a + b + c) / 3;
    if (d < 45)
    {
    listBox1.Items.Add(y++ + ")" + textBox1.Text + d);
    }
    else
    {
    listBox2.Items.Add(u++ + ")" + textBox1.Text + d);
    }




    }
    }
    }

    YanıtlaSil
  8. Ekrandan girilen 3 sayının ortalamasının
    karesi kadar ekrandan girilen
    adını sıra numarası ile listboxa yazdıran formu olusturun.

    int ad = textBox1.Text;
    int say = Convert.ToInt32(textBox2.Text);
    int say1 = Convert.ToInt32(textBox3.Text);
    int say2 = Convert.ToInt32(textBox4.Text);
    int ort = say + say1 + say2 / 3;
    int a = 1;
    int kare;
    kare = ort * ort;
    for (int i = 1; i <= kare; i++)
    {
    listbox1.Items.Add(++a + ")" + ad);

    }

    YanıtlaSil
  9. Kullanıcının girdiği adı yaşı ve takımı bilgilerinden 18 yaş ve üzeri olanları listboxa
    ekleyecek değilse uyaracak , hata verecek.

    int yas=Convert.ToInt32(textBox3.Text);//Kıssadan hisse sade yaş var..
    if(yas > 18)
    {
    listBox1.Items.Add(textBox1.Text+textBox2.Text+textBox3.Text);

    }

    else
    {
    textBox2.Text="lütfen 18'den büyük bir sayı giriniz";
    }

    YanıtlaSil
  10. Ekrandan girilen adını , yazılı1 , yazılı2 ve sözlü notlarını alan kalanlar ve gecenler
    olarak ayıran ve kac kişi kalmışsa kaç kişi gecmişse onun mevcudunu altta belirten kodları yazınız.
    (isimler arasında yıldız olacak )

    string ad = textBox1.Text;
    int y1 = Convert.ToInt32(textBox2.Text);
    int y2 = Convert.ToInt32(textBox3.Text);
    int sozlu = Convert.ToInt32(textBox4.Text);
    int ort = (y1 + y2 + sozlu);
    if (ort < 45)
    {
    listBox1.Items.Add(m+")"+ad+" "+ort);
    m=m+1;
    listBox1.Items.Add("**************");

    label5.Text=("mevcut top"+l++);


    }
    else
    {
    listBox2.Items.Add(k+")"+ad+" "+ort);
    m=m+1;
    listBox2.Items.Add("**************");

    label6.Text=("mevcut top"+k++);
    }

    YanıtlaSil
  11. ***sınavlık soru***
    Ekrandan girilen adı yazılı 1 , yazılı2 ve sözlü notlarını alan (0 ile 100 arasındaki notları kabul eden )
    ortalamasını bularak kalanaları ayrı listbox'a gecenleri ayrı bir lisxtbox'a aktaran kodları yazınız.


    string ad=textBox1.Text;
    int y1 = Convert.ToInt32(textBox1.Text);
    int y2 = Convert.ToInt32(textBox2.Text);
    int sozlu = Convert.ToInt32(textBox3.Text);
    int ort=0;
    if(y1>100 && y1<0)
    {
    MessageBox.Show("lütfen 0 ile 100 arası bir sayı giriniz");

    }
    else
    if(y2>100 && y2<0)
    {
    MessageBox.Show("lütfen 0 ile 100 arası bir sayı giriniz");

    }

    else
    if(sozlu>100 && sozlu<0)
    {
    MessageBox.Show("lütfen 0 ile 100 arası bir sayı giriniz");
    }
    else
    {
    ort=y1+y2+sozlu)/3
    if(ort<45)
    {
    listBox1.Items.Add(ad+" " + ort);

    }
    else
    {
    listBox1.Items.Add(ad+" " + ort);
    }
    )

    }

    YanıtlaSil
  12. 11 öğrencinin adını y1 y2 szlu alan ort hesaplayrk
    önce kalanları digerlerinide list boxa göndern

    public partial class Form1 : Form
    {

    string[] ad = new string[3];
    int[,] not = new int[3, 3];
    int i = 0;



    public Form1()
    {
    InitializeComponent();
    }
    int m=1;
    int n=1;
    private void button1_Click(object sender, EventArgs e)
    {

    for ( i = 0; i <= 2; i++)
    {
    int ort;
    ort = (not[i, 0] + not[i, 1] + not[i, 2]) / 3;
    if (ort < 45)
    {
    listBox1.Items.Add(m + ")" + ad[i] + " " + ort);
    m = m + 1;
    }
    else
    {
    listBox2.Items.Add(n + ")" + ad[i] + " " + ort);
    n = n + 1;
    }
    }
    }

    private void button2_Click(object sender, EventArgs e)
    {
    ad[i] = textBox1.Text;
    not[i, 0] = Convert.ToInt32(textBox2.Text);
    not[i, 1] = Convert.ToInt32(textBox3.Text);
    not[i, 2] = Convert.ToInt32(textBox4.Text);
    i = i + 1;

    textBox1.Text = "";
    textBox2.Text = "";
    textBox3.Text = "";
    textBox4.Text = "";

    YanıtlaSil
  13. //ekrandan girilen 3 öğrencinin notlarını alan listbox ' a combobox ' tan seçim yaparak gösteren
    //sıra no vererek sıralayan ve 3 ten fazla giriş yapılmasına izin vermeyen kodları yazın
    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;

    namespace WindowsFormsApplication6
    {
    public partial class Form1 : Form
    {
    string[] ad = new string[3];
    int[,] notlar = new int[3, 4];
    int i = 0;
    int m = 1;
    public Form1()
    {
    InitializeComponent();
    }

    private void button1_Click(object sender, EventArgs e)
    {
    ad[i] = textBox1.Text;
    notlar[i, 0] = int.Parse(textBox2.Text);
    notlar[i, 1] = int.Parse(textBox3.Text);
    notlar[i, 2] = int.Parse(textBox4.Text);
    notlar[i, 3] = (notlar[i, 0] + notlar[i, 1] + notlar[i, 2]) / 3;
    i=i+1;
    textBox1.Text = null;
    textBox2.Text = null;
    textBox3.Text = null;
    textBox4.Text = null;
    m=m+1;
    label6.Text = m + ".Öğrencinin adını ve notlarını giriniz...";
    if (i > 2)
    {
    textBox1.Enabled = false;
    textBox2.Enabled = false;
    textBox3.Enabled = false;
    textBox4.Enabled = false;
    button1.Enabled = false;
    label6.Text = "Başka giriş yapılamaz...";
    }


    }

    private void comboBox1_SelectedIndexChanged(object sender, EventArgs e)
    {
    int n = 0;
    listBox1.Items.Clear();
    if (comboBox1.SelectedItem.ToString() == "all")
    {
    label5.Visible = true;
    label5.Text = "HEPSİ";
    for (int k = 0; k <= 2; k++)
    {
    listBox1.Items.Add(++n+")"+ad[k] + " " + notlar[k, 3]);
    }
    }
    if (comboBox1.SelectedItem.ToString() == "kalanlar")
    {
    label5.Visible = true;
    label5.Text = "KALANLAR";
    for (int k = 0; k <= 2; k++)
    {
    if (notlar[k, 3] < 45)
    {
    listBox1.Items.Add(++n + ")" + ad[k] + " " + notlar[k, 3]);

    }
    }
    }
    if (comboBox1.SelectedItem.ToString() == "gecenler")
    {
    label5.Visible = true;
    label5.Text = "GECENLER";
    for (int k = 0; k <= 2; k++)
    {
    if (notlar[k, 3] >= 45)
    {
    listBox1.Items.Add(++n + ")" + ad[k] + " " + notlar[k, 3]);

    }
    }
    }
    }

    private void Form1_Load(object sender, EventArgs e)
    {
    label6.Visible = true;
    label6.Text = "1.Öğrencinin adını ve notlarını giriniz...";
    }
    }
    }

    YanıtlaSil
  14. Kamil TURHAN4 Ekim 2011 13:36

    //ekrandan girilen 3 kişinin adını yaşını ve takımını alan FB,GS,TS arasından seçilen seçeneğe göre listbox'ta taraftarları listeleyen kodları yazın..

    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;

    namespace WindowsFormsApplication2
    {
    public partial class Form1 : Form
    {

    string[,] bılgı = new string[3,2];
    int[] yas = new int[3];
    int i = 0;


    public Form1()
    {
    InitializeComponent();
    }

    private void button1_Click(object sender, EventArgs e)
    {
    int m = 1;
    bılgı[i,0] = textBox1.Text;
    yas[i] = int.Parse(textBox2.Text);
    bılgı[i,1] = comboBox1.Text;
    i = i + 1;
    textBox1.Text = null;
    textBox2.Text = null;
    comboBox1.Text = null;
    label4.Visible = true;
    m = m + 1;
    label4.Text = m + ".Öğrencinin adını,yaşını ve takımını giriniz...";
    if (i > 2)
    {
    textBox1.Enabled = false;
    textBox2.Enabled = false;
    comboBox1.Enabled = false;
    button1.Enabled = false;
    label4.Text = "Başka giriş yapılamaz...";
    }

    }

    private void comboBox2_SelectedIndexChanged(object sender, EventArgs e)
    {
    int n = 0;
    listBox1.Items.Clear();
    if (comboBox2.SelectedItem.ToString() == "F.B")
    {
    label5.Visible = true;
    label5.Text = "F.B";
    for (int k = 0; k <= 2; k++)
    {
    if (bılgı[k, 1] == "F.B")
    {
    listBox1.Items.Add(++n + ")" + bılgı[k, 0] + " " + yas[k]);
    }

    }
    }
    if (comboBox2.SelectedItem.ToString() == "G.S")
    {
    label5.Visible = true;
    label5.Text = "G.S";
    for (int s = 0; s <= 2; s++)
    {
    if (bılgı[s, 1] == "G.S")
    {
    listBox1.Items.Add(++n + ")" + bılgı[s, 0] + " " + yas[s]);

    }
    }
    }
    if (comboBox2.SelectedItem.ToString() == "T.S")
    {
    label5.Visible = true;
    label5.Text = "T.S";
    for (int a = 0; a<= 2; a++)
    {
    if (bılgı[a, 1] == "T.S")
    {
    listBox1.Items.Add(++n + ")" + bılgı[a, 0] + " " + yas[a]);

    }
    }
    }
    }

    private void Form1_Load(object sender, EventArgs e)
    {

    }

    }
    }

    YanıtlaSil
  15. //ekrandan girilen 5 işçinin adını memleketini maaşını kaydeden ve maaş sekmesi boş kalmayacak şekilde
    //listboxta gösterirken maaş ve memleket seçeneklerini
    //sıra no vererek gösteren kodları yazın...
    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;

    namespace WindowsFormsApplication2
    {
    public partial class Form1 : Form
    {
    string[,] ad = new string[5,2];
    int[] maas = new int[5];
    int i = 0;
    public Form1()
    {
    InitializeComponent();
    }

    private void button1_Click(object sender, EventArgs e)
    {
    ad[i,0] = textBox1.Text;
    maas[i] = int.Parse(textBox2.Text);
    i = i + 1;
    textBox2.Text = null;
    textBox1.Text = null;
    if (i > 4)
    {
    textBox1.Enabled = false;
    textBox2.Enabled = false;
    comboBox1.Enabled = false;
    button1.Enabled = false;
    }




    }

    private void comboBox2_SelectedIndexChanged(object sender, EventArgs e)
    {
    int n = 1;
    listBox1.Items.Clear();
    if (comboBox2.SelectedItem.ToString() == "İstanbul")
    {
    for (int k = 0; k <= 4; k++)
    {
    if (ad[k, 1] == "İstanbul")
    {
    listBox1.Items.Add(++n + " ) " + " " + ad[k, 0] + " " + maas[k]);
    }
    }
    }

    }
    }
    }

    YanıtlaSil
  16. 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;

    namespace WindowsFormsApplication15
    {
    public partial class Form1 : Form
    {
    string[] ad = new string[3];
    string[] snf = new string[3];
    int i = 0;

    public Form1()
    {
    InitializeComponent();
    }

    private void button1_Click(object sender, EventArgs e)
    {
    ad[i] = textBox1.Text;
    snf[i] = comboBox1.SelectedItem.ToString();
    i = i + 1;

    textBox1.Text = null;

    }

    private void button2_Click(object sender, EventArgs e)
    {
    int m=0;
    listBox1.Items.Clear();
    if (comboBox2.SelectedItem.ToString() == "9-A")
    {
    for (int k = 0; k <= 2; k++)
    {
    if (snf[k] == "9-A")
    {
    listBox1.Items.Add(++m + ")" + ad[k] + " " + snf[k]);
    }
    }
    }
    if (comboBox2.SelectedItem.ToString() == "11-A")
    {
    for (int k = 0; k <= 2; k++)
    {
    if (snf[k] == "11-A")
    {
    listBox1.Items.Add(++m + ")" + ad[k] + " " + snf[k]);
    }
    }
    }
    }

    private void comboBox2_SelectedIndexChanged(object sender, EventArgs e)
    {

    }
    }
    }

    YanıtlaSil
  17. 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;

    namespace WindowsFormsApplication3
    {
    public partial class Form1 : Form
    {
    string[] ad = new string[3];
    int[,] not = new int[3, 4];
    string[] snf = new string[3];

    int i = 0;
    int m = 0;
    int n = 0;
    int q = 0;
    int w = 0;



    public Form1()
    {
    InitializeComponent();
    }

    private void button1_Click(object sender, EventArgs e)
    {
    ad[i] = textBox1.Text;
    not[i, 0] = Convert.ToInt32(textBox2.Text);
    not[i, 1] = Convert.ToInt32(textBox3.Text);
    not[i, 2] = Convert.ToInt32(textBox3.Text);
    not[i, 3] = (not[i, 0] + not[i, 1] + not[i, 2]) / 3;
    snf[i] = comboBox1.SelectedItem.ToString();
    i = i + 1;
    textBox1.Text = null;
    textBox2.Text = null;
    textBox3.Text = null;
    textBox4.Text = null;
    }

    private void button2_Click(object sender, EventArgs e)
    {
    listBox1.Items.Clear();
    if (radioButton1.Checked)
    {
    for (int k = 0; k <= 2; k++)
    {
    if (not[k, 3] < 45)
    {
    if (snf[k] == "9-a")
    {
    listBox1.Items.Add(++m + ")" + ad[k] +" " + not[k, 3]);
    }
    }
    }
    }
    if (radioButton2.Checked)
    {
    for (int k = 0; k <= 2; k++)
    {
    if (not[k, 3] > 45)
    {
    if (snf[k] == "9-a")
    {
    listBox1.Items.Add(++n + ")" + ad[k] +" "+ not[k, 3]);
    }
    }
    }
    }
    listBox2.Items.Clear();
    if (radioButton3.Checked)
    {
    for (int k = 0; k <= 2; k++)
    {
    if (not[k, 3] < 45)
    {
    if (snf[k] == "11-a")
    {
    listBox2.Items.Add(++q + ")" + ad[k] +" "+ not[k, 3]);
    }
    }
    }
    }
    if (radioButton4.Checked)
    {
    for (int k = 0; k <= 2; k++)
    {
    if (not[k, 3] > 45)
    {
    if (snf[k] == "11-a")
    {
    listBox2.Items.Add(++w + ")" + ad[k] +" "+ not[k, 3]);
    }
    }
    }
    }
    }

    private void listBox1_SelectedIndexChanged(object sender, EventArgs e)
    {

    }

    private void label1_Click(object sender, EventArgs e)
    {

    }
    }
    }

    YanıtlaSil
  18. 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;

    namespace WindowsFormsApplication3
    {
    public partial class Form1 : Form
    {
    string[] ad = new string[3];
    string[] cinsiyet = new string[3];
    int s = 0;
    int er = 0;
    public Form1()
    {
    InitializeComponent();
    }

    private void button1_Click(object sender, EventArgs e)
    {

    if (textBox1.Text =="")

    {
    MessageBox.Show("ad Boş olmamalı");
    }
    else if ((radioButton1.Checked == false) & (radioButton2.Checked == false))
    {
    MessageBox.Show("Cinsiyet seçiniz...");
    }
    else if ((er >= 2) & (radioButton1.Checked))
    {
    MessageBox.Show("Kız seç...");
    }
    else
    {
    ad[s] = textBox1.Text;
    if (radioButton1.Checked)
    {
    cinsiyet[s] = "erkek";
    er = er + 1;
    }
    if (radioButton2.Checked)
    {
    cinsiyet[s] = "kiz";
    }
    textBox1.Text = null;
    s = s + 1;
    }
    }

    private void Form1_Load(object sender, EventArgs e)
    {


    }

    private void button2_Click(object sender, EventArgs e)
    {
    int d = 0;
    listBox1.Items.Clear();
    string sec = comboBox1.SelectedItem.ToString();
    if (sec == "hepsi")
    {
    for (int a = 0; a <= 2; a++)
    {
    listBox1.Items.Add(++d+")"+ad[a] + " " + cinsiyet[a]);
    }
    }
    if (sec == "erkek")
    {
    for (int a = 0; a <= 2; a++)
    {
    if (cinsiyet[a] == "erkek")
    {
    listBox1.Items.Add(++d + ")" + ad[a] + " " + cinsiyet[a]);
    }
    }
    }
    if (sec == "kiz")
    {
    for (int a = 0; a <= 2; a++)
    {
    if (cinsiyet[a] == "kiz")
    {
    listBox1.Items.Add(++d + ")" + ad[a] + " " + cinsiyet[a]);
    }
    }
    }
    }
    }
    }

    YanıtlaSil
  19. Kerem Kılıç13 Ekim 2011 11:54

    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;

    namespace WindowsFormsApplication1
    {
    public partial class Form1 : Form
    {
    public Form1()
    {
    InitializeComponent();
    }

    private void button1_Click(object sender, EventArgs e)
    {
    string ad;
    string sifre;
    sifre =textBox2.Text;
    ad = textBox1.Text;

    if (ad == "admin" && sifre == "1234")
    {
    MessageBox.Show("Giriş Başarılı");
    }
    else
    {
    label3.Visible = false;
    label4.Visible = false;
    radioButton1.Visible = false;
    radioButton2.Visible = false;
    radioButton3.Visible = false;
    radioButton4.Visible = false;
    radioButton5.Visible = false;
    radioButton6.Visible = false;
    button2.Visible = false;
    button3.Visible = false;

    MessageBox.Show("Giriş Başarısız");
    }
    }

    private void button2_Click(object sender, EventArgs e)
    {
    radioButton1.BackColor = Color.Blue;
    radioButton4.BackColor = Color.Blue;
    }

    private void button3_Click(object sender, EventArgs e)
    {
    string ad;
    ad = textBox1.Text;

    label15.Visible = true;
    label15.Text = ad;

    label6.Visible = true;
    label6.Text = "2";

    label10.Visible = true;
    label10.Text = "7";

    if (radioButton1.Checked)
    {
    label7.Text = "2";
    label8.Text = "Doğru";
    }
    if (radioButton2.Checked)
    {
    label7.Text = "6";
    label8.Text = "Yanlış";
    }
    if (radioButton3.Checked)
    {
    label7.Text = "8";
    label8.Text = "Yanlış";
    }
    if (radioButton4.Checked)
    {
    label11.Text = "7";
    label12.Text = "Doğru";
    }
    if (radioButton5.Checked)
    {
    label11.Text = "10";
    label12.Text = "Yanlış";
    }
    if (radioButton6.Checked)
    {
    label11.Text = "12";
    label12.Text = "Yanlış";
    }
    string a;
    a = label8.Text;
    string b;
    b = label12.Text;

    if (a == "Doğru")
    {
    if (b == "Doğru")
    {
    label14.Text = "%100";
    }
    }
    if (a == "Doğru")
    {
    if (b == "Yanlış")
    {
    label14.Text = "%50";
    }
    }
    if (a == "Yanlış")
    {
    if (b == "Doğru")
    {
    label14.Text = "%50";
    }
    }
    if (a == "Yanlış")
    {
    if (b == "Yanlış")
    {
    label14.Text = "%0";
    }
    }
    }

    private void Form1_Load(object sender, EventArgs e)
    {

    }
    }
    }

    YanıtlaSil
  20. 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;

    namespace WindowsFormsApplication2
    {
    public partial class Form1 : Form
    {
    int m = 0;

    public Form1()
    {
    InitializeComponent();
    }

    private void Form1_Load(object sender, EventArgs e)
    {

    }

    private void button3_Click(object sender, EventArgs e)
    {

    string a;
    a = textBox1.Text;

    if (radioButton1.Checked)
    {
    listBox1.Items.Add(a);
    }
    if (radioButton2.Checked)
    {
    listBox2.Items.Add(a);
    }

    m = m + 1;

    int c = Convert.ToInt32(label4.Text);
    c = m;
    int b = Convert.ToInt32(label5.Text);
    b = m;
    }

    private void button1_Click(object sender, EventArgs e)
    {
    object[] seciliParcalar = new object[listBox1.SelectedItems.Count];
    for (int i = 0; i < listBox1.SelectedItems.Count; i++)
    seciliParcalar[i] = listBox1.SelectedItems[i];
    listBox2.Items.AddRange(seciliParcalar);


    }

    private void button2_Click(object sender, EventArgs e)
    {
    object[] seciliParcalar = new object[listBox2.SelectedItems.Count];
    for (int i = 0; i < listBox2.SelectedItems.Count; i++)
    seciliParcalar[i] = listBox2.SelectedItems[i];
    listBox1.Items.AddRange(seciliParcalar);

    }

    private void listBox1_SelectedIndexChanged(object sender, EventArgs e)
    {

    }

    private void listBox2_SelectedIndexChanged(object sender, EventArgs e)
    {

    }
    }
    }

    YanıtlaSil
  21. http://www.webteders.com/dersler/kategoriler/C%20Sharp-dersleri/48

    YanıtlaSil
  22. http://hotfile.com/dl/133932923/efce50d/WindowsFormsApplication30.rar.html

    YanıtlaSil
  23. double tc = 0;
    int m = 0;
    public static string ad;
    public Form1()
    {
    InitializeComponent();
    }

    private void button1_Click(object sender, EventArgs e)
    {

    ad = textBox3.Text;

    tc = double.Parse(textBox1.Text);
    if (textBox1.Text == "")
    {
    MessageBox.Show("Tc No Boş Olamaz");
    }

    if (textBox2.Text != "1")
    {
    MessageBox.Show("Şifre Yanlış");
    m = m + 1;
    if (m == 3)
    {
    panel1.Enabled = false;
    MessageBox.Show("Hakkın Bitti");
    }
    }
    else
    {
    Form form2 = new Form2();
    form2.Show();
    }

    YanıtlaSil
  24. int a =0;
    for (int b = 1; b <= 5; b++)
    {
    string ad = Microsoft.VisualBasic.Interaction.InputBox("isim girin", "Öğrenci Kayıt", "", 20, 20).ToString();
    listBox1.Items.Add(++a + ")" + ad);
    }

    YanıtlaSil
  25. //inputbox'taki notların sadece 0 ile 100 arasındaki sayıların alınarak listbox'a yazdıran kodlar...
    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;

    namespace WindowsFormsApplication37
    {
    public partial class Form1 : Form
    {
    int[] nt = new int[5];
    string[] ad = new string[5];
    int t, i, m , top, ort,n= 0;

    public Form1()
    {
    InitializeComponent();
    }

    private void button1_Click(object sender, EventArgs e)
    {
    for (int k = 0; k <= 4; k++)
    {
    ad[k] = Microsoft.VisualBasic.Interaction.InputBox(++i + ")" + ". Öğrenci", "Bilgi", "", 20, 20).ToString();
    n = Convert.ToInt32(Microsoft.VisualBasic.Interaction.InputBox(++m + ")" + "Notu gir", "Bilgi", " ", 20, 20));

    if (n > 100)
    {
    MessageBox.Show("100den küçük not gir");
    k = k - 1;
    i = i - 1;
    m = m - 1;
    }
    else
    {

    nt [k] = n ;
    }
    }

    }

    private void button2_Click(object sender, EventArgs e)
    {
    for(int l=0;l<=4;l++)
    {
    top=top+nt[l];
    ort=top/5;
    listBox1.Items.Add(++t+")"+" "+ad[l]+" "+nt[l]);
    }
    listBox1.Items.Add("Ortalama "+ort);

    }
    }
    }

    YanıtlaSil
  26. //ekrandan sayı isteyen girilen sayıların toplamı 500 'ü aştığı an
    //programı bitiren ve sayıları yazdıran kodlar ...
    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;

    namespace WindowsFormsApplication11
    {
    public partial class Form1 : Form
    {
    int[] not = new int[100];

    int i = 0;
    int top = 0;
    public Form1()
    {
    InitializeComponent();
    }

    private void button1_Click(object sender, EventArgs e)
    {
    while (top < 500)
    {

    not[i] = int.Parse(Microsoft.VisualBasic.Interaction.InputBox("Öğrenci Notları", "KAYIT", "", 20, 20));
    top = top + not[i];
    i = i + 1;
    }

    }

    private void button2_Click(object sender, EventArgs e)
    {
    for (int y = 0; y <= not[y]; y++)
    {
    listBox1.Items.Add(not[y]);

    }
    listBox1.Items.Add("Toplamı =" + top);
    }

    }
    }

    YanıtlaSil
  27. http://hotfile.com/dl/136271731/b352f29/Yeni_Metin_Belgesi.txt.html

    29 Kasım 2011 Salı Günü Son Yaptığımız Kodlar

    YanıtlaSil
  28. ArrayList okulno = new ArrayList();
    ArrayList ad = new ArrayList();
    ArrayList soyad = new ArrayList();
    int n = 5;int j = 0;
    public Form1()
    {
    InitializeComponent();
    }

    private void button1_Click(object sender, EventArgs e)
    {



    int c = okulno.IndexOf(textBox1.Text);
    if (c == -1)
    {
    okulno.Add(textBox1.Text);
    ad.Add(textBox2.Text);
    soyad.Add(textBox3.Text);
    textBox1.Text = null;
    textBox2.Text = null;
    textBox3.Text = null;
    }
    else
    {
    MessageBox.Show("Aynı No Olamaz");
    textBox1.Text = null;
    textBox1.Focus();
    }
    n = 5;
    timer1.Start();





    }

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

    private void Form1_Load(object sender, EventArgs e)
    {
    timer1.Start();
    label4.Visible = false;

    }

    private void timer1_Tick(object sender, EventArgs e)
    {
    label4.Visible = true;
    label4.Text = n.ToString();
    n = n - 1;
    if (n == -1)
    {
    panel1.Enabled = false;
    timer1.Stop();

    }
    if (n == -1)
    {
    MessageBox.Show("Süre Doldu");
    }

    YanıtlaSil
  29. Gayet açıklayıcı ve ayrıntılı bir kaynak emeğinize sağlık.

    YanıtlaSil
  30. Merhaba. nesne tabanlı programlamada konu formun konusu tahmin. A'ya basıldığında verı tabanından doru verıyı çekecek ve Obeb Okek konusunun programı classlı olacak şekilde yanınlar mısınız ?

    YanıtlaSil
  31. Merhaba. nesne tabanlı programlamada konu formun konusu tahmin. A'ya basıldığında verı tabanından doru verıyı çekecek ve Obeb Okek konusunun programı classlı olacak şekilde yanınlar mısınız ?

    YanıtlaSil
  32. timer ile ilgili örnek paylaşabilirmisiniz

    YanıtlaSil
  33. swich case ile ilgili örnek lütfeeeeen aciil :((((

    YanıtlaSil