Hi
I have a countdown counter in my form from 30 to 0:
it is fine and goes from 30 to 0 but when it reaches 9 it is showing as one digit and i want it to show 2 digits.Code:Label2.Visible = True Label3.Visible = True txtTimer.Visible = True Me.Command5.Enabled = True Me.txtTimer.Value = Me.txtTimer.Value - 1 If Me.txtTimer.Value = 0 Then DoCmd.OpenQuery "updateAhmad" End If
instead of 30,29,28...10,9,8,7...
I want 30,29,28...10,09,08,07...