15 February 2015



get my project: clickhere

simple step to download my project:
1. klick button "Low Speed Download"
2. fill the collom as text that display
3. click button "download"

THIS MY SIMPLE CODE:

////for buttonstart_click

            if (buttonstart.Text == "Start")
            {
                buttonstart.Text = "Stop";
                timer1.Start();
            }
            else if (buttonstart.Text=="Stop")
            {
                buttonstart.Text = "Start";
                timer1.Stop();
            }


////for timer_tick

   label1.Text = Hours.ToString() + " : " + Minute.ToString() + " : " + Second.ToString() + " : " + tick.ToString();
            tick++;
            if (tick >= 10)
            {
                tick = 0;
                Second++;
                if (Second >= 60)
                {
                    Second = 0;
                    Minute++;
                    if (Minute >= 60)
                    {
                        Minute = 0;
                        Hours++;
                         
                    }
                }
            }


////for buttonreset_click

            Hours = 0;
            Minute = 0;
            Second = 0;
            tick = 0;