Calendar will not transfer date to text box?

J

Jenna

I have a calendar on my form that i want to use to imput data into a text box
but i have not been able to get it to work. They are bound to same control
and i even tryed adding a requery to the calendar update code. I am using
access 2003 i tryed downloading a sample from 2000 but the calendar in that
also did not work. Any i ideas would be helpful. thanks
 
S

Steve

Put the following code in the AfterUpdate event of the calendar:
Me!NameOfYourTextBox = Me!NameOfYourCalendar.Value

PC Datasheet
Providing Customers A Resource For Help With Access, Excel And Word
Applications
[email protected]
 
J

Jenna

Thanks that worked!

Steve said:
Put the following code in the AfterUpdate event of the calendar:
Me!NameOfYourTextBox = Me!NameOfYourCalendar.Value

PC Datasheet
Providing Customers A Resource For Help With Access, Excel And Word
Applications
[email protected]
 
Top