place a textbox on the form. The in the design mode, click on properties and on the doubleclick event, write the following code;
Me.textbox0 = int(now())
now() is a function whose data on the left of the decimal point is the date and on the right is the time from midnight to midnight. Thus the use int() cuts off the time. I always do a doublclick on a date field and put the above as shown. I also check to see if isnull(me.field?) before doing it. This makes a nice place to do an if/else and if the date has been input go forward or backward a date to help the user get the date without ever having to type it in. Questions?
rollie@bwsys.net