source: cprs/trunk/BDK50/BDK32_P50/Samples/RPCBroker/BrokerEx/fOkToTerminate.pas

Last change on this file was 1678, checked in by healthsevak, 10 years ago

Added this new version of Broker component libraries while updating the working copy to CPRS version 28

File size: 447 bytes
RevLine 
[1678]1unit fOkToTerminate;
2
3interface
4
5uses
6 Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
7 StdCtrls;
8
9type
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
21var
22 frmOKToTerminate: TfrmOKToTerminate;
23
24implementation
25
26{$R *.DFM}
27
28end.
Note: See TracBrowser for help on using the repository browser.