11 Nisan 2012 Çarşamba

C# Access Random Sayıyla Hedefe Ulaşmak(Timer)



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




# BUTON İÇİ #



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 WindowsFormsApplication57
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }

        int sayac = 33;
        Class1 nalan = new Class1();

        void gonder()
        {
            nalan.okulnno = textBox1.Text;
            nalan.ad = textBox2.Text;
            nalan.saniye = label3.Text;
        }
        private void button1_Click(object sender, EventArgs e)
        {
            sayac = 33;
            timer1.Stop();
            Class1 nalan = new Class1();
            if (nalan.m == 1)
            {
                textBox1.Clear();
                textBox1.Focus();
            }
            if (nalan.m == 0)
            {
                nalan.elif();//sayılar geliyor...
                button2.Text = nalan.sayilar[0].ToString();
                button3.Text = nalan.sayilar[1].ToString();
                button4.Text = nalan.sayilar[2].ToString();
                button5.Text = nalan.sayilar[3].ToString();
                button6.Text = nalan.sayilar[4].ToString();
                button7.Text = nalan.sayilar[5].ToString();
                button8.Text = nalan.sayilar[6].ToString();
                button9.Text = nalan.sayilar[7].ToString();
                button10.Text = nalan.sayilar[8].ToString();
                label4.Text = nalan.sayilar[9].ToString();          
                timer1.Start();
            }
        }

        private void button8_Click(object sender, EventArgs e)
        {
            if (radioButton1.Checked)
            {
                nalan.hedef = label4.Text;
                nalan.say = int.Parse(button8.Text);
                nalan.toplama();
                label5.Text = nalan.sonuc.ToString();
                if (nalan.zaman == 1)
                {
                    timer1.Stop();
                    gonder();
                    nalan.yaz();
                    MessageBox.Show("Tebrikler başardınız...");              
                }
            }                
        }

        private void timer1_Tick(object sender, EventArgs e)
        {
            sayac -= 1;
            label3.Text = sayac.ToString();
            if (sayac == 0)
            {
                timer1.Stop();
                button2.Enabled = false;
                MessageBox.Show("Süreniz doldu...");
            }
        }

        private void button2_Click(object sender, EventArgs e)
        {
            if (radioButton1.Checked)
            {
                nalan.hedef = label4.Text;
                nalan.say = int.Parse(button2.Text);
                nalan.toplama();
                label5.Text = nalan.sonuc.ToString();
                if (nalan.zaman == 1)
                {
                    timer1.Stop();
                    gonder();
                    nalan.yaz();
                    MessageBox.Show("Tebrikler başardınız...");
                }
            }
        }

        private void button3_Click(object sender, EventArgs e)
        {
            if (radioButton1.Checked)
            {
                nalan.hedef = label4.Text;
                nalan.say = int.Parse(button3.Text);
                nalan.toplama();
                label5.Text = nalan.sonuc.ToString();
                if (nalan.zaman == 1)
                {
                    timer1.Stop();
                    gonder();
                    nalan.yaz();
                    MessageBox.Show("Tebrikler başardınız...");
                }
            }
        }

        private void button4_Click(object sender, EventArgs e)
        {
            if (radioButton1.Checked)
            {
                nalan.hedef = label4.Text;
                nalan.say = int.Parse(button4.Text);
                nalan.toplama();
                label5.Text = nalan.sonuc.ToString();
                if (nalan.zaman == 1)
                {
                    timer1.Stop();
                    gonder();
                    nalan.yaz();
                    MessageBox.Show("Tebrikler başardınız...");
                }
            }
        }

        private void button7_Click(object sender, EventArgs e)
        {
            if (radioButton1.Checked)
            {
                nalan.hedef = label4.Text;
                nalan.say = int.Parse(button7.Text);
                nalan.toplama();
                label5.Text = nalan.sonuc.ToString();
                if (nalan.zaman == 1)
                {
                    timer1.Stop();
                    gonder();
                    nalan.yaz();
                    MessageBox.Show("Tebrikler başardınız...");
                }
            }
        }

        private void button6_Click(object sender, EventArgs e)
        {
            if (radioButton1.Checked)
            {
                nalan.hedef = label4.Text;
                nalan.say = int.Parse(button6.Text);
                nalan.toplama();
                label5.Text = nalan.sonuc.ToString();
                if (nalan.zaman == 1)
                {
                    timer1.Stop();
                    gonder();
                    nalan.yaz();
                    MessageBox.Show("Tebrikler başardınız...");
                }
            }
        }

        private void button5_Click(object sender, EventArgs e)
        {
            if (radioButton1.Checked)
            {
                nalan.hedef = label4.Text;
                nalan.say = int.Parse(button5.Text);
                nalan.toplama();
                label5.Text = nalan.sonuc.ToString();
                if (nalan.zaman == 1)
                {
                    timer1.Stop();
                    gonder();
                    nalan.yaz();
                    MessageBox.Show("Tebrikler başardınız...");
                }
            }
        }

        private void button10_Click(object sender, EventArgs e)
        {
            if (radioButton1.Checked)
            {
                nalan.hedef = label4.Text;
                nalan.say = int.Parse(button10.Text);
                nalan.toplama();
                label5.Text = nalan.sonuc.ToString();
                if (nalan.zaman == 1)
                {
                    timer1.Stop();
                    gonder();
                    nalan.yaz();
                    MessageBox.Show("Tebrikler başardınız...");
                }
            }
        }

        private void button9_Click(object sender, EventArgs e)
        {
            if (radioButton1.Checked)
            {
                nalan.hedef = label4.Text;
                nalan.say = int.Parse(button9.Text);
                nalan.toplama();
                label5.Text = nalan.sonuc.ToString();
                if (nalan.zaman == 1)
                {
                    timer1.Stop();
                    gonder();
                    nalan.yaz();
                    MessageBox.Show("Tebrikler başardınız...");
                }
            }
        }

        private void button11_Click(object sender, EventArgs e)
        {
            nalan.listele(this);
        }
    }
}












