Date
Using the DATE Function
In this tutorial you will learn how to use the DATE Function.
The DATE function returns the current system date.
=DATE()
The result is 09/08/2014.
FORM
In a Form you could set the Default Value of a Textbox to
=DATE()
VBA
In a Form add a TEXTBOX control and rename it "txtDate", then you could add the following in the Load Event.
Private Sub Form_Load()
txtDate = Date()
End Sub
Course
Access Beginner 3
Search
You can find more about this by searching the website.
By: Alex Hedley
Click here to sign up for more FREE tips
|