Wrox Programmer Forums
Go Back   Wrox Programmer Forums > C# and C > C# 1.0 > C#
|
C# Programming questions specific to the Microsoft C# language. See also the forum Beginning Visual C# to discuss that specific Wrox book and code.
Welcome to the p2p.wrox.com Forums.

You are currently viewing the C# section of the Wrox Programmer to Programmer discussions. This is a community of software programmers and website developers including Wrox book authors and readers. New member registration was closed in 2019. New posts were shut off and the site was archived into this static format as of October 1, 2020. If you require technical support for a Wrox book please contact http://hub.wiley.com
 
Old December 22nd, 2003, 11:12 AM
Authorized User
 
Join Date: Dec 2003
Posts: 14
Thanks: 0
Thanked 0 Times in 0 Posts
Send a message via ICQ to StreetSweaper Send a message via MSN to StreetSweaper
Default digital watch

Hello!
I wonder if any one can help me!
i am trying to code a digital stopwatch i c#. but i am stuck...



 
Old December 25th, 2003, 06:07 AM
Friend of Wrox
 
Join Date: Jun 2003
Posts: 453
Thanks: 0
Thanked 1 Time in 1 Post
Send a message via AIM to Ankur_Verma Send a message via MSN to Ankur_Verma
Default

Write back with exactly where you are stuck with may be the code you have written so far.

Ankur Verma
.Net and C++ Specialist
Wiley Tech Support
 
Old December 29th, 2003, 10:37 PM
Authorized User
 
Join Date: Dec 2003
Posts: 14
Thanks: 0
Thanked 0 Times in 0 Posts
Send a message via ICQ to StreetSweaper Send a message via MSN to StreetSweaper
Default

This is the code, but i doesn't work


private void timer1_Tick(object sender, System.EventArgs e)
        {
            seconds += 1;
            if (seconds <= 0)
            {
                timer1.Stop();
            }
            if(seconds == 60)
            {
                min +=1;
                seconds = 0;
            }
            if(min == 60)
            {
                hours += 1;
                min = 0;
                seconds = 0;
            }
            label1.Te

xt = "Tid: " + hours.ToString() + "." + min.ToString() + "." + seconds.ToString();
        }
        public void Start()
        {
            timer1.Start();
            label1.Text = "Tid: 0.0" + seconds.ToString();
        }

        public void Stop()
        {
            timer1.Stop();
                    }


        private void button1_Click(object sender, System.EventArgs e)
        {
            timer1.Start();
        }

        private void button2_Click(object sender, System.EventArgs e)
        {

            timer1.Stop();
        }

        private void timer1_Tick_1(object sender, System.EventArgs e)
        {

        }
    }
}

 
Old December 30th, 2003, 05:00 AM
Friend of Wrox
 
Join Date: Jun 2003
Posts: 453
Thanks: 0
Thanked 1 Time in 1 Post
Send a message via AIM to Ankur_Verma Send a message via MSN to Ankur_Verma
Default

Make sure the interval you have set for the timer is 1000 milliseconds.

Ankur Verma
.Net and C++ Specialist
Wiley Tech Support





Similar Threads
Thread Thread Starter Forum Replies Last Post
Stop watch rohit_ghosh Access VBA 2 May 3rd, 2007 04:14 AM
Stop Watch Paulsh Access VBA 3 September 22nd, 2004 12:10 PM
Watch Window is disabled LaFeverMF ADO.NET 1 July 21st, 2004 11:32 PM
JS/ASP watch mega Javascript 5 April 29th, 2004 03:03 PM
Watch Exchange Inbox rodmcleay VB How-To 0 July 10th, 2003 12:15 AM





Powered by vBulletin®
Copyright ©2000 - 2020, Jelsoft Enterprises Ltd.
Copyright (c) 2020 John Wiley & Sons, Inc.