home *** CD-ROM | disk | FTP | other *** search
/ PC Format Collection 48 / SENT14D.ISO / tech / delphi / disk2 / frmtpl.pak / OKCANCL2.PAS < prev    next >
Encoding:
Pascal/Delphi Source File  |  1995-08-24  |  409 b   |  28 lines

  1. unit Okcancl2;
  2.  
  3. interface
  4.  
  5. uses WinTypes, WinProcs, Classes, Graphics, Forms, Controls, Buttons,
  6.   StdCtrls;
  7.  
  8. type
  9.   TBtnRightDlg = class(TForm)
  10.     OKBtn: TBitBtn;
  11.     CancelBtn: TBitBtn;
  12.     HelpBtn: TBitBtn;
  13.     Bevel1: TBevel;
  14.   private
  15.     { Private declarations }
  16.   public
  17.     { Public declarations }
  18.   end;
  19.  
  20. var
  21.   BtnRightDlg: TBtnRightDlg;
  22.  
  23. implementation
  24.  
  25. {$R *.DFM}
  26.  
  27. end.
  28.