home *** CD-ROM | disk | FTP | other *** search
/ Chip 2002 September / Chip_2002-09_cd1.bin / zkuste / delphi / kompon / d456 / EKRTF.ZIP / MainDemo / UCustSel.pas < prev    next >
Pascal/Delphi Source File  |  2000-09-24  |  460b  |  30 lines

  1. unit UCustSel;
  2.  
  3. interface
  4.  
  5. uses
  6.   Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs, unit2,
  7.   StdCtrls, Grids, DBGrids, Db;
  8.  
  9. type
  10.   TCustSel = class(TForm)
  11.     DSCust: TDataSource;
  12.     CustGrid: TDBGrid;
  13.     OkBtn: TButton;
  14.     Label1: TLabel;
  15.     CanBtn: TButton;
  16.   private
  17.     { Private declarations }
  18.   public
  19.     { Public declarations }
  20.   end;
  21.  
  22. var
  23.   CustSel: TCustSel;
  24.  
  25. implementation
  26.  
  27. {$R *.DFM}
  28.  
  29. end.
  30.