Line | |
---|
1 | unit FormNameDetails;
|
---|
2 |
|
---|
3 | interface
|
---|
4 |
|
---|
5 | uses
|
---|
6 | Classes, SysUtils, Forms, Controls, Graphics, Dialogs, StdCtrls, FormEx;
|
---|
7 |
|
---|
8 | type
|
---|
9 |
|
---|
10 | { TFormNameDetails }
|
---|
11 |
|
---|
12 | TFormNameDetails = class(TFormEx)
|
---|
13 | ButtonOk: TButton;
|
---|
14 | ButtonCancel: TButton;
|
---|
15 | EditFirstName: TEdit;
|
---|
16 | EditLastName: TEdit;
|
---|
17 | EditMiddleName: TEdit;
|
---|
18 | EditTitleAfter: TEdit;
|
---|
19 | EditTitleBefore: TEdit;
|
---|
20 | Label1: TLabel;
|
---|
21 | Label25: TLabel;
|
---|
22 | Label26: TLabel;
|
---|
23 | Label27: TLabel;
|
---|
24 | Label5: TLabel;
|
---|
25 | end;
|
---|
26 |
|
---|
27 |
|
---|
28 | implementation
|
---|
29 |
|
---|
30 | {$R *.lfm}
|
---|
31 |
|
---|
32 | end.
|
---|
33 |
|
---|
Note:
See
TracBrowser
for help on using the repository browser.