home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 1997 May / Pcwk0597.iso / delphi / megapanl.exe / SAMPLE.ZIP / TEST2.PAS < prev    next >
Pascal/Delphi Source File  |  1996-04-30  |  701b  |  37 lines

  1. unit Test2;
  2.  
  3. interface
  4.  
  5. uses
  6.   SysUtils, WinTypes, WinProcs, Messages, Classes, Graphics, Controls,
  7.   Forms, Dialogs, DB, DBTables, StdCtrls, DBCtrls, Mask, DBLookup,
  8.   ExtCtrls, MegaPanl, Buttons;
  9.  
  10. type
  11.   TForm2 = class(TForm)
  12.     MegaPanel1: TMegaPanel;
  13.     DBComboBox1: TDBComboBox;
  14.     DBEdit1: TDBEdit;
  15.     DBNavigator1: TDBNavigator;
  16.     DBMemo1: TDBMemo;
  17.     OrderSource: TDataSource;
  18.     Orders: TTable;
  19.     Customers: TTable;
  20.     CustomerSource: TDataSource;
  21.     DBLookupCombo1: TDBLookupCombo;
  22.     BitBtn1: TBitBtn;
  23.   private
  24.     { Private declarations }
  25.   public
  26.     { Public declarations }
  27.   end;
  28.  
  29. var
  30.   Form2: TForm2;
  31.  
  32. implementation
  33.  
  34. {$R *.DFM}
  35.  
  36. end.
  37.