I am not a good programmer, it's rather my hobby. So please don't judge me for being bad at programming. This is my current code ive made for the countdown timer.
int i = 000000;
private void timer1_Tick(object sender, EventArgs e)
{
{
i++;
textBox1.Text = i.ToString() + "00:00:00";
}
}
When I run the timer. then the TextBox1 isn't showing 00:00:01, but it's showing 100;00;00. Thank you for reading my post and again, sorry for having soo bad programming knowledge.