Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 4335990
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 21, 20262026-05-21T10:44:45+00:00 2026-05-21T10:44:45+00:00

I have a timer that runs every second, the code is bellow: public MainWindow()

  • 0

I have a timer that runs every second, the code is bellow:

    public MainWindow()
    {
        InitializeComponent();

        DispatcherTimer timer = new DispatcherTimer();
        timer.Interval = TimeSpan.FromMilliseconds(1000);
        timer.Tick += new EventHandler(someEventHandler);
        timer.Start();
    }

    private void someEventHandler(Object sender, EventArgs args)
    {
        TVMonitor TVMonitor = new TVMonitor();
        if (TVMonitor.NeedsTurningOn())
        {
            Console.WriteLine("on");
            TVCOM.SendCommand(SettingManager.GetTVCode("on") + Environment.NewLine);
        }
    }

In the function NeedsTurningOn() I have the following:

    public bool NeedsTurningOn()
    {
        var turnon = (from settings in context.SystemSettings
                      where settings.SystemSettingName == "TVOnTime"
                      select settings).First();
        if (turnon.SystemSettingValue == String.Empty)
        {
            return false;
        }

        DateTime date = Convert.ToDateTime(turnon.SystemSettingValue);
        Console.WriteLine("Turnontime: " + date);
        Console.WriteLine("currenttim: " + DateTime.Now);
        if (date != DateTime.Now)
        {
            Console.WriteLine("false");
            return false;
        }
        else
        {
            Console.WriteLine("true");
            return true;
        }
    }

Now in the console which I am using for debugging, I have the following output:

...
Turnontime: 11/04/2011 14:05:10
currenttim: 11/04/2011 14:05:07
false
Turnontime: 11/04/2011 14:05:10
currenttim: 11/04/2011 14:05:08
false
Turnontime: 11/04/2011 14:05:10
currenttim: 11/04/2011 14:05:09
false
Turnontime: 11/04/2011 14:05:10
currenttim: 11/04/2011 14:05:10
false
Turnontime: 11/04/2011 14:05:10
currenttim: 11/04/2011 14:05:11
false
Turnontime: 11/04/2011 14:05:10
currenttim: 11/04/2011 14:05:12
false
...

Why is this still firing off a false instead of true once the date is the same?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-21T10:44:46+00:00Added an answer on May 21, 2026 at 10:44 am

    You only compare the times every second – the milliseconds will still be different (especially assuming the turn-on time you compare to most likely doesn’t use milliseconds). To compare in a second resolution you could do something like this:

    DateTime currentTime = DateTime.Now;
    currentTime = currentTime.AddMilliseconds(-currentTime.Millisecond);
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have some code that will be accessed from two threads: class Timer{ public:
If I have an instance of a System.Timers.Timer that has a long interval -
I have a windows service that runs every 10 seconds ... each time it
I have a DB of sensor data that is being collected every second. The
I have a thread that runs each second with the sleep command. this works
I have a control that is basically functioning as a client-side timer countdown control.
I have a page which currently refreshes itself every 10 seconds. The page runs
I have a new web app that is packaged as a WAR as part
The problem is I have a stored procedure that runs consistently in Sql Server
I have a service that runs a TimerTask in a method, which must count

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.