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