-
Notifications
You must be signed in to change notification settings - Fork 0
/
time_dlg.lfm
98 lines (98 loc) · 1.72 KB
/
time_dlg.lfm
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
object frmTimeDlg: TfrmTimeDlg
Left = 788
Height = 97
Top = 423
Width = 265
BorderIcons = [biSystemMenu]
Caption = 'Setze eine Zeit'
ClientHeight = 97
ClientWidth = 265
Constraints.MaxHeight = 97
Constraints.MaxWidth = 265
Constraints.MinHeight = 97
Constraints.MinWidth = 265
Position = poMainFormCenter
LCLVersion = '3.0.0.3'
object edt_hr_in: TEdit
Left = 16
Height = 23
Top = 32
Width = 80
TabOrder = 0
Text = '12'
OnChange = edt_hr_inChange
end
object ud_hour: TUpDown
Left = 102
Height = 31
Top = 28
Width = 17
Min = 0
OnClick = ud_hourClick
Position = 0
TabOrder = 1
end
object edt_min_in: TEdit
Left = 150
Height = 23
Top = 32
Width = 80
TabOrder = 2
Text = '00'
OnChange = edt_min_inChange
end
object ud_minute: TUpDown
Left = 236
Height = 31
Top = 28
Width = 17
Min = 0
OnClick = ud_minuteClick
Position = 0
TabOrder = 3
end
object Label1: TLabel
Left = 16
Height = 15
Top = 8
Width = 40
Caption = 'Stunde:'
end
object Label2: TLabel
Left = 150
Height = 15
Top = 8
Width = 48
Caption = 'Minuten:'
end
object Label3: TLabel
Left = 134
Height = 20
Top = 35
Width = 3
Caption = ':'
Font.CharSet = ANSI_CHARSET
Font.Height = -15
Font.Pitch = fpVariable
Font.Quality = fqDraft
ParentFont = False
end
object btn_ok: TButton
Left = 96
Height = 25
Top = 64
Width = 75
Caption = 'OK'
ModalResult = 1
TabOrder = 4
end
object btn_abort: TButton
Left = 178
Height = 25
Top = 64
Width = 75
Caption = 'Abbrechen'
ModalResult = 3
TabOrder = 5
end
end