Calendar Pop up - Arvin Meyer

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

Guest

Hi Arvin,
I found this post and was trying to have similar funcionality on a form. But
it didnt seem to work for me. I looked up one of your calender zip files and
tried to copy in the popCalenar function but to no luck.
Can you please elaborate a litlle as to how to use that function...or do I
need some addins for my access. I am running a 2003 version.
Thanks & Regards,
Abhijeet
PS: I had replied to the post but I doubt if anyone would be looking it up
again so posted a new question.
 
KLP,
I used a roundabout approach to handle my form. Here's what I did--
-Create a small toggle button adjacent to the datebox.
-Add the calendar from the additional tools menu and set the visible
property of calendar to NO. Set control source as the datebox.
-In the AfterUpdate event of the toggle button use an If statement
---If Toggle21.Value = True Then Calendar0.Visible = True Else:
Calendar0.Visible = False

This option is usable for my form.
Good luck for yours.
--AD
 
Thanks, I'll give it a try.

Abhijeet said:
KLP,
I used a roundabout approach to handle my form. Here's what I did--
-Create a small toggle button adjacent to the datebox.
-Add the calendar from the additional tools menu and set the visible
property of calendar to NO. Set control source as the datebox.
-In the AfterUpdate event of the toggle button use an If statement
---If Toggle21.Value = True Then Calendar0.Visible = True Else:
Calendar0.Visible = False

This option is usable for my form.
Good luck for yours.
--AD
 

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

Back
Top