Action Button Question

  • Thread starter Thread starter Timothy Millar
  • Start date Start date
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
 
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
 
Back
Top