Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Calendar Control

Status
Not open for further replies.

yakdogs

Programmer
Aug 13, 2002
40
US
I have a Active X calendar control which when a date is pick saves to a field in the table.

My question is, the calendar is visible all the time, how can make it visible only when needed for that field?

 
In the date field's Got Focus event put:

Me![CalendarControl].Visible = True

Then on the date field's Lost Focus event put:

Me![CalendarControl].Visible = False

Good Luck!! Anthony J. DeSalvo
President - ScottTech Software
"Integrating Technology with Business"
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top