home *** CD-ROM | disk | FTP | other *** search
/ DOS/V Power Report 1997 August / VPR9708A.ISO / D3TRIAL / INSTALL / DATA.Z / OKCANCL1.PAS < prev    next >
Pascal/Delphi Source File  |  1997-05-02  |  380b  |  27 lines

  1. unit OkCancl1;
  2.  
  3. interface
  4.  
  5. uses Windows, SysUtils, Classes, Graphics, Forms, Controls, StdCtrls, 
  6.   Buttons, ExtCtrls;
  7.  
  8. type
  9.   TOKBottomDlg = class(TForm)
  10.     OKBtn: TButton;
  11.     CancelBtn: TButton;
  12.     Bevel1: TBevel;
  13.   private
  14.     { Private 宣言 }
  15.   public
  16.     { Public 宣言 }
  17.   end;
  18.  
  19. var
  20.   OKBottomDlg: TOKBottomDlg;
  21.  
  22. implementation
  23.  
  24. {$R *.DFM}
  25.  
  26. end.
  27.