there are others
an access date type field actually holds a date and time, and can be displayed in a variety of ways - there are also many functions for handling dates
format is an important one
format(mydate,"dd/mm/yyyy") - is a standard UK date presentation 12/01/2010
format(mydate,"mm/dd/yyyy") - is a US version 01/12/2010
using 3 letters as mmm,
format(mydate,"dd mmm yyyy") - 12 Jan 2010
using 4 letters as mmm,
format(mydate,"dd mmmm yyyy") - 12 January 2010
same principles with dd, ddd, dddd
and there are some "standard" masks
format(mydate,"medium date")
---------------
now you can also test for the day of the week - and vb also gives you easy to remember date constants
so -
if weekday(anydate) = vbsunday then etc
---------------
and many other date functions. Its not generally a good idea to try to roll your own date storage and functions - as they are already there waiting to be used.