Hi,
Thanks for that, but could you clarify (bit of a beginner).
My code on my form is:
Private Sub Form_Timer()
If Me.Timer1 = 0 Then
Else
Me.Timer1 = Me.Timer1 - 1
End If
If Me.Timer1 = 0 Then
Me.Text4 = "Check Required"
Me.Text4.BackColor = vbRed
End If
If Me.Timer2 = 0 Then
Else
Me.Timer2 = Me.Timer2 - 1
End If
If Me.Timer2 = 0 Then
Me.Text6 = "Check Required"
Me.Text6.BackColor = vbRed
End If
End Sub
My form timer interval is set to 1000
Thanks for the help.
"John Spencer" wrote:
> In one control, use
> Format(TimeInSeconds\60, "00") & ":" & Format(TimeInSeconds Mod 60,"00")
>
> John Spencer
> Access MVP 2002-2005, 2007-2008
> The Hilltop Institute
> University of Maryland Baltimore County
>
> Nick T wrote:
> > Hi,
> >
> > Have a text box which automatically starts a countdown timer when a form is
> > opened.
> > Counts down in seconds.
> >
> > Can i make it read out in mm:ss?
> > eg, if it starts at 90seconds, it currently displays '90', however i want it
> > to display 01:30. (ie. 1minute, 30seconds).
> >
> > Any suggestions??
>
|