Automatic Date linked to another field being entered

T

Trey

Is there a way to setup a date field that will
automatically enter the date when any information is
entered into a field next to it?
 
C

chriske911

assign an after update event to the field you want to trigger on and code
like this:
control_to_setvalue_in.value = date( ) or any date you want

grtz
 
D

Douglas J. Steele

If you're talking about doing this in a table, the answer's no. If you're
using a form to update the table, chriske911's solution should work.
 
T

Trey

Thanks so much! Worked great!
-----Original Message-----
Yes, but you haven't qualified your question enough to know exactly what you
are trying to do. What I think you want:

In the AfterUpdate event of the field in which data is being changed

me!MyDateTextBox=Now()

hth
--
-Larry-
--




.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top