{***************************************************************}
{                                                               }
{   TDateTimePicker component                                       }
{   Date:    Sep, 23 1996                                       }
{   Version: 0.2 bate                                           }
{   Author:  Andy Lee Yiu                                       }
{   System:  Delphi 2.0 with MS IE 3.0 or greater installed     }
{                                                               }
{   E-Mail: andylee@hkstar.com                                  }
{                                                               }
{***************************************************************}
{ Sep, 23 1996 Version 0.1 bate
  TDateTimePicker is a customizable calendar and time control,
  subclass the new common control shipped with MS IE 3.0, that allow users
  select a date or time in the control. this control has two operation modes
  Date mode: as a combobox like control, user can drop down monthly calendar
             by Setting the DateTimeStyle property to dtLongDate or dtShortDate
             and the DateUpdown property to False, if True, it show the up down
             button insteat of drop down monthly calendar.

             if monthly calendar mode is set, user can change the calendar color
             by the CalendarBackground, CalendarText, CalendarTitleBK,
             CalendarTitleText, CalendarMonthBK, CalendarTrailingText property.

  Time mode: as a updown edit control the time editing by set the DateTimeStyle
             property to dtTime.

  User can set AppCanParse to set editing control for both modes and set the
  display format by the format property.


  Runtime properties:
    SystemTime : TDatetime ; get ot set the control date time;
    CalenlarHandle : THandle ; return the MonthlyCalendar control handle
                               * MonthlyCalendar with implement later.

 30, sep 1996 Version 0.2 bate
 1. Add Min Date / Max Date    // Max does't work correctly
 2. Add event OnDateTimeChange, OnCloseUp, OnDropDown;

  future:
    few control events will added
    Dataward control
}
