Hide Date Picker

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Sorry to bother you all, but I wasn't able to find an answer in the other
posts.

Need to know if it's possible to show\hide the active X date picker either
through code or a macro. Thanks.
 
John said:
Sorry to bother you all, but I wasn't able to find an answer in the other
posts.

Need to know if it's possible to show\hide the active X date picker either
through code or a macro. Thanks.

Something like this ought to work:

Sub cmdCalendar_Click()
Me.calCtl.Visible = Not Me.calCtl.Visible
End Sub
--
Arvin Meyer, MCP, MVP
Microsoft Access
Free Access downloads
http://www.datastrat.com
http://www.mvps.org/access
 
Back
Top