Hide Date Picker

J

John

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.
 
A

Arvin Meyer [MVP]

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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top