forum

Home / DeveloperSection / Forums / Timer not detecting when input matches DateTime.Now

Timer not detecting when input matches DateTime.Now

Royce Roy 1711 23-Dec-2013

I have a timer on my form with an interval of 1000 (1 second). I am allowing the user to input a time via three comboboxes. The time they input is then converted to the DateTime format. Finally, the timer checks every tick if the input time equals DateTime.Now. The problem is that it's not working.

Say I set the alarm to 9:00:00 PM when it's 8:59:50 PM. I click Start and wait ten seconds for the alarm to go off, but it never does. When debugging the code, both numbers are the same, meaning that it should fire, but it doesn't.

Here's my code:

private void tmrAlarm_Tick(object sender, EventArgs e) {
    DateTime alarmTime = Convert.ToDateTime(statusAlarm.Text); // say statusAlarm.Text is 9:00:00 PM
    if(alarmTime == DateTime.Now) {
        MessageBox.Show("bzzt");
    }
}


c# c# 
Updated on 23-Dec-2013

Can you answer this question?


Answer

1 Answers

Liked By