Automatically copy user's data from 1 text box to another on same

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I was unable to find similar problem in threads. I have a form with a text
box for the user to enter a date. Once the user enters a date, I would like
for it to automatically copy into and override the existing date in another
text box on the same form. Is this possible? Any help is appreciated.
 
Judy,

Put in the AFTERUPDATE event of TXTDATE1
me.txtdate2 = me.txtdate1

Should take care of what you need to do, if I understand your question...

hth

Vanya
 
JudyB said:
I was unable to find similar problem in threads. I have a form with a text
box for the user to enter a date. Once the user enters a date, I would like
for it to automatically copy into and override the existing date in another
text box on the same form. Is this possible?


Just use a line of code in the first text box's AfterUpdate
event procedure:

Me.textbox2 = Me.textbox1
 
Back
Top