home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / sibdemo3.zip / SAMPLES.DAT / SAMPLES / ADDONSMP / CALUNIT.PAS < prev    next >
Pascal/Delphi Source File  |  1997-07-02  |  381b  |  25 lines

  1. Unit CalUnit;
  2.  
  3. Interface
  4.  
  5. Uses
  6.   Classes, Forms, Graphics, Calendar;
  7.  
  8. Type
  9.   TCalendarForm = Class (TForm)
  10.     Calendar1: TCalendar;
  11.   Private
  12.     {Insert private declarations here}
  13.   Public
  14.     {Insert public declarations here}
  15.   End;
  16.  
  17. Var
  18.   CalendarForm: TCalendarForm;
  19.  
  20. Implementation
  21.  
  22. Initialization
  23.   RegisterClasses ([TCalendarForm, TCalendar]);
  24. End.
  25.