Make a countdown program in visual basic: Codes: Form Load: Timer1.Enabled = True Timer1.Interval = 1000 Timer2.Enabled = True Timer2.Interval = 500 Timer1: Label1.Text -= 1 If Label1.Text = "0" Then Label1.Visible = False End If Timer2: Button1.Text -= 1 If Button1.Text = "0" Then Button1.Visible = False End If