source: cprs/trunk/BDK50/BDK32_P50/Source/fPlinkpw.pas@ 1683

Last change on this file since 1683 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: 553 bytes
Line 
1unit fPlinkpw;
2
3interface
4
5uses
6 Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
7 StdCtrls;
8
9type
10 TfPlinkPassword = class(TForm)
11 Edit1: TEdit;
12 Label1: TLabel;
13 Button1: TButton;
14 Label2: TLabel;
15 procedure Button1Click(Sender: TObject);
16 private
17 { Private declarations }
18 public
19 { Public declarations }
20 end;
21
22var
23 fPlinkPassword: TfPlinkPassword;
24
25implementation
26
27{$R *.DFM}
28
29procedure TfPlinkPassword.Button1Click(Sender: TObject);
30begin
31 Close;
32end;
33
34end.
Note: See TracBrowser for help on using the repository browser.