Clock on the form

  • Thread starter Thread starter lin
  • Start date Start date
L

lin

I have a clock on the form using the Form_Timer event.

Private Sub Form_Timer()
Me!lblc.Caption = Format(Now, "dddd, mmm d yyyy, hh:mm:ss
AMPM")
End Sub

I am starting and stoping the clock using the command
button.But I have problem with finding the total time
(means total time from Start to Stop). Any help.It is
really apprecite.
Thanks.
 
Back
Top