Time Stamp for a Newbie

Pappy

Registered User.
Local time
Today, 10:13
Joined
Jun 12, 2003
Messages
28
I need to create a time stamp in a field called "letter mailed" when a button is clicked. I know you have to use VB code, but I'm having some trouble getting it to work. Please kind I'm new to this... Thanks
 
pappy,

In the OnClick event for the button, put:

Me.[Letter Mailed] = Now()

If you didn't put the space in there, you could:

Me.LetterMailed = Now()

Wayne
 
It says this record set is not updateable. I'm adding it to a text box.
 
Pappy,

What is the record source for the form?

Is the text box bound to that?

Need more info, or Compact, ZIP and post the db.

Wayne
 
The form is taken from a query which is from a master table list. The text area currently has nothing in it but is bound to the query.
 

Users who are viewing this thread

Back
Top Bottom