Be aware, though, that Now includes both date and time.
While that's often what you want, it does mean that you will be unable to
simply query by date: you can't, for instance, do a SELECT * FROM MyTable
WHERE MyDateField = #08/24/2005# to get all of the records associated with
yesterday. (Of course, there's an easy workaround: SELECT * FROM MyTable
WHERE MyDateField Between #08/24/2005# And #08/25/2005#)