-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathunit3.lfm
More file actions
100 lines (100 loc) · 1.6 KB
/
unit3.lfm
File metadata and controls
100 lines (100 loc) · 1.6 KB
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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
object Form3: TForm3
Left = 324
Height = 240
Top = 107
Width = 320
Caption = 'Form3'
ClientHeight = 240
ClientWidth = 320
Position = poScreenCenter
LCLVersion = '4.99.0.0'
object Button1: TButton
Left = 16
Height = 25
Top = 144
Width = 75
Caption = 'Testlogin'
TabOrder = 0
OnClick = Button1Click
end
object Label1: TLabel
Left = 8
Height = 16
Top = 18
Width = 24
Caption = 'URL'
end
object Edit1: TEdit
Left = 96
Height = 26
Top = 8
Width = 152
TabOrder = 1
Text = 'Edit1'
end
object Label2: TLabel
Left = 8
Height = 16
Top = 48
Width = 26
Caption = 'Port'
end
object Edit2: TEdit
Left = 96
Height = 26
Top = 38
Width = 152
TabOrder = 2
Text = 'Edit2'
end
object Label3: TLabel
Left = 8
Height = 16
Top = 80
Width = 61
Caption = 'Username'
end
object Edit3: TEdit
Left = 96
Height = 26
Top = 70
Width = 152
TabOrder = 3
Text = 'Edit3'
end
object Label4: TLabel
Left = 8
Height = 16
Top = 112
Width = 58
Caption = 'Password'
end
object Edit4: TEdit
Left = 96
Height = 26
Top = 102
Width = 152
EchoMode = emPassword
PasswordChar = '*'
TabOrder = 4
Text = 'Edit4'
end
object Button2: TButton
Left = 232
Height = 25
Top = 208
Width = 75
Caption = 'OK'
ModalResult = 1
TabOrder = 5
end
object Button3: TButton
Left = 8
Height = 25
Top = 208
Width = 75
Caption = 'Cancel'
ModalResult = 2
TabOrder = 6
end
end