Time 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
 
J

John Vinson

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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top