home *** CD-ROM | disk | FTP | other *** search
/ Night Owl 25 / nopv25.iso / 040A / CBPLUS32.ZIP / NEWREC.PAS < prev    next >
Encoding:
Pascal/Delphi Source File  |  1995-10-12  |  568 b   |  35 lines

  1. unit Newrec;
  2.  
  3. interface
  4.  
  5. uses WinTypes, WinProcs, Classes, Graphics, Forms, Controls, Buttons,
  6.   StdCtrls, ExtCtrls;
  7.  
  8. type
  9.   TFormNewRec = class(TForm)
  10.     OKBtn: TBitBtn;
  11.     CancelBtn: TBitBtn;
  12.     Bevel1: TBevel;
  13.     Label1: TLabel;
  14.     EditIDNo: TEdit;
  15.     Label2: TLabel;
  16.     EditCompany: TEdit;
  17.     Label3: TLabel;
  18.     Label4: TLabel;
  19.     EditYears: TEdit;
  20.     EditOwner: TEdit;
  21.   private
  22.     { Private declarations }
  23.   public
  24.     { Public declarations }
  25.   end;
  26.  
  27. var
  28.   FormNewRec: TFormNewRec;
  29.  
  30. implementation
  31.  
  32. {$R *.DFM}
  33.  
  34. end.
  35.