Click here to Skip to main content
15,886,510 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
please help me i am new to windows application in c#
Now i am create a text to speak alarm clock my code is
:
C#
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;

namespace _2TryAlarmClock
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
DateTime alarmtime;
private void timer1_Tick(object sender, EventArgs e)
{
label3.Text = DateTime.Now.ToLongTimeString();
if(label3.Text.Equals(alarmtime.ToString("HH:mm:ss")))
{
MessageBox.Show("Correct");
}
else
{
MessageBox.Show("Un-Correct");
}

}
private void Form1_Load(object sender, EventArgs e)
{

}

private void alarmon()
{
DateTime dt = DateTime.Now;
int hour = Convert.ToInt32(comboBox1.Text);
int min = Convert.ToInt32(comboBox2.Text);
int sec = Convert.ToInt32(comboBox3.Text);
alarmtime = new DateTime(dt.Year, dt.Month, dt.Day,hour, min, sec);
timer1.Enabled = true;
}
private void cloudStartMenuButton1_Click(object sender, EventArgs e)
{
alarmon();
}

}
}

but my timer tick event if condition is always go to else part .......
please anyone tell me a solution
Posted
Updated 26-Jun-13 2:36am
v2

1 solution

What about debugging your application? In such cases, the debugger is really the best tool for finding out what's wrong in the program behaviour.
By the way, why are you comparing two strings obtained using different formatting options?
 
Share this answer
 
v2

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900