Çalar saat programı
private void Form1_Load( object sender, System. EventArgs e) { textBox1.Text = DateTime .Now.ToShortDateString(); textBox2.Text = DateTime .Now.ToLongTimeString(); timer2.Enabled = false ; timer1.Enabled = false ; timer2.Interval = 100; timer1.Interval = 1000; Text = "Alarm Kapalı" ; } private void timer1_Tick( object sender, System. EventArgs e) { if (textBox1.Text == DateTime .Now.ToShortDateString() && textBox2.Text == DateTime .Now.ToLongTimeString()) { timer2.Enabled = true ; MessageBox .Show(textBox3.Text); } } private void timer2_Tick( object sender, System. EventArgs e) { Color c; c = textBox3.BackColor; textBox3.BackColor=textBox3.ForeColor ; textBox3.ForeColor=c; } private void button1_Click( object sender, System. EventA...