Date() gives the current date (on the computer)
Time() gives the current time
Now() gives the current date and time
They work for me in Access97 by putting one of them in the Default Value property of a text box on a form.
Access has some quirks that will sometimes cause things to work one time and not another for no apparent reason. Luckily, there are usually a couple of different ways to do thing and they don't usually all fail . . .
If
Date()
doesn't work, try
=Date()
If that doesn't work put the following code in the Form_BeforeInsert event
txtDataDate = Date()
If all three fail to work, get a Mountain Dew, a (large) pack of M&M's, and 2 Hershey's bars. Eat them all, wait 15 minutes, and let the Beavis in you try to figure it out . . . _________
Rott Paws
...It's not a bug. It's an undocumented feature.