-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathRegistration.dfm
74 lines (74 loc) · 1.48 KB
/
Registration.dfm
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
object frmRegistration: TfrmRegistration
Left = 279
Top = 314
BorderIcons = []
BorderStyle = bsSingle
Caption = 'Change Registration Information'
ClientHeight = 141
ClientWidth = 380
Color = clBtnFace
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'MS Sans Serif'
Font.Style = []
OldCreateOrder = False
Position = poMainFormCenter
OnClose = FormClose
OnShow = FormShow
PixelsPerInch = 96
TextHeight = 13
object Label2: TLabel
Left = 32
Top = 8
Width = 125
Height = 13
Caption = 'Change Registered Owner'
end
object Label3: TLabel
Left = 32
Top = 56
Width = 153
Height = 13
Caption = 'Change Registered Organization'
end
object Button1: TButton
Left = 189
Top = 108
Width = 77
Height = 25
Caption = 'Change'
Enabled = False
TabOrder = 2
OnClick = Button1Click
end
object Button2: TButton
Left = 280
Top = 108
Width = 75
Height = 25
Caption = 'Cancel'
TabOrder = 3
OnClick = Button2Click
end
object Edit2: TEdit
Left = 32
Top = 24
Width = 329
Height = 21
ReadOnly = True
TabOrder = 0
Text = 'Error...'
OnKeyPress = Edit2KeyPress
end
object Edit3: TEdit
Left = 32
Top = 72
Width = 329
Height = 21
ReadOnly = True
TabOrder = 1
Text = 'Error...'
OnKeyPress = Edit3KeyPress
end
end