Last change
on this file was 1691, checked in by healthsevak, 10 years ago |
Committing the files for first time to this new branch
|
File size:
447 bytes
|
Line | |
---|
1 | unit fOkToTerminate;
|
---|
2 |
|
---|
3 | interface
|
---|
4 |
|
---|
5 | uses
|
---|
6 | Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
|
---|
7 | StdCtrls;
|
---|
8 |
|
---|
9 | type
|
---|
10 | TfrmOKToTerminate = class(TForm)
|
---|
11 | frmOKToTerminate: TLabel;
|
---|
12 | btnYes: TButton;
|
---|
13 | btnNo: TButton;
|
---|
14 | Label1: TLabel;
|
---|
15 | private
|
---|
16 | { Private declarations }
|
---|
17 | public
|
---|
18 | { Public declarations }
|
---|
19 | end;
|
---|
20 |
|
---|
21 | var
|
---|
22 | frmOKToTerminate: TfrmOKToTerminate;
|
---|
23 |
|
---|
24 | implementation
|
---|
25 |
|
---|
26 | {$R *.DFM}
|
---|
27 |
|
---|
28 | end.
|
---|
Note:
See
TracBrowser
for help on using the repository browser.