clock

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I added a clock to a form but it only appears when clicked.
I tried on open, on load, is there something I can add to the code to have
it appear when the form opens???

Private Sub Form_Load()
End Sub

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

Thanks
 
Ok, that made the seconds count but it still does not appear when the form is
opened... I have to click on the Label to make it appear...

Suggestions??
 
Back
Top