home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
DOS/V Power Report 1997 August
/
VPR9708A.ISO
/
D3TRIAL
/
INSTALL
/
DATA.Z
/
OKCANCL1.PAS
< prev
next >
Wrap
Pascal/Delphi Source File
|
1997-05-02
|
380b
|
27 lines
unit OkCancl1;
interface
uses Windows, SysUtils, Classes, Graphics, Forms, Controls, StdCtrls,
Buttons, ExtCtrls;
type
TOKBottomDlg = class(TForm)
OKBtn: TButton;
CancelBtn: TButton;
Bevel1: TBevel;
private
{ Private 宣言 }
public
{ Public 宣言 }
end;
var
OKBottomDlg: TOKBottomDlg;
implementation
{$R *.DFM}
end.