source: trunk/Forms/FormNameDetails.pas

Last change on this file was 162, checked in by chronos, 11 months ago
  • Modified: Updated Common package.
File size: 510 bytes
Line 
1unit FormNameDetails;
2
3interface
4
5uses
6 Classes, SysUtils, Forms, Controls, Graphics, Dialogs, StdCtrls, FormEx;
7
8type
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
28implementation
29
30{$R *.lfm}
31
32end.
33
Note: See TracBrowser for help on using the repository browser.