Action Button Question

T

Timothy Millar

I have a button that is unbound. I also have a text box. I want to program
the button that when clicked it will place the current date and time at the
end of all text (if applicable) in the text box.

Let me thank you a head of time
 
J

Jeanette Cunningham

Put code like this on the click event of the button.
Me.txt1 = Me.txt1 & " " & Now()

note: replace txt1 with your own object name.


Jeanette Cunningham MS Access MVP -- Melbourne Victoria Australia
 

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