source: cprs/trunk/BDK50/BDK32_P50/Source/fSSHUsername.pas@ 1678

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

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

File size: 545 bytes
Line 
1unit fSSHUsername;
2
3interface
4
5uses
6 Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
7 StdCtrls;
8
9type
10 TSSHUsername = 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 SSHUsername: TSSHUsername;
24
25implementation
26
27{$R *.DFM}
28
29procedure TSSHUsername.Button1Click(Sender: TObject);
30begin
31 Close;
32end;
33
34end.
Note: See TracBrowser for help on using the repository browser.