Calendar

Nimrod146

Registered User.
Local time
Today, 06:50
Joined
Feb 11, 2007
Messages
11
I need to enter a day and date into a form ... so that when I enter a date, the day will automatically be displayed. What would the best way of achieving this be?

Many Thanks
Nim :rolleyes:
 
[your day of week txt box]. value = Format$([Your Date], "dddd")
 
Look in the samples area of the forum as there are some calendar examples there. I use one myself. As for the day as well as the date, just put another text box on the form and within the code to update the one text box with the date, set the value of the other to:

Me.YourTextBoxNameHere = Format(Me.YourOtherDateTextBoxNameHere,"dddd")
 

Users who are viewing this thread

Back
Top Bottom