Feb 4, 2003 #1 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?
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?
Feb 4, 2003 #2 ajdesalvo IS-IT--Management May 1, 2000 334 US 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" Upvote 0 Downvote
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"