I have a textbox named Completedate. I want to have a piece of code written so that it will enter todays date when double clicked. Thats the easy part. I can change it in the event on double click and do a:
Me.Completedate = Date()
ok now there are several hundred other textboxes i need to do the same thing with so i was wondering if there was a way to reference itself instead of typing Me.Whatever each time, and instead highlight all of them at once and write the code for all of them at once instead of each individual one?
Bill
Me.Completedate = Date()
ok now there are several hundred other textboxes i need to do the same thing with so i was wondering if there was a way to reference itself instead of typing Me.Whatever each time, and instead highlight all of them at once and write the code for all of them at once instead of each individual one?
Bill