-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcclreport.lfm
112 lines (112 loc) · 2.38 KB
/
cclreport.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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
object CCLReportForm: TCCLReportForm
Left = 887
Height = 228
Top = 296
Width = 238
BorderStyle = bsDialog
Caption = 'CCL Report'
ClientHeight = 228
ClientWidth = 238
OnShow = FormShow
LCLVersion = '2.0.6.0'
object CCLDateStart: TDateEdit
Left = 96
Height = 33
Top = 8
Width = 120
CalendarDisplaySettings = [dsShowHeadings, dsShowDayNames]
DateOrder = doNone
DateFormat = 'dd-mm-yyyy'
ButtonWidth = 23
NumGlyphs = 1
MaxLength = 0
TabOrder = 0
Text = 'CCLDateStart'
end
object LabRepStart: TLabel
Left = 16
Height = 15
Top = 12
Width = 89
Caption = 'Report &From:'
FocusControl = CCLDateStart
ParentColor = False
end
object LabRepEnd: TLabel
Left = 16
Height = 15
Top = 52
Width = 70
Caption = 'Report &To:'
FocusControl = CCLDateEnd
ParentColor = False
end
object CCLDateEnd: TDateEdit
Left = 96
Height = 33
Top = 48
Width = 120
CalendarDisplaySettings = [dsShowHeadings, dsShowDayNames]
DateOrder = doNone
DateFormat = 'dd-mm-yyyy'
ButtonWidth = 23
NumGlyphs = 1
MaxLength = 0
TabOrder = 1
Text = 'CCLDateEnd'
end
object RadioGroup1: TRadioGroup
Left = 16
Height = 81
Top = 88
Width = 201
AutoFill = True
Caption = 'Report Style'
ChildSizing.LeftRightSpacing = 6
ChildSizing.EnlargeHorizontal = crsHomogenousChildResize
ChildSizing.EnlargeVertical = crsHomogenousChildResize
ChildSizing.ShrinkHorizontal = crsScaleChilds
ChildSizing.ShrinkVertical = crsScaleChilds
ChildSizing.Layout = cclLeftToRightThenTopToBottom
ChildSizing.ControlsPerLine = 1
ClientHeight = 63
ClientWidth = 199
TabOrder = 2
object RadSummary: TRadioButton
Left = 6
Height = 32
Top = 0
Width = 187
Caption = '&Summary'
Checked = True
TabOrder = 0
TabStop = True
end
object RadDetail: TRadioButton
Left = 6
Height = 31
Top = 32
Width = 187
Caption = '&Detail'
TabOrder = 1
end
end
object ButExport: TButton
Left = 141
Height = 25
Top = 184
Width = 75
Caption = 'E&xport'
OnClick = ButExportClick
TabOrder = 3
end
object ButCanc: TButton
Left = 16
Height = 25
Top = 184
Width = 75
Caption = '&Cancel'
OnClick = ButCancClick
TabOrder = 4
end
end