IST0020MF.dfm 130 KB

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