Ask a Question related to Microsoft Access, Design and Development.
-
mate #1
Time Stamp on a record
I have a subform within a form. When a user creates a new
record in the subform, I would like to have the date/time
automatically stamped on that record at the time of
creation. I've tried doing this, but whenever i access
that record at a later time, it shows up with the current
time instead of when it was created. Any help would be
great! thanks. mate
mate Guest
-
fms core backwards time stamp
I am getting constant errors regarding 'backward timestamps' that crash fms core. I have seen the thread that suggests disabling time synchs as a... -
Time/Date Stamp on Note
Is there a way to turn off the time/date stamp on the Notes feature in Acrobat 5.0? -
Automatically adding date/time stamp to an edited record
To record just the date/time the record was created: Add a new Date/Time field to your table, and set its Default Value property to: =Now() To... -
time stamp
Good Luck! There is no way that I can conceive of in Access to link _part_ _of_ an entry in a field with another field or record in the way that... -
Date and Time stamp
Without knowing what code/expressions/setup you're using, I would guess that the references on the Win 95 PCs are missing some library. Open up... -
Fredg #2
Re: Time Stamp on a record
Try setting the Before Update event of the sub form:
If IsNull([DateField]) then
[DateField] = Now
End If
--
Fred
Please reply only to this newsgroup.
I do not reply to personal e-mail.
"mate" <matt@artcraftpromos.com> wrote in message
news:0edc01c351f2$51974730$a301280a@phx.gbl...> I have a subform within a form. When a user creates a new
> record in the subform, I would like to have the date/time
> automatically stamped on that record at the time of
> creation. I've tried doing this, but whenever i access
> that record at a later time, it shows up with the current
> time instead of when it was created. Any help would be
> great! thanks. mate
Fredg Guest



Reply With Quote

