home *** CD-ROM | disk | FTP | other *** search
- unit Tsdem104;
-
- interface
-
- uses
- SysUtils, WinTypes, WinProcs, Messages, Classes, Graphics, Controls,
- Forms, Dialogs, Spin, Grids, Calendar, FileCtrl, DBCtrls, StdCtrls,
- Gauges, ExtCtrls, Buttons, TabNotBk, STRCH103, Strch104;
-
- type
- TStretchDemo = class(TForm)
- Stretchy1: TStretchPanel;
- Stretchy2: TStretchPanel;
- Label1: TLabel;
- Gauge1: TGauge;
- Button1: TButton;
- ListBox1: TListBox;
- DirectoryListBox1: TDirectoryListBox;
- Calendar1: TCalendar;
- Memo1: TMemo;
- Edit1: TEdit;
- CheckBox1: TCheckBox;
- TabbedNotebook1: TTabbedNotebook;
- Label2: TLabel;
- SpeedButton1: TSpeedButton;
- procedure SpeedButton1Click(Sender: TObject);
- private
- { Private declarations }
- public
- { Public declarations }
- end;
-
- var
- StretchDemo: TStretchDemo;
-
- implementation
-
- uses AbtTS104;
-
- {$R *.DFM}
-
- procedure TStretchDemo.SpeedButton1Click(Sender: TObject);
- begin
- AboutStretch16.Show;
- end;
-
- initialization
- end.
-