home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World Plus! (NZ) 2001 June
/
HDC50.iso
/
Runimage
/
Delphi50
/
Objrepos
/
OKCANCL2.PAS
< prev
next >
Wrap
Pascal/Delphi Source File
|
1999-08-11
|
392b
|
27 lines
unit OkCancl2;
interface
uses Windows, SysUtils, Classes, Graphics, Forms, Controls, StdCtrls,
Buttons, ExtCtrls;
type
TOKRightDlg = class(TForm)
OKBtn: TButton;
CancelBtn: TButton;
Bevel1: TBevel;
private
{ Private declarations }
public
{ Public declarations }
end;
var
OKRightDlg: TOKRightDlg;
implementation
{$R *.DFM}
end.