Date Stamp

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • climber
    New Member
    • Jun 2007
    • 4

    Date Stamp

    Hello,
    I am attemping to append a memo box or text box with a time/date stamp. What I would like to happen is either when I click a button the time/date stamp prints below what is already typed into the text box or it prints brlow the entered text whenever I click on the text box.

    Ex.
    Hello how are you!

    6/5/07 1:15:00

    I am fine!

    6/6/07 2:14:00

    I hope this makes since and thank you for any help you can offer!

    Great!
  • NeoPa
    Recognized Expert Moderator MVP
    • Oct 2006
    • 32668

    #2
    In the AfterUpdate event procedure have some code that says :
    Code:
    [YourControl] = [YourControl] + Format(Now()," m/d/yy h:nn:ss")

    Comment

    • climber
      New Member
      • Jun 2007
      • 4

      #3
      Great! Thanks so much for the help.

      Comment

      • NeoPa
        Recognized Expert Moderator MVP
        • Oct 2006
        • 32668

        #4
        Not a problem. Glad it worked out for you :)

        Comment

        Working...