home *** CD-ROM | disk | FTP | other *** search
/ Chip 1999 January / Chip_1999-01_cd.bin / zkuste / delphi / D1 / GCAL.ZIP / DEMO.ZIP / UNIT1.PAS < prev   
Pascal/Delphi Source File  |  1997-03-15  |  1KB  |  48 lines

  1. unit Unit1;
  2.  
  3. interface
  4.  
  5. uses
  6.   SysUtils, WinTypes, WinProcs, Messages, Classes, Graphics, Controls,
  7.   Forms, Dialogs, Grids, Calendar, Gcal, Gcal32;
  8.  
  9. type
  10.   TForm1 = class(TForm)
  11.     GregCalendar1: TGregCalendar;
  12.     procedure FormCreate(Sender: TObject);
  13.   private
  14.     { Private declarations }
  15.   public
  16.     { Public declarations }
  17.   end;
  18.  
  19. var
  20.   Form1: TForm1;
  21.  
  22. implementation
  23.  
  24. {$R *.DFM}
  25.  
  26. procedure TForm1.FormCreate(Sender: TObject);
  27. var
  28.    d : string ;
  29. begin
  30.      d := ExtractFilePath( ParamStr(0) ) ;
  31.      GregCalendar1.AddSpecialDay(Date,
  32.                 d + 'handsh16.bmp', 'Always wash hands to prevent spreading disease') ;
  33.      GregCalendar1.AddSpecialDay(Date + 7,
  34.                 d + 'meeting.ico', 'Monthly staff meeting')  ;
  35.      GregCalendar1.AddSpecialDay(Date + 14,
  36.                 d + 'barchart.ico', 'Annual sales figures due')  ;
  37.      GregCalendar1.AddSpecialDay(Date + 21,
  38.                 d + 'stopsign.ico', 'Stop... in the name of love!')  ;
  39.      GregCalendar1.AddSpecialDay(Date + 28,
  40.                 d + 'skylin16.bmp', 'Out on the town') ;
  41.      GregCalendar1.AddSpecialDay(EncodeDate(1996, 12, 5),
  42.                 d + 'happy.ico', 'This is a special person''s birthday') ;
  43.      GregCalendar1.AddSpecialDay(EncodeDate(1996, 12, 27),
  44.                 d + 'happy.ico', 'This is another special person''s birthday')
  45. end;
  46.  
  47. end.
  48.