-
Notifications
You must be signed in to change notification settings - Fork 1
/
uselecttime.lfm
83 lines (83 loc) · 1.45 KB
/
uselecttime.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
object frmSelectTime: TfrmSelectTime
Left = 594
Height = 201
Top = 263
Width = 298
Caption = 'Select time'
ClientHeight = 201
ClientWidth = 298
OnCloseQuery = FormCloseQuery
OnCreate = FormCreate
OnShow = FormShow
LCLVersion = '2.0.4.0'
object lbStartTime: TLabel
Left = 16
Height = 15
Top = 66
Width = 34
Caption = 'Start:'
ParentColor = False
end
object edStartTime: TEdit
Left = 72
Height = 22
Top = 64
Width = 211
TabOrder = 1
end
object lbEndTime: TLabel
Left = 16
Height = 15
Top = 106
Width = 28
Caption = 'End:'
ParentColor = False
end
object edEndTime: TEdit
Left = 72
Height = 22
Top = 104
Width = 211
TabOrder = 2
end
object btOK: TButton
Left = 128
Height = 25
Top = 160
Width = 75
Caption = 'OK'
Default = True
ModalResult = 1
OnClick = btOKClick
TabOrder = 3
end
object btCancel: TButton
Left = 208
Height = 25
Top = 160
Width = 75
Cancel = True
Caption = 'Cancel'
ModalResult = 2
OnClick = btCancelClick
TabOrder = 4
end
object lbTimeFrame: TLabel
Left = 16
Height = 15
Top = 16
Width = 73
Caption = 'Time frame:'
ParentColor = False
end
object cbTimeFrame: TComboBox
Left = 104
Height = 26
Top = 16
Width = 179
ItemHeight = 0
OnChange = cbTimeFrameChange
Style = csDropDownList
TabOrder = 0
end
end