Calendar Pop up - Arvin Meyer

A

Abhijeet

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

Abhijeet

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
 
K

KLP

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
 
Top