Users Pricing

forum

Home Forums Timer not detecting when input matches DateTime.Now – MindStick

Timer not detecting when input matches DateTime.Now

Royce Roy 2144 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");
    }
}


1 Answers

Markdown for AI

A clean, structured version of this page for AI assistants and LLMs.

Open .md