home *** CD-ROM | disk | FTP | other *** search
/ Night Owl 25 / nopv25.iso / 035A / COMPED2.ZIP / MAIN.PAS < prev    next >
Encoding:
Pascal/Delphi Source File  |  1997-03-13  |  735 b   |  39 lines

  1. unit Main;
  2.  
  3. interface
  4.  
  5. uses
  6.   Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
  7.   StdCtrls, Mask, Buttons, ComCtrls, DB, DBTables;
  8.  
  9. type
  10.   TMainForm = class(TForm)
  11.     SpeedButton1: TSpeedButton;
  12.     MaskEdit1: TMaskEdit;
  13.     CheckBox1: TCheckBox;
  14.     ComboBox1: TComboBox;
  15.     SpeedButton2: TSpeedButton;
  16.     Table1: TTable;
  17.     DataSource1: TDataSource;
  18.     procedure SpeedButton1Click(Sender: TObject);
  19.   private
  20.     { Private declarations }
  21.   public
  22.     { Public declarations }
  23.   end;
  24.  
  25. var
  26.   MainForm: TMainForm;
  27.  
  28. implementation
  29.  
  30. {$R *.DFM}
  31. Uses
  32.      E_CmpEd;
  33. procedure TMainForm.SpeedButton1Click(Sender: TObject);
  34. begin
  35.   CompEditForm.Execute(Self,False);
  36. end;
  37.  
  38. end.
  39.