IST0020MF.dfm 130 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480
  1. object IST0020M: TIST0020M
  2. Left = 0
  3. Top = 0
  4. HorzScrollBar.Visible = False
  5. VertScrollBar.Visible = False
  6. Caption = 'CCTV'#51217#49549' '#53685#44228
  7. ClientHeight = 763
  8. ClientWidth = 1459
  9. Color = clWhite
  10. DoubleBuffered = True
  11. Font.Charset = DEFAULT_CHARSET
  12. Font.Color = clWindowText
  13. Font.Height = -13
  14. Font.Name = #47569#51008' '#44256#46357
  15. Font.Style = []
  16. KeyPreview = True
  17. OldCreateOrder = False
  18. Position = poOwnerFormCenter
  19. ShowHint = True
  20. OnClose = FormClose
  21. OnCreate = FormCreate
  22. OnShow = FormShow
  23. DesignSize = (
  24. 1459
  25. 763)
  26. PixelsPerInch = 96
  27. TextHeight = 17
  28. object ShpList: TShape
  29. Left = 4
  30. Top = 124
  31. Width = 1450
  32. Height = 635
  33. Anchors = [akLeft, akTop, akRight, akBottom]
  34. Pen.Color = 10849679
  35. Pen.Width = 2
  36. ExplicitWidth = 1346
  37. end
  38. object Bevel1: TBevel
  39. Left = 6
  40. Top = 76
  41. Width = 1449
  42. Height = 44
  43. Anchors = [akLeft, akTop, akRight]
  44. Shape = bsBottomLine
  45. Style = bsRaised
  46. ExplicitWidth = 1345
  47. end
  48. object LblRptTitle: TLabel
  49. Left = 940
  50. Top = 86
  51. Width = 119
  52. Height = 16
  53. Anchors = [akLeft, akTop, akRight]
  54. Caption = 'CCTV'#51217#49549' '#53685#44228
  55. Font.Charset = DEFAULT_CHARSET
  56. Font.Color = clRed
  57. Font.Height = -16
  58. Font.Name = #44404#47548
  59. Font.Style = [fsBold]
  60. ParentFont = False
  61. ParentShowHint = False
  62. ShowHint = True
  63. Visible = False
  64. end
  65. object LblQryDay: TLabel
  66. Left = 681
  67. Top = 86
  68. Width = 58
  69. Height = 16
  70. Anchors = [akLeft, akTop, akRight]
  71. Caption = 'QryDay'
  72. Font.Charset = DEFAULT_CHARSET
  73. Font.Color = clRed
  74. Font.Height = -16
  75. Font.Name = #44404#47548
  76. Font.Style = [fsBold]
  77. ParentFont = False
  78. ParentShowHint = False
  79. ShowHint = True
  80. Visible = False
  81. end
  82. object LblQryYear: TLabel
  83. Left = 745
  84. Top = 86
  85. Width = 65
  86. Height = 16
  87. Anchors = [akLeft, akTop, akRight]
  88. Caption = 'QryYear'
  89. Font.Charset = DEFAULT_CHARSET
  90. Font.Color = clRed
  91. Font.Height = -16
  92. Font.Name = #44404#47548
  93. Font.Style = [fsBold]
  94. ParentFont = False
  95. ParentShowHint = False
  96. ShowHint = True
  97. Visible = False
  98. end
  99. object LblQryTermYear: TLabel
  100. Left = 816
  101. Top = 86
  102. Width = 65
  103. Height = 16
  104. Anchors = [akLeft, akTop, akRight]
  105. Caption = 'QryYear'
  106. Font.Charset = DEFAULT_CHARSET
  107. Font.Color = clRed
  108. Font.Height = -16
  109. Font.Name = #44404#47548
  110. Font.Style = [fsBold]
  111. ParentFont = False
  112. ParentShowHint = False
  113. ShowHint = True
  114. Visible = False
  115. end
  116. object LblQryTm: TLabel
  117. Left = 615
  118. Top = 86
  119. Width = 52
  120. Height = 16
  121. Anchors = [akLeft, akTop, akRight]
  122. Caption = 'QryTm'
  123. Font.Charset = DEFAULT_CHARSET
  124. Font.Color = clRed
  125. Font.Height = -16
  126. Font.Name = #44404#47548
  127. Font.Style = [fsBold]
  128. ParentFont = False
  129. ParentShowHint = False
  130. ShowHint = True
  131. Visible = False
  132. end
  133. object ShpTitle: TShape
  134. Left = 4
  135. Top = 4
  136. Width = 1451
  137. Height = 40
  138. Anchors = [akLeft, akTop, akRight]
  139. Brush.Color = 14671839
  140. Pen.Color = 10849679
  141. Pen.Width = 2
  142. ExplicitWidth = 1269
  143. end
  144. object LblCaption: TLabel
  145. Left = 16
  146. Top = 10
  147. Width = 267
  148. Height = 23
  149. Caption = #53440#51060#53952' '
  150. Font.Charset = DEFAULT_CHARSET
  151. Font.Color = 4740964
  152. Font.Height = -17
  153. Font.Name = #47569#51008' '#44256#46357
  154. Font.Style = [fsBold]
  155. ParentFont = False
  156. ParentShowHint = False
  157. ShowHint = True
  158. end
  159. object PgQuery: TcxPageControl
  160. Tag = 9
  161. Left = 6
  162. Top = 50
  163. Width = 523
  164. Height = 70
  165. Cursor = crHandPoint
  166. Focusable = False
  167. TabOrder = 0
  168. Properties.ActivePage = TsTermYear
  169. Properties.HotTrack = True
  170. Properties.Images = LimgTmp
  171. Properties.Options = [pcoAlwaysShowGoDialogButton, pcoFixedTabWidthWhenRotated, pcoGradient, pcoGradientClientArea, pcoRedrawOnResize]
  172. Properties.TabSlants.Positions = [spRight]
  173. TabSlants.Positions = [spRight]
  174. OnChange = PgQueryChange
  175. ClientRectBottom = 65
  176. ClientRectLeft = 2
  177. ClientRectRight = 518
  178. ClientRectTop = 28
  179. object TsDay: TcxTabSheet
  180. Caption = #49884#44036#45824#48324' '#53685#44228' '
  181. ImageIndex = 2
  182. object DtDay: TDateTimePicker
  183. Left = 216
  184. Top = 9
  185. Width = 156
  186. Height = 25
  187. BevelInner = bvNone
  188. BevelOuter = bvNone
  189. BevelKind = bkFlat
  190. Date = 39924.557697118050000000
  191. Format = ' yyyy'#45380' MM'#50900' dd'#51068
  192. Time = 39924.557697118050000000
  193. DoubleBuffered = True
  194. ImeName = 'Microsoft Office IME 2007'
  195. ParentDoubleBuffered = False
  196. ParentShowHint = False
  197. ShowHint = True
  198. TabOrder = 0
  199. end
  200. object Lbl2: TcxLabel
  201. Left = 164
  202. Top = 10
  203. Caption = #53685#44228#51068
  204. ParentShowHint = False
  205. ShowHint = True
  206. Style.BorderStyle = ebsNone
  207. Style.Edges = [bLeft, bTop, bRight, bBottom]
  208. Style.TextStyle = [fsBold]
  209. Properties.Alignment.Horz = taRightJustify
  210. Properties.Alignment.Vert = taVCenter
  211. Transparent = True
  212. AnchorX = 207
  213. AnchorY = 21
  214. end
  215. end
  216. object TsMon: TcxTabSheet
  217. Caption = #51068#48324' '#53685#44228' '
  218. ImageIndex = 1
  219. object DtMon: TDateTimePicker
  220. Left = 243
  221. Top = 9
  222. Width = 118
  223. Height = 25
  224. BevelInner = bvNone
  225. BevelOuter = bvNone
  226. BevelKind = bkFlat
  227. Date = 39924.557697118050000000
  228. Format = ' yyyy'#45380' MM'#50900
  229. Time = 39924.557697118050000000
  230. DateMode = dmUpDown
  231. ImeName = 'Microsoft Office IME 2007'
  232. ParentShowHint = False
  233. ShowHint = True
  234. TabOrder = 1
  235. end
  236. object cxLabel1: TcxLabel
  237. Left = 191
  238. Top = 9
  239. Caption = #53685#44228#50900
  240. ParentShowHint = False
  241. ShowHint = True
  242. Style.BorderStyle = ebsNone
  243. Style.Edges = [bLeft, bTop, bRight, bBottom]
  244. Style.TextStyle = [fsBold]
  245. Properties.Alignment.Horz = taRightJustify
  246. Properties.Alignment.Vert = taVCenter
  247. Transparent = True
  248. AnchorX = 234
  249. AnchorY = 20
  250. end
  251. end
  252. object TsYear: TcxTabSheet
  253. Caption = #50900#48324' '#53685#44228' '
  254. ImageIndex = 0
  255. object DtYear: TDateTimePicker
  256. Left = 275
  257. Top = 9
  258. Width = 82
  259. Height = 25
  260. BevelInner = bvNone
  261. BevelOuter = bvNone
  262. BevelKind = bkFlat
  263. Date = 39924.557697118050000000
  264. Format = ' yyyy'#45380
  265. Time = 39924.557697118050000000
  266. DateMode = dmUpDown
  267. ImeName = 'Microsoft Office IME 2007'
  268. ParentShowHint = False
  269. ShowHint = True
  270. TabOrder = 1
  271. end
  272. object cxLabel2: TcxLabel
  273. Left = 226
  274. Top = 9
  275. Caption = #53685#44228#45380
  276. ParentShowHint = False
  277. ShowHint = True
  278. Style.BorderStyle = ebsNone
  279. Style.Edges = [bLeft, bTop, bRight, bBottom]
  280. Style.TextStyle = [fsBold]
  281. Properties.Alignment.Horz = taRightJustify
  282. Properties.Alignment.Vert = taVCenter
  283. Transparent = True
  284. AnchorX = 269
  285. AnchorY = 20
  286. end
  287. end
  288. object TsTermYear: TcxTabSheet
  289. Caption = #45380' '#53685#44228' '
  290. ImageIndex = 2
  291. object DtEdYear: TDateTimePicker
  292. Left = 275
  293. Top = 9
  294. Width = 82
  295. Height = 25
  296. BevelInner = bvNone
  297. BevelOuter = bvNone
  298. BevelKind = bkFlat
  299. Date = 39924.557697118050000000
  300. Format = ' yyyy'#45380
  301. Time = 39924.557697118050000000
  302. DateMode = dmUpDown
  303. ImeName = 'Microsoft Office IME 2007'
  304. ParentShowHint = False
  305. ShowHint = True
  306. TabOrder = 1
  307. end
  308. object cxLabel3: TcxLabel
  309. Left = 124
  310. Top = 9
  311. Caption = #53685#44228#45380
  312. ParentShowHint = False
  313. ShowHint = True
  314. Style.BorderStyle = ebsNone
  315. Style.Edges = [bLeft, bTop, bRight, bBottom]
  316. Style.TextStyle = [fsBold]
  317. Properties.Alignment.Horz = taRightJustify
  318. Properties.Alignment.Vert = taVCenter
  319. Transparent = True
  320. AnchorX = 167
  321. AnchorY = 20
  322. end
  323. object DtStYear: TDateTimePicker
  324. Left = 176
  325. Top = 9
  326. Width = 82
  327. Height = 25
  328. BevelInner = bvNone
  329. BevelOuter = bvNone
  330. BevelKind = bkFlat
  331. Date = 39924.557697118050000000
  332. Format = ' yyyy'#45380
  333. Time = 39924.557697118050000000
  334. DateMode = dmUpDown
  335. ImeName = 'Microsoft Office IME 2007'
  336. ParentShowHint = False
  337. ShowHint = True
  338. TabOrder = 0
  339. end
  340. object cxLabel4: TcxLabel
  341. Left = 258
  342. Top = 11
  343. Caption = '~'
  344. ParentFont = False
  345. ParentShowHint = False
  346. ShowHint = True
  347. Style.BorderStyle = ebsNone
  348. Style.Edges = [bLeft, bTop, bRight, bBottom]
  349. Style.Font.Charset = DEFAULT_CHARSET
  350. Style.Font.Color = clBlack
  351. Style.Font.Height = -13
  352. Style.Font.Name = #44404#47548
  353. Style.Font.Style = []
  354. Style.TextStyle = [fsBold]
  355. Style.IsFontAssigned = True
  356. Properties.Alignment.Horz = taRightJustify
  357. Transparent = True
  358. AnchorX = 273
  359. end
  360. end
  361. end
  362. object BtnSearch: TcxButton
  363. Left = 425
  364. Top = 86
  365. Width = 80
  366. Height = 25
  367. Cursor = crHandPoint
  368. Hint = #45936#51060#53552#47484' '#44160#49353#54633#45768#45796'.'
  369. Caption = #51312#54924
  370. Colors.Default = 3893744
  371. TabOrder = 1
  372. Font.Charset = DEFAULT_CHARSET
  373. Font.Color = clWindowText
  374. Font.Height = -13
  375. Font.Name = #47569#51008' '#44256#46357
  376. Font.Style = [fsBold]
  377. ParentFont = False
  378. OnClick = BtnSearchClick
  379. end
  380. object BtnPrint: TcxButton
  381. Left = 1285
  382. Top = 86
  383. Width = 80
  384. Height = 25
  385. Cursor = crHandPoint
  386. Hint = #45936#51060#53552#47484' '#54532#47536#53552#47196' '#52636#47141#54633#45768#45796'.'
  387. Anchors = [akTop, akRight]
  388. Caption = #51064#49604
  389. Colors.Default = 3893744
  390. TabOrder = 2
  391. Visible = False
  392. Font.Charset = DEFAULT_CHARSET
  393. Font.Color = clWindowText
  394. Font.Height = -13
  395. Font.Name = #47569#51008' '#44256#46357
  396. Font.Style = [fsBold]
  397. ParentFont = False
  398. OnClick = BtnPrintClick
  399. end
  400. object BtnExlSave: TcxButton
  401. Left = 1366
  402. Top = 86
  403. Width = 80
  404. Height = 25
  405. Cursor = crHandPoint
  406. Hint = #51312#54924' '#44208#44284' '#45936#51060#53552#47484' '#54028#51068#47196' '#51200#51109#54633#45768#45796'.'
  407. Anchors = [akTop, akRight]
  408. Caption = #51200#51109
  409. Colors.Default = 3893744
  410. TabOrder = 3
  411. Font.Charset = DEFAULT_CHARSET
  412. Font.Color = clWindowText
  413. Font.Height = -13
  414. Font.Name = #47569#51008' '#44256#46357
  415. Font.Style = [fsBold]
  416. ParentFont = False
  417. OnClick = BtnExlSaveClick
  418. end
  419. object PgList: TcxPageControl
  420. Left = 11
  421. Top = 131
  422. Width = 1435
  423. Height = 622
  424. Anchors = [akLeft, akTop, akRight, akBottom]
  425. Focusable = False
  426. ParentBackground = False
  427. ParentShowHint = False
  428. ShowHint = False
  429. TabOrder = 4
  430. Properties.ActivePage = TsListDay
  431. Properties.HotTrack = True
  432. ClientRectBottom = 617
  433. ClientRectLeft = 2
  434. ClientRectRight = 1430
  435. ClientRectTop = 28
  436. object TsListDay: TcxTabSheet
  437. Caption = #49884#44036#45824#48324' '#53685#44228
  438. ImageIndex = 0
  439. object CxDay: TcxGrid
  440. Left = 0
  441. Top = 0
  442. Width = 1428
  443. Height = 263
  444. Align = alClient
  445. TabOrder = 0
  446. object TcDay: TcxGridDBChartView
  447. DiagramLine.Active = True
  448. object cDaySeries1: TcxGridDBChartSeries
  449. DataBinding.FieldName = 'C00'
  450. end
  451. object cDaySeries2: TcxGridDBChartSeries
  452. DataBinding.FieldName = 'C01'
  453. end
  454. object cDaySeries3: TcxGridDBChartSeries
  455. DataBinding.FieldName = 'C02'
  456. end
  457. object cDaySeries4: TcxGridDBChartSeries
  458. DataBinding.FieldName = 'C03'
  459. end
  460. object cDaySeries5: TcxGridDBChartSeries
  461. DataBinding.FieldName = 'C04'
  462. end
  463. object cDaySeries6: TcxGridDBChartSeries
  464. DataBinding.FieldName = 'C05'
  465. end
  466. object cDaySeries7: TcxGridDBChartSeries
  467. DataBinding.FieldName = 'C06'
  468. end
  469. end
  470. object TvDay: TcxGridBandedTableView
  471. DataController.Summary.DefaultGroupSummaryItems.OnSummary = TvListDataControllerSummaryDefaultGroupSummaryItemsSummary
  472. DataController.Summary.DefaultGroupSummaryItems = <>
  473. DataController.Summary.FooterSummaryItems.OnSummary = TvListDataControllerSummaryFooterSummaryItemsSummary
  474. DataController.Summary.FooterSummaryItems = <
  475. item
  476. Format = '##,##0'
  477. Kind = skSum
  478. Column = ColDayTt
  479. VisibleForCustomization = False
  480. end
  481. item
  482. Format = '##,##0'
  483. Kind = skSum
  484. Column = ColDay00
  485. VisibleForCustomization = False
  486. end
  487. item
  488. Format = '##,##0'
  489. Kind = skSum
  490. Column = ColDay01
  491. VisibleForCustomization = False
  492. end
  493. item
  494. Format = '##,##0'
  495. Kind = skSum
  496. Column = ColDay02
  497. VisibleForCustomization = False
  498. end
  499. item
  500. Format = '##,##0'
  501. Kind = skSum
  502. Column = ColDay03
  503. VisibleForCustomization = False
  504. end
  505. item
  506. Format = '##,##0'
  507. Kind = skSum
  508. Column = ColDay04
  509. VisibleForCustomization = False
  510. end
  511. item
  512. Format = '##,##0'
  513. Kind = skSum
  514. Column = ColDay05
  515. VisibleForCustomization = False
  516. end
  517. item
  518. Format = '##,##0'
  519. Kind = skSum
  520. Column = ColDay06
  521. VisibleForCustomization = False
  522. end
  523. item
  524. Format = '##,##0'
  525. Kind = skSum
  526. Column = ColDay07
  527. VisibleForCustomization = False
  528. end
  529. item
  530. Format = '##,##0'
  531. Kind = skSum
  532. Column = ColDay08
  533. VisibleForCustomization = False
  534. end
  535. item
  536. Format = '##,##0'
  537. Kind = skSum
  538. Column = ColDay09
  539. VisibleForCustomization = False
  540. end
  541. item
  542. Format = '##,##0'
  543. Kind = skSum
  544. Column = ColDay10
  545. VisibleForCustomization = False
  546. end
  547. item
  548. Format = '##,##0'
  549. Kind = skSum
  550. Column = ColDay11
  551. VisibleForCustomization = False
  552. end
  553. item
  554. Format = '##,##0'
  555. Kind = skSum
  556. Column = ColDay12
  557. VisibleForCustomization = False
  558. end
  559. item
  560. Format = '##,##0'
  561. Kind = skSum
  562. Column = ColDay13
  563. VisibleForCustomization = False
  564. end
  565. item
  566. Format = '##,##0'
  567. Kind = skSum
  568. Column = ColDay14
  569. VisibleForCustomization = False
  570. end
  571. item
  572. Format = '##,##0'
  573. Kind = skSum
  574. Column = ColDay15
  575. VisibleForCustomization = False
  576. end
  577. item
  578. Format = '##,##0'
  579. Kind = skSum
  580. Column = ColDay16
  581. VisibleForCustomization = False
  582. end
  583. item
  584. Format = '##,##0'
  585. Kind = skSum
  586. Column = ColDay17
  587. VisibleForCustomization = False
  588. end
  589. item
  590. Format = '##,##0'
  591. Kind = skSum
  592. Column = ColDay18
  593. VisibleForCustomization = False
  594. end
  595. item
  596. Format = '##,##0'
  597. Kind = skSum
  598. Column = ColDay19
  599. VisibleForCustomization = False
  600. end
  601. item
  602. Format = '##,##0'
  603. Kind = skSum
  604. Column = ColDay20
  605. VisibleForCustomization = False
  606. end
  607. item
  608. Format = '##,##0'
  609. Kind = skSum
  610. Column = ColDay21
  611. VisibleForCustomization = False
  612. end
  613. item
  614. Format = '##,##0'
  615. Kind = skSum
  616. Column = ColDay22
  617. VisibleForCustomization = False
  618. end
  619. item
  620. Format = '##,##0'
  621. Kind = skSum
  622. Column = ColDay23
  623. VisibleForCustomization = False
  624. end>
  625. DataController.Summary.SummaryGroups = <>
  626. OptionsCustomize.ColumnFiltering = False
  627. OptionsCustomize.ColumnHidingOnGrouping = False
  628. OptionsCustomize.ColumnMoving = False
  629. OptionsCustomize.BandMoving = False
  630. OptionsCustomize.ColumnVertSizing = False
  631. OptionsData.CancelOnExit = False
  632. OptionsData.Deleting = False
  633. OptionsData.DeletingConfirmation = False
  634. OptionsData.Editing = False
  635. OptionsData.Inserting = False
  636. OptionsView.Footer = True
  637. OptionsView.GroupByBox = False
  638. OptionsView.Indicator = True
  639. Bands = <
  640. item
  641. Caption = 'CCTV'
  642. Width = 326
  643. end
  644. item
  645. Caption = #49884#44036#45824#48324' '#51217#49549#53685#44228'(00 = 00 ~ 01'#49884' '#53685#44228')'
  646. end>
  647. object ColDayNo: TcxGridBandedColumn
  648. Caption = 'ID'
  649. PropertiesClassName = 'TcxLabelProperties'
  650. Properties.Alignment.Horz = taCenter
  651. Properties.Alignment.Vert = taVCenter
  652. HeaderAlignmentHorz = taCenter
  653. HeaderAlignmentVert = vaCenter
  654. Width = 63
  655. Position.BandIndex = 0
  656. Position.ColIndex = 0
  657. Position.RowIndex = 0
  658. end
  659. object ColDayNm: TcxGridBandedColumn
  660. Caption = #49444#52824#50948#52824
  661. PropertiesClassName = 'TcxLabelProperties'
  662. Properties.Alignment.Vert = taVCenter
  663. HeaderAlignmentHorz = taCenter
  664. HeaderAlignmentVert = vaCenter
  665. Width = 208
  666. Position.BandIndex = 0
  667. Position.ColIndex = 1
  668. Position.RowIndex = 0
  669. end
  670. object ColDayTt: TcxGridBandedColumn
  671. Caption = #49548#44228
  672. DataBinding.ValueType = 'Integer'
  673. PropertiesClassName = 'TcxCalcEditProperties'
  674. Properties.Alignment.Horz = taRightJustify
  675. Properties.Alignment.Vert = taVCenter
  676. Properties.DisplayFormat = '##,##0'
  677. HeaderAlignmentHorz = taCenter
  678. HeaderAlignmentVert = vaCenter
  679. Width = 55
  680. Position.BandIndex = 0
  681. Position.ColIndex = 2
  682. Position.RowIndex = 0
  683. end
  684. object ColDay00: TcxGridBandedColumn
  685. Caption = '00'
  686. DataBinding.ValueType = 'Integer'
  687. PropertiesClassName = 'TcxCalcEditProperties'
  688. Properties.Alignment.Horz = taRightJustify
  689. Properties.Alignment.Vert = taVCenter
  690. Properties.DisplayFormat = '##,##0'
  691. HeaderAlignmentHorz = taCenter
  692. HeaderAlignmentVert = vaCenter
  693. Width = 50
  694. Position.BandIndex = 1
  695. Position.ColIndex = 0
  696. Position.RowIndex = 0
  697. end
  698. object ColDay01: TcxGridBandedColumn
  699. Caption = '01'
  700. DataBinding.ValueType = 'Integer'
  701. PropertiesClassName = 'TcxCalcEditProperties'
  702. Properties.Alignment.Horz = taRightJustify
  703. Properties.Alignment.Vert = taVCenter
  704. Properties.DisplayFormat = '##,##0'
  705. HeaderAlignmentHorz = taCenter
  706. HeaderAlignmentVert = vaCenter
  707. Width = 50
  708. Position.BandIndex = 1
  709. Position.ColIndex = 1
  710. Position.RowIndex = 0
  711. end
  712. object ColDay02: TcxGridBandedColumn
  713. Caption = '02'
  714. DataBinding.ValueType = 'Integer'
  715. PropertiesClassName = 'TcxCalcEditProperties'
  716. Properties.Alignment.Horz = taRightJustify
  717. Properties.Alignment.Vert = taVCenter
  718. Properties.DisplayFormat = '##,##0'
  719. HeaderAlignmentHorz = taCenter
  720. HeaderAlignmentVert = vaCenter
  721. Width = 50
  722. Position.BandIndex = 1
  723. Position.ColIndex = 2
  724. Position.RowIndex = 0
  725. end
  726. object ColDay03: TcxGridBandedColumn
  727. Caption = '03'
  728. DataBinding.ValueType = 'Integer'
  729. PropertiesClassName = 'TcxCalcEditProperties'
  730. Properties.Alignment.Horz = taRightJustify
  731. Properties.Alignment.Vert = taVCenter
  732. Properties.DisplayFormat = '##,##0'
  733. HeaderAlignmentHorz = taCenter
  734. HeaderAlignmentVert = vaCenter
  735. Width = 50
  736. Position.BandIndex = 1
  737. Position.ColIndex = 3
  738. Position.RowIndex = 0
  739. end
  740. object ColDay04: TcxGridBandedColumn
  741. Caption = '04'
  742. DataBinding.ValueType = 'Integer'
  743. PropertiesClassName = 'TcxCalcEditProperties'
  744. Properties.Alignment.Horz = taRightJustify
  745. Properties.Alignment.Vert = taVCenter
  746. Properties.DisplayFormat = '##,##0'
  747. HeaderAlignmentHorz = taCenter
  748. HeaderAlignmentVert = vaCenter
  749. Width = 50
  750. Position.BandIndex = 1
  751. Position.ColIndex = 4
  752. Position.RowIndex = 0
  753. end
  754. object ColDay05: TcxGridBandedColumn
  755. Caption = '05'
  756. DataBinding.ValueType = 'Integer'
  757. PropertiesClassName = 'TcxCalcEditProperties'
  758. Properties.Alignment.Horz = taRightJustify
  759. Properties.Alignment.Vert = taVCenter
  760. Properties.DisplayFormat = '##,##0'
  761. HeaderAlignmentHorz = taCenter
  762. HeaderAlignmentVert = vaCenter
  763. Width = 50
  764. Position.BandIndex = 1
  765. Position.ColIndex = 5
  766. Position.RowIndex = 0
  767. end
  768. object ColDay06: TcxGridBandedColumn
  769. Caption = '06'
  770. DataBinding.ValueType = 'Integer'
  771. PropertiesClassName = 'TcxCalcEditProperties'
  772. Properties.Alignment.Horz = taRightJustify
  773. Properties.Alignment.Vert = taVCenter
  774. Properties.DisplayFormat = '##,##0'
  775. HeaderAlignmentHorz = taCenter
  776. HeaderAlignmentVert = vaCenter
  777. Width = 50
  778. Position.BandIndex = 1
  779. Position.ColIndex = 6
  780. Position.RowIndex = 0
  781. end
  782. object ColDay07: TcxGridBandedColumn
  783. Caption = '07'
  784. DataBinding.ValueType = 'Integer'
  785. PropertiesClassName = 'TcxCalcEditProperties'
  786. Properties.Alignment.Horz = taRightJustify
  787. Properties.Alignment.Vert = taVCenter
  788. Properties.DisplayFormat = '##,##0'
  789. HeaderAlignmentHorz = taCenter
  790. HeaderAlignmentVert = vaCenter
  791. Width = 50
  792. Position.BandIndex = 1
  793. Position.ColIndex = 7
  794. Position.RowIndex = 0
  795. end
  796. object ColDay08: TcxGridBandedColumn
  797. Caption = '08'
  798. DataBinding.ValueType = 'Integer'
  799. PropertiesClassName = 'TcxCalcEditProperties'
  800. Properties.Alignment.Horz = taRightJustify
  801. Properties.Alignment.Vert = taVCenter
  802. Properties.DisplayFormat = '##,##0'
  803. HeaderAlignmentHorz = taCenter
  804. HeaderAlignmentVert = vaCenter
  805. Width = 50
  806. Position.BandIndex = 1
  807. Position.ColIndex = 8
  808. Position.RowIndex = 0
  809. end
  810. object ColDay09: TcxGridBandedColumn
  811. Caption = '09'
  812. DataBinding.ValueType = 'Integer'
  813. PropertiesClassName = 'TcxCalcEditProperties'
  814. Properties.Alignment.Horz = taRightJustify
  815. Properties.Alignment.Vert = taVCenter
  816. Properties.DisplayFormat = '##,##0'
  817. HeaderAlignmentHorz = taCenter
  818. HeaderAlignmentVert = vaCenter
  819. Width = 50
  820. Position.BandIndex = 1
  821. Position.ColIndex = 9
  822. Position.RowIndex = 0
  823. end
  824. object ColDay10: TcxGridBandedColumn
  825. Caption = '10'
  826. DataBinding.ValueType = 'Integer'
  827. PropertiesClassName = 'TcxCalcEditProperties'
  828. Properties.Alignment.Horz = taRightJustify
  829. Properties.Alignment.Vert = taVCenter
  830. Properties.DisplayFormat = '##,##0'
  831. HeaderAlignmentHorz = taCenter
  832. HeaderAlignmentVert = vaCenter
  833. Width = 50
  834. Position.BandIndex = 1
  835. Position.ColIndex = 10
  836. Position.RowIndex = 0
  837. end
  838. object ColDay11: TcxGridBandedColumn
  839. Caption = '11'
  840. DataBinding.ValueType = 'Integer'
  841. PropertiesClassName = 'TcxCalcEditProperties'
  842. Properties.Alignment.Horz = taRightJustify
  843. Properties.Alignment.Vert = taVCenter
  844. Properties.DisplayFormat = '##,##0'
  845. HeaderAlignmentHorz = taCenter
  846. HeaderAlignmentVert = vaCenter
  847. Width = 50
  848. Position.BandIndex = 1
  849. Position.ColIndex = 11
  850. Position.RowIndex = 0
  851. end
  852. object ColDay12: TcxGridBandedColumn
  853. Caption = '12'
  854. DataBinding.ValueType = 'Integer'
  855. PropertiesClassName = 'TcxCalcEditProperties'
  856. Properties.Alignment.Horz = taRightJustify
  857. Properties.Alignment.Vert = taVCenter
  858. Properties.DisplayFormat = '##,##0'
  859. HeaderAlignmentHorz = taCenter
  860. HeaderAlignmentVert = vaCenter
  861. Width = 50
  862. Position.BandIndex = 1
  863. Position.ColIndex = 12
  864. Position.RowIndex = 0
  865. end
  866. object ColDay13: TcxGridBandedColumn
  867. Caption = '13'
  868. DataBinding.ValueType = 'Integer'
  869. PropertiesClassName = 'TcxCalcEditProperties'
  870. Properties.Alignment.Horz = taRightJustify
  871. Properties.Alignment.Vert = taVCenter
  872. Properties.DisplayFormat = '##,##0'
  873. HeaderAlignmentHorz = taCenter
  874. HeaderAlignmentVert = vaCenter
  875. Width = 50
  876. Position.BandIndex = 1
  877. Position.ColIndex = 13
  878. Position.RowIndex = 0
  879. end
  880. object ColDay14: TcxGridBandedColumn
  881. Caption = '14'
  882. DataBinding.ValueType = 'Integer'
  883. PropertiesClassName = 'TcxCalcEditProperties'
  884. Properties.Alignment.Horz = taRightJustify
  885. Properties.Alignment.Vert = taVCenter
  886. Properties.DisplayFormat = '##,##0'
  887. HeaderAlignmentHorz = taCenter
  888. HeaderAlignmentVert = vaCenter
  889. Width = 50
  890. Position.BandIndex = 1
  891. Position.ColIndex = 14
  892. Position.RowIndex = 0
  893. end
  894. object ColDay15: TcxGridBandedColumn
  895. Caption = '15'
  896. DataBinding.ValueType = 'Integer'
  897. PropertiesClassName = 'TcxCalcEditProperties'
  898. Properties.Alignment.Horz = taRightJustify
  899. Properties.Alignment.Vert = taVCenter
  900. Properties.DisplayFormat = '##,##0'
  901. HeaderAlignmentHorz = taCenter
  902. HeaderAlignmentVert = vaCenter
  903. Width = 50
  904. Position.BandIndex = 1
  905. Position.ColIndex = 15
  906. Position.RowIndex = 0
  907. end
  908. object ColDay16: TcxGridBandedColumn
  909. Caption = '16'
  910. DataBinding.ValueType = 'Integer'
  911. PropertiesClassName = 'TcxCalcEditProperties'
  912. Properties.Alignment.Horz = taRightJustify
  913. Properties.Alignment.Vert = taVCenter
  914. Properties.DisplayFormat = '##,##0'
  915. HeaderAlignmentHorz = taCenter
  916. HeaderAlignmentVert = vaCenter
  917. Width = 50
  918. Position.BandIndex = 1
  919. Position.ColIndex = 16
  920. Position.RowIndex = 0
  921. end
  922. object ColDay17: TcxGridBandedColumn
  923. Caption = '17'
  924. DataBinding.ValueType = 'Integer'
  925. PropertiesClassName = 'TcxCalcEditProperties'
  926. Properties.Alignment.Horz = taRightJustify
  927. Properties.Alignment.Vert = taVCenter
  928. Properties.DisplayFormat = '##,##0'
  929. HeaderAlignmentHorz = taCenter
  930. HeaderAlignmentVert = vaCenter
  931. Width = 50
  932. Position.BandIndex = 1
  933. Position.ColIndex = 17
  934. Position.RowIndex = 0
  935. end
  936. object ColDay18: TcxGridBandedColumn
  937. Caption = '18'
  938. DataBinding.ValueType = 'Integer'
  939. PropertiesClassName = 'TcxCalcEditProperties'
  940. Properties.Alignment.Horz = taRightJustify
  941. Properties.Alignment.Vert = taVCenter
  942. Properties.DisplayFormat = '##,##0'
  943. HeaderAlignmentHorz = taCenter
  944. HeaderAlignmentVert = vaCenter
  945. Width = 50
  946. Position.BandIndex = 1
  947. Position.ColIndex = 18
  948. Position.RowIndex = 0
  949. end
  950. object ColDay19: TcxGridBandedColumn
  951. Caption = '19'
  952. DataBinding.ValueType = 'Integer'
  953. PropertiesClassName = 'TcxCalcEditProperties'
  954. Properties.Alignment.Horz = taRightJustify
  955. Properties.Alignment.Vert = taVCenter
  956. Properties.DisplayFormat = '##,##0'
  957. HeaderAlignmentHorz = taCenter
  958. HeaderAlignmentVert = vaCenter
  959. Width = 50
  960. Position.BandIndex = 1
  961. Position.ColIndex = 19
  962. Position.RowIndex = 0
  963. end
  964. object ColDay20: TcxGridBandedColumn
  965. Caption = '20'
  966. DataBinding.ValueType = 'Integer'
  967. PropertiesClassName = 'TcxCalcEditProperties'
  968. Properties.Alignment.Horz = taRightJustify
  969. Properties.Alignment.Vert = taVCenter
  970. Properties.DisplayFormat = '##,##0'
  971. HeaderAlignmentHorz = taCenter
  972. HeaderAlignmentVert = vaCenter
  973. Width = 50
  974. Position.BandIndex = 1
  975. Position.ColIndex = 20
  976. Position.RowIndex = 0
  977. end
  978. object ColDay21: TcxGridBandedColumn
  979. Caption = '21'
  980. DataBinding.ValueType = 'Integer'
  981. PropertiesClassName = 'TcxCalcEditProperties'
  982. Properties.Alignment.Horz = taRightJustify
  983. Properties.Alignment.Vert = taVCenter
  984. Properties.DisplayFormat = '##,##0'
  985. HeaderAlignmentHorz = taCenter
  986. HeaderAlignmentVert = vaCenter
  987. Width = 50
  988. Position.BandIndex = 1
  989. Position.ColIndex = 21
  990. Position.RowIndex = 0
  991. end
  992. object ColDay22: TcxGridBandedColumn
  993. Caption = '22'
  994. DataBinding.ValueType = 'Integer'
  995. PropertiesClassName = 'TcxCalcEditProperties'
  996. Properties.Alignment.Horz = taRightJustify
  997. Properties.Alignment.Vert = taVCenter
  998. Properties.DisplayFormat = '##,##0'
  999. HeaderAlignmentHorz = taCenter
  1000. HeaderAlignmentVert = vaCenter
  1001. Width = 50
  1002. Position.BandIndex = 1
  1003. Position.ColIndex = 22
  1004. Position.RowIndex = 0
  1005. end
  1006. object ColDay23: TcxGridBandedColumn
  1007. Caption = '23'
  1008. DataBinding.ValueType = 'Integer'
  1009. PropertiesClassName = 'TcxCalcEditProperties'
  1010. Properties.Alignment.Horz = taRightJustify
  1011. Properties.Alignment.Vert = taVCenter
  1012. Properties.DisplayFormat = '##,##0'
  1013. HeaderAlignmentHorz = taCenter
  1014. HeaderAlignmentVert = vaCenter
  1015. Width = 50
  1016. Position.BandIndex = 1
  1017. Position.ColIndex = 23
  1018. Position.RowIndex = 0
  1019. end
  1020. end
  1021. object GlDay: TcxGridLevel
  1022. Caption = #45936#51060#53552
  1023. GridView = TvDay
  1024. end
  1025. end
  1026. object PnlDayGraph: TPanel
  1027. Left = 0
  1028. Top = 269
  1029. Width = 1428
  1030. Height = 320
  1031. Align = alBottom
  1032. BevelInner = bvLowered
  1033. BevelOuter = bvNone
  1034. ParentColor = True
  1035. TabOrder = 1
  1036. inline FRAMEChart1: TFRAMEChart
  1037. Left = 1
  1038. Top = 1
  1039. Width = 1426
  1040. Height = 318
  1041. Align = alClient
  1042. TabOrder = 0
  1043. ExplicitLeft = 1
  1044. ExplicitTop = 1
  1045. ExplicitWidth = 1426
  1046. ExplicitHeight = 318
  1047. inherited CxChart: TcxGrid
  1048. Width = 1426
  1049. Height = 318
  1050. ExplicitWidth = 1426
  1051. ExplicitHeight = 318
  1052. end
  1053. inherited ChkDisplayVal: TcxCheckBox
  1054. ExplicitHeight = 21
  1055. end
  1056. inherited cxLabel2: TcxLabel
  1057. ExplicitWidth = 30
  1058. ExplicitHeight = 21
  1059. end
  1060. inherited LblPage: TcxLabel
  1061. ExplicitWidth = 18
  1062. ExplicitHeight = 21
  1063. end
  1064. inherited lblAll: TcxLabel
  1065. ExplicitWidth = 35
  1066. ExplicitHeight = 21
  1067. end
  1068. inherited lblImgSave: TcxLabel
  1069. ExplicitWidth = 110
  1070. ExplicitHeight = 21
  1071. end
  1072. inherited lblSaveErr: TcxLabel
  1073. ExplicitWidth = 261
  1074. ExplicitHeight = 21
  1075. end
  1076. inherited lblSaveOk: TcxLabel
  1077. ExplicitWidth = 191
  1078. ExplicitHeight = 21
  1079. end
  1080. end
  1081. end
  1082. object SplDay: TcxSplitter
  1083. Left = 0
  1084. Top = 263
  1085. Width = 1428
  1086. Height = 6
  1087. HotZoneClassName = 'TcxSimpleStyle'
  1088. AlignSplitter = salBottom
  1089. ResizeUpdate = True
  1090. Control = PnlDayGraph
  1091. end
  1092. end
  1093. object TsListMon: TcxTabSheet
  1094. Caption = #51068#48324' '#53685#44228
  1095. ImageIndex = 1
  1096. object PnlMonGraph: TPanel
  1097. Left = 0
  1098. Top = 269
  1099. Width = 1428
  1100. Height = 320
  1101. Align = alBottom
  1102. BevelInner = bvLowered
  1103. BevelOuter = bvNone
  1104. TabOrder = 0
  1105. inline FRAMEChart2: TFRAMEChart
  1106. Left = 1
  1107. Top = 1
  1108. Width = 1426
  1109. Height = 318
  1110. Align = alClient
  1111. TabOrder = 0
  1112. ExplicitLeft = 1
  1113. ExplicitTop = 1
  1114. ExplicitWidth = 1426
  1115. ExplicitHeight = 318
  1116. inherited CxChart: TcxGrid
  1117. Width = 1426
  1118. Height = 318
  1119. ExplicitWidth = 1426
  1120. ExplicitHeight = 318
  1121. end
  1122. inherited ChkDisplayVal: TcxCheckBox
  1123. ExplicitHeight = 21
  1124. end
  1125. inherited cxLabel2: TcxLabel
  1126. ExplicitWidth = 30
  1127. ExplicitHeight = 21
  1128. end
  1129. inherited LblPage: TcxLabel
  1130. ExplicitWidth = 18
  1131. ExplicitHeight = 21
  1132. end
  1133. inherited lblAll: TcxLabel
  1134. ExplicitWidth = 35
  1135. ExplicitHeight = 21
  1136. end
  1137. inherited lblImgSave: TcxLabel
  1138. ExplicitWidth = 110
  1139. ExplicitHeight = 21
  1140. end
  1141. inherited lblSaveErr: TcxLabel
  1142. ExplicitWidth = 261
  1143. ExplicitHeight = 21
  1144. end
  1145. inherited lblSaveOk: TcxLabel
  1146. ExplicitWidth = 191
  1147. ExplicitHeight = 21
  1148. end
  1149. end
  1150. end
  1151. object SplMon: TcxSplitter
  1152. Left = 0
  1153. Top = 263
  1154. Width = 1428
  1155. Height = 6
  1156. HotZoneClassName = 'TcxSimpleStyle'
  1157. AlignSplitter = salBottom
  1158. ResizeUpdate = True
  1159. Control = PnlMonGraph
  1160. Color = 3893744
  1161. ParentColor = False
  1162. end
  1163. object CxMon: TcxGrid
  1164. Left = 0
  1165. Top = 0
  1166. Width = 1428
  1167. Height = 263
  1168. Align = alClient
  1169. TabOrder = 2
  1170. object cxGridDBChartView3: TcxGridDBChartView
  1171. DiagramLine.Active = True
  1172. object cxGridDBChartSeries15: TcxGridDBChartSeries
  1173. DataBinding.FieldName = 'C00'
  1174. end
  1175. object cxGridDBChartSeries16: TcxGridDBChartSeries
  1176. DataBinding.FieldName = 'C01'
  1177. end
  1178. object cxGridDBChartSeries17: TcxGridDBChartSeries
  1179. DataBinding.FieldName = 'C02'
  1180. end
  1181. object cxGridDBChartSeries18: TcxGridDBChartSeries
  1182. DataBinding.FieldName = 'C03'
  1183. end
  1184. object cxGridDBChartSeries19: TcxGridDBChartSeries
  1185. DataBinding.FieldName = 'C04'
  1186. end
  1187. object cxGridDBChartSeries20: TcxGridDBChartSeries
  1188. DataBinding.FieldName = 'C05'
  1189. end
  1190. object cxGridDBChartSeries21: TcxGridDBChartSeries
  1191. DataBinding.FieldName = 'C06'
  1192. end
  1193. end
  1194. object TvMon: TcxGridBandedTableView
  1195. DataController.Summary.DefaultGroupSummaryItems.OnSummary = TvListDataControllerSummaryDefaultGroupSummaryItemsSummary
  1196. DataController.Summary.DefaultGroupSummaryItems = <>
  1197. DataController.Summary.FooterSummaryItems.OnSummary = TvListDataControllerSummaryFooterSummaryItemsSummary
  1198. DataController.Summary.FooterSummaryItems = <
  1199. item
  1200. Format = '##,##0'
  1201. Kind = skSum
  1202. Column = ColMonTt
  1203. VisibleForCustomization = False
  1204. end
  1205. item
  1206. Format = '##,##0'
  1207. Kind = skSum
  1208. VisibleForCustomization = False
  1209. end
  1210. item
  1211. Format = '##,##0'
  1212. Kind = skSum
  1213. Column = ColMon01
  1214. VisibleForCustomization = False
  1215. end
  1216. item
  1217. Format = '##,##0'
  1218. Kind = skSum
  1219. Column = ColMon02
  1220. VisibleForCustomization = False
  1221. end
  1222. item
  1223. Format = '##,##0'
  1224. Kind = skSum
  1225. Column = ColMon03
  1226. VisibleForCustomization = False
  1227. end
  1228. item
  1229. Format = '##,##0'
  1230. Kind = skSum
  1231. Column = ColMon04
  1232. VisibleForCustomization = False
  1233. end
  1234. item
  1235. Format = '##,##0'
  1236. Kind = skSum
  1237. Column = ColMon05
  1238. VisibleForCustomization = False
  1239. end
  1240. item
  1241. Format = '##,##0'
  1242. Kind = skSum
  1243. Column = ColMon06
  1244. VisibleForCustomization = False
  1245. end
  1246. item
  1247. Format = '##,##0'
  1248. Kind = skSum
  1249. Column = ColMon07
  1250. VisibleForCustomization = False
  1251. end
  1252. item
  1253. Format = '##,##0'
  1254. Kind = skSum
  1255. Column = ColMon08
  1256. VisibleForCustomization = False
  1257. end
  1258. item
  1259. Format = '##,##0'
  1260. Kind = skSum
  1261. Column = ColMon09
  1262. VisibleForCustomization = False
  1263. end
  1264. item
  1265. Format = '##,##0'
  1266. Kind = skSum
  1267. Column = ColMon10
  1268. VisibleForCustomization = False
  1269. end
  1270. item
  1271. Format = '##,##0'
  1272. Kind = skSum
  1273. Column = ColMon11
  1274. VisibleForCustomization = False
  1275. end
  1276. item
  1277. Format = '##,##0'
  1278. Kind = skSum
  1279. Column = ColMon12
  1280. VisibleForCustomization = False
  1281. end
  1282. item
  1283. Format = '##,##0'
  1284. Kind = skSum
  1285. Column = ColMon13
  1286. VisibleForCustomization = False
  1287. end
  1288. item
  1289. Format = '##,##0'
  1290. Kind = skSum
  1291. Column = ColMon14
  1292. VisibleForCustomization = False
  1293. end
  1294. item
  1295. Format = '##,##0'
  1296. Kind = skSum
  1297. Column = ColMon15
  1298. VisibleForCustomization = False
  1299. end
  1300. item
  1301. Format = '##,##0'
  1302. Kind = skSum
  1303. Column = ColMon16
  1304. VisibleForCustomization = False
  1305. end
  1306. item
  1307. Format = '##,##0'
  1308. Kind = skSum
  1309. Column = ColMon17
  1310. VisibleForCustomization = False
  1311. end
  1312. item
  1313. Format = '##,##0'
  1314. Kind = skSum
  1315. Column = ColMon18
  1316. VisibleForCustomization = False
  1317. end
  1318. item
  1319. Format = '##,##0'
  1320. Kind = skSum
  1321. Column = ColMon19
  1322. VisibleForCustomization = False
  1323. end
  1324. item
  1325. Format = '##,##0'
  1326. Kind = skSum
  1327. Column = ColMon20
  1328. VisibleForCustomization = False
  1329. end
  1330. item
  1331. Format = '##,##0'
  1332. Kind = skSum
  1333. Column = ColMon21
  1334. VisibleForCustomization = False
  1335. end
  1336. item
  1337. Format = '##,##0'
  1338. Kind = skSum
  1339. Column = ColMon22
  1340. VisibleForCustomization = False
  1341. end
  1342. item
  1343. Format = '##,##0'
  1344. Kind = skSum
  1345. Column = ColMon23
  1346. VisibleForCustomization = False
  1347. end
  1348. item
  1349. Format = '##,##0'
  1350. Kind = skSum
  1351. Column = ColMon24
  1352. VisibleForCustomization = False
  1353. end
  1354. item
  1355. Format = '##,##0'
  1356. Kind = skSum
  1357. Column = ColMon25
  1358. VisibleForCustomization = False
  1359. end
  1360. item
  1361. Format = '##,##0'
  1362. Kind = skSum
  1363. Column = ColMon26
  1364. VisibleForCustomization = False
  1365. end
  1366. item
  1367. Format = '##,##0'
  1368. Kind = skSum
  1369. Column = ColMon27
  1370. VisibleForCustomization = False
  1371. end
  1372. item
  1373. Format = '##,##0'
  1374. Kind = skSum
  1375. Column = ColMon28
  1376. VisibleForCustomization = False
  1377. end
  1378. item
  1379. Format = '##,##0'
  1380. Kind = skSum
  1381. Column = ColMon29
  1382. VisibleForCustomization = False
  1383. end
  1384. item
  1385. Format = '##,##0'
  1386. Kind = skSum
  1387. Column = ColMon30
  1388. VisibleForCustomization = False
  1389. end
  1390. item
  1391. Format = '##,##0'
  1392. Kind = skSum
  1393. Column = ColMon31
  1394. VisibleForCustomization = False
  1395. end>
  1396. DataController.Summary.SummaryGroups = <>
  1397. OptionsCustomize.ColumnFiltering = False
  1398. OptionsCustomize.ColumnHidingOnGrouping = False
  1399. OptionsCustomize.ColumnMoving = False
  1400. OptionsCustomize.BandMoving = False
  1401. OptionsCustomize.ColumnVertSizing = False
  1402. OptionsData.CancelOnExit = False
  1403. OptionsData.Deleting = False
  1404. OptionsData.DeletingConfirmation = False
  1405. OptionsData.Editing = False
  1406. OptionsData.Inserting = False
  1407. OptionsView.Footer = True
  1408. OptionsView.GroupByBox = False
  1409. OptionsView.Indicator = True
  1410. Bands = <
  1411. item
  1412. Caption = 'CCTV'
  1413. Width = 326
  1414. end
  1415. item
  1416. Caption = #51068#48324' '#51217#49549#53685#44228
  1417. end>
  1418. object ColMonNo: TcxGridBandedColumn
  1419. Caption = 'ID'
  1420. PropertiesClassName = 'TcxLabelProperties'
  1421. Properties.Alignment.Horz = taCenter
  1422. Properties.Alignment.Vert = taVCenter
  1423. HeaderAlignmentHorz = taCenter
  1424. HeaderAlignmentVert = vaCenter
  1425. Width = 63
  1426. Position.BandIndex = 0
  1427. Position.ColIndex = 0
  1428. Position.RowIndex = 0
  1429. end
  1430. object ColMonNm: TcxGridBandedColumn
  1431. Caption = #49444#52824#50948#52824
  1432. PropertiesClassName = 'TcxLabelProperties'
  1433. Properties.Alignment.Vert = taVCenter
  1434. HeaderAlignmentHorz = taCenter
  1435. HeaderAlignmentVert = vaCenter
  1436. Width = 208
  1437. Position.BandIndex = 0
  1438. Position.ColIndex = 1
  1439. Position.RowIndex = 0
  1440. end
  1441. object ColMonTt: TcxGridBandedColumn
  1442. Caption = #49548#44228
  1443. DataBinding.ValueType = 'Integer'
  1444. PropertiesClassName = 'TcxCalcEditProperties'
  1445. Properties.Alignment.Horz = taRightJustify
  1446. Properties.Alignment.Vert = taVCenter
  1447. Properties.DisplayFormat = '##,##0'
  1448. HeaderAlignmentHorz = taCenter
  1449. HeaderAlignmentVert = vaCenter
  1450. Width = 55
  1451. Position.BandIndex = 0
  1452. Position.ColIndex = 2
  1453. Position.RowIndex = 0
  1454. end
  1455. object ColMon01: TcxGridBandedColumn
  1456. Caption = '01'
  1457. DataBinding.ValueType = 'Integer'
  1458. PropertiesClassName = 'TcxCalcEditProperties'
  1459. Properties.Alignment.Horz = taRightJustify
  1460. Properties.Alignment.Vert = taVCenter
  1461. Properties.DisplayFormat = '##,##0'
  1462. HeaderAlignmentHorz = taCenter
  1463. HeaderAlignmentVert = vaCenter
  1464. Width = 50
  1465. Position.BandIndex = 1
  1466. Position.ColIndex = 0
  1467. Position.RowIndex = 0
  1468. end
  1469. object ColMon02: TcxGridBandedColumn
  1470. Caption = '02'
  1471. DataBinding.ValueType = 'Integer'
  1472. PropertiesClassName = 'TcxCalcEditProperties'
  1473. Properties.Alignment.Horz = taRightJustify
  1474. Properties.Alignment.Vert = taVCenter
  1475. Properties.DisplayFormat = '##,##0'
  1476. HeaderAlignmentHorz = taCenter
  1477. HeaderAlignmentVert = vaCenter
  1478. Width = 50
  1479. Position.BandIndex = 1
  1480. Position.ColIndex = 1
  1481. Position.RowIndex = 0
  1482. end
  1483. object ColMon03: TcxGridBandedColumn
  1484. Caption = '03'
  1485. DataBinding.ValueType = 'Integer'
  1486. PropertiesClassName = 'TcxCalcEditProperties'
  1487. Properties.Alignment.Horz = taRightJustify
  1488. Properties.Alignment.Vert = taVCenter
  1489. Properties.DisplayFormat = '##,##0'
  1490. HeaderAlignmentHorz = taCenter
  1491. HeaderAlignmentVert = vaCenter
  1492. Width = 50
  1493. Position.BandIndex = 1
  1494. Position.ColIndex = 2
  1495. Position.RowIndex = 0
  1496. end
  1497. object ColMon04: TcxGridBandedColumn
  1498. Caption = '04'
  1499. DataBinding.ValueType = 'Integer'
  1500. PropertiesClassName = 'TcxCalcEditProperties'
  1501. Properties.Alignment.Horz = taRightJustify
  1502. Properties.Alignment.Vert = taVCenter
  1503. Properties.DisplayFormat = '##,##0'
  1504. HeaderAlignmentHorz = taCenter
  1505. HeaderAlignmentVert = vaCenter
  1506. Width = 50
  1507. Position.BandIndex = 1
  1508. Position.ColIndex = 3
  1509. Position.RowIndex = 0
  1510. end
  1511. object ColMon05: TcxGridBandedColumn
  1512. Caption = '05'
  1513. DataBinding.ValueType = 'Integer'
  1514. PropertiesClassName = 'TcxCalcEditProperties'
  1515. Properties.Alignment.Horz = taRightJustify
  1516. Properties.Alignment.Vert = taVCenter
  1517. Properties.DisplayFormat = '##,##0'
  1518. HeaderAlignmentHorz = taCenter
  1519. HeaderAlignmentVert = vaCenter
  1520. Width = 50
  1521. Position.BandIndex = 1
  1522. Position.ColIndex = 4
  1523. Position.RowIndex = 0
  1524. end
  1525. object ColMon06: TcxGridBandedColumn
  1526. Caption = '06'
  1527. DataBinding.ValueType = 'Integer'
  1528. PropertiesClassName = 'TcxCalcEditProperties'
  1529. Properties.Alignment.Horz = taRightJustify
  1530. Properties.Alignment.Vert = taVCenter
  1531. Properties.DisplayFormat = '##,##0'
  1532. HeaderAlignmentHorz = taCenter
  1533. HeaderAlignmentVert = vaCenter
  1534. Width = 50
  1535. Position.BandIndex = 1
  1536. Position.ColIndex = 5
  1537. Position.RowIndex = 0
  1538. end
  1539. object ColMon07: TcxGridBandedColumn
  1540. Caption = '07'
  1541. DataBinding.ValueType = 'Integer'
  1542. PropertiesClassName = 'TcxCalcEditProperties'
  1543. Properties.Alignment.Horz = taRightJustify
  1544. Properties.Alignment.Vert = taVCenter
  1545. Properties.DisplayFormat = '##,##0'
  1546. HeaderAlignmentHorz = taCenter
  1547. HeaderAlignmentVert = vaCenter
  1548. Width = 50
  1549. Position.BandIndex = 1
  1550. Position.ColIndex = 6
  1551. Position.RowIndex = 0
  1552. end
  1553. object ColMon08: TcxGridBandedColumn
  1554. Caption = '08'
  1555. DataBinding.ValueType = 'Integer'
  1556. PropertiesClassName = 'TcxCalcEditProperties'
  1557. Properties.Alignment.Horz = taRightJustify
  1558. Properties.Alignment.Vert = taVCenter
  1559. Properties.DisplayFormat = '##,##0'
  1560. HeaderAlignmentHorz = taCenter
  1561. HeaderAlignmentVert = vaCenter
  1562. Width = 50
  1563. Position.BandIndex = 1
  1564. Position.ColIndex = 7
  1565. Position.RowIndex = 0
  1566. end
  1567. object ColMon09: TcxGridBandedColumn
  1568. Caption = '09'
  1569. DataBinding.ValueType = 'Integer'
  1570. PropertiesClassName = 'TcxCalcEditProperties'
  1571. Properties.Alignment.Horz = taRightJustify
  1572. Properties.Alignment.Vert = taVCenter
  1573. Properties.DisplayFormat = '##,##0'
  1574. HeaderAlignmentHorz = taCenter
  1575. HeaderAlignmentVert = vaCenter
  1576. Width = 50
  1577. Position.BandIndex = 1
  1578. Position.ColIndex = 8
  1579. Position.RowIndex = 0
  1580. end
  1581. object ColMon10: TcxGridBandedColumn
  1582. Caption = '10'
  1583. DataBinding.ValueType = 'Integer'
  1584. PropertiesClassName = 'TcxCalcEditProperties'
  1585. Properties.Alignment.Horz = taRightJustify
  1586. Properties.Alignment.Vert = taVCenter
  1587. Properties.DisplayFormat = '##,##0'
  1588. HeaderAlignmentHorz = taCenter
  1589. HeaderAlignmentVert = vaCenter
  1590. Width = 50
  1591. Position.BandIndex = 1
  1592. Position.ColIndex = 9
  1593. Position.RowIndex = 0
  1594. end
  1595. object ColMon11: TcxGridBandedColumn
  1596. Caption = '11'
  1597. DataBinding.ValueType = 'Integer'
  1598. PropertiesClassName = 'TcxCalcEditProperties'
  1599. Properties.Alignment.Horz = taRightJustify
  1600. Properties.Alignment.Vert = taVCenter
  1601. Properties.DisplayFormat = '##,##0'
  1602. HeaderAlignmentHorz = taCenter
  1603. HeaderAlignmentVert = vaCenter
  1604. Width = 50
  1605. Position.BandIndex = 1
  1606. Position.ColIndex = 10
  1607. Position.RowIndex = 0
  1608. end
  1609. object ColMon12: TcxGridBandedColumn
  1610. Caption = '12'
  1611. DataBinding.ValueType = 'Integer'
  1612. PropertiesClassName = 'TcxCalcEditProperties'
  1613. Properties.Alignment.Horz = taRightJustify
  1614. Properties.Alignment.Vert = taVCenter
  1615. Properties.DisplayFormat = '##,##0'
  1616. HeaderAlignmentHorz = taCenter
  1617. HeaderAlignmentVert = vaCenter
  1618. Width = 50
  1619. Position.BandIndex = 1
  1620. Position.ColIndex = 11
  1621. Position.RowIndex = 0
  1622. end
  1623. object ColMon13: TcxGridBandedColumn
  1624. Caption = '13'
  1625. DataBinding.ValueType = 'Integer'
  1626. PropertiesClassName = 'TcxCalcEditProperties'
  1627. Properties.Alignment.Horz = taRightJustify
  1628. Properties.Alignment.Vert = taVCenter
  1629. Properties.DisplayFormat = '##,##0'
  1630. HeaderAlignmentHorz = taCenter
  1631. HeaderAlignmentVert = vaCenter
  1632. Width = 50
  1633. Position.BandIndex = 1
  1634. Position.ColIndex = 12
  1635. Position.RowIndex = 0
  1636. end
  1637. object ColMon14: TcxGridBandedColumn
  1638. Caption = '14'
  1639. DataBinding.ValueType = 'Integer'
  1640. PropertiesClassName = 'TcxCalcEditProperties'
  1641. Properties.Alignment.Horz = taRightJustify
  1642. Properties.Alignment.Vert = taVCenter
  1643. Properties.DisplayFormat = '##,##0'
  1644. HeaderAlignmentHorz = taCenter
  1645. HeaderAlignmentVert = vaCenter
  1646. Width = 50
  1647. Position.BandIndex = 1
  1648. Position.ColIndex = 13
  1649. Position.RowIndex = 0
  1650. end
  1651. object ColMon15: TcxGridBandedColumn
  1652. Caption = '15'
  1653. DataBinding.ValueType = 'Integer'
  1654. PropertiesClassName = 'TcxCalcEditProperties'
  1655. Properties.Alignment.Horz = taRightJustify
  1656. Properties.Alignment.Vert = taVCenter
  1657. Properties.DisplayFormat = '##,##0'
  1658. HeaderAlignmentHorz = taCenter
  1659. HeaderAlignmentVert = vaCenter
  1660. Width = 50
  1661. Position.BandIndex = 1
  1662. Position.ColIndex = 14
  1663. Position.RowIndex = 0
  1664. end
  1665. object ColMon16: TcxGridBandedColumn
  1666. Caption = '16'
  1667. DataBinding.ValueType = 'Integer'
  1668. PropertiesClassName = 'TcxCalcEditProperties'
  1669. Properties.Alignment.Horz = taRightJustify
  1670. Properties.Alignment.Vert = taVCenter
  1671. Properties.DisplayFormat = '##,##0'
  1672. HeaderAlignmentHorz = taCenter
  1673. HeaderAlignmentVert = vaCenter
  1674. Width = 50
  1675. Position.BandIndex = 1
  1676. Position.ColIndex = 15
  1677. Position.RowIndex = 0
  1678. end
  1679. object ColMon17: TcxGridBandedColumn
  1680. Caption = '17'
  1681. DataBinding.ValueType = 'Integer'
  1682. PropertiesClassName = 'TcxCalcEditProperties'
  1683. Properties.Alignment.Horz = taRightJustify
  1684. Properties.Alignment.Vert = taVCenter
  1685. Properties.DisplayFormat = '##,##0'
  1686. HeaderAlignmentHorz = taCenter
  1687. HeaderAlignmentVert = vaCenter
  1688. Width = 50
  1689. Position.BandIndex = 1
  1690. Position.ColIndex = 16
  1691. Position.RowIndex = 0
  1692. end
  1693. object ColMon18: TcxGridBandedColumn
  1694. Caption = '18'
  1695. DataBinding.ValueType = 'Integer'
  1696. PropertiesClassName = 'TcxCalcEditProperties'
  1697. Properties.Alignment.Horz = taRightJustify
  1698. Properties.Alignment.Vert = taVCenter
  1699. Properties.DisplayFormat = '##,##0'
  1700. HeaderAlignmentHorz = taCenter
  1701. HeaderAlignmentVert = vaCenter
  1702. Width = 50
  1703. Position.BandIndex = 1
  1704. Position.ColIndex = 17
  1705. Position.RowIndex = 0
  1706. end
  1707. object ColMon19: TcxGridBandedColumn
  1708. Caption = '19'
  1709. DataBinding.ValueType = 'Integer'
  1710. PropertiesClassName = 'TcxCalcEditProperties'
  1711. Properties.Alignment.Horz = taRightJustify
  1712. Properties.Alignment.Vert = taVCenter
  1713. Properties.DisplayFormat = '##,##0'
  1714. HeaderAlignmentHorz = taCenter
  1715. HeaderAlignmentVert = vaCenter
  1716. Width = 50
  1717. Position.BandIndex = 1
  1718. Position.ColIndex = 18
  1719. Position.RowIndex = 0
  1720. end
  1721. object ColMon20: TcxGridBandedColumn
  1722. Caption = '20'
  1723. DataBinding.ValueType = 'Integer'
  1724. PropertiesClassName = 'TcxCalcEditProperties'
  1725. Properties.Alignment.Horz = taRightJustify
  1726. Properties.Alignment.Vert = taVCenter
  1727. Properties.DisplayFormat = '##,##0'
  1728. HeaderAlignmentHorz = taCenter
  1729. HeaderAlignmentVert = vaCenter
  1730. Width = 50
  1731. Position.BandIndex = 1
  1732. Position.ColIndex = 19
  1733. Position.RowIndex = 0
  1734. end
  1735. object ColMon21: TcxGridBandedColumn
  1736. Caption = '21'
  1737. DataBinding.ValueType = 'Integer'
  1738. PropertiesClassName = 'TcxCalcEditProperties'
  1739. Properties.Alignment.Horz = taRightJustify
  1740. Properties.Alignment.Vert = taVCenter
  1741. Properties.DisplayFormat = '##,##0'
  1742. HeaderAlignmentHorz = taCenter
  1743. HeaderAlignmentVert = vaCenter
  1744. Width = 50
  1745. Position.BandIndex = 1
  1746. Position.ColIndex = 20
  1747. Position.RowIndex = 0
  1748. end
  1749. object ColMon22: TcxGridBandedColumn
  1750. Caption = '22'
  1751. DataBinding.ValueType = 'Integer'
  1752. PropertiesClassName = 'TcxCalcEditProperties'
  1753. Properties.Alignment.Horz = taRightJustify
  1754. Properties.Alignment.Vert = taVCenter
  1755. Properties.DisplayFormat = '##,##0'
  1756. HeaderAlignmentHorz = taCenter
  1757. HeaderAlignmentVert = vaCenter
  1758. Width = 50
  1759. Position.BandIndex = 1
  1760. Position.ColIndex = 21
  1761. Position.RowIndex = 0
  1762. end
  1763. object ColMon23: TcxGridBandedColumn
  1764. Caption = '23'
  1765. DataBinding.ValueType = 'Integer'
  1766. PropertiesClassName = 'TcxCalcEditProperties'
  1767. Properties.Alignment.Horz = taRightJustify
  1768. Properties.Alignment.Vert = taVCenter
  1769. Properties.DisplayFormat = '##,##0'
  1770. HeaderAlignmentHorz = taCenter
  1771. HeaderAlignmentVert = vaCenter
  1772. Width = 50
  1773. Position.BandIndex = 1
  1774. Position.ColIndex = 22
  1775. Position.RowIndex = 0
  1776. end
  1777. object ColMon24: TcxGridBandedColumn
  1778. Caption = '24'
  1779. DataBinding.ValueType = 'Integer'
  1780. PropertiesClassName = 'TcxCalcEditProperties'
  1781. Properties.Alignment.Horz = taRightJustify
  1782. Properties.Alignment.Vert = taVCenter
  1783. Properties.DisplayFormat = '##,##0'
  1784. HeaderAlignmentHorz = taCenter
  1785. HeaderAlignmentVert = vaCenter
  1786. Width = 50
  1787. Position.BandIndex = 1
  1788. Position.ColIndex = 23
  1789. Position.RowIndex = 0
  1790. end
  1791. object ColMon25: TcxGridBandedColumn
  1792. Caption = '25'
  1793. DataBinding.ValueType = 'Integer'
  1794. PropertiesClassName = 'TcxCalcEditProperties'
  1795. Properties.Alignment.Horz = taRightJustify
  1796. Properties.Alignment.Vert = taVCenter
  1797. Properties.DisplayFormat = '##,##0'
  1798. HeaderAlignmentHorz = taCenter
  1799. HeaderAlignmentVert = vaCenter
  1800. Width = 50
  1801. Position.BandIndex = 1
  1802. Position.ColIndex = 24
  1803. Position.RowIndex = 0
  1804. end
  1805. object ColMon26: TcxGridBandedColumn
  1806. Caption = '26'
  1807. DataBinding.ValueType = 'Integer'
  1808. PropertiesClassName = 'TcxCalcEditProperties'
  1809. Properties.Alignment.Horz = taRightJustify
  1810. Properties.Alignment.Vert = taVCenter
  1811. Properties.DisplayFormat = '##,##0'
  1812. HeaderAlignmentHorz = taCenter
  1813. HeaderAlignmentVert = vaCenter
  1814. Width = 50
  1815. Position.BandIndex = 1
  1816. Position.ColIndex = 25
  1817. Position.RowIndex = 0
  1818. end
  1819. object ColMon27: TcxGridBandedColumn
  1820. Caption = '27'
  1821. DataBinding.ValueType = 'Integer'
  1822. PropertiesClassName = 'TcxCalcEditProperties'
  1823. Properties.Alignment.Horz = taRightJustify
  1824. Properties.Alignment.Vert = taVCenter
  1825. Properties.DisplayFormat = '##,##0'
  1826. HeaderAlignmentHorz = taCenter
  1827. HeaderAlignmentVert = vaCenter
  1828. Width = 50
  1829. Position.BandIndex = 1
  1830. Position.ColIndex = 26
  1831. Position.RowIndex = 0
  1832. end
  1833. object ColMon28: TcxGridBandedColumn
  1834. Caption = '28'
  1835. DataBinding.ValueType = 'Integer'
  1836. PropertiesClassName = 'TcxCalcEditProperties'
  1837. Properties.Alignment.Horz = taRightJustify
  1838. Properties.Alignment.Vert = taVCenter
  1839. Properties.DisplayFormat = '##,##0'
  1840. HeaderAlignmentHorz = taCenter
  1841. HeaderAlignmentVert = vaCenter
  1842. Width = 50
  1843. Position.BandIndex = 1
  1844. Position.ColIndex = 27
  1845. Position.RowIndex = 0
  1846. end
  1847. object ColMon29: TcxGridBandedColumn
  1848. Caption = '29'
  1849. DataBinding.ValueType = 'Integer'
  1850. PropertiesClassName = 'TcxCalcEditProperties'
  1851. Properties.Alignment.Horz = taRightJustify
  1852. Properties.Alignment.Vert = taVCenter
  1853. Properties.DisplayFormat = '##,##0'
  1854. HeaderAlignmentHorz = taCenter
  1855. HeaderAlignmentVert = vaCenter
  1856. Width = 50
  1857. Position.BandIndex = 1
  1858. Position.ColIndex = 28
  1859. Position.RowIndex = 0
  1860. end
  1861. object ColMon30: TcxGridBandedColumn
  1862. Caption = '30'
  1863. DataBinding.ValueType = 'Integer'
  1864. PropertiesClassName = 'TcxCalcEditProperties'
  1865. Properties.Alignment.Horz = taRightJustify
  1866. Properties.Alignment.Vert = taVCenter
  1867. Properties.DisplayFormat = '##,##0'
  1868. HeaderAlignmentHorz = taCenter
  1869. HeaderAlignmentVert = vaCenter
  1870. Width = 50
  1871. Position.BandIndex = 1
  1872. Position.ColIndex = 29
  1873. Position.RowIndex = 0
  1874. end
  1875. object ColMon31: TcxGridBandedColumn
  1876. Caption = '31'
  1877. DataBinding.ValueType = 'Integer'
  1878. PropertiesClassName = 'TcxCalcEditProperties'
  1879. Properties.Alignment.Horz = taRightJustify
  1880. Properties.Alignment.Vert = taVCenter
  1881. Properties.DisplayFormat = '##,##0'
  1882. HeaderAlignmentHorz = taCenter
  1883. HeaderAlignmentVert = vaCenter
  1884. Width = 50
  1885. Position.BandIndex = 1
  1886. Position.ColIndex = 30
  1887. Position.RowIndex = 0
  1888. end
  1889. end
  1890. object GlMon: TcxGridLevel
  1891. Caption = #45936#51060#53552
  1892. GridView = TvMon
  1893. end
  1894. end
  1895. end
  1896. object TsListYear: TcxTabSheet
  1897. Caption = #50900#48324#53685#44228
  1898. ImageIndex = 2
  1899. object PnlYearGraph: TPanel
  1900. Left = 0
  1901. Top = 269
  1902. Width = 1428
  1903. Height = 320
  1904. Align = alBottom
  1905. BevelInner = bvLowered
  1906. BevelOuter = bvNone
  1907. TabOrder = 0
  1908. inline FRAMEChart3: TFRAMEChart
  1909. Left = 1
  1910. Top = 1
  1911. Width = 1426
  1912. Height = 318
  1913. Align = alClient
  1914. TabOrder = 0
  1915. ExplicitLeft = 1
  1916. ExplicitTop = 1
  1917. ExplicitWidth = 1426
  1918. ExplicitHeight = 318
  1919. inherited CxChart: TcxGrid
  1920. Width = 1426
  1921. Height = 318
  1922. ExplicitWidth = 1426
  1923. ExplicitHeight = 318
  1924. end
  1925. inherited ChkDisplayVal: TcxCheckBox
  1926. ExplicitHeight = 21
  1927. end
  1928. inherited cxLabel2: TcxLabel
  1929. ExplicitWidth = 30
  1930. ExplicitHeight = 21
  1931. end
  1932. inherited LblPage: TcxLabel
  1933. ExplicitWidth = 18
  1934. ExplicitHeight = 21
  1935. end
  1936. inherited lblAll: TcxLabel
  1937. ExplicitWidth = 35
  1938. ExplicitHeight = 21
  1939. end
  1940. inherited lblImgSave: TcxLabel
  1941. ExplicitWidth = 110
  1942. ExplicitHeight = 21
  1943. end
  1944. inherited lblSaveErr: TcxLabel
  1945. ExplicitWidth = 261
  1946. ExplicitHeight = 21
  1947. end
  1948. inherited lblSaveOk: TcxLabel
  1949. ExplicitWidth = 191
  1950. ExplicitHeight = 21
  1951. end
  1952. end
  1953. end
  1954. object SplYear: TcxSplitter
  1955. Left = 0
  1956. Top = 263
  1957. Width = 1428
  1958. Height = 6
  1959. HotZoneClassName = 'TcxSimpleStyle'
  1960. AlignSplitter = salBottom
  1961. ResizeUpdate = True
  1962. Control = PnlYearGraph
  1963. Color = 3893744
  1964. ParentColor = False
  1965. end
  1966. object CxYear: TcxGrid
  1967. Left = 0
  1968. Top = 0
  1969. Width = 1428
  1970. Height = 263
  1971. Align = alClient
  1972. TabOrder = 2
  1973. object cxGridDBChartView2: TcxGridDBChartView
  1974. DiagramLine.Active = True
  1975. object cxGridDBChartSeries8: TcxGridDBChartSeries
  1976. DataBinding.FieldName = 'C00'
  1977. end
  1978. object cxGridDBChartSeries9: TcxGridDBChartSeries
  1979. DataBinding.FieldName = 'C01'
  1980. end
  1981. object cxGridDBChartSeries10: TcxGridDBChartSeries
  1982. DataBinding.FieldName = 'C02'
  1983. end
  1984. object cxGridDBChartSeries11: TcxGridDBChartSeries
  1985. DataBinding.FieldName = 'C03'
  1986. end
  1987. object cxGridDBChartSeries12: TcxGridDBChartSeries
  1988. DataBinding.FieldName = 'C04'
  1989. end
  1990. object cxGridDBChartSeries13: TcxGridDBChartSeries
  1991. DataBinding.FieldName = 'C05'
  1992. end
  1993. object cxGridDBChartSeries14: TcxGridDBChartSeries
  1994. DataBinding.FieldName = 'C06'
  1995. end
  1996. end
  1997. object TvYear: TcxGridBandedTableView
  1998. DataController.Summary.DefaultGroupSummaryItems.OnSummary = TvListDataControllerSummaryDefaultGroupSummaryItemsSummary
  1999. DataController.Summary.DefaultGroupSummaryItems = <>
  2000. DataController.Summary.FooterSummaryItems.OnSummary = TvListDataControllerSummaryFooterSummaryItemsSummary
  2001. DataController.Summary.FooterSummaryItems = <
  2002. item
  2003. Format = '##,##0'
  2004. Kind = skSum
  2005. Column = ColYearTt
  2006. VisibleForCustomization = False
  2007. end
  2008. item
  2009. Format = '##,##0'
  2010. Kind = skSum
  2011. VisibleForCustomization = False
  2012. end
  2013. item
  2014. Format = '##,##0'
  2015. Kind = skSum
  2016. Column = ColYear01
  2017. VisibleForCustomization = False
  2018. end
  2019. item
  2020. Format = '##,##0'
  2021. Kind = skSum
  2022. Column = ColYear02
  2023. VisibleForCustomization = False
  2024. end
  2025. item
  2026. Format = '##,##0'
  2027. Kind = skSum
  2028. Column = ColYear03
  2029. VisibleForCustomization = False
  2030. end
  2031. item
  2032. Format = '##,##0'
  2033. Kind = skSum
  2034. Column = ColYear04
  2035. VisibleForCustomization = False
  2036. end
  2037. item
  2038. Format = '##,##0'
  2039. Kind = skSum
  2040. Column = ColYear05
  2041. VisibleForCustomization = False
  2042. end
  2043. item
  2044. Format = '##,##0'
  2045. Kind = skSum
  2046. Column = ColYear06
  2047. VisibleForCustomization = False
  2048. end
  2049. item
  2050. Format = '##,##0'
  2051. Kind = skSum
  2052. Column = ColYear07
  2053. VisibleForCustomization = False
  2054. end
  2055. item
  2056. Format = '##,##0'
  2057. Kind = skSum
  2058. Column = ColYear08
  2059. VisibleForCustomization = False
  2060. end
  2061. item
  2062. Format = '##,##0'
  2063. Kind = skSum
  2064. Column = ColYear09
  2065. VisibleForCustomization = False
  2066. end
  2067. item
  2068. Format = '##,##0'
  2069. Kind = skSum
  2070. Column = ColYear10
  2071. VisibleForCustomization = False
  2072. end
  2073. item
  2074. Format = '##,##0'
  2075. Kind = skSum
  2076. Column = ColYear11
  2077. VisibleForCustomization = False
  2078. end
  2079. item
  2080. Format = '##,##0'
  2081. Kind = skSum
  2082. Column = ColYear12
  2083. VisibleForCustomization = False
  2084. end
  2085. item
  2086. Format = '##,##0'
  2087. Kind = skSum
  2088. VisibleForCustomization = False
  2089. end
  2090. item
  2091. Format = '##,##0'
  2092. Kind = skSum
  2093. VisibleForCustomization = False
  2094. end
  2095. item
  2096. Format = '##,##0'
  2097. Kind = skSum
  2098. VisibleForCustomization = False
  2099. end
  2100. item
  2101. Format = '##,##0'
  2102. Kind = skSum
  2103. VisibleForCustomization = False
  2104. end
  2105. item
  2106. Format = '##,##0'
  2107. Kind = skSum
  2108. VisibleForCustomization = False
  2109. end
  2110. item
  2111. Format = '##,##0'
  2112. Kind = skSum
  2113. VisibleForCustomization = False
  2114. end
  2115. item
  2116. Format = '##,##0'
  2117. Kind = skSum
  2118. VisibleForCustomization = False
  2119. end
  2120. item
  2121. Format = '##,##0'
  2122. Kind = skSum
  2123. VisibleForCustomization = False
  2124. end
  2125. item
  2126. Format = '##,##0'
  2127. Kind = skSum
  2128. VisibleForCustomization = False
  2129. end
  2130. item
  2131. Format = '##,##0'
  2132. Kind = skSum
  2133. VisibleForCustomization = False
  2134. end
  2135. item
  2136. Format = '##,##0'
  2137. Kind = skSum
  2138. VisibleForCustomization = False
  2139. end>
  2140. DataController.Summary.SummaryGroups = <>
  2141. OptionsCustomize.ColumnFiltering = False
  2142. OptionsCustomize.ColumnHidingOnGrouping = False
  2143. OptionsCustomize.ColumnMoving = False
  2144. OptionsCustomize.BandMoving = False
  2145. OptionsCustomize.ColumnVertSizing = False
  2146. OptionsData.CancelOnExit = False
  2147. OptionsData.Deleting = False
  2148. OptionsData.DeletingConfirmation = False
  2149. OptionsData.Editing = False
  2150. OptionsData.Inserting = False
  2151. OptionsView.Footer = True
  2152. OptionsView.GroupByBox = False
  2153. OptionsView.Indicator = True
  2154. Bands = <
  2155. item
  2156. Caption = 'CCTV'
  2157. Width = 326
  2158. end
  2159. item
  2160. Caption = #50900#48324' '#51217#49549#53685#44228
  2161. end>
  2162. object ColYearNo: TcxGridBandedColumn
  2163. Caption = 'ID'
  2164. PropertiesClassName = 'TcxLabelProperties'
  2165. Properties.Alignment.Horz = taCenter
  2166. Properties.Alignment.Vert = taVCenter
  2167. HeaderAlignmentHorz = taCenter
  2168. HeaderAlignmentVert = vaCenter
  2169. Width = 63
  2170. Position.BandIndex = 0
  2171. Position.ColIndex = 0
  2172. Position.RowIndex = 0
  2173. end
  2174. object ColYearNm: TcxGridBandedColumn
  2175. Caption = #49444#52824#50948#52824
  2176. PropertiesClassName = 'TcxLabelProperties'
  2177. Properties.Alignment.Vert = taVCenter
  2178. HeaderAlignmentHorz = taCenter
  2179. HeaderAlignmentVert = vaCenter
  2180. Width = 208
  2181. Position.BandIndex = 0
  2182. Position.ColIndex = 1
  2183. Position.RowIndex = 0
  2184. end
  2185. object ColYearTt: TcxGridBandedColumn
  2186. Caption = #49548#44228
  2187. DataBinding.ValueType = 'Integer'
  2188. PropertiesClassName = 'TcxCalcEditProperties'
  2189. Properties.Alignment.Horz = taRightJustify
  2190. Properties.Alignment.Vert = taVCenter
  2191. Properties.DisplayFormat = '##,##0'
  2192. HeaderAlignmentHorz = taCenter
  2193. HeaderAlignmentVert = vaCenter
  2194. Width = 55
  2195. Position.BandIndex = 0
  2196. Position.ColIndex = 2
  2197. Position.RowIndex = 0
  2198. end
  2199. object ColYear01: TcxGridBandedColumn
  2200. Caption = '01'
  2201. DataBinding.ValueType = 'Integer'
  2202. PropertiesClassName = 'TcxCalcEditProperties'
  2203. Properties.Alignment.Horz = taRightJustify
  2204. Properties.Alignment.Vert = taVCenter
  2205. Properties.DisplayFormat = '##,##0'
  2206. HeaderAlignmentHorz = taCenter
  2207. HeaderAlignmentVert = vaCenter
  2208. Width = 70
  2209. Position.BandIndex = 1
  2210. Position.ColIndex = 0
  2211. Position.RowIndex = 0
  2212. end
  2213. object ColYear02: TcxGridBandedColumn
  2214. Caption = '02'
  2215. DataBinding.ValueType = 'Integer'
  2216. PropertiesClassName = 'TcxCalcEditProperties'
  2217. Properties.Alignment.Horz = taRightJustify
  2218. Properties.Alignment.Vert = taVCenter
  2219. Properties.DisplayFormat = '##,##0'
  2220. HeaderAlignmentHorz = taCenter
  2221. HeaderAlignmentVert = vaCenter
  2222. Width = 70
  2223. Position.BandIndex = 1
  2224. Position.ColIndex = 1
  2225. Position.RowIndex = 0
  2226. end
  2227. object ColYear03: TcxGridBandedColumn
  2228. Caption = '03'
  2229. DataBinding.ValueType = 'Integer'
  2230. PropertiesClassName = 'TcxCalcEditProperties'
  2231. Properties.Alignment.Horz = taRightJustify
  2232. Properties.Alignment.Vert = taVCenter
  2233. Properties.DisplayFormat = '##,##0'
  2234. HeaderAlignmentHorz = taCenter
  2235. HeaderAlignmentVert = vaCenter
  2236. Width = 70
  2237. Position.BandIndex = 1
  2238. Position.ColIndex = 2
  2239. Position.RowIndex = 0
  2240. end
  2241. object ColYear04: TcxGridBandedColumn
  2242. Caption = '04'
  2243. DataBinding.ValueType = 'Integer'
  2244. PropertiesClassName = 'TcxCalcEditProperties'
  2245. Properties.Alignment.Horz = taRightJustify
  2246. Properties.Alignment.Vert = taVCenter
  2247. Properties.DisplayFormat = '##,##0'
  2248. HeaderAlignmentHorz = taCenter
  2249. HeaderAlignmentVert = vaCenter
  2250. Width = 70
  2251. Position.BandIndex = 1
  2252. Position.ColIndex = 3
  2253. Position.RowIndex = 0
  2254. end
  2255. object ColYear05: TcxGridBandedColumn
  2256. Caption = '05'
  2257. DataBinding.ValueType = 'Integer'
  2258. PropertiesClassName = 'TcxCalcEditProperties'
  2259. Properties.Alignment.Horz = taRightJustify
  2260. Properties.Alignment.Vert = taVCenter
  2261. Properties.DisplayFormat = '##,##0'
  2262. HeaderAlignmentHorz = taCenter
  2263. HeaderAlignmentVert = vaCenter
  2264. Width = 70
  2265. Position.BandIndex = 1
  2266. Position.ColIndex = 4
  2267. Position.RowIndex = 0
  2268. end
  2269. object ColYear06: TcxGridBandedColumn
  2270. Caption = '06'
  2271. DataBinding.ValueType = 'Integer'
  2272. PropertiesClassName = 'TcxCalcEditProperties'
  2273. Properties.Alignment.Horz = taRightJustify
  2274. Properties.Alignment.Vert = taVCenter
  2275. Properties.DisplayFormat = '##,##0'
  2276. HeaderAlignmentHorz = taCenter
  2277. HeaderAlignmentVert = vaCenter
  2278. Width = 70
  2279. Position.BandIndex = 1
  2280. Position.ColIndex = 5
  2281. Position.RowIndex = 0
  2282. end
  2283. object ColYear07: TcxGridBandedColumn
  2284. Caption = '07'
  2285. DataBinding.ValueType = 'Integer'
  2286. PropertiesClassName = 'TcxCalcEditProperties'
  2287. Properties.Alignment.Horz = taRightJustify
  2288. Properties.Alignment.Vert = taVCenter
  2289. Properties.DisplayFormat = '##,##0'
  2290. HeaderAlignmentHorz = taCenter
  2291. HeaderAlignmentVert = vaCenter
  2292. Width = 70
  2293. Position.BandIndex = 1
  2294. Position.ColIndex = 6
  2295. Position.RowIndex = 0
  2296. end
  2297. object ColYear08: TcxGridBandedColumn
  2298. Caption = '08'
  2299. DataBinding.ValueType = 'Integer'
  2300. PropertiesClassName = 'TcxCalcEditProperties'
  2301. Properties.Alignment.Horz = taRightJustify
  2302. Properties.Alignment.Vert = taVCenter
  2303. Properties.DisplayFormat = '##,##0'
  2304. HeaderAlignmentHorz = taCenter
  2305. HeaderAlignmentVert = vaCenter
  2306. Width = 70
  2307. Position.BandIndex = 1
  2308. Position.ColIndex = 7
  2309. Position.RowIndex = 0
  2310. end
  2311. object ColYear09: TcxGridBandedColumn
  2312. Caption = '09'
  2313. DataBinding.ValueType = 'Integer'
  2314. PropertiesClassName = 'TcxCalcEditProperties'
  2315. Properties.Alignment.Horz = taRightJustify
  2316. Properties.Alignment.Vert = taVCenter
  2317. Properties.DisplayFormat = '##,##0'
  2318. HeaderAlignmentHorz = taCenter
  2319. HeaderAlignmentVert = vaCenter
  2320. Width = 70
  2321. Position.BandIndex = 1
  2322. Position.ColIndex = 8
  2323. Position.RowIndex = 0
  2324. end
  2325. object ColYear10: TcxGridBandedColumn
  2326. Caption = '10'
  2327. DataBinding.ValueType = 'Integer'
  2328. PropertiesClassName = 'TcxCalcEditProperties'
  2329. Properties.Alignment.Horz = taRightJustify
  2330. Properties.Alignment.Vert = taVCenter
  2331. Properties.DisplayFormat = '##,##0'
  2332. HeaderAlignmentHorz = taCenter
  2333. HeaderAlignmentVert = vaCenter
  2334. Width = 70
  2335. Position.BandIndex = 1
  2336. Position.ColIndex = 9
  2337. Position.RowIndex = 0
  2338. end
  2339. object ColYear11: TcxGridBandedColumn
  2340. Caption = '11'
  2341. DataBinding.ValueType = 'Integer'
  2342. PropertiesClassName = 'TcxCalcEditProperties'
  2343. Properties.Alignment.Horz = taRightJustify
  2344. Properties.Alignment.Vert = taVCenter
  2345. Properties.DisplayFormat = '##,##0'
  2346. HeaderAlignmentHorz = taCenter
  2347. HeaderAlignmentVert = vaCenter
  2348. Width = 70
  2349. Position.BandIndex = 1
  2350. Position.ColIndex = 10
  2351. Position.RowIndex = 0
  2352. end
  2353. object ColYear12: TcxGridBandedColumn
  2354. Caption = '12'
  2355. DataBinding.ValueType = 'Integer'
  2356. PropertiesClassName = 'TcxCalcEditProperties'
  2357. Properties.Alignment.Horz = taRightJustify
  2358. Properties.Alignment.Vert = taVCenter
  2359. Properties.DisplayFormat = '##,##0'
  2360. HeaderAlignmentHorz = taCenter
  2361. HeaderAlignmentVert = vaCenter
  2362. Width = 70
  2363. Position.BandIndex = 1
  2364. Position.ColIndex = 11
  2365. Position.RowIndex = 0
  2366. end
  2367. end
  2368. object GlYear: TcxGridLevel
  2369. Caption = #45936#51060#53552
  2370. GridView = TvYear
  2371. end
  2372. end
  2373. end
  2374. object TsListTermYear: TcxTabSheet
  2375. Caption = #45380#53685#44228
  2376. ImageIndex = 3
  2377. object SplTermYear: TcxSplitter
  2378. Left = 0
  2379. Top = 263
  2380. Width = 1428
  2381. Height = 6
  2382. HotZoneClassName = 'TcxSimpleStyle'
  2383. AlignSplitter = salBottom
  2384. ResizeUpdate = True
  2385. Control = PnlTermYear
  2386. end
  2387. object PnlTermYear: TPanel
  2388. Left = 0
  2389. Top = 269
  2390. Width = 1428
  2391. Height = 320
  2392. Align = alBottom
  2393. BevelInner = bvLowered
  2394. BevelOuter = bvNone
  2395. ParentColor = True
  2396. TabOrder = 1
  2397. inline FRAMEChart4: TFRAMEChart
  2398. Left = 1
  2399. Top = 1
  2400. Width = 1426
  2401. Height = 318
  2402. Align = alClient
  2403. TabOrder = 0
  2404. ExplicitLeft = 1
  2405. ExplicitTop = 1
  2406. ExplicitWidth = 1426
  2407. ExplicitHeight = 318
  2408. inherited CxChart: TcxGrid
  2409. Width = 1426
  2410. Height = 318
  2411. ExplicitWidth = 1426
  2412. ExplicitHeight = 318
  2413. end
  2414. inherited ChkDisplayVal: TcxCheckBox
  2415. ExplicitHeight = 21
  2416. end
  2417. inherited cxLabel2: TcxLabel
  2418. ExplicitWidth = 30
  2419. ExplicitHeight = 21
  2420. end
  2421. inherited LblPage: TcxLabel
  2422. ExplicitWidth = 18
  2423. ExplicitHeight = 21
  2424. end
  2425. inherited lblAll: TcxLabel
  2426. ExplicitWidth = 35
  2427. ExplicitHeight = 21
  2428. end
  2429. inherited lblImgSave: TcxLabel
  2430. ExplicitWidth = 110
  2431. ExplicitHeight = 21
  2432. end
  2433. inherited lblSaveErr: TcxLabel
  2434. ExplicitWidth = 261
  2435. ExplicitHeight = 21
  2436. end
  2437. inherited lblSaveOk: TcxLabel
  2438. ExplicitWidth = 191
  2439. ExplicitHeight = 21
  2440. end
  2441. end
  2442. end
  2443. object CxTermYear: TcxGrid
  2444. Left = 0
  2445. Top = 0
  2446. Width = 1428
  2447. Height = 263
  2448. Align = alClient
  2449. TabOrder = 2
  2450. object cxGridDBChartView1: TcxGridDBChartView
  2451. DiagramLine.Active = True
  2452. object cxGridDBChartSeries1: TcxGridDBChartSeries
  2453. DataBinding.FieldName = 'C00'
  2454. end
  2455. object cxGridDBChartSeries2: TcxGridDBChartSeries
  2456. DataBinding.FieldName = 'C01'
  2457. end
  2458. object cxGridDBChartSeries3: TcxGridDBChartSeries
  2459. DataBinding.FieldName = 'C02'
  2460. end
  2461. object cxGridDBChartSeries4: TcxGridDBChartSeries
  2462. DataBinding.FieldName = 'C03'
  2463. end
  2464. object cxGridDBChartSeries5: TcxGridDBChartSeries
  2465. DataBinding.FieldName = 'C04'
  2466. end
  2467. object cxGridDBChartSeries6: TcxGridDBChartSeries
  2468. DataBinding.FieldName = 'C05'
  2469. end
  2470. object cxGridDBChartSeries7: TcxGridDBChartSeries
  2471. DataBinding.FieldName = 'C06'
  2472. end
  2473. end
  2474. object TvTermYear: TcxGridBandedTableView
  2475. DataController.Summary.DefaultGroupSummaryItems.OnSummary = TvListDataControllerSummaryDefaultGroupSummaryItemsSummary
  2476. DataController.Summary.DefaultGroupSummaryItems = <>
  2477. DataController.Summary.FooterSummaryItems.OnSummary = TvListDataControllerSummaryFooterSummaryItemsSummary
  2478. DataController.Summary.FooterSummaryItems = <
  2479. item
  2480. Format = '##,##0'
  2481. Kind = skSum
  2482. Column = ColTYearTt
  2483. VisibleForCustomization = False
  2484. end
  2485. item
  2486. Format = '##,##0'
  2487. Kind = skSum
  2488. Column = ColTYear00
  2489. VisibleForCustomization = False
  2490. end
  2491. item
  2492. Format = '##,##0'
  2493. Kind = skSum
  2494. Column = ColTYear01
  2495. VisibleForCustomization = False
  2496. end
  2497. item
  2498. Format = '##,##0'
  2499. Kind = skSum
  2500. Column = ColTYear02
  2501. VisibleForCustomization = False
  2502. end
  2503. item
  2504. Format = '##,##0'
  2505. Kind = skSum
  2506. Column = ColTYear03
  2507. VisibleForCustomization = False
  2508. end
  2509. item
  2510. Format = '##,##0'
  2511. Kind = skSum
  2512. Column = ColTYear04
  2513. VisibleForCustomization = False
  2514. end
  2515. item
  2516. Format = '##,##0'
  2517. Kind = skSum
  2518. Column = ColTYear05
  2519. VisibleForCustomization = False
  2520. end
  2521. item
  2522. Format = '##,##0'
  2523. Kind = skSum
  2524. Column = ColTYear06
  2525. VisibleForCustomization = False
  2526. end
  2527. item
  2528. Format = '##,##0'
  2529. Kind = skSum
  2530. Column = ColTYear07
  2531. VisibleForCustomization = False
  2532. end
  2533. item
  2534. Format = '##,##0'
  2535. Kind = skSum
  2536. Column = ColTYear08
  2537. VisibleForCustomization = False
  2538. end
  2539. item
  2540. Format = '##,##0'
  2541. Kind = skSum
  2542. Column = ColTYear09
  2543. VisibleForCustomization = False
  2544. end
  2545. item
  2546. Format = '##,##0'
  2547. Kind = skSum
  2548. Column = ColTYear10
  2549. VisibleForCustomization = False
  2550. end
  2551. item
  2552. Format = '##,##0'
  2553. Kind = skSum
  2554. Column = ColTYear11
  2555. VisibleForCustomization = False
  2556. end
  2557. item
  2558. Format = '##,##0'
  2559. Kind = skSum
  2560. Column = ColTYear12
  2561. VisibleForCustomization = False
  2562. end
  2563. item
  2564. Format = '##,##0'
  2565. Kind = skSum
  2566. Column = ColTYear13
  2567. VisibleForCustomization = False
  2568. end
  2569. item
  2570. Format = '##,##0'
  2571. Kind = skSum
  2572. Column = ColTYear14
  2573. VisibleForCustomization = False
  2574. end
  2575. item
  2576. Format = '##,##0'
  2577. Kind = skSum
  2578. Column = ColTYear15
  2579. VisibleForCustomization = False
  2580. end
  2581. item
  2582. Format = '##,##0'
  2583. Kind = skSum
  2584. Column = ColTYear16
  2585. VisibleForCustomization = False
  2586. end
  2587. item
  2588. Format = '##,##0'
  2589. Kind = skSum
  2590. Column = ColTYear17
  2591. VisibleForCustomization = False
  2592. end
  2593. item
  2594. Format = '##,##0'
  2595. Kind = skSum
  2596. Column = ColTYear18
  2597. VisibleForCustomization = False
  2598. end
  2599. item
  2600. Format = '##,##0'
  2601. Kind = skSum
  2602. Column = ColTYear19
  2603. VisibleForCustomization = False
  2604. end
  2605. item
  2606. Format = '##,##0'
  2607. Kind = skSum
  2608. Column = ColTYear20
  2609. VisibleForCustomization = False
  2610. end
  2611. item
  2612. Format = '##,##0'
  2613. Kind = skSum
  2614. Column = ColTYear21
  2615. VisibleForCustomization = False
  2616. end
  2617. item
  2618. Format = '##,##0'
  2619. Kind = skSum
  2620. Column = ColTYear22
  2621. VisibleForCustomization = False
  2622. end
  2623. item
  2624. Format = '##,##0'
  2625. Kind = skSum
  2626. Column = ColTYear23
  2627. VisibleForCustomization = False
  2628. end>
  2629. DataController.Summary.SummaryGroups = <>
  2630. OptionsCustomize.ColumnFiltering = False
  2631. OptionsCustomize.ColumnHidingOnGrouping = False
  2632. OptionsCustomize.ColumnMoving = False
  2633. OptionsCustomize.BandMoving = False
  2634. OptionsCustomize.ColumnVertSizing = False
  2635. OptionsData.CancelOnExit = False
  2636. OptionsData.Deleting = False
  2637. OptionsData.DeletingConfirmation = False
  2638. OptionsData.Editing = False
  2639. OptionsData.Inserting = False
  2640. OptionsView.Footer = True
  2641. OptionsView.GroupByBox = False
  2642. OptionsView.Indicator = True
  2643. Bands = <
  2644. item
  2645. Caption = 'CCTV'
  2646. Width = 326
  2647. end
  2648. item
  2649. Caption = #45380#48324' '#51217#49549#53685#44228
  2650. end>
  2651. object ColTYearNo: TcxGridBandedColumn
  2652. Caption = 'ID'
  2653. PropertiesClassName = 'TcxLabelProperties'
  2654. Properties.Alignment.Horz = taCenter
  2655. Properties.Alignment.Vert = taVCenter
  2656. HeaderAlignmentHorz = taCenter
  2657. HeaderAlignmentVert = vaCenter
  2658. Width = 63
  2659. Position.BandIndex = 0
  2660. Position.ColIndex = 0
  2661. Position.RowIndex = 0
  2662. end
  2663. object ColTYearNm: TcxGridBandedColumn
  2664. Caption = #49444#52824#50948#52824
  2665. PropertiesClassName = 'TcxLabelProperties'
  2666. Properties.Alignment.Vert = taVCenter
  2667. HeaderAlignmentHorz = taCenter
  2668. HeaderAlignmentVert = vaCenter
  2669. Width = 208
  2670. Position.BandIndex = 0
  2671. Position.ColIndex = 1
  2672. Position.RowIndex = 0
  2673. end
  2674. object ColTYearTt: TcxGridBandedColumn
  2675. Caption = #49548#44228
  2676. DataBinding.ValueType = 'Integer'
  2677. PropertiesClassName = 'TcxCalcEditProperties'
  2678. Properties.Alignment.Horz = taRightJustify
  2679. Properties.Alignment.Vert = taVCenter
  2680. Properties.DisplayFormat = '##,##0'
  2681. HeaderAlignmentHorz = taCenter
  2682. HeaderAlignmentVert = vaCenter
  2683. Width = 55
  2684. Position.BandIndex = 0
  2685. Position.ColIndex = 2
  2686. Position.RowIndex = 0
  2687. end
  2688. object ColTYear00: TcxGridBandedColumn
  2689. Caption = '00'
  2690. DataBinding.ValueType = 'Integer'
  2691. PropertiesClassName = 'TcxCalcEditProperties'
  2692. Properties.Alignment.Horz = taRightJustify
  2693. Properties.Alignment.Vert = taVCenter
  2694. Properties.DisplayFormat = '##,##0'
  2695. HeaderAlignmentHorz = taCenter
  2696. HeaderAlignmentVert = vaCenter
  2697. Width = 50
  2698. Position.BandIndex = 1
  2699. Position.ColIndex = 0
  2700. Position.RowIndex = 0
  2701. end
  2702. object ColTYear01: TcxGridBandedColumn
  2703. Caption = '01'
  2704. DataBinding.ValueType = 'Integer'
  2705. PropertiesClassName = 'TcxCalcEditProperties'
  2706. Properties.Alignment.Horz = taRightJustify
  2707. Properties.Alignment.Vert = taVCenter
  2708. Properties.DisplayFormat = '##,##0'
  2709. HeaderAlignmentHorz = taCenter
  2710. HeaderAlignmentVert = vaCenter
  2711. Width = 50
  2712. Position.BandIndex = 1
  2713. Position.ColIndex = 1
  2714. Position.RowIndex = 0
  2715. end
  2716. object ColTYear02: TcxGridBandedColumn
  2717. Caption = '02'
  2718. DataBinding.ValueType = 'Integer'
  2719. PropertiesClassName = 'TcxCalcEditProperties'
  2720. Properties.Alignment.Horz = taRightJustify
  2721. Properties.Alignment.Vert = taVCenter
  2722. Properties.DisplayFormat = '##,##0'
  2723. HeaderAlignmentHorz = taCenter
  2724. HeaderAlignmentVert = vaCenter
  2725. Width = 50
  2726. Position.BandIndex = 1
  2727. Position.ColIndex = 2
  2728. Position.RowIndex = 0
  2729. end
  2730. object ColTYear03: TcxGridBandedColumn
  2731. Caption = '03'
  2732. DataBinding.ValueType = 'Integer'
  2733. PropertiesClassName = 'TcxCalcEditProperties'
  2734. Properties.Alignment.Horz = taRightJustify
  2735. Properties.Alignment.Vert = taVCenter
  2736. Properties.DisplayFormat = '##,##0'
  2737. HeaderAlignmentHorz = taCenter
  2738. HeaderAlignmentVert = vaCenter
  2739. Width = 50
  2740. Position.BandIndex = 1
  2741. Position.ColIndex = 3
  2742. Position.RowIndex = 0
  2743. end
  2744. object ColTYear04: TcxGridBandedColumn
  2745. Caption = '04'
  2746. DataBinding.ValueType = 'Integer'
  2747. PropertiesClassName = 'TcxCalcEditProperties'
  2748. Properties.Alignment.Horz = taRightJustify
  2749. Properties.Alignment.Vert = taVCenter
  2750. Properties.DisplayFormat = '##,##0'
  2751. HeaderAlignmentHorz = taCenter
  2752. HeaderAlignmentVert = vaCenter
  2753. Width = 50
  2754. Position.BandIndex = 1
  2755. Position.ColIndex = 4
  2756. Position.RowIndex = 0
  2757. end
  2758. object ColTYear05: TcxGridBandedColumn
  2759. Caption = '05'
  2760. DataBinding.ValueType = 'Integer'
  2761. PropertiesClassName = 'TcxCalcEditProperties'
  2762. Properties.Alignment.Horz = taRightJustify
  2763. Properties.Alignment.Vert = taVCenter
  2764. Properties.DisplayFormat = '##,##0'
  2765. HeaderAlignmentHorz = taCenter
  2766. HeaderAlignmentVert = vaCenter
  2767. Width = 50
  2768. Position.BandIndex = 1
  2769. Position.ColIndex = 5
  2770. Position.RowIndex = 0
  2771. end
  2772. object ColTYear06: TcxGridBandedColumn
  2773. Caption = '06'
  2774. DataBinding.ValueType = 'Integer'
  2775. PropertiesClassName = 'TcxCalcEditProperties'
  2776. Properties.Alignment.Horz = taRightJustify
  2777. Properties.Alignment.Vert = taVCenter
  2778. Properties.DisplayFormat = '##,##0'
  2779. HeaderAlignmentHorz = taCenter
  2780. HeaderAlignmentVert = vaCenter
  2781. Width = 50
  2782. Position.BandIndex = 1
  2783. Position.ColIndex = 6
  2784. Position.RowIndex = 0
  2785. end
  2786. object ColTYear07: TcxGridBandedColumn
  2787. Caption = '07'
  2788. DataBinding.ValueType = 'Integer'
  2789. PropertiesClassName = 'TcxCalcEditProperties'
  2790. Properties.Alignment.Horz = taRightJustify
  2791. Properties.Alignment.Vert = taVCenter
  2792. Properties.DisplayFormat = '##,##0'
  2793. HeaderAlignmentHorz = taCenter
  2794. HeaderAlignmentVert = vaCenter
  2795. Width = 50
  2796. Position.BandIndex = 1
  2797. Position.ColIndex = 7
  2798. Position.RowIndex = 0
  2799. end
  2800. object ColTYear08: TcxGridBandedColumn
  2801. Caption = '08'
  2802. DataBinding.ValueType = 'Integer'
  2803. PropertiesClassName = 'TcxCalcEditProperties'
  2804. Properties.Alignment.Horz = taRightJustify
  2805. Properties.Alignment.Vert = taVCenter
  2806. Properties.DisplayFormat = '##,##0'
  2807. HeaderAlignmentHorz = taCenter
  2808. HeaderAlignmentVert = vaCenter
  2809. Width = 50
  2810. Position.BandIndex = 1
  2811. Position.ColIndex = 8
  2812. Position.RowIndex = 0
  2813. end
  2814. object ColTYear09: TcxGridBandedColumn
  2815. Caption = '09'
  2816. DataBinding.ValueType = 'Integer'
  2817. PropertiesClassName = 'TcxCalcEditProperties'
  2818. Properties.Alignment.Horz = taRightJustify
  2819. Properties.Alignment.Vert = taVCenter
  2820. Properties.DisplayFormat = '##,##0'
  2821. HeaderAlignmentHorz = taCenter
  2822. HeaderAlignmentVert = vaCenter
  2823. Width = 50
  2824. Position.BandIndex = 1
  2825. Position.ColIndex = 9
  2826. Position.RowIndex = 0
  2827. end
  2828. object ColTYear10: TcxGridBandedColumn
  2829. Caption = '10'
  2830. DataBinding.ValueType = 'Integer'
  2831. PropertiesClassName = 'TcxCalcEditProperties'
  2832. Properties.Alignment.Horz = taRightJustify
  2833. Properties.Alignment.Vert = taVCenter
  2834. Properties.DisplayFormat = '##,##0'
  2835. HeaderAlignmentHorz = taCenter
  2836. HeaderAlignmentVert = vaCenter
  2837. Width = 50
  2838. Position.BandIndex = 1
  2839. Position.ColIndex = 10
  2840. Position.RowIndex = 0
  2841. end
  2842. object ColTYear11: TcxGridBandedColumn
  2843. Caption = '11'
  2844. DataBinding.ValueType = 'Integer'
  2845. PropertiesClassName = 'TcxCalcEditProperties'
  2846. Properties.Alignment.Horz = taRightJustify
  2847. Properties.Alignment.Vert = taVCenter
  2848. Properties.DisplayFormat = '##,##0'
  2849. HeaderAlignmentHorz = taCenter
  2850. HeaderAlignmentVert = vaCenter
  2851. Width = 50
  2852. Position.BandIndex = 1
  2853. Position.ColIndex = 11
  2854. Position.RowIndex = 0
  2855. end
  2856. object ColTYear12: TcxGridBandedColumn
  2857. Caption = '12'
  2858. DataBinding.ValueType = 'Integer'
  2859. PropertiesClassName = 'TcxCalcEditProperties'
  2860. Properties.Alignment.Horz = taRightJustify
  2861. Properties.Alignment.Vert = taVCenter
  2862. Properties.DisplayFormat = '##,##0'
  2863. HeaderAlignmentHorz = taCenter
  2864. HeaderAlignmentVert = vaCenter
  2865. Width = 50
  2866. Position.BandIndex = 1
  2867. Position.ColIndex = 12
  2868. Position.RowIndex = 0
  2869. end
  2870. object ColTYear13: TcxGridBandedColumn
  2871. Caption = '13'
  2872. DataBinding.ValueType = 'Integer'
  2873. PropertiesClassName = 'TcxCalcEditProperties'
  2874. Properties.Alignment.Horz = taRightJustify
  2875. Properties.Alignment.Vert = taVCenter
  2876. Properties.DisplayFormat = '##,##0'
  2877. HeaderAlignmentHorz = taCenter
  2878. HeaderAlignmentVert = vaCenter
  2879. Width = 50
  2880. Position.BandIndex = 1
  2881. Position.ColIndex = 13
  2882. Position.RowIndex = 0
  2883. end
  2884. object ColTYear14: TcxGridBandedColumn
  2885. Caption = '14'
  2886. DataBinding.ValueType = 'Integer'
  2887. PropertiesClassName = 'TcxCalcEditProperties'
  2888. Properties.Alignment.Horz = taRightJustify
  2889. Properties.Alignment.Vert = taVCenter
  2890. Properties.DisplayFormat = '##,##0'
  2891. HeaderAlignmentHorz = taCenter
  2892. HeaderAlignmentVert = vaCenter
  2893. Width = 50
  2894. Position.BandIndex = 1
  2895. Position.ColIndex = 14
  2896. Position.RowIndex = 0
  2897. end
  2898. object ColTYear15: TcxGridBandedColumn
  2899. Caption = '15'
  2900. DataBinding.ValueType = 'Integer'
  2901. PropertiesClassName = 'TcxCalcEditProperties'
  2902. Properties.Alignment.Horz = taRightJustify
  2903. Properties.Alignment.Vert = taVCenter
  2904. Properties.DisplayFormat = '##,##0'
  2905. HeaderAlignmentHorz = taCenter
  2906. HeaderAlignmentVert = vaCenter
  2907. Width = 50
  2908. Position.BandIndex = 1
  2909. Position.ColIndex = 15
  2910. Position.RowIndex = 0
  2911. end
  2912. object ColTYear16: TcxGridBandedColumn
  2913. Caption = '16'
  2914. DataBinding.ValueType = 'Integer'
  2915. PropertiesClassName = 'TcxCalcEditProperties'
  2916. Properties.Alignment.Horz = taRightJustify
  2917. Properties.Alignment.Vert = taVCenter
  2918. Properties.DisplayFormat = '##,##0'
  2919. HeaderAlignmentHorz = taCenter
  2920. HeaderAlignmentVert = vaCenter
  2921. Width = 50
  2922. Position.BandIndex = 1
  2923. Position.ColIndex = 16
  2924. Position.RowIndex = 0
  2925. end
  2926. object ColTYear17: TcxGridBandedColumn
  2927. Caption = '17'
  2928. DataBinding.ValueType = 'Integer'
  2929. PropertiesClassName = 'TcxCalcEditProperties'
  2930. Properties.Alignment.Horz = taRightJustify
  2931. Properties.Alignment.Vert = taVCenter
  2932. Properties.DisplayFormat = '##,##0'
  2933. HeaderAlignmentHorz = taCenter
  2934. HeaderAlignmentVert = vaCenter
  2935. Width = 50
  2936. Position.BandIndex = 1
  2937. Position.ColIndex = 17
  2938. Position.RowIndex = 0
  2939. end
  2940. object ColTYear18: TcxGridBandedColumn
  2941. Caption = '18'
  2942. DataBinding.ValueType = 'Integer'
  2943. PropertiesClassName = 'TcxCalcEditProperties'
  2944. Properties.Alignment.Horz = taRightJustify
  2945. Properties.Alignment.Vert = taVCenter
  2946. Properties.DisplayFormat = '##,##0'
  2947. HeaderAlignmentHorz = taCenter
  2948. HeaderAlignmentVert = vaCenter
  2949. Width = 50
  2950. Position.BandIndex = 1
  2951. Position.ColIndex = 18
  2952. Position.RowIndex = 0
  2953. end
  2954. object ColTYear19: TcxGridBandedColumn
  2955. Caption = '19'
  2956. DataBinding.ValueType = 'Integer'
  2957. PropertiesClassName = 'TcxCalcEditProperties'
  2958. Properties.Alignment.Horz = taRightJustify
  2959. Properties.Alignment.Vert = taVCenter
  2960. Properties.DisplayFormat = '##,##0'
  2961. HeaderAlignmentHorz = taCenter
  2962. HeaderAlignmentVert = vaCenter
  2963. Width = 50
  2964. Position.BandIndex = 1
  2965. Position.ColIndex = 19
  2966. Position.RowIndex = 0
  2967. end
  2968. object ColTYear20: TcxGridBandedColumn
  2969. Caption = '20'
  2970. DataBinding.ValueType = 'Integer'
  2971. PropertiesClassName = 'TcxCalcEditProperties'
  2972. Properties.Alignment.Horz = taRightJustify
  2973. Properties.Alignment.Vert = taVCenter
  2974. Properties.DisplayFormat = '##,##0'
  2975. HeaderAlignmentHorz = taCenter
  2976. HeaderAlignmentVert = vaCenter
  2977. Width = 50
  2978. Position.BandIndex = 1
  2979. Position.ColIndex = 20
  2980. Position.RowIndex = 0
  2981. end
  2982. object ColTYear21: TcxGridBandedColumn
  2983. Caption = '21'
  2984. DataBinding.ValueType = 'Integer'
  2985. PropertiesClassName = 'TcxCalcEditProperties'
  2986. Properties.Alignment.Horz = taRightJustify
  2987. Properties.Alignment.Vert = taVCenter
  2988. Properties.DisplayFormat = '##,##0'
  2989. HeaderAlignmentHorz = taCenter
  2990. HeaderAlignmentVert = vaCenter
  2991. Width = 50
  2992. Position.BandIndex = 1
  2993. Position.ColIndex = 21
  2994. Position.RowIndex = 0
  2995. end
  2996. object ColTYear22: TcxGridBandedColumn
  2997. Caption = '22'
  2998. DataBinding.ValueType = 'Integer'
  2999. PropertiesClassName = 'TcxCalcEditProperties'
  3000. Properties.Alignment.Horz = taRightJustify
  3001. Properties.Alignment.Vert = taVCenter
  3002. Properties.DisplayFormat = '##,##0'
  3003. HeaderAlignmentHorz = taCenter
  3004. HeaderAlignmentVert = vaCenter
  3005. Width = 50
  3006. Position.BandIndex = 1
  3007. Position.ColIndex = 22
  3008. Position.RowIndex = 0
  3009. end
  3010. object ColTYear23: TcxGridBandedColumn
  3011. Caption = '23'
  3012. DataBinding.ValueType = 'Integer'
  3013. PropertiesClassName = 'TcxCalcEditProperties'
  3014. Properties.Alignment.Horz = taRightJustify
  3015. Properties.Alignment.Vert = taVCenter
  3016. Properties.DisplayFormat = '##,##0'
  3017. HeaderAlignmentHorz = taCenter
  3018. HeaderAlignmentVert = vaCenter
  3019. Width = 50
  3020. Position.BandIndex = 1
  3021. Position.ColIndex = 23
  3022. Position.RowIndex = 0
  3023. end
  3024. end
  3025. object GlTermYear: TcxGridLevel
  3026. Caption = #45936#51060#53552
  3027. GridView = TvTermYear
  3028. end
  3029. end
  3030. end
  3031. end
  3032. object BtnClose: TcxButton
  3033. Left = 1365
  3034. Top = 11
  3035. Width = 80
  3036. Height = 25
  3037. Cursor = crHandPoint
  3038. Hint = #45803#44592
  3039. Anchors = [akTop, akRight]
  3040. Caption = #45803#44592
  3041. Colors.Default = 10737865
  3042. TabOrder = 5
  3043. Font.Charset = DEFAULT_CHARSET
  3044. Font.Color = clBlack
  3045. Font.Height = -13
  3046. Font.Name = #47569#51008' '#44256#46357
  3047. Font.Style = [fsBold]
  3048. ParentFont = False
  3049. OnClick = BtnCloseClick
  3050. end
  3051. object LimgTmp: TImageList
  3052. DrawingStyle = dsTransparent
  3053. ShareImages = True
  3054. Left = 478
  3055. Top = 12
  3056. Bitmap = {
  3057. 494C01010A000D00040010001000FFFFFFFFFF10FFFFFFFFFFFFFFFF424D3600
  3058. 0000000000003600000028000000400000003000000001002000000000000030
  3059. 0000000000000000000000000000000000000000000000000000000000000000
  3060. 0000000000000000000000000000000000000000000000000000000000000000
  3061. 0000000000000000000000000000000000000000000000800000008000000080
  3062. 0000008000000080000000800000008000000080000000800000008000000080
  3063. 0000008000000080000000800000000000000000000000000000000000000000
  3064. 0000000000000000000000000000000000000000000000000000000000000000
  3065. 0000000000000000000000000000000000000000000000000000000000000000
  3066. 0000000000000000000000000000000000000000000000000000000000000000
  3067. 0000000000000000000000000000000000000000000000000000000000000000
  3068. 0000000000000000000000000000000000000000000000000000000000000000
  3069. 0000000000000000000000000000000000000080000000800000008000000080
  3070. 0000008000000080000000800000008000000080000000800000008000000080
  3071. 0000008000000080000000800000008000000000000000000000000000000000
  3072. 0000000000000000000000000000000000000000000000000000000000000000
  3073. 0000000000000000000000000000000000000000000000000000000000000000
  3074. 0000000000000000000000000000000000000000000000000000000000000000
  3075. 0000000000000000000000000000000000000000000000000000000000000000
  3076. 00008484840084848400848484008484840084848400848484000000000000FF
  3077. FF00000000008484840000000000000000000080000000800000008000000080
  3078. 0000000000000000000000000000000000000000000000000000000000000000
  3079. 0000008000000080000000800000008000000000000000000000000000000000
  3080. 0000000000000000000000000000000000000000000000000000000000000000
  3081. 0000000000000000000000000000000000000000000000000000000000000000
  3082. 0000000000000000000000000000000000000000000000000000000000000000
  3083. 0000000000000000000000000000000000000000000000000000000000000000
  3084. 0000000000000000000000000000000000000000000000000000FFFFFF00FFFF
  3085. FF00000000000000000084848400000000000080000000800000008000000000
  3086. 0000008000000080000000800000008000000080000000800000008000000080
  3087. 0000000000000080000000800000008000000000000000000000000000000000
  3088. 0000000000000000000000000000000000000000000000000000000000000000
  3089. 0000000000000000000000000000000000000000000000000000000000000000
  3090. 0000000000000000000000000000000000000000000000000000000000000000
  3091. 000000000000000000000000000000000000000000000000000000000000FFFF
  3092. FF00FFFFFF00FFFFFF0000FFFF00FFFFFF0000FFFF00FFFFFF0000FFFF00FFFF
  3093. FF00FFFFFF00FFFFFF0000000000848484000080000000800000000000000080
  3094. 0000008000000080000000800000008000000080000000800000008000000080
  3095. 0000008000000000000000800000008000000000000000000000000000000000
  3096. 0000000000000000000000000000000000000000000000000000000000000000
  3097. 0000000000000000000000000000000000000000000000000000000000000000
  3098. 0000000000000000000000000000000000000000000000000000000000000000
  3099. 000000000000000000000000000000000000000000000000000000000000FFFF
  3100. FF0000FFFF00FFFFFF00FFFFFF00FFFFFF008400000084000000FFFFFF00FFFF
  3101. FF0000FFFF00FFFFFF0000000000848484000080000000800000008000000080
  3102. 0000008000000080000000800000008000000080000000800000008000000080
  3103. 0000008000000080000000800000008000000000000000000000000000000000
  3104. 0000000000000000000000000000000000000000000000000000000000000000
  3105. 0000000000000000000000000000000000000000000000000000000000000000
  3106. 0000000000000000000000000000000000000000000000000000000000000000
  3107. 000000000000000000000000000000000000000000000000000000000000FFFF
  3108. FF00FFFFFF00FFFFFF0000FFFF00FFFFFF00FFFFFF00FFFFFF0000FFFF00FFFF
  3109. FF00FFFFFF00FFFFFF0000000000848484000080000000800000008000000080
  3110. 0000008000000080000000800000008000000080000000800000008000000080
  3111. 0000008000000080000000800000008000000000000000000000000000000000
  3112. 0000000000000000000000000000000000000000000000000000000000000000
  3113. 0000000000000000000000000000000000000000000000000000000000000000
  3114. 0000000000000000000000000000000000000000000000000000000000000000
  3115. 000000000000000000000000000000000000000000000000000000000000FFFF
  3116. FF0000FFFF00FFFFFF00FFFFFF00FFFFFF008400000084848400FFFFFF00FFFF
  3117. FF0000FFFF00FFFFFF0000000000848484000080000000800000008000000080
  3118. 0000008000000080000000800000008000000080000000800000008000000080
  3119. 0000008000000080000000800000008000000000000000000000000000000000
  3120. 0000000000000000000000000000000000000000000000000000000000000000
  3121. 0000000000000000000000000000000000000000000000000000000000000000
  3122. 0000000000000000000000000000000000000000000000000000000000000000
  3123. 000000000000000000000000000000000000000000000000000000000000FFFF
  3124. FF00FFFFFF00FFFFFF0000FFFF00FFFFFF00848484008400000000000000FFFF
  3125. FF00FFFFFF00FFFFFF0000000000848484000080000000800000008000000080
  3126. 0000008000000080000000800000008000000080000000800000008000000080
  3127. 0000008000000080000000800000008000000000000000000000000000000000
  3128. 0000000000000000000000000000000000000000000000000000000000000000
  3129. 0000000000000000000000000000000000000000000000000000000000000000
  3130. 0000000000000000000000000000000000000000000000000000000000000000
  3131. 000000000000000000000000000000000000000000000000000000000000FFFF
  3132. FF0000FFFF00FFFFFF00FFFFFF00FFFFFF0000FFFF0084848400840000008484
  3133. 840000FFFF00FFFFFF0000000000848484000080000000800000008000000080
  3134. 0000008000000080000000800000008000000080000000800000008000000080
  3135. 0000008000000080000000800000008000000000000000000000000000000000
  3136. 0000000000000000000000000000000000000000000000000000000000000000
  3137. 0000000000000000000000000000000000000000000000000000000000000000
  3138. 0000000000000000000000000000000000000000000000000000000000000000
  3139. 000000000000000000000000000000000000000000000000000000000000FFFF
  3140. FF00FFFFFF00FFFFFF008400000084848400FFFFFF00FFFFFF00840000008400
  3141. 0000FFFFFF00FFFFFF0000000000848484000080000000800000008000000080
  3142. 0000008000000080000000800000008000000080000000800000008000000080
  3143. 0000008000000080000000800000008000000000000000000000000000000000
  3144. 0000000000000000000000000000000000000000000000000000000000000000
  3145. 0000000000000000000000000000000000000000000000000000000000000000
  3146. 0000000000000000000000000000000000000000000000000000000000000000
  3147. 000000000000000000000000000000000000000000000000000000000000FFFF
  3148. FF0000FFFF00FFFFFF00840000008400000000FFFF0000000000840000008400
  3149. 000000FFFF00FFFFFF0000000000848484000080000000800000008000000080
  3150. 0000000000000000000000800000008000000080000000800000000000000000
  3151. 0000008000000080000000800000008000000000000000000000000000000000
  3152. 0000000000000000000000000000000000000000000000000000000000000000
  3153. 0000000000000000000000000000000000000000000000000000000000000000
  3154. 0000000000000000000000000000000000000000000000000000000000000000
  3155. 000000000000000000000000000000000000000000000000000000000000FFFF
  3156. FF00FFFFFF00FFFFFF0000000000840000008400000084000000840000000000
  3157. 0000FFFFFF00FFFFFF0000000000848484000080000000800000008000000080
  3158. 0000000000000000000000800000008000000080000000800000000000000000
  3159. 0000008000000080000000800000008000000000000000000000000000000000
  3160. 0000000000000000000000000000000000000000000000000000000000000000
  3161. 0000000000000000000000000000000000000000000000000000000000000000
  3162. 0000000000000000000000000000000000000000000000000000000000000000
  3163. 000000000000000000000000000000000000000000000000000000000000FFFF
  3164. FF0000FFFF00FFFFFF00FFFFFF00FFFFFF0000FFFF00FFFFFF00FFFFFF00FFFF
  3165. FF0000FFFF00FFFFFF0000000000848484000080000000800000008000000080
  3166. 0000008000000080000000800000008000000080000000800000008000000080
  3167. 0000008000000080000000800000008000000000000000000000000000000000
  3168. 0000000000000000000000000000000000000000000000000000000000000000
  3169. 0000000000000000000000000000000000000000000000000000000000000000
  3170. 0000000000000000000000000000000000000000000000000000000000000000
  3171. 000000000000000000000000000000000000000000000000000000000000FFFF
  3172. FF00FFFFFF00FFFFFF0000FFFF00FFFFFF00FFFFFF00FFFFFF0000FFFF00FFFF
  3173. FF00FFFFFF00FFFFFF0000000000000000000080000000800000008000000080
  3174. 0000008000000080000000800000008000000080000000800000008000000080
  3175. 0000008000000080000000800000008000000000000000000000000000000000
  3176. 0000000000000000000000000000000000000000000000000000000000000000
  3177. 0000000000000000000000000000000000000000000000000000000000000000
  3178. 0000000000000000000000000000000000000000000000000000000000000000
  3179. 0000000000000000000000000000000000000000000000000000000000000000
  3180. 0000000000000000000000000000000000000000000000000000000000000000
  3181. 0000000000000000000000000000000000000000000000800000008000000080
  3182. 0000008000000080000000800000008000000080000000800000008000000080
  3183. 0000008000000080000000800000000000000000000000000000000000000000
  3184. 0000000000000000000000000000000000000000000000000000000000000000
  3185. 0000000000000000000000000000000000000000000000000000000000000000
  3186. 0000000000000000000000000000000000000000000000000000000000000000
  3187. 0000000000000000000000000000000000000000000000000000000000000000
  3188. 0000000000000000000000000000000000000000000000000000000000000000
  3189. 0000000000000000000000000000000000000000000000000000000000000000
  3190. 0000000000000000000000000000000000000000000000000000000000000000
  3191. 0000000000000000000000000000000000000000000000000000000000000000
  3192. 0000000000000000000000000000000000000000000000000000000000000000
  3193. 0000000000000000000000000000000000000000000000000000000000000000
  3194. 0000000000007B7B7B0000000000000000000000000000000000000000007B7B
  3195. 7B00000000000000000000000000000000000000000000000000000000000000
  3196. 0000000000000000000000000000000080000000800000000000000000000000
  3197. 0000000000000000000000000000000000000000000000000000000000000000
  3198. 0000000000000000000000000000000000000000000000000000000000000000
  3199. 0000000000000000000000000000000000000000000000000000000000000000
  3200. 0000000000000000000000000000000000000000000000000000000000000000
  3201. 0000000000000000000000000000000000000000000000000000000000000000
  3202. 00000000000000007B000000FF000000FF000000FF000000FF000000FF000000
  3203. 7B00000000000000000000000000000000000000000000000000000000000000
  3204. 0000000000000000000000008000000080000000800000008000000000000000
  3205. 0000000000000000000000000000000000000000000000840000000000000000
  3206. 0000000000000000000000000000000000000084000000000000000000000000
  3207. 0000000000000000000000000000000000000000000000000000000000000000
  3208. 0000000000000000000000000000808080008080800000000000000000000000
  3209. 0000000000000000000000000000000000000000000000000000000000000000
  3210. 00000000FF000000FF000000FF000000FF000000FF000000FF000000FF000000
  3211. FF000000FF000000000000000000000000000000000000000000000000000000
  3212. 0000000000000000000000008000000080000000800000008000000000000000
  3213. 0000000000000000000000000000000000000000000000840000008400000000
  3214. 0000000000000000000000000000000000000084000000840000000000000000
  3215. 0000000000000000000000000000000000000000000000000000000000000000
  3216. 0000000000000000000000000000000000000000000000000000000000000000
  3217. 0000000000000000000000000000000000000000000000000000000000000000
  3218. FF000000FF000000FF000000FF000000FF000000FF000000FF000000FF000000
  3219. FF000000FF000000FF0000000000000000000000000000000000000000000000
  3220. 0000000000000000000000000000000080000000800000000000000000000000
  3221. 000000000000000000000000000000000000000000000084000000FF00000084
  3222. 0000000000000000000000000000000000000084000000FF0000008400000000
  3223. 0000000000000000000000000000000000000000000000000000000000000000
  3224. 0000000000000000000000000000000000000000000000000000000000000000
  3225. 000000000000000000000000000000000000000000007B7B7B0000007B000000
  3226. FF000000FF000000FF000000FF000000FF000000FF000000FF000000FF000000
  3227. FF000000FF000000FF0000007B007B7B7B000000000000000000000000000000
  3228. 0000000000000000000000000000000000000000000000000000000000000000
  3229. 000000000000000000000000000000000000000000000084000000FF000000FF
  3230. 0000008400000000000000000000000000000084000000FF000000FF00000084
  3231. 0000000000000000000000000000000000000000000000000000000000000000
  3232. 00000000FF000000FF000000FF000000FF000000FF000000FF000000FF000000
  3233. FF000000000000000000000000000000000000000000000000000000FF000000
  3234. FF000000FF00FFFFFF00FFFFFF000000FF000000FF000000FF00FFFFFF00FFFF
  3235. FF000000FF000000FF000000FF00000000000000000000000000000000000000
  3236. 0000000000000000000000000000000080000000800000000000000000000000
  3237. 000000000000000000000000000000000000000000000084000000FF000000FF
  3238. 000000FF00000084000000000000000000000084000000FF000000FF000000FF
  3239. 0000008400000000000000000000000000000000000000000000000000000000
  3240. 0000000000000000FF00FFFFFF000000FF000000FF000000FF000000FF000000
  3241. 00000000000000000000000000000000000000000000000000000000FF000000
  3242. FF000000FF000000FF00FFFFFF00FFFFFF000000FF00FFFFFF00FFFFFF000000
  3243. FF000000FF000000FF000000FF00000000000000000000000000000000000000
  3244. 0000000000000000000080808000000080000000800080808000000000000000
  3245. 000000000000000000000000000000000000000000000084000000FF000000FF
  3246. 000000FF000000FF000000840000000000000084000000FF000000FF000000FF
  3247. 000000FF0000008400000000000000000000000000000000FF000000FF000000
  3248. 000000000000000000000000FF00FFFFFF000000FF000000FF00000000000000
  3249. 0000000000000000FF000000FF000000000000000000000000000000FF000000
  3250. FF000000FF000000FF000000FF00FFFFFF00FFFFFF00FFFFFF000000FF000000
  3251. FF000000FF000000FF000000FF00000000000000000000000000000000000000
  3252. 0000000000000000000000008000000080000000800000008000000000000000
  3253. 000000000000000000000000000000000000000000000084000000FF000000FF
  3254. 000000FF000000FF000000FF0000008400000084000000FF000000FF000000FF
  3255. 000000FF000000FF000000840000000000000000000000000000000000000000
  3256. 000000000000000000000000FF000000FF000000FF000000FF00000000000000
  3257. 00000000000000000000000000000000000000000000000000000000FF000000
  3258. FF000000FF000000FF000000FF00FFFFFF00FFFFFF00FFFFFF000000FF000000
  3259. FF000000FF000000FF000000FF00000000000000000000000000000000000000
  3260. 0000000000000000000000008000000080000000800000008000000000000000
  3261. 000000000000000000000000000000000000000000000084000000FF000000FF
  3262. 000000FF000000FF000000840000000000000084000000FF000000FF000000FF
  3263. 000000FF00000084000000000000000000000000000000000000000000000000
  3264. 000000000000000000000000FF00FFFFFF000000FF000000FF00000000000000
  3265. 00000000000000000000000000000000000000000000000000000000FF000000
  3266. FF000000FF000000FF00FFFFFF00FFFFFF000000FF00FFFFFF00FFFFFF000000
  3267. FF000000FF000000FF000000FF00000000000000000000000000000000000000
  3268. 0000000000000000000000008000000080000000800000008000000000000000
  3269. 000000000000000000000000000000000000000000000084000000FF000000FF
  3270. 000000FF00000084000000000000000000000084000000FF000000FF000000FF
  3271. 0000008400000000000000000000000000000000000000000000000000000000
  3272. 000000000000000000000000FF000000FF000000FF000000FF00000000000000
  3273. 000000000000000000000000000000000000000000007B7B7B0000007B000000
  3274. FF000000FF00FFFFFF00FFFFFF000000FF000000FF000000FF00FFFFFF00FFFF
  3275. FF000000FF000000FF0000007B007B7B7B000000000000000000000000000000
  3276. 0000000000000000000000008000000080000000800000008000000000000000
  3277. 000000000000000000000000000000000000000000000084000000FF000000FF
  3278. 0000008400000000000000000000000000000084000000FF000000FF00000084
  3279. 000000000000000000000000000000000000000000000000FF000000FF000000
  3280. 000000000000000000000000FF00FFFFFF000000FF000000FF00000000000000
  3281. 0000000000000000FF000000FF00000000000000000000000000000000000000
  3282. FF000000FF000000FF000000FF000000FF000000FF000000FF000000FF000000
  3283. FF000000FF000000FF0000000000000000000000000000000000000000000000
  3284. 0000000000000000000000008000000080000000800000008000000000000000
  3285. 000000000000000000000000000000000000000000000084000000FF00000084
  3286. 0000000000000000000000000000000000000084000000FF0000008400000000
  3287. 0000000000000000000000000000000000000000000000000000000000000000
  3288. 00000000000000000000808080000000FF000000FF0080808000000000000000
  3289. 0000000000000000000000000000000000000000000000000000000000000000
  3290. 00000000FF000000FF000000FF000000FF000000FF000000FF000000FF000000
  3291. FF000000FF000000000000000000000000000000000000000000000000000000
  3292. 0000000000000000000000008000000080000000800000008000000000000000
  3293. 0000000000000000000000000000000000000000000000840000008400000000
  3294. 0000000000000000000000000000000000000084000000840000000000000000
  3295. 0000000000000000000000000000000000000000000000000000000000000000
  3296. 00000000FF000000000000000000808080008080800000000000000000000000
  3297. FF00000000000000000000000000000000000000000000000000000000000000
  3298. 00000000000000007B000000FF000000FF000000FF000000FF000000FF000000
  3299. 7B00000000000000000000000000000000000000000000000000000000000000
  3300. 0000000000000000000000000000000080000000800000000000000000000000
  3301. 0000000000000000000000000000000000000000000000840000000000000000
  3302. 0000000000000000000000000000000000000084000000000000000000000000
  3303. 0000000000000000000000000000000000000000000000000000000000000000
  3304. FF00000000000000000000000000000000000000000000000000000000000000
  3305. 00000000FF000000000000000000000000000000000000000000000000000000
  3306. 0000000000007B7B7B0000000000000000000000000000000000000000007B7B
  3307. 7B00000000000000000000000000000000000000000000000000000000000000
  3308. 0000000000000000000000000000000000000000000000000000000000000000
  3309. 0000000000000000000000000000000000000000000000000000000000000000
  3310. 0000000000000000000000000000000000000000000000000000000000000000
  3311. 0000000000000000000000000000000000000000000000000000000000000000
  3312. 0000000000000000000000000000000000000000000000000000000000000000
  3313. 0000000000000000000000000000000000000000000000000000000000000000
  3314. 0000000000000000000000000000000000000000000000000000000000000000
  3315. 0000000000000000000000000000000000000000000000000000000000000000
  3316. 0000000000000000000000000000000000000000000000000000000000000000
  3317. 0000000000000000000000000000000000000000000000000000000000000000
  3318. 0000000000000000000000000000000000000000000000000000000000000000
  3319. 0000000000000000000000000000000000000000000000000000000000000000
  3320. 0000000000000000000000000000000000000000000000000000000000000000
  3321. 0000000000000000000000000000000000000000000000000000000000000000
  3322. 0000000000000000000000000000694731006947310000000000000000000000
  3323. 0000000000000000000000000000000000000000000000000000000000000000
  3324. 0000000000000000000000000000000000000000000000000000000000000000
  3325. 0000000000000000000000000000000000000000000000000000000000000000
  3326. 0000000000000000000000000000000000000000000000000000000000000000
  3327. 0000000000000000000000000000000000000000000000000000000000000000
  3328. 0000000000000000000000000000000000000000000000000000000000000000
  3329. 0000000000000000000000000000000000000000000000000000000000000000
  3330. 0000000000000000000069473100F2ECE900F2ECE90069473100000000000000
  3331. 0000000000000000000000000000000000000000000000000000000000000000
  3332. 00000000000000000000878787004F4F4F003A3A3A0058585800878787000000
  3333. 0000000000000000000000000000000000000000000000000000000000000000
  3334. 000000000000000000008686860055555500292929004D4D4D00808080000000
  3335. 0000000000000000000000000000000000000000000000000000000000000000
  3336. 0000000000000000000080808000424242003333330055555500808080000000
  3337. 0000000000000000000000000000000000000000000000000000000000000000
  3338. 00000000000069473100F2ECE9009830000098300000F2ECE900694731000000
  3339. 0000000000000000000000000000000000000000000000000000000000000000
  3340. 0000989898005555550081818100A9A9A900C5C5C500A1A1A1007C7C7C005A5A
  3341. 5A009B9B9B000000000000000000000000000000000000000000000000000000
  3342. 00009696960033336600333399006666CC009999CC006666CC00336699003333
  3343. 6600868686000000000000000000000000000000000000000000000000000000
  3344. 000096969600336633003399660066CC990066CC990066999900339966003366
  3345. 3300969696000000000000000000000000000000000000000000000000000000
  3346. 000069473100F2ECE90098300000F6865000F57C430098300000F2ECE9006947
  3347. 3100000000000000000000000000000000000000000000000000000000009D9D
  3348. 9D006A6A6A00AFAFAF00D6D6D600E2E2E200E2E2E200E6E6E600DBDBDB00B1B1
  3349. B1006A6A6A009999990000000000000000000000000000000000000000009696
  3350. 960033336600807CFF009999FF009999FF0099CCFF009999FF009999FF006666
  3351. CC00333399009696960000000000000000000000000000000000000000009999
  3352. 99003366660066CC990066FFCC0099FFCC0099FFCC0099FFCC0099FFCC0066CC
  3353. 9900339966009696960000000000000000000000000000000000000000006947
  3354. 3100F2ECE90098300000C4937500C4937500C4937500C493750098300000F2EC
  3355. E900694731000000000000000000000000000000000000000000000000005757
  3356. 570096969600D8D8D800DFDFDF00E1E1E100E3E3E300DBDBDB00E1E1E100D8D8
  3357. D800A3A3A3005F5F5F0000000000000000000000000000000000000000003333
  3358. 66006666CC00807CFF009999FF009999FF0099CCFF0099CCFF0099CCFF00807C
  3359. FF006666CC003333660000000000000000000000000000000000000000003366
  3360. 330033CC660066FFCC0099FFCC0099FFCC0099FFCC0066FFCC0066FFCC0066FF
  3361. CC0066CC9900336633000000000000000000000000000000000069473100F2EE
  3362. EA0098300000F79B6C00FFFFFF00FFFFFF00FFFFFF00FFFFFF00AA6644009830
  3363. 0000F2ECE9006947310000000000000000000000000000000000959595007474
  3364. 7400AEAEAE00C9C9C900D4D4D400D7D7D700E4E4E400E0E0E000DCDCDC00C8C8
  3365. C800B9B9B9007878780090909000000000000000000000000000868686003333
  3366. 99006666FF00807CFF009999FF009999FF009999FF009999FF009999FF00807C
  3367. FF00807CFF003333990086868600000000000000000000000000669999003399
  3368. 660066CC990066FF990066FF990099FFCC0099FFCC0099FFCC0066FFCC0066FF
  3369. 990066CC99003399660086868600000000000000000069473100F2ECE9009830
  3370. 0000F9B18700F9AC8100F79B6C00FFFFFF00FFFFFF00AA664400F6865000F57C
  3371. 430098300000F2ECE90069473100000000000000000000000000606060008888
  3372. 8800B0B0B000AFAFAF00CECECE00CECECE00D5D5D500CDCDCD00CECECE00B0B0
  3373. B000AFAFAF007D7D7D0064646400000000000000000000000000336666003333
  3374. CC006666FF00807CFF00807CFF009999FF009999FF009999FF00807CFF006666
  3375. FF006666FF003333CC0033339900000000000000000000000000555555006699
  3376. 660066CC990033CC990066FF990066FF990099FFCC0066FF990066FF990033CC
  3377. 990033CC990033996600555555000000000098300000F9F6F400C8600000FBC3
  3378. 9F00FABA9300F9B18700F9AC8100FFFFFF00FFFFFF00AA664400F68D5900F686
  3379. 5000F57C430098300000F2ECE900694731000000000000000000373737008787
  3380. 870096969600A7A7A700B7B7B700BDBDBD00C1C1C100C2C2C200B7B7B700AAAA
  3381. AA00939393008A8A8A003A3A3A00000000000000000000000000000066003333
  3382. CC005050FF006666FF006666FF00807CFF00807CFF00807CFF006666FF006666
  3383. FF006666CC003333CC0000008000000000000000000000000000222222003399
  3384. 660033CC660033CC660066CC990066CC990066CC990066CC990066CC990033CC
  3385. 660033CC660033996600222222000000000098300000FEFEFE00C8600000FBC3
  3386. 9F00FBC39F00FABA9300F9B18700FFFFFF00FFFFFF00AA664400F7926000F68D
  3387. 5900F686500098300000F2ECE900694731000000000000000000424242007373
  3388. 73008787870090909000A5A5A500AAAAAA00ACACAC00ABABAB00A5A5A5008F8F
  3389. 8F0086868600818181004B4B4B00000000000000000000000000333366003333
  3390. 99003333CC003366CC006666CC006666FF006666FF006666FF005050FF005050
  3391. FF003333CC003333CC0033336600000000000000000000000000336633003399
  3392. 66003399660033CC660033CC990033CC990066CC990066CC990033CC990033CC
  3393. 6600339966003399660033663300000000000000000098300000FDFAF800C860
  3394. 0000FBC39F00FBC39F00FFFFFF00FFFFFF00FFFFFF00AA664400F79B6C00F792
  3395. 600098300000F2ECE90069473100000000000000000000000000797979006363
  3396. 630074747400787878009191910096969600909090008B8B8B00949494008383
  3397. 8300737373005A5A5A007A7A7A00000000000000000000000000666699003333
  3398. 9900333399003333CC003333CC003366CC003366CC003366CC003333CC003333
  3399. CC00003399003333990066669900000000000000000000000000777777003366
  3400. 3300339966000099660033CC660033CC660033CC66003399660033CC66003399
  3401. 660033996600336633007777770000000000000000000000000098300000FEFE
  3402. FE00C8600000FBC39F00FBC39F00C4937500C4937500F9AC8100F79B6C009830
  3403. 0000F2ECE9006947310000000000000000000000000000000000000000005050
  3404. 500068686800767676007E7E7E00898989009696960095959500818181007979
  3405. 79006D6D6D004949490000000000000000000000000000000000000000003333
  3406. 660033339900333399003333CC003366CC003366CC003366CC003333CC003333
  3407. 9900333399003333660000000000000000000000000000000000000000003366
  3408. 33003399330033996600339966003399660033CC660033CC6600339966003399
  3409. 6600339966003366330000000000000000000000000000000000000000009830
  3410. 0000FFFFFF00C8600000FBC39F00FFFFFF00FFFFFF00AA66440098300000F2EC
  3411. E900694731000000000000000000000000000000000000000000000000008F8F
  3412. 8F005F5F5F00A5A5A500B4B4B400B8B8B800BDBDBD00B7B7B700B4B4B4009F9F
  3413. 9F005B5B5B009494940000000000000000000000000000000000000000009696
  3414. 9600666699006666CC009999CC009999CC009999CC009999CC009999CC006666
  3415. CC00666699009696960000000000000000000000000000000000000000008686
  3416. 86004D4D4D0099CC990099CC990099CC990099CC990099CC990099CC99006699
  3417. 99004D4D4D009696960000000000000000000000000000000000000000000000
  3418. 000098300000FEFEFE00C8600000FFFFFF00FFFFFF0098300000F2ECE9006947
  3419. 3100000000000000000000000000000000000000000000000000000000000000
  3420. 0000989898008A8A8A00CDCDCD00EEEEEE00EBEBEB00E5E5E500D6D6D6008E8E
  3421. 8E00919191000000000000000000000000000000000000000000000000000000
  3422. 00009696960090A9AD00C6D6EF00EAEAEA00DDDDDD00DDDDDD00CBCBCB008686
  3423. 8600A4A0A0000000000000000000000000000000000000000000000000000000
  3424. 00009696960086868600C0DCC000EAEAEA00EAEAEA00E3E3E300CCCCCC008686
  3425. 8600969696000000000000000000000000000000000000000000000000000000
  3426. 00000000000098300000FDFAF800C8600000C8600000F2EDEA00694731000000
  3427. 0000000000000000000000000000000000000000000000000000000000000000
  3428. 00000000000000000000B5B5B500C3C3C300CDCDCD00C6C6C600B3B3B3000000
  3429. 0000000000000000000000000000000000000000000000000000000000000000
  3430. 00000000000000000000B2B2B200CBCBCB00CCCCCC00CBCBCB00B2B2B2000000
  3431. 0000000000000000000000000000000000000000000000000000000000000000
  3432. 00000000000000000000B2B2B200C0C0C000CCCCCC00CBCBCB00B2B2B2000000
  3433. 0000000000000000000000000000000000000000000000000000000000000000
  3434. 0000000000000000000098300000FEFEFE00F9F6F40069473100000000000000
  3435. 0000000000000000000000000000000000000000000000000000000000000000
  3436. 0000000000000000000000000000000000000000000000000000000000000000
  3437. 0000000000000000000000000000000000000000000000000000000000000000
  3438. 0000000000000000000000000000000000000000000000000000000000000000
  3439. 0000000000000000000000000000000000000000000000000000000000000000
  3440. 0000000000000000000000000000000000000000000000000000000000000000
  3441. 0000000000000000000000000000000000000000000000000000000000000000
  3442. 0000000000000000000000000000983000009830000000000000000000000000
  3443. 000000000000000000000000000000000000424D3E000000000000003E000000
  3444. 2800000040000000300000000100010000000000800100000000000000000000
  3445. 000000000000000000000000FFFFFF00FFF7800100000000FFE7000000000000
  3446. F0030FF000000000E001100800000000C000200400000000C000000000000000
  3447. C000000000000000C000000000000000C020000000000000C000000000000000
  3448. C000000000000000C0400C3000000000C2100C3000000000C000000000000000
  3449. C001000000000000E003800100000000FFFFFFFFFFFFF80FFE7FFFFFFFFFF007
  3450. FC3FBF7FFE7FE003FC3F9F3FFE7FC001FE7F8F1FE0078000FFFF870FE0078000
  3451. FE7F8307F00F8000FC3F810398198000FC3F8001F81F8000FC3F8103F81F8000
  3452. FC3F8307F81F8000FC3F870F9819C001FC3F8F1FFC3FE003FC3F9F3FF42FF007
  3453. FE7FBF7FEE77F80FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE7FFFFFFFFFFFFFFC3F
  3454. FC1FFC1FFC1FF81FF007F007F007F00FE003E003E003E007E003E003E003C003
  3455. C001C001C0018001C001C001C0010000C001C001C0010000C001C001C0018001
  3456. C001C001C001C003E003E003E003E007E003E003E003F00FF007F007F007F81F
  3457. FC1FFC1FFC1FFC3FFFFFFFFFFFFFFE7F00000000000000000000000000000000
  3458. 000000000000}
  3459. end
  3460. object ADOD: TADOQuery
  3461. Parameters = <>
  3462. Left = 88
  3463. Top = 248
  3464. end
  3465. object ADOM: TADOQuery
  3466. Parameters = <>
  3467. Left = 136
  3468. Top = 252
  3469. end
  3470. object ADOY: TADOQuery
  3471. Parameters = <>
  3472. Left = 180
  3473. Top = 252
  3474. end
  3475. object ADOT: TADOQuery
  3476. Parameters = <>
  3477. Left = 220
  3478. Top = 256
  3479. end
  3480. end