moleary
09-20-2001, 10:40 AM
I have a date field in a form that puts in the current date, but when you re open the form at another time it puts that date in, how do I keep it from changing the date, I want the original date that it was first created to stay in there? is this possilbe???
Jack Cowley
09-20-2001, 02:17 PM
Put 'Date()' (sans quotes) in the Default Value of the field. Then the date will only be entered when you enter a new record.
jwindon
09-20-2001, 04:04 PM
moleary:
Are you storing the date in your table? It sounds like your field is unbound in which case, it WILL change every day or time.
If you are wanting to save the date of a record being entered. Set the default value of your field to now() in table design view. You can add code on your form on the Form's AfterUpdate event to set the value of the RecordEntered date field to a new NOW().
HTH
moleary
09-21-2001, 07:39 AM
thanks alot!! both helped!~