home *** CD-ROM | disk | FTP | other *** search
/ Night Owl 25 / nopv25.iso / 040A / TSTRETCH.ZIP / 16BIT.ZIP / TSDem104.pas < prev    next >
Encoding:
Pascal/Delphi Source File  |  1997-03-17  |  968 b   |  49 lines

  1. unit Tsdem104;
  2.  
  3. interface
  4.  
  5. uses
  6.   SysUtils, WinTypes, WinProcs, Messages, Classes, Graphics, Controls,
  7.   Forms, Dialogs, Spin, Grids, Calendar, FileCtrl, DBCtrls, StdCtrls,
  8.     Gauges, ExtCtrls, Buttons, TabNotBk, STRCH103, Strch104;
  9.  
  10. type
  11.     TStretchDemo = class(TForm)
  12.         Stretchy1: TStretchPanel;
  13.         Stretchy2: TStretchPanel;
  14.         Label1: TLabel;
  15.         Gauge1: TGauge;
  16.         Button1: TButton;
  17.         ListBox1: TListBox;
  18.         DirectoryListBox1: TDirectoryListBox;
  19.         Calendar1: TCalendar;
  20.         Memo1: TMemo;
  21.         Edit1: TEdit;
  22.         CheckBox1: TCheckBox;
  23.         TabbedNotebook1: TTabbedNotebook;
  24.         Label2: TLabel;
  25.         SpeedButton1: TSpeedButton;
  26.     procedure SpeedButton1Click(Sender: TObject);
  27.     private
  28.     { Private declarations }
  29.     public
  30.         { Public declarations }
  31.     end;
  32.  
  33. var
  34.     StretchDemo: TStretchDemo;
  35.  
  36. implementation
  37.  
  38. uses AbtTS104;
  39.  
  40. {$R *.DFM}
  41.  
  42. procedure TStretchDemo.SpeedButton1Click(Sender: TObject);
  43. begin
  44.     AboutStretch16.Show;
  45. end;
  46.  
  47. initialization
  48. end.
  49.