Calendar

C

Chuck

Is there a way to display a calendar on a continious form
for users to select a date to be entered into a control
of the active record without having each record area
large enough to hold the whole calendar? I have
everything working from a command button but when the
calendar is displayed each record row is enlarged way
past the size needed to hold the display data. Thanks
Chuck
 
E

Ed Robichaud

Have you considered using the calendar as a separate pop-up form? There are
many free/shareware calendar forms, as well as the MS active-X calendar
control that would allow users to click a command button (or better still,
double-click any date field) and use a pop-up calendar to assist in date
field entries.
-Ed
 
V

Van T. Dinh

Use a CommandButton on your Form in ContinuousFormView to open a Form
(Pop-up And Modal) which has the Calendar Control.
 
C

Chuck

Wayne,
The examples are slick. When I copied the code to my mdb
and ran it I get a 6 month calendar display instead of
just 1 month as in the example. Ant clue why?
Thanks
Chuck
 
W

Wayne Morgan

There should be a Properties menu at the top of the calendar where you can
select the number of viewable months. It appears to remember your last
selection.
 
S

Stephen Lebans

Hi Wayne,
all of the exposed properties accessable via the menus or
programmatically are saved into Custom Props within the MDB.

--

HTH
Stephen Lebans
http://www.lebans.com
Access Code, Tips and Tricks
Please respond only to the newsgroups so everyone can benefit.
 
W

Wayne Morgan

Thanks Stephen,

I hadn't gone through all of the code yet to track down what was where. This will make it
easier.
 
Top