home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World 1999 October
/
PCWorld_1999-10_cd1.bin
/
delphi
/
INSTALL
/
DATA1.CAB
/
Program_Built_Files
/
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.