how to designe a simple clock simple that show time in text box m w8ing ur ans?
how to designe a simple clock simple that show time in text box m w8ing ur ans?
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
PJ MartinsPosted May 26, 2010, 3:05 PM
private void timer1_Tick(object sender, EventArgs e)
{
textBox1.Text = DateTime.Now.ToString("hh:mm tt");
}