home *** CD-ROM | disk | FTP | other *** search
- unit Stretch32Demo;
-
- interface
-
- uses
- Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
- FileCtrl, Buttons, Gauges, StdCtrls, Grids, Calendar, ComCtrls, Tabnotbk,
- ExtCtrls, TStretch103, TStretch104;
-
- type
- TForm1 = class(TForm)
- StretchPanel1: TStretchPanel;
- Memo1: TMemo;
- Label2: TLabel;
- TabbedNotebook1: TTabbedNotebook;
- Edit1: TEdit;
- StretchPanel2: TStretchPanel;
- Label1: TLabel;
- Calendar1: TCalendar;
- ListBox1: TListBox;
- CheckBox1: TCheckBox;
- Button1: TButton;
- Gauge1: TGauge;
- SpeedButton1: TSpeedButton;
- DirectoryListBox1: TDirectoryListBox;
- procedure SpeedButton1Click(Sender: TObject);
- private
- { Private declarations }
- public
- { Public declarations }
- end;
-
- var
- Form1: TForm1;
-
- implementation
-
- uses AbtStr104;
-
- {$R *.DFM}
-
- procedure TForm1.SpeedButton1Click(Sender: TObject);
- begin
- AboutStretch32.ShowModal;
- end;
-
- end.
-