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

  1. unit Stretch32Demo;
  2.  
  3. interface
  4.  
  5. uses
  6.   Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
  7.   FileCtrl, Buttons, Gauges, StdCtrls, Grids, Calendar, ComCtrls, Tabnotbk,
  8.   ExtCtrls, TStretch103, TStretch104;
  9.  
  10. type
  11.   TForm1 = class(TForm)
  12.     StretchPanel1: TStretchPanel;
  13.     Memo1: TMemo;
  14.     Label2: TLabel;
  15.     TabbedNotebook1: TTabbedNotebook;
  16.     Edit1: TEdit;
  17.     StretchPanel2: TStretchPanel;
  18.     Label1: TLabel;
  19.     Calendar1: TCalendar;
  20.     ListBox1: TListBox;
  21.     CheckBox1: TCheckBox;
  22.     Button1: TButton;
  23.     Gauge1: TGauge;
  24.     SpeedButton1: TSpeedButton;
  25.     DirectoryListBox1: TDirectoryListBox;
  26.     procedure SpeedButton1Click(Sender: TObject);
  27.   private
  28.     { Private declarations }
  29.   public
  30.     { Public declarations }
  31.   end;
  32.  
  33. var
  34.   Form1: TForm1;
  35.  
  36. implementation
  37.  
  38. uses AbtStr104;
  39.  
  40. {$R *.DFM}
  41.  
  42. procedure TForm1.SpeedButton1Click(Sender: TObject);
  43. begin
  44.     AboutStretch32.ShowModal;
  45. end;
  46.  
  47. end.
  48.