Calendar Control - how to use?

T

T Bennett

Can someone point me to an example of a calendar control being used? I'm
trying to make a timecard, of sorts. I tried the MiniCalendar3 at
wolfwares.com, but it wouldn't open on my computer.

Win XP Pro
Office 2000 Pro

Thanks


___________________
Todd Bennett
Celerity Group, Inc
tbennett<nospam>@celerity.net
 
O

one_too_many

The calendar control is quite simple really. Show it on a form and giv
it a reconisable name e.g. ctlCalender.

When a date is selected in ctlCalender you can get the value to us
elsewhere by referncing the value - ctlCalender.value

Use this to update a table or display/update a txt box.

txtStartDate = ctlCalender.value

M
 
Top