I'd like to click into a text box and have the current Date/Time inserted into the text box. Can someone tell me the code for that?
I'd like to click into a text box and have the current Date/Time inserted into the text box. Can someone tell me the code for that?
you can use this =Date() and this will show the current date in the text box
me.TextboxName.Value = Now
Thanks ItsMe...that's what I was looking for.
Now I just need to make it stop inserting the date/time after the first OnClick so I can write some text!
Never mind... I changed to OnFocus and it works like it should.
Cool, don't think I would have thought of that.