LEBANS CALENDAR

D

DOsbourne

I USED THIS CALENDAR AND IT WORKS GREAT. NOW I WANT TO ADJUST IT SOME.

I HAVE A LIST OF DATES EACH DATE IS LISTED FOR DIFFERENT REASONS SUCH AS
VACATION, PERSONAL DAYS ETC.. IS THERE A WAY TO HAVE THE CALENDAR SHOW ALL
THESE DATES AND COLOR CODE THEM SEPARATELY? YELLOW PERSONAL, BLUE VACATION?
ANY HELP WOULD BE GREATLY APPRECIATED.
 
J

Jeff Conrad

If you wouldn't mind could you please not post in all capital letters?
It is a little hard to read and looks like you are shouting at us.
Thanks.

Now to your question.
No, I do not believe this is possible with Stephen's calendar.
Unless of course you do a whole bunch of coding changes.
His calendar class is designed to specifically just allow the
user a simple, fast, and effective way to select a date or a
range of dates. You'll probably need to use a different type
of form-based calendar to achieve your goal.

You might look at some of the other calendar links I have
assembled here:

http://home.bendbroadband.com/conradsystems/accessjunkie/calendars.html

(Watch out for any possible line wrapping on that link)

Good luck,
--
Jeff Conrad
Access Junkie - MVP
http://home.bendbroadband.com/conradsystems/accessjunkie.html
http://www.access.qbuilt.com/html/articles.html

in message:
 
S

Stephen Lebans

Both the Microsoft Month Calendar ActiveX and my MonthCalendar control
expose a DayState property that allows you to BOLD selected dates. It's
not an easy property to use but it does work.
http://www.lebans.com/monthcalendar.htm


In the Form's Load event or anytime before you open the MonthCalendar
use code like:


mc.SetBoldDayState numYear:=2004, numMonth:=1, day:=1, ResetMonth:=True
This BOLDS the date of January 1,2004


It also RESETS any existing BoldDayStates for this Month to NOTHING. In
other words ResetMonth means to clear out all existing Bold DayStates
for this specific month. If you are issuing multiple calls to set this
property then you would only set the optional ResetMonth parameter to
TRUE for the first call!

--

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