# CLASS İÇİ #

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Data.OleDb;
using System.Data;
using System.Collections;
using System.Windows.Forms;

namespace WindowsFormsApplication57
{
    class Class1
    {
        OleDbConnection con = new OleDbConnection("provider=microsoft.jet.oledb.4.0;data source=okul.mdb");
        public string okulnno,ad;   
        public int m=0;
        public ArrayList sayilar=new ArrayList();
        public int sonuc;
        public int say;
        public string hedef;
        public int zaman=0;
        public string saniye;
        public void yaz()
        {
            con.Open();
            OleDbDataAdapter da = new OleDbDataAdapter("select * from meltem", con);
            OleDbCommand cmd = new OleDbCommand("insert into meltem(okulno,ad,saniye) values('" + okulnno + "','" + ad + "','"+saniye+"')", con);
            DataSet ds = new DataSet();
            da.Fill(ds, "pakize");
            int k = ds.Tables[0].Rows.Count;
            for (int i = 0; i < k; i++)
            {
                if (okulnno == ds.Tables[0].Rows[i][0].ToString())
                {
                    m = 1;
                }
            }
            if (m == 1)
            {
                MessageBox.Show("Başka okul no giriniz");
            }
            else
            {
                cmd.ExecuteNonQuery();
            }
            con.Close();
        }
        public void elif()
        {
            Random rasgele = new Random();
            for (int j = 1; j <= 9; j++)
            {
                int c = rasgele.Next(0, 9);
                sayilar.Add(c);
            }
            int d = rasgele.Next(50, 90);
            sayilar.Add(d);//hedef sayı arraylistin sonunda...
        }

        public void toplama()
        {
            sonuc = sonuc + say;
            if (hedef == sonuc.ToString())
            {
                zaman = 1;                           
            }         
        }

        public void listele(Form1 okul)
        {
            okul.listBox1.Items.Clear();
            int m=0;
            con.Open();
            OleDbDataAdapter da = new OleDbDataAdapter("select * from meltem order by saniye desc", con);
            DataSet ds = new DataSet();
            da.Fill(ds, "pakize");
            int k = ds.Tables[0].Rows.Count;
            for (int i = 0; i < k; i++)
            {
                okul.listBox1.Items.Add(++m + ")" + ds.Tables[0].Rows[i][0] + " " + ds.Tables[0].Rows[i][1] + " " + ds.Tables[0].Rows[i][2]);

            }
        }
    }
}

1 yorum:

  1. Casinos Near Trump International Hotel and Casino, NC - Mapy
    Find Casinos 안양 출장마사지 Near Trump International 천안 출장안마 Hotel and Casino, NC, 충청북도 출장안마 United States in real-time 화성 출장안마 and see activity. Geo-location, GPS coordinates, 순천 출장마사지

    YanıtlaSil