home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 1997 May / Pcwk0597.iso / delphi / tenpack.lzh / PCALDEMO.PAS < prev    next >
Pascal/Delphi Source File  |  1995-05-31  |  1KB  |  58 lines

  1. unit pCalDemo;
  2.  
  3. interface
  4.  
  5. uses
  6.   SysUtils, WinTypes, WinProcs, Messages, Classes, Graphics, Controls,
  7.   Forms, Dialogs, StdCtrls, Buttons, pscal;
  8.  
  9. type
  10.   TCalDemo = class(TForm)
  11.     PopCal1: TPopCal;
  12.     Edit1: TEdit;
  13.     SpeedButton1: TSpeedButton;
  14.     Label1: TLabel;
  15.     CheckBox1: TCheckBox;
  16.     procedure SpeedButton1Click(Sender: TObject);
  17.     procedure CheckBox1Click(Sender: TObject);
  18.   private
  19.     { Private declarations }
  20.   public
  21.     { Public declarations }
  22.   end;
  23.  
  24. var
  25.   CalDemo: TCalDemo;
  26.  
  27. implementation
  28.  
  29. {$R *.DFM}
  30.  
  31. procedure TCalDemo.SpeedButton1Click(Sender: TObject);
  32. var
  33.    calleft : integer;
  34.    caltop : integer;
  35. begin
  36.     calleft := caldemo.left + speedbutton1.left;
  37.     caltop := caldemo.top + speedbutton1.top;
  38.     Popcal1.left := calleft;
  39.     Popcal1.top := caltop;
  40.     PopCal1.Format := 'mm/dd/yy';
  41.     if checkbox1.checked = true then
  42.       PopCal1.Format := 'dddddd'
  43.     else
  44.       PopCal1.Format := 'mm/dd/yy';
  45.     PopCal1.GetDate;
  46.     edit1.text := Popcal1.dateselected;
  47. end;
  48.  
  49. procedure TCalDemo.CheckBox1Click(Sender: TObject);
  50. begin
  51.    If Checkbox1.Checked = true then
  52.      Popcal1.Format := 'dddddd'
  53.    else
  54.      Popcal1.Format := 'mm/dd/yy';
  55. end;
  56.  
  57. end.
  58.