Day
The Day function extracts the day of the month portion of
a date or datetime value. You could do the same thing by using a
call to the DatePart function. The language designers added
this function as a more convenient way to extract the day portion of
a date.
Response "Day of the month is: " & Day(Now())
Likewise, you can extract other commonly used portions of the date
such as Year, Month, Day, Hour, Minute
and Second.
|
 |

|