Time Date

  • Thread starter Thread starter none
  • Start date Start date
N

none

Using one of my forms 2 options for time and date

I would like to put the time and date in manually (any time or date ie:the
past)
or use a button to put in the time and date as in now

Thanx chaz
 
Using one of my forms 2 options for time and date

I would like to put the time and date in manually (any time or date ie:the
past)
or use a button to put in the time and date as in now

Thanx chaz

Ctrl-; will put in the current date/time; or you can use a Command
Button with code in its Click event:

Private Sub cmdNow_Click()
Me!controlname = Now()
End Sub
 
Back
Top