Calendar

dr223

Registered User.
Local time
Today, 07:40
Joined
Nov 15, 2007
Messages
219
Hallo,

I have downloaded a calendar mdb from the link below from this site.

http://allenbrowne.com/ser-51.html

I managed to import it successfully into my database. However, the title bar still says " Set the start date" I would like to change this to " Date Obtained"..

Any help....

Thanks
 
Did you read the instructions in that webpage? It explicitly tells you how to do it:

Allen Browne's Web page said:
Set the On Click property of the button to something like this:
=CalendarFor([SaleDate], "Select the sale date")

So, to call it you would put this in the On Click property.
=CalendarFor([SaleDate], "Date Obtained")
 
If you are using the Click event to invoke the calendar then change it to:
=CalendarFor([txtStartDate],"Date Obtained")
 
Thank you guys, it has worked perfectly well.
 

Users who are viewing this thread

Back
Top Bottom