123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544 |
- object VDSS020M: TVDSS020M
- Left = 352
- Top = 109
- Caption = 'VDS-'#44160#51648#44592' '#44368#53685#47049' '#53685#44228
- ClientHeight = 763
- ClientWidth = 1355
- Color = clWhite
- Font.Charset = DEFAULT_CHARSET
- Font.Color = clWindowText
- Font.Height = -13
- Font.Name = #47569#51008' '#44256#46357
- Font.Style = []
- OldCreateOrder = False
- Position = poOwnerFormCenter
- Scaled = False
- ShowHint = True
- OnClose = FormClose
- OnCreate = FormCreate
- OnShow = FormShow
- DesignSize = (
- 1355
- 763)
- PixelsPerInch = 96
- TextHeight = 17
- object ShpList: TShape
- Left = 4
- Top = 118
- Width = 1346
- Height = 641
- Anchors = [akLeft, akTop, akRight, akBottom]
- Pen.Color = 10849679
- Pen.Width = 2
- ExplicitHeight = 613
- end
- object LblRptTitle: TLabel
- Left = 944
- Top = 39
- Width = 190
- Height = 16
- Anchors = [akLeft, akTop, akRight]
- Caption = 'VDS-'#44160#51648#44592' '#44368#53685#47049' '#53685#44228
- Font.Charset = DEFAULT_CHARSET
- Font.Color = clRed
- Font.Height = -16
- Font.Name = #44404#47548
- Font.Style = [fsBold]
- ParentFont = False
- ParentShowHint = False
- ShowHint = True
- Visible = False
- end
- object LblQryDay: TLabel
- Left = 705
- Top = 37
- Width = 58
- Height = 16
- Anchors = [akLeft, akTop, akRight]
- Caption = 'QryDay'
- Font.Charset = DEFAULT_CHARSET
- Font.Color = clRed
- Font.Height = -16
- Font.Name = #44404#47548
- Font.Style = [fsBold]
- ParentFont = False
- ParentShowHint = False
- ShowHint = True
- Visible = False
- end
- object LblQryYear: TLabel
- Left = 781
- Top = 39
- Width = 65
- Height = 16
- Anchors = [akLeft, akTop, akRight]
- Caption = 'QryYear'
- Font.Charset = DEFAULT_CHARSET
- Font.Color = clRed
- Font.Height = -16
- Font.Name = #44404#47548
- Font.Style = [fsBold]
- ParentFont = False
- ParentShowHint = False
- ShowHint = True
- Visible = False
- end
- object LblQryTm: TLabel
- Left = 639
- Top = 39
- Width = 52
- Height = 16
- Anchors = [akLeft, akTop, akRight]
- Caption = 'QryTm'
- Font.Charset = DEFAULT_CHARSET
- Font.Color = clRed
- Font.Height = -16
- Font.Name = #44404#47548
- Font.Style = [fsBold]
- ParentFont = False
- ParentShowHint = False
- ShowHint = True
- Visible = False
- end
- object ShpTitle: TShape
- Left = 4
- Top = 4
- Width = 1347
- Height = 40
- Anchors = [akLeft, akTop, akRight]
- Brush.Color = 14671839
- Pen.Color = 10849679
- Pen.Width = 2
- ExplicitWidth = 1269
- end
- object LblCaption: TLabel
- Left = 16
- Top = 10
- Width = 267
- Height = 23
- Caption = #53440#51060#53952' '
- Font.Charset = DEFAULT_CHARSET
- Font.Color = 4740964
- Font.Height = -17
- Font.Name = #47569#51008' '#44256#46357
- Font.Style = [fsBold]
- ParentFont = False
- ParentShowHint = False
- ShowHint = True
- end
- object PgQuery: TcxPageControl
- Tag = 9
- Left = 4
- Top = 50
- Width = 1347
- Height = 68
- Cursor = crHandPoint
- Anchors = [akLeft, akTop, akRight]
- Focusable = False
- TabOrder = 0
- Properties.ActivePage = TsDay
- Properties.HotTrack = True
- Properties.Images = LimgTmp
- Properties.Options = [pcoAlwaysShowGoDialogButton, pcoFixedTabWidthWhenRotated, pcoGradient, pcoGradientClientArea, pcoRedrawOnResize]
- Properties.TabSlants.Positions = [spRight]
- TabSlants.Positions = [spRight]
- OnChange = PgQueryChange
- ClientRectBottom = 63
- ClientRectLeft = 2
- ClientRectRight = 1342
- ClientRectTop = 28
- object TsDay: TcxTabSheet
- Caption = #49884#44036#45824#48324' '#53685#44228' '
- ImageIndex = 2
- DesignSize = (
- 1340
- 35)
- object LblRecordsTm: TLabel
- Left = 1200
- Top = 10
- Width = 52
- Height = 17
- Alignment = taRightJustify
- Anchors = [akTop, akRight]
- Caption = #51312#54924#44148#49688
- Transparent = True
- end
- object DtDay: TDateTimePicker
- Left = 216
- Top = 6
- Width = 145
- Height = 25
- BevelInner = bvNone
- BevelOuter = bvNone
- BevelKind = bkFlat
- Date = 39924.557697118050000000
- Format = 'yyyy/MM/dd'
- Time = 39924.557697118050000000
- DoubleBuffered = True
- ImeName = 'Microsoft Office IME 2007'
- ParentDoubleBuffered = False
- ParentShowHint = False
- ShowHint = True
- TabOrder = 0
- end
- object Lbl2: TcxLabel
- Left = 164
- Top = 7
- Caption = #53685#44228#51068
- ParentShowHint = False
- ShowHint = True
- Style.BorderStyle = ebsNone
- Style.Edges = [bLeft, bTop, bRight, bBottom]
- Style.TextStyle = []
- Properties.Alignment.Horz = taRightJustify
- Properties.Alignment.Vert = taVCenter
- Transparent = True
- AnchorX = 207
- AnchorY = 18
- end
- end
- object TsMon: TcxTabSheet
- Caption = #51068#48324' '#53685#44228' '
- ImageIndex = 1
- DesignSize = (
- 1340
- 35)
- object LblRecordsDay: TLabel
- Left = 1195
- Top = 10
- Width = 52
- Height = 17
- Alignment = taRightJustify
- Anchors = [akTop, akRight]
- Caption = #51312#54924#44148#49688
- Transparent = True
- end
- object DtMon: TDateTimePicker
- Left = 111
- Top = 6
- Width = 84
- Height = 25
- BevelInner = bvNone
- BevelOuter = bvNone
- BevelKind = bkFlat
- Date = 39924.557697118050000000
- Format = 'yyyy/MM'
- Time = 39924.557697118050000000
- DateMode = dmUpDown
- ImeName = 'Microsoft Office IME 2007'
- ParentShowHint = False
- ShowHint = True
- TabOrder = 1
- end
- object cxLabel1: TcxLabel
- Left = 63
- Top = 6
- Caption = #53685#44228#50900
- ParentShowHint = False
- ShowHint = True
- Style.BorderStyle = ebsNone
- Style.Edges = [bLeft, bTop, bRight, bBottom]
- Style.TextStyle = []
- Properties.Alignment.Horz = taRightJustify
- Properties.Alignment.Vert = taVCenter
- Transparent = True
- AnchorX = 106
- AnchorY = 17
- end
- object DtStTime: TDateTimePicker
- Left = 200
- Top = 6
- Width = 80
- Height = 25
- BevelInner = bvNone
- BevelOuter = bvNone
- BevelKind = bkFlat
- Date = 39924.557697118050000000
- Format = ' HH:mm'
- Time = 39924.557697118050000000
- Color = clWhite
- DateMode = dmUpDown
- ImeName = 'Microsoft Office IME 2007'
- Kind = dtkTime
- ParentColor = True
- TabOrder = 2
- end
- object DtEdTime: TDateTimePicker
- Left = 310
- Top = 6
- Width = 80
- Height = 25
- BevelInner = bvNone
- BevelOuter = bvNone
- BevelKind = bkFlat
- Date = 39924.557697118050000000
- Format = ' HH:mm'
- Time = 39924.557697118050000000
- Color = clWhite
- DateMode = dmUpDown
- ImeName = 'Microsoft Office IME 2007'
- Kind = dtkTime
- ParentColor = True
- TabOrder = 3
- end
- object cxLabel3: TcxLabel
- Left = 282
- Top = 7
- AutoSize = False
- Caption = ' ~ '
- ParentShowHint = False
- ShowHint = True
- Style.BorderStyle = ebsNone
- Style.Edges = [bLeft, bTop, bRight, bBottom]
- Style.TextStyle = []
- Properties.Alignment.Horz = taCenter
- Transparent = True
- Height = 20
- Width = 25
- AnchorX = 295
- end
- end
- object TsYear: TcxTabSheet
- Caption = #50900#48324' '#53685#44228' '
- ImageIndex = 0
- TabVisible = False
- DesignSize = (
- 1340
- 35)
- object LblRecordsYear: TLabel
- Left = 1200
- Top = 10
- Width = 52
- Height = 17
- Alignment = taRightJustify
- Anchors = [akTop, akRight]
- Caption = #51312#54924#44148#49688
- Transparent = True
- end
- object DtYear: TDateTimePicker
- Left = 275
- Top = 6
- Width = 77
- Height = 25
- BevelInner = bvNone
- BevelOuter = bvNone
- BevelKind = bkFlat
- Date = 39924.557697118050000000
- Format = 'yyyy'#45380
- Time = 39924.557697118050000000
- DateMode = dmUpDown
- ImeName = 'Microsoft Office IME 2007'
- ParentShowHint = False
- ShowHint = True
- TabOrder = 1
- end
- object cxLabel2: TcxLabel
- Left = 159
- Top = 7
- AutoSize = False
- Caption = #53685#44228#45380
- ParentShowHint = False
- ShowHint = True
- Style.BorderStyle = ebsNone
- Style.Edges = [bLeft, bTop, bRight, bBottom]
- Style.TextStyle = []
- Properties.Alignment.Horz = taRightJustify
- Transparent = True
- Height = 20
- Width = 110
- AnchorX = 269
- end
- end
- end
- object BtnSearch: TcxButton
- Left = 425
- Top = 84
- Width = 80
- Height = 25
- Cursor = crHandPoint
- Hint = #45936#51060#53552#47484' '#44160#49353#54633#45768#45796'.'
- Caption = #51312#54924
- Colors.Default = 3893744
- LookAndFeel.Kind = lfUltraFlat
- LookAndFeel.NativeStyle = False
- TabOrder = 1
- Font.Charset = DEFAULT_CHARSET
- Font.Color = clWindowText
- Font.Height = -13
- Font.Name = #47569#51008' '#44256#46357
- Font.Style = [fsBold]
- ParentFont = False
- OnClick = BtnSearchClick
- end
- object BtnGraph: TcxButton
- Left = 948
- Top = 84
- Width = 80
- Height = 25
- Cursor = crHandPoint
- Hint = #45936#51060#53552#47484' '#44536#47000#54532#47196' '#52636#47141#54633#45768#45796'.'
- Anchors = [akTop, akRight]
- Caption = #44536#47000#54532
- Colors.Default = 3893744
- LookAndFeel.Kind = lfUltraFlat
- LookAndFeel.NativeStyle = False
- TabOrder = 2
- Visible = False
- Font.Charset = DEFAULT_CHARSET
- Font.Color = clWindowText
- Font.Height = -13
- Font.Name = #47569#51008' '#44256#46357
- Font.Style = [fsBold]
- ParentFont = False
- OnClick = BtnGraphClick
- end
- object BtnPrint: TcxButton
- Left = 1029
- Top = 84
- Width = 80
- Height = 25
- Cursor = crHandPoint
- Hint = #45936#51060#53552#47484' '#54532#47536#53552#47196' '#52636#47141#54633#45768#45796'.'
- Anchors = [akTop, akRight]
- Caption = #51064#49604
- Colors.Default = 3893744
- LookAndFeel.Kind = lfUltraFlat
- LookAndFeel.NativeStyle = False
- TabOrder = 3
- Visible = False
- Font.Charset = DEFAULT_CHARSET
- Font.Color = clWindowText
- Font.Height = -13
- Font.Name = #47569#51008' '#44256#46357
- Font.Style = [fsBold]
- ParentFont = False
- OnClick = BtnPrintClick
- end
- object BtnExlSave: TcxButton
- Left = 1261
- Top = 84
- Width = 80
- Height = 25
- Cursor = crHandPoint
- Hint = #51312#54924' '#44208#44284' '#45936#51060#53552#47484' '#54028#51068#47196' '#51200#51109#54633#45768#45796'.'
- Anchors = [akTop, akRight]
- Caption = #51200#51109
- Colors.Default = 3893744
- LookAndFeel.Kind = lfUltraFlat
- LookAndFeel.NativeStyle = False
- TabOrder = 4
- Font.Charset = DEFAULT_CHARSET
- Font.Color = clWindowText
- Font.Height = -13
- Font.Name = #47569#51008' '#44256#46357
- Font.Style = [fsBold]
- ParentFont = False
- OnClick = BtnExlSaveClick
- end
- object PgList: TcxPageControl
- Left = 11
- Top = 125
- Width = 1331
- Height = 628
- Anchors = [akLeft, akTop, akRight, akBottom]
- Color = clWhite
- Focusable = False
- ParentBackground = False
- ParentColor = False
- ParentShowHint = False
- ShowHint = False
- TabOrder = 5
- Properties.ActivePage = TsListDay
- Properties.HotTrack = True
- Properties.OwnerDraw = True
- Properties.Style = 9
- ClientRectBottom = 628
- ClientRectRight = 1331
- ClientRectTop = 24
- object TsListDay: TcxTabSheet
- Caption = #49884#44036#45824#48324' '#53685#44228' '
- ImageIndex = 0
- object PnlDayGraph: TPanel
- Left = 0
- Top = 284
- Width = 1331
- Height = 320
- Align = alBottom
- BevelInner = bvLowered
- BevelOuter = bvNone
- TabOrder = 0
- end
- object SplDay: TcxSplitter
- Left = 0
- Top = 278
- Width = 1331
- Height = 6
- HotZoneClassName = 'TcxSimpleStyle'
- AlignSplitter = salBottom
- ResizeUpdate = True
- Control = PnlDayGraph
- Color = 3893744
- ParentColor = False
- end
- object CxDay: TcxGrid
- Left = 0
- Top = 0
- Width = 1331
- Height = 278
- Align = alClient
- TabOrder = 2
- LookAndFeel.Kind = lfUltraFlat
- LookAndFeel.NativeStyle = False
- object TvDay: TcxGridDBBandedTableView
- DataController.Summary.DefaultGroupSummaryItems = <>
- DataController.Summary.FooterSummaryItems = <>
- DataController.Summary.SummaryGroups = <>
- DataController.Summary.Options = [soNullIgnore]
- FilterRow.InfoText = #44160#49353#50612' '#51077#47141
- OptionsBehavior.CellHints = True
- OptionsCustomize.ColumnFiltering = False
- OptionsCustomize.ColumnHidingOnGrouping = False
- OptionsCustomize.ColumnMoving = False
- OptionsCustomize.ColumnSorting = False
- OptionsCustomize.BandMoving = False
- OptionsCustomize.ColumnVertSizing = False
- OptionsData.CancelOnExit = False
- OptionsData.Deleting = False
- OptionsData.DeletingConfirmation = False
- OptionsData.Editing = False
- OptionsData.Inserting = False
- OptionsView.NoDataToDisplayInfoText = '<'#54364#52636' '#54624' '#45936#51060#53552#44032' '#50630#49845#45768#45796'>'
- OptionsView.GroupByBox = False
- OptionsView.GroupFooters = gfVisibleWhenExpanded
- OptionsView.FixedBandSeparatorColor = 10849679
- OptionsView.FixedBandSeparatorWidth = 0
- Bands = <
- item
- Caption = #44396#48516
- FixedKind = fkLeft
- Width = 526
- end
- item
- Caption = #49884#44036#45824#48324' '#53685#44228'('#45824')'
- end>
- object TvDayColumn2: TcxGridDBBandedColumn
- Caption = #51228#50612#44592'ID'
- DataBinding.FieldName = 'CTLR_MNGM_NMBR'
- PropertiesClassName = 'TcxLabelProperties'
- Properties.Alignment.Horz = taCenter
- Properties.Alignment.Vert = taVCenter
- Visible = False
- HeaderAlignmentHorz = taCenter
- HeaderAlignmentVert = vaCenter
- Options.CellMerging = True
- VisibleForCustomization = False
- Width = 71
- Position.BandIndex = 0
- Position.ColIndex = 0
- Position.RowIndex = 0
- end
- object TvDayColumn3: TcxGridDBBandedColumn
- Caption = #48169#54693
- DataBinding.FieldName = 'DTCT_TYPE_CD_NM'
- PropertiesClassName = 'TcxLabelProperties'
- Properties.Alignment.Horz = taCenter
- Properties.Alignment.Vert = taVCenter
- HeaderAlignmentHorz = taCenter
- HeaderAlignmentVert = vaCenter
- Width = 48
- Position.BandIndex = 0
- Position.ColIndex = 3
- Position.RowIndex = 0
- end
- object TvDayColumn4: TcxGridDBBandedColumn
- Caption = #44160#51648#44592'ID'
- DataBinding.FieldName = 'DTCT_NMBR'
- PropertiesClassName = 'TcxLabelProperties'
- Properties.Alignment.Horz = taCenter
- Properties.Alignment.Vert = taVCenter
- HeaderAlignmentHorz = taCenter
- HeaderAlignmentVert = vaCenter
- Width = 64
- Position.BandIndex = 0
- Position.ColIndex = 4
- Position.RowIndex = 0
- end
- object vDayColumnNo: TcxGridDBBandedColumn
- Caption = #51228#50612#44592#47749#52845
- DataBinding.FieldName = 'LCTN'
- PropertiesClassName = 'TcxTextEditProperties'
- Properties.Alignment.Horz = taLeftJustify
- Properties.Alignment.Vert = taVCenter
- BestFitMaxWidth = 55
- HeaderAlignmentHorz = taCenter
- HeaderAlignmentVert = vaCenter
- Options.CellMerging = True
- Width = 136
- Position.BandIndex = 0
- Position.ColIndex = 1
- Position.RowIndex = 0
- end
- object vDayColumnTot: TcxGridDBBandedColumn
- Caption = #52264#47196
- DataBinding.FieldName = 'ISTL_LANE'
- PropertiesClassName = 'TcxTextEditProperties'
- Properties.Alignment.Horz = taCenter
- Properties.Alignment.Vert = taVCenter
- BestFitMaxWidth = 70
- HeaderAlignmentHorz = taCenter
- HeaderAlignmentVert = vaCenter
- Width = 33
- Position.BandIndex = 0
- Position.ColIndex = 2
- Position.RowIndex = 0
- end
- object vDayColumnNm: TcxGridDBBandedColumn
- Caption = #54633#44228
- DataBinding.FieldName = 'TOTTFVL'
- PropertiesClassName = 'TcxSpinEditProperties'
- Properties.Alignment.Horz = taRightJustify
- Properties.Alignment.Vert = taVCenter
- Properties.DisplayFormat = '#,##0'
- BestFitMaxWidth = 195
- HeaderAlignmentHorz = taCenter
- HeaderAlignmentVert = vaCenter
- Width = 51
- Position.BandIndex = 0
- Position.ColIndex = 6
- Position.RowIndex = 0
- end
- object vDayColumnAvg: TcxGridDBBandedColumn
- Caption = #54217#44512
- DataBinding.FieldName = 'AVGTFVL'
- PropertiesClassName = 'TcxSpinEditProperties'
- Properties.Alignment.Horz = taRightJustify
- Properties.Alignment.Vert = taVCenter
- OnCustomDrawCell = vDayColumnCustomDrawCell
- BestFitMaxWidth = 50
- HeaderAlignmentHorz = taCenter
- HeaderAlignmentVert = vaCenter
- Width = 38
- Position.BandIndex = 0
- Position.ColIndex = 7
- Position.RowIndex = 0
- end
- object vDayColumn1: TcxGridDBBandedColumn
- Caption = '00'
- DataBinding.FieldName = 'C00'
- PropertiesClassName = 'TcxSpinEditProperties'
- Properties.Alignment.Horz = taRightJustify
- Properties.Alignment.Vert = taVCenter
- Properties.DisplayFormat = '##,##0'
- OnCustomDrawCell = vDayColumnCustomDrawCell
- BestFitMaxWidth = 50
- HeaderAlignmentHorz = taCenter
- HeaderAlignmentVert = vaCenter
- Width = 50
- Position.BandIndex = 1
- Position.ColIndex = 0
- Position.RowIndex = 0
- end
- object cxGridDBBandedColumn32: TcxGridDBBandedColumn
- Caption = '01'
- DataBinding.FieldName = 'C01'
- PropertiesClassName = 'TcxSpinEditProperties'
- Properties.Alignment.Horz = taRightJustify
- Properties.Alignment.Vert = taVCenter
- Properties.DisplayFormat = '##,##0'
- OnCustomDrawCell = vDayColumnCustomDrawCell
- BestFitMaxWidth = 50
- HeaderAlignmentHorz = taCenter
- HeaderAlignmentVert = vaCenter
- Width = 50
- Position.BandIndex = 1
- Position.ColIndex = 1
- Position.RowIndex = 0
- end
- object cxGridDBBandedColumn33: TcxGridDBBandedColumn
- Caption = '02'
- DataBinding.FieldName = 'C02'
- PropertiesClassName = 'TcxSpinEditProperties'
- Properties.Alignment.Horz = taRightJustify
- Properties.Alignment.Vert = taVCenter
- Properties.DisplayFormat = '##,##0'
- OnCustomDrawCell = vDayColumnCustomDrawCell
- BestFitMaxWidth = 50
- HeaderAlignmentHorz = taCenter
- HeaderAlignmentVert = vaCenter
- Width = 50
- Position.BandIndex = 1
- Position.ColIndex = 2
- Position.RowIndex = 0
- end
- object cxGridDBBandedColumn34: TcxGridDBBandedColumn
- Caption = '03'
- DataBinding.FieldName = 'C03'
- PropertiesClassName = 'TcxSpinEditProperties'
- Properties.Alignment.Horz = taRightJustify
- Properties.Alignment.Vert = taVCenter
- Properties.DisplayFormat = '##,##0'
- OnCustomDrawCell = vDayColumnCustomDrawCell
- BestFitMaxWidth = 50
- HeaderAlignmentHorz = taCenter
- HeaderAlignmentVert = vaCenter
- Width = 50
- Position.BandIndex = 1
- Position.ColIndex = 3
- Position.RowIndex = 0
- end
- object cxGridDBBandedColumn35: TcxGridDBBandedColumn
- Caption = '04'
- DataBinding.FieldName = 'C04'
- PropertiesClassName = 'TcxSpinEditProperties'
- Properties.Alignment.Horz = taRightJustify
- Properties.Alignment.Vert = taVCenter
- Properties.DisplayFormat = '##,##0'
- OnCustomDrawCell = vDayColumnCustomDrawCell
- BestFitMaxWidth = 50
- HeaderAlignmentHorz = taCenter
- HeaderAlignmentVert = vaCenter
- Width = 50
- Position.BandIndex = 1
- Position.ColIndex = 4
- Position.RowIndex = 0
- end
- object cxGridDBBandedColumn36: TcxGridDBBandedColumn
- Caption = '05'
- DataBinding.FieldName = 'C05'
- PropertiesClassName = 'TcxSpinEditProperties'
- Properties.Alignment.Horz = taRightJustify
- Properties.Alignment.Vert = taVCenter
- Properties.DisplayFormat = '##,##0'
- OnCustomDrawCell = vDayColumnCustomDrawCell
- BestFitMaxWidth = 50
- HeaderAlignmentHorz = taCenter
- HeaderAlignmentVert = vaCenter
- Width = 50
- Position.BandIndex = 1
- Position.ColIndex = 5
- Position.RowIndex = 0
- end
- object cxGridDBBandedColumn37: TcxGridDBBandedColumn
- Caption = '06'
- DataBinding.FieldName = 'C06'
- PropertiesClassName = 'TcxSpinEditProperties'
- Properties.Alignment.Horz = taRightJustify
- Properties.Alignment.Vert = taVCenter
- Properties.DisplayFormat = '##,##0'
- OnCustomDrawCell = vDayColumnCustomDrawCell
- BestFitMaxWidth = 50
- HeaderAlignmentHorz = taCenter
- HeaderAlignmentVert = vaCenter
- Width = 50
- Position.BandIndex = 1
- Position.ColIndex = 6
- Position.RowIndex = 0
- end
- object cxGridDBBandedColumn38: TcxGridDBBandedColumn
- Caption = '07'
- DataBinding.FieldName = 'C07'
- PropertiesClassName = 'TcxSpinEditProperties'
- Properties.Alignment.Horz = taRightJustify
- Properties.Alignment.Vert = taVCenter
- Properties.DisplayFormat = '##,##0'
- OnCustomDrawCell = vDayColumnCustomDrawCell
- BestFitMaxWidth = 50
- HeaderAlignmentHorz = taCenter
- HeaderAlignmentVert = vaCenter
- Width = 50
- Position.BandIndex = 1
- Position.ColIndex = 7
- Position.RowIndex = 0
- end
- object cxGridDBBandedColumn39: TcxGridDBBandedColumn
- Caption = '08'
- DataBinding.FieldName = 'C08'
- PropertiesClassName = 'TcxSpinEditProperties'
- Properties.Alignment.Horz = taRightJustify
- Properties.Alignment.Vert = taVCenter
- Properties.DisplayFormat = '##,##0'
- OnCustomDrawCell = vDayColumnCustomDrawCell
- BestFitMaxWidth = 50
- HeaderAlignmentHorz = taCenter
- HeaderAlignmentVert = vaCenter
- Width = 50
- Position.BandIndex = 1
- Position.ColIndex = 8
- Position.RowIndex = 0
- end
- object cxGridDBBandedColumn40: TcxGridDBBandedColumn
- Caption = '09'
- DataBinding.FieldName = 'C09'
- PropertiesClassName = 'TcxSpinEditProperties'
- Properties.Alignment.Horz = taRightJustify
- Properties.Alignment.Vert = taVCenter
- Properties.DisplayFormat = '##,##0'
- OnCustomDrawCell = vDayColumnCustomDrawCell
- BestFitMaxWidth = 50
- HeaderAlignmentHorz = taCenter
- HeaderAlignmentVert = vaCenter
- Width = 50
- Position.BandIndex = 1
- Position.ColIndex = 9
- Position.RowIndex = 0
- end
- object cxGridDBBandedColumn41: TcxGridDBBandedColumn
- Caption = '10'
- DataBinding.FieldName = 'C10'
- PropertiesClassName = 'TcxSpinEditProperties'
- Properties.Alignment.Horz = taRightJustify
- Properties.Alignment.Vert = taVCenter
- Properties.DisplayFormat = '##,##0'
- OnCustomDrawCell = vDayColumnCustomDrawCell
- BestFitMaxWidth = 50
- HeaderAlignmentHorz = taCenter
- HeaderAlignmentVert = vaCenter
- Width = 50
- Position.BandIndex = 1
- Position.ColIndex = 10
- Position.RowIndex = 0
- end
- object cxGridDBBandedColumn42: TcxGridDBBandedColumn
- Caption = '11'
- DataBinding.FieldName = 'C11'
- PropertiesClassName = 'TcxSpinEditProperties'
- Properties.Alignment.Horz = taRightJustify
- Properties.Alignment.Vert = taVCenter
- Properties.DisplayFormat = '##,##0'
- OnCustomDrawCell = vDayColumnCustomDrawCell
- BestFitMaxWidth = 50
- HeaderAlignmentHorz = taCenter
- HeaderAlignmentVert = vaCenter
- Width = 50
- Position.BandIndex = 1
- Position.ColIndex = 11
- Position.RowIndex = 0
- end
- object cxGridDBBandedColumn43: TcxGridDBBandedColumn
- Caption = '12'
- DataBinding.FieldName = 'C12'
- PropertiesClassName = 'TcxSpinEditProperties'
- Properties.Alignment.Horz = taRightJustify
- Properties.Alignment.Vert = taVCenter
- Properties.DisplayFormat = '##,##0'
- OnCustomDrawCell = vDayColumnCustomDrawCell
- BestFitMaxWidth = 50
- HeaderAlignmentHorz = taCenter
- HeaderAlignmentVert = vaCenter
- Width = 50
- Position.BandIndex = 1
- Position.ColIndex = 12
- Position.RowIndex = 0
- end
- object cxGridDBBandedColumn44: TcxGridDBBandedColumn
- Caption = '13'
- DataBinding.FieldName = 'C13'
- PropertiesClassName = 'TcxSpinEditProperties'
- Properties.Alignment.Horz = taRightJustify
- Properties.Alignment.Vert = taVCenter
- Properties.DisplayFormat = '##,##0'
- OnCustomDrawCell = vDayColumnCustomDrawCell
- BestFitMaxWidth = 50
- HeaderAlignmentHorz = taCenter
- HeaderAlignmentVert = vaCenter
- Width = 50
- Position.BandIndex = 1
- Position.ColIndex = 13
- Position.RowIndex = 0
- end
- object cxGridDBBandedColumn45: TcxGridDBBandedColumn
- Caption = '14'
- DataBinding.FieldName = 'C14'
- PropertiesClassName = 'TcxSpinEditProperties'
- Properties.Alignment.Horz = taRightJustify
- Properties.Alignment.Vert = taVCenter
- Properties.DisplayFormat = '##,##0'
- OnCustomDrawCell = vDayColumnCustomDrawCell
- BestFitMaxWidth = 50
- HeaderAlignmentHorz = taCenter
- HeaderAlignmentVert = vaCenter
- Width = 50
- Position.BandIndex = 1
- Position.ColIndex = 14
- Position.RowIndex = 0
- end
- object cxGridDBBandedColumn46: TcxGridDBBandedColumn
- Caption = '15'
- DataBinding.FieldName = 'C15'
- PropertiesClassName = 'TcxSpinEditProperties'
- Properties.Alignment.Horz = taRightJustify
- Properties.Alignment.Vert = taVCenter
- Properties.DisplayFormat = '##,##0'
- OnCustomDrawCell = vDayColumnCustomDrawCell
- BestFitMaxWidth = 50
- HeaderAlignmentHorz = taCenter
- HeaderAlignmentVert = vaCenter
- Width = 50
- Position.BandIndex = 1
- Position.ColIndex = 15
- Position.RowIndex = 0
- end
- object cxGridDBBandedColumn47: TcxGridDBBandedColumn
- Caption = '16'
- DataBinding.FieldName = 'C16'
- PropertiesClassName = 'TcxSpinEditProperties'
- Properties.Alignment.Horz = taRightJustify
- Properties.Alignment.Vert = taVCenter
- Properties.DisplayFormat = '##,##0'
- OnCustomDrawCell = vDayColumnCustomDrawCell
- BestFitMaxWidth = 50
- HeaderAlignmentHorz = taCenter
- HeaderAlignmentVert = vaCenter
- Width = 50
- Position.BandIndex = 1
- Position.ColIndex = 16
- Position.RowIndex = 0
- end
- object cxGridDBBandedColumn48: TcxGridDBBandedColumn
- Caption = '17'
- DataBinding.FieldName = 'C17'
- PropertiesClassName = 'TcxSpinEditProperties'
- Properties.Alignment.Horz = taRightJustify
- Properties.Alignment.Vert = taVCenter
- Properties.DisplayFormat = '##,##0'
- OnCustomDrawCell = vDayColumnCustomDrawCell
- BestFitMaxWidth = 50
- HeaderAlignmentHorz = taCenter
- HeaderAlignmentVert = vaCenter
- Width = 50
- Position.BandIndex = 1
- Position.ColIndex = 17
- Position.RowIndex = 0
- end
- object cxGridDBBandedColumn49: TcxGridDBBandedColumn
- Caption = '18'
- DataBinding.FieldName = 'C18'
- PropertiesClassName = 'TcxSpinEditProperties'
- Properties.Alignment.Horz = taRightJustify
- Properties.Alignment.Vert = taVCenter
- Properties.DisplayFormat = '##,##0'
- OnCustomDrawCell = vDayColumnCustomDrawCell
- BestFitMaxWidth = 50
- HeaderAlignmentHorz = taCenter
- HeaderAlignmentVert = vaCenter
- Width = 50
- Position.BandIndex = 1
- Position.ColIndex = 18
- Position.RowIndex = 0
- end
- object cxGridDBBandedColumn50: TcxGridDBBandedColumn
- Caption = '19'
- DataBinding.FieldName = 'C19'
- PropertiesClassName = 'TcxSpinEditProperties'
- Properties.Alignment.Horz = taRightJustify
- Properties.Alignment.Vert = taVCenter
- Properties.DisplayFormat = '##,##0'
- OnCustomDrawCell = vDayColumnCustomDrawCell
- BestFitMaxWidth = 50
- HeaderAlignmentHorz = taCenter
- HeaderAlignmentVert = vaCenter
- Width = 50
- Position.BandIndex = 1
- Position.ColIndex = 19
- Position.RowIndex = 0
- end
- object cxGridDBBandedColumn51: TcxGridDBBandedColumn
- Caption = '20'
- DataBinding.FieldName = 'C20'
- PropertiesClassName = 'TcxSpinEditProperties'
- Properties.Alignment.Horz = taRightJustify
- Properties.Alignment.Vert = taVCenter
- Properties.DisplayFormat = '##,##0'
- OnCustomDrawCell = vDayColumnCustomDrawCell
- BestFitMaxWidth = 50
- HeaderAlignmentHorz = taCenter
- HeaderAlignmentVert = vaCenter
- Width = 50
- Position.BandIndex = 1
- Position.ColIndex = 20
- Position.RowIndex = 0
- end
- object cxGridDBBandedColumn52: TcxGridDBBandedColumn
- Caption = '21'
- DataBinding.FieldName = 'C21'
- PropertiesClassName = 'TcxSpinEditProperties'
- Properties.Alignment.Horz = taRightJustify
- Properties.Alignment.Vert = taVCenter
- Properties.DisplayFormat = '##,##0'
- OnCustomDrawCell = vDayColumnCustomDrawCell
- BestFitMaxWidth = 50
- HeaderAlignmentHorz = taCenter
- HeaderAlignmentVert = vaCenter
- Width = 50
- Position.BandIndex = 1
- Position.ColIndex = 21
- Position.RowIndex = 0
- end
- object cxGridDBBandedColumn53: TcxGridDBBandedColumn
- Caption = '22'
- DataBinding.FieldName = 'C22'
- PropertiesClassName = 'TcxSpinEditProperties'
- Properties.Alignment.Horz = taRightJustify
- Properties.Alignment.Vert = taVCenter
- Properties.DisplayFormat = '##,##0'
- OnCustomDrawCell = vDayColumnCustomDrawCell
- BestFitMaxWidth = 50
- HeaderAlignmentHorz = taCenter
- HeaderAlignmentVert = vaCenter
- Width = 50
- Position.BandIndex = 1
- Position.ColIndex = 22
- Position.RowIndex = 0
- end
- object cxGridDBBandedColumn54: TcxGridDBBandedColumn
- Caption = '23'
- DataBinding.FieldName = 'C23'
- PropertiesClassName = 'TcxSpinEditProperties'
- Properties.Alignment.Horz = taRightJustify
- Properties.Alignment.Vert = taVCenter
- Properties.DisplayFormat = '##,##0'
- OnCustomDrawCell = vDayColumnCustomDrawCell
- BestFitMaxWidth = 50
- HeaderAlignmentHorz = taCenter
- HeaderAlignmentVert = vaCenter
- Width = 50
- Position.BandIndex = 1
- Position.ColIndex = 23
- Position.RowIndex = 0
- end
- object TvDayColumn1: TcxGridDBBandedColumn
- Caption = #44160#44592#44592#47749#52845
- DataBinding.FieldName = 'VDS_DTCT_NM'
- HeaderAlignmentHorz = taCenter
- HeaderAlignmentVert = vaCenter
- Width = 85
- Position.BandIndex = 0
- Position.ColIndex = 5
- Position.RowIndex = 0
- end
- end
- object GlDay: TcxGridLevel
- GridView = TvDay
- end
- end
- end
- object TsListMon: TcxTabSheet
- Caption = #51068#48324' '#53685#44228' '
- ImageIndex = 1
- object PnlMonGraph: TPanel
- Left = 0
- Top = 284
- Width = 1331
- Height = 320
- Align = alBottom
- BevelInner = bvLowered
- BevelOuter = bvNone
- TabOrder = 0
- end
- object SplMon: TcxSplitter
- Left = 0
- Top = 278
- Width = 1331
- Height = 6
- HotZoneClassName = 'TcxSimpleStyle'
- AlignSplitter = salBottom
- ResizeUpdate = True
- Control = PnlMonGraph
- Color = 3893744
- ParentColor = False
- end
- object CxMon: TcxGrid
- Left = 0
- Top = 0
- Width = 1331
- Height = 278
- Align = alClient
- TabOrder = 2
- LookAndFeel.Kind = lfUltraFlat
- LookAndFeel.NativeStyle = False
- object TvMon: TcxGridDBBandedTableView
- DataController.Summary.DefaultGroupSummaryItems = <>
- DataController.Summary.FooterSummaryItems = <>
- DataController.Summary.SummaryGroups = <>
- DataController.Summary.Options = [soNullIgnore]
- FilterRow.InfoText = #44160#49353#50612' '#51077#47141
- OptionsBehavior.CellHints = True
- OptionsCustomize.ColumnFiltering = False
- OptionsCustomize.ColumnHidingOnGrouping = False
- OptionsCustomize.ColumnMoving = False
- OptionsCustomize.ColumnSorting = False
- OptionsCustomize.BandMoving = False
- OptionsCustomize.ColumnVertSizing = False
- OptionsData.CancelOnExit = False
- OptionsData.Deleting = False
- OptionsData.DeletingConfirmation = False
- OptionsData.Editing = False
- OptionsData.Inserting = False
- OptionsView.NoDataToDisplayInfoText = '<'#54364#52636' '#54624' '#45936#51060#53552#44032' '#50630#49845#45768#45796'>'
- OptionsView.GroupByBox = False
- OptionsView.GroupFooters = gfVisibleWhenExpanded
- OptionsView.FixedBandSeparatorColor = 10849679
- OptionsView.FixedBandSeparatorWidth = 0
- Bands = <
- item
- Caption = #44396#48516
- FixedKind = fkLeft
- Width = 517
- end
- item
- Caption = #51068#48324' '#53685#44228'('#45824')'
- end>
- object TvMonColumn2: TcxGridDBBandedColumn
- Caption = #51228#50612#44592'ID'
- DataBinding.FieldName = 'CTLR_MNGM_NMBR'
- PropertiesClassName = 'TcxLabelProperties'
- Properties.Alignment.Horz = taCenter
- Properties.Alignment.Vert = taVCenter
- Visible = False
- HeaderAlignmentHorz = taCenter
- HeaderAlignmentVert = vaCenter
- Options.CellMerging = True
- VisibleForCustomization = False
- Width = 70
- Position.BandIndex = 0
- Position.ColIndex = 0
- Position.RowIndex = 0
- end
- object TvMonColumn3: TcxGridDBBandedColumn
- Caption = #48169#54693
- DataBinding.FieldName = 'DTCT_TYPE_CD_NM'
- PropertiesClassName = 'TcxLabelProperties'
- Properties.Alignment.Horz = taCenter
- Properties.Alignment.Vert = taVCenter
- HeaderAlignmentHorz = taCenter
- HeaderAlignmentVert = vaCenter
- Width = 47
- Position.BandIndex = 0
- Position.ColIndex = 3
- Position.RowIndex = 0
- end
- object TvMonColumn4: TcxGridDBBandedColumn
- Caption = #44160#51648#44592'ID'
- DataBinding.FieldName = 'DTCT_NMBR'
- PropertiesClassName = 'TcxLabelProperties'
- Properties.Alignment.Horz = taCenter
- Properties.Alignment.Vert = taVCenter
- HeaderAlignmentHorz = taCenter
- HeaderAlignmentVert = vaCenter
- Width = 67
- Position.BandIndex = 0
- Position.ColIndex = 4
- Position.RowIndex = 0
- end
- object vMonColumnNo: TcxGridDBBandedColumn
- Caption = #51228#50612#44592#47749#52845
- DataBinding.FieldName = 'LCTN'
- PropertiesClassName = 'TcxTextEditProperties'
- Properties.Alignment.Horz = taLeftJustify
- Properties.Alignment.Vert = taVCenter
- BestFitMaxWidth = 55
- HeaderAlignmentHorz = taCenter
- HeaderAlignmentVert = vaCenter
- Options.CellMerging = True
- Width = 130
- Position.BandIndex = 0
- Position.ColIndex = 1
- Position.RowIndex = 0
- end
- object vMonColumnTot: TcxGridDBBandedColumn
- Caption = #52264#47196
- DataBinding.FieldName = 'ISTL_LANE'
- PropertiesClassName = 'TcxTextEditProperties'
- Properties.Alignment.Horz = taCenter
- Properties.Alignment.Vert = taVCenter
- BestFitMaxWidth = 70
- HeaderAlignmentHorz = taCenter
- HeaderAlignmentVert = vaCenter
- Width = 34
- Position.BandIndex = 0
- Position.ColIndex = 2
- Position.RowIndex = 0
- end
- object vMonColumnNm: TcxGridDBBandedColumn
- Caption = #54633#44228
- DataBinding.FieldName = 'TOTTFVL'
- PropertiesClassName = 'TcxSpinEditProperties'
- Properties.Alignment.Horz = taRightJustify
- Properties.Alignment.Vert = taVCenter
- Properties.DisplayFormat = '#,##0'
- BestFitMaxWidth = 195
- HeaderAlignmentHorz = taCenter
- HeaderAlignmentVert = vaCenter
- Width = 49
- Position.BandIndex = 0
- Position.ColIndex = 6
- Position.RowIndex = 0
- end
- object vMonColumnAvg: TcxGridDBBandedColumn
- Caption = #54217#44512
- DataBinding.FieldName = 'AVGTFVL'
- PropertiesClassName = 'TcxSpinEditProperties'
- Properties.Alignment.Horz = taRightJustify
- Properties.Alignment.Vert = taVCenter
- OnCustomDrawCell = vDayColumnCustomDrawCell
- BestFitMaxWidth = 50
- HeaderAlignmentHorz = taCenter
- HeaderAlignmentVert = vaCenter
- Width = 46
- Position.BandIndex = 0
- Position.ColIndex = 7
- Position.RowIndex = 0
- end
- object vMonColumn1: TcxGridDBBandedColumn
- Caption = '1'
- DataBinding.FieldName = 'C01'
- PropertiesClassName = 'TcxSpinEditProperties'
- Properties.Alignment.Horz = taRightJustify
- Properties.Alignment.Vert = taVCenter
- Properties.DisplayFormat = '##,##0'
- OnCustomDrawCell = vDayColumnCustomDrawCell
- BestFitMaxWidth = 50
- HeaderAlignmentHorz = taCenter
- HeaderAlignmentVert = vaCenter
- Width = 50
- Position.BandIndex = 1
- Position.ColIndex = 0
- Position.RowIndex = 0
- end
- object vMonColumn2: TcxGridDBBandedColumn
- Caption = '2'
- DataBinding.FieldName = 'C02'
- PropertiesClassName = 'TcxSpinEditProperties'
- Properties.Alignment.Horz = taRightJustify
- Properties.Alignment.Vert = taVCenter
- Properties.DisplayFormat = '##,##0'
- OnCustomDrawCell = vDayColumnCustomDrawCell
- BestFitMaxWidth = 50
- HeaderAlignmentHorz = taCenter
- HeaderAlignmentVert = vaCenter
- Width = 50
- Position.BandIndex = 1
- Position.ColIndex = 1
- Position.RowIndex = 0
- end
- object vMonColumn3: TcxGridDBBandedColumn
- Caption = '3'
- DataBinding.FieldName = 'C03'
- PropertiesClassName = 'TcxSpinEditProperties'
- Properties.Alignment.Horz = taRightJustify
- Properties.Alignment.Vert = taVCenter
- Properties.DisplayFormat = '##,##0'
- OnCustomDrawCell = vDayColumnCustomDrawCell
- BestFitMaxWidth = 50
- HeaderAlignmentHorz = taCenter
- HeaderAlignmentVert = vaCenter
- Width = 50
- Position.BandIndex = 1
- Position.ColIndex = 2
- Position.RowIndex = 0
- end
- object vMonColumn4: TcxGridDBBandedColumn
- Caption = '4'
- DataBinding.FieldName = 'C04'
- PropertiesClassName = 'TcxSpinEditProperties'
- Properties.Alignment.Horz = taRightJustify
- Properties.Alignment.Vert = taVCenter
- Properties.DisplayFormat = '##,##0'
- OnCustomDrawCell = vDayColumnCustomDrawCell
- BestFitMaxWidth = 50
- HeaderAlignmentHorz = taCenter
- HeaderAlignmentVert = vaCenter
- Width = 50
- Position.BandIndex = 1
- Position.ColIndex = 3
- Position.RowIndex = 0
- end
- object vMonColumn5: TcxGridDBBandedColumn
- Caption = '5'
- DataBinding.FieldName = 'C05'
- PropertiesClassName = 'TcxSpinEditProperties'
- Properties.Alignment.Horz = taRightJustify
- Properties.Alignment.Vert = taVCenter
- Properties.DisplayFormat = '##,##0'
- OnCustomDrawCell = vDayColumnCustomDrawCell
- BestFitMaxWidth = 50
- HeaderAlignmentHorz = taCenter
- HeaderAlignmentVert = vaCenter
- Width = 50
- Position.BandIndex = 1
- Position.ColIndex = 4
- Position.RowIndex = 0
- end
- object vMonColumn6: TcxGridDBBandedColumn
- Caption = '6'
- DataBinding.FieldName = 'C06'
- PropertiesClassName = 'TcxSpinEditProperties'
- Properties.Alignment.Horz = taRightJustify
- Properties.Alignment.Vert = taVCenter
- Properties.DisplayFormat = '##,##0'
- OnCustomDrawCell = vDayColumnCustomDrawCell
- BestFitMaxWidth = 50
- HeaderAlignmentHorz = taCenter
- HeaderAlignmentVert = vaCenter
- Width = 50
- Position.BandIndex = 1
- Position.ColIndex = 5
- Position.RowIndex = 0
- end
- object vMonColumn7: TcxGridDBBandedColumn
- Caption = '7'
- DataBinding.FieldName = 'C07'
- PropertiesClassName = 'TcxSpinEditProperties'
- Properties.Alignment.Horz = taRightJustify
- Properties.Alignment.Vert = taVCenter
- Properties.DisplayFormat = '##,##0'
- OnCustomDrawCell = vDayColumnCustomDrawCell
- BestFitMaxWidth = 50
- HeaderAlignmentHorz = taCenter
- HeaderAlignmentVert = vaCenter
- Width = 50
- Position.BandIndex = 1
- Position.ColIndex = 6
- Position.RowIndex = 0
- end
- object vMonColumn8: TcxGridDBBandedColumn
- Caption = '8'
- DataBinding.FieldName = 'C08'
- PropertiesClassName = 'TcxSpinEditProperties'
- Properties.Alignment.Horz = taRightJustify
- Properties.Alignment.Vert = taVCenter
- Properties.DisplayFormat = '##,##0'
- OnCustomDrawCell = vDayColumnCustomDrawCell
- BestFitMaxWidth = 50
- HeaderAlignmentHorz = taCenter
- HeaderAlignmentVert = vaCenter
- Width = 50
- Position.BandIndex = 1
- Position.ColIndex = 7
- Position.RowIndex = 0
- end
- object vMonColumn9: TcxGridDBBandedColumn
- Caption = '9'
- DataBinding.FieldName = 'C09'
- PropertiesClassName = 'TcxSpinEditProperties'
- Properties.Alignment.Horz = taRightJustify
- Properties.Alignment.Vert = taVCenter
- Properties.DisplayFormat = '##,##0'
- OnCustomDrawCell = vDayColumnCustomDrawCell
- BestFitMaxWidth = 50
- HeaderAlignmentHorz = taCenter
- HeaderAlignmentVert = vaCenter
- Width = 50
- Position.BandIndex = 1
- Position.ColIndex = 8
- Position.RowIndex = 0
- end
- object vMonColumn10: TcxGridDBBandedColumn
- Caption = '10'
- DataBinding.FieldName = 'C10'
- PropertiesClassName = 'TcxSpinEditProperties'
- Properties.Alignment.Horz = taRightJustify
- Properties.Alignment.Vert = taVCenter
- Properties.DisplayFormat = '##,##0'
- OnCustomDrawCell = vDayColumnCustomDrawCell
- BestFitMaxWidth = 50
- HeaderAlignmentHorz = taCenter
- HeaderAlignmentVert = vaCenter
- Width = 50
- Position.BandIndex = 1
- Position.ColIndex = 9
- Position.RowIndex = 0
- end
- object vMonColumn11: TcxGridDBBandedColumn
- Caption = '11'
- DataBinding.FieldName = 'C11'
- PropertiesClassName = 'TcxSpinEditProperties'
- Properties.Alignment.Horz = taRightJustify
- Properties.Alignment.Vert = taVCenter
- Properties.DisplayFormat = '##,##0'
- OnCustomDrawCell = vDayColumnCustomDrawCell
- BestFitMaxWidth = 50
- HeaderAlignmentHorz = taCenter
- HeaderAlignmentVert = vaCenter
- Width = 50
- Position.BandIndex = 1
- Position.ColIndex = 10
- Position.RowIndex = 0
- end
- object vMonColumn12: TcxGridDBBandedColumn
- Caption = '12'
- DataBinding.FieldName = 'C12'
- PropertiesClassName = 'TcxSpinEditProperties'
- Properties.Alignment.Horz = taRightJustify
- Properties.Alignment.Vert = taVCenter
- Properties.DisplayFormat = '##,##0'
- OnCustomDrawCell = vDayColumnCustomDrawCell
- BestFitMaxWidth = 50
- HeaderAlignmentHorz = taCenter
- HeaderAlignmentVert = vaCenter
- Width = 50
- Position.BandIndex = 1
- Position.ColIndex = 11
- Position.RowIndex = 0
- end
- object vMonColumn13: TcxGridDBBandedColumn
- Caption = '13'
- DataBinding.FieldName = 'C13'
- PropertiesClassName = 'TcxSpinEditProperties'
- Properties.Alignment.Horz = taRightJustify
- Properties.Alignment.Vert = taVCenter
- Properties.DisplayFormat = '##,##0'
- OnCustomDrawCell = vDayColumnCustomDrawCell
- BestFitMaxWidth = 50
- HeaderAlignmentHorz = taCenter
- HeaderAlignmentVert = vaCenter
- Width = 50
- Position.BandIndex = 1
- Position.ColIndex = 12
- Position.RowIndex = 0
- end
- object vMonColumn14: TcxGridDBBandedColumn
- Caption = '14'
- DataBinding.FieldName = 'C14'
- PropertiesClassName = 'TcxSpinEditProperties'
- Properties.Alignment.Horz = taRightJustify
- Properties.Alignment.Vert = taVCenter
- Properties.DisplayFormat = '##,##0'
- OnCustomDrawCell = vDayColumnCustomDrawCell
- BestFitMaxWidth = 50
- HeaderAlignmentHorz = taCenter
- HeaderAlignmentVert = vaCenter
- Width = 50
- Position.BandIndex = 1
- Position.ColIndex = 13
- Position.RowIndex = 0
- end
- object vMonColumn15: TcxGridDBBandedColumn
- Caption = '15'
- DataBinding.FieldName = 'C15'
- PropertiesClassName = 'TcxSpinEditProperties'
- Properties.Alignment.Horz = taRightJustify
- Properties.Alignment.Vert = taVCenter
- Properties.DisplayFormat = '##,##0'
- OnCustomDrawCell = vDayColumnCustomDrawCell
- BestFitMaxWidth = 50
- HeaderAlignmentHorz = taCenter
- HeaderAlignmentVert = vaCenter
- Width = 50
- Position.BandIndex = 1
- Position.ColIndex = 14
- Position.RowIndex = 0
- end
- object vMonColumn16: TcxGridDBBandedColumn
- Caption = '16'
- DataBinding.FieldName = 'C16'
- PropertiesClassName = 'TcxSpinEditProperties'
- Properties.Alignment.Horz = taRightJustify
- Properties.Alignment.Vert = taVCenter
- Properties.DisplayFormat = '##,##0'
- OnCustomDrawCell = vDayColumnCustomDrawCell
- BestFitMaxWidth = 50
- HeaderAlignmentHorz = taCenter
- HeaderAlignmentVert = vaCenter
- Width = 50
- Position.BandIndex = 1
- Position.ColIndex = 15
- Position.RowIndex = 0
- end
- object vMonColumn17: TcxGridDBBandedColumn
- Caption = '17'
- DataBinding.FieldName = 'C17'
- PropertiesClassName = 'TcxSpinEditProperties'
- Properties.Alignment.Horz = taRightJustify
- Properties.Alignment.Vert = taVCenter
- Properties.DisplayFormat = '##,##0'
- OnCustomDrawCell = vDayColumnCustomDrawCell
- BestFitMaxWidth = 50
- HeaderAlignmentHorz = taCenter
- HeaderAlignmentVert = vaCenter
- Width = 50
- Position.BandIndex = 1
- Position.ColIndex = 16
- Position.RowIndex = 0
- end
- object vMonColumn18: TcxGridDBBandedColumn
- Caption = '18'
- DataBinding.FieldName = 'C18'
- PropertiesClassName = 'TcxSpinEditProperties'
- Properties.Alignment.Horz = taRightJustify
- Properties.Alignment.Vert = taVCenter
- Properties.DisplayFormat = '##,##0'
- OnCustomDrawCell = vDayColumnCustomDrawCell
- BestFitMaxWidth = 50
- HeaderAlignmentHorz = taCenter
- HeaderAlignmentVert = vaCenter
- Width = 50
- Position.BandIndex = 1
- Position.ColIndex = 17
- Position.RowIndex = 0
- end
- object vMonColumn19: TcxGridDBBandedColumn
- Caption = '19'
- DataBinding.FieldName = 'C19'
- PropertiesClassName = 'TcxSpinEditProperties'
- Properties.Alignment.Horz = taRightJustify
- Properties.Alignment.Vert = taVCenter
- Properties.DisplayFormat = '##,##0'
- OnCustomDrawCell = vDayColumnCustomDrawCell
- BestFitMaxWidth = 50
- HeaderAlignmentHorz = taCenter
- HeaderAlignmentVert = vaCenter
- Width = 50
- Position.BandIndex = 1
- Position.ColIndex = 18
- Position.RowIndex = 0
- end
- object vMonColumn20: TcxGridDBBandedColumn
- Caption = '20'
- DataBinding.FieldName = 'C20'
- PropertiesClassName = 'TcxSpinEditProperties'
- Properties.Alignment.Horz = taRightJustify
- Properties.Alignment.Vert = taVCenter
- Properties.DisplayFormat = '##,##0'
- OnCustomDrawCell = vDayColumnCustomDrawCell
- BestFitMaxWidth = 50
- HeaderAlignmentHorz = taCenter
- HeaderAlignmentVert = vaCenter
- Width = 50
- Position.BandIndex = 1
- Position.ColIndex = 19
- Position.RowIndex = 0
- end
- object vMonColumn21: TcxGridDBBandedColumn
- Caption = '21'
- DataBinding.FieldName = 'C21'
- PropertiesClassName = 'TcxSpinEditProperties'
- Properties.Alignment.Horz = taRightJustify
- Properties.Alignment.Vert = taVCenter
- Properties.DisplayFormat = '##,##0'
- OnCustomDrawCell = vDayColumnCustomDrawCell
- BestFitMaxWidth = 50
- HeaderAlignmentHorz = taCenter
- HeaderAlignmentVert = vaCenter
- Width = 50
- Position.BandIndex = 1
- Position.ColIndex = 20
- Position.RowIndex = 0
- end
- object vMonColumn22: TcxGridDBBandedColumn
- Caption = '22'
- DataBinding.FieldName = 'C22'
- PropertiesClassName = 'TcxSpinEditProperties'
- Properties.Alignment.Horz = taRightJustify
- Properties.Alignment.Vert = taVCenter
- Properties.DisplayFormat = '##,##0'
- OnCustomDrawCell = vDayColumnCustomDrawCell
- BestFitMaxWidth = 50
- HeaderAlignmentHorz = taCenter
- HeaderAlignmentVert = vaCenter
- Width = 50
- Position.BandIndex = 1
- Position.ColIndex = 21
- Position.RowIndex = 0
- end
- object vMonColumn23: TcxGridDBBandedColumn
- Caption = '23'
- DataBinding.FieldName = 'C23'
- PropertiesClassName = 'TcxSpinEditProperties'
- Properties.Alignment.Horz = taRightJustify
- Properties.Alignment.Vert = taVCenter
- Properties.DisplayFormat = '##,##0'
- OnCustomDrawCell = vDayColumnCustomDrawCell
- BestFitMaxWidth = 50
- HeaderAlignmentHorz = taCenter
- HeaderAlignmentVert = vaCenter
- Width = 50
- Position.BandIndex = 1
- Position.ColIndex = 22
- Position.RowIndex = 0
- end
- object vMonColumn24: TcxGridDBBandedColumn
- Caption = '24'
- DataBinding.FieldName = 'C24'
- PropertiesClassName = 'TcxSpinEditProperties'
- Properties.Alignment.Horz = taRightJustify
- Properties.Alignment.Vert = taVCenter
- Properties.DisplayFormat = '##,##0'
- OnCustomDrawCell = vDayColumnCustomDrawCell
- BestFitMaxWidth = 50
- HeaderAlignmentHorz = taCenter
- HeaderAlignmentVert = vaCenter
- Width = 50
- Position.BandIndex = 1
- Position.ColIndex = 23
- Position.RowIndex = 0
- end
- object vMonColumn25: TcxGridDBBandedColumn
- Caption = '25'
- DataBinding.FieldName = 'C25'
- PropertiesClassName = 'TcxSpinEditProperties'
- Properties.Alignment.Horz = taRightJustify
- Properties.Alignment.Vert = taVCenter
- Properties.DisplayFormat = '##,##0'
- OnCustomDrawCell = vDayColumnCustomDrawCell
- BestFitMaxWidth = 50
- HeaderAlignmentHorz = taCenter
- HeaderAlignmentVert = vaCenter
- Width = 50
- Position.BandIndex = 1
- Position.ColIndex = 24
- Position.RowIndex = 0
- end
- object vMonColumn26: TcxGridDBBandedColumn
- Caption = '26'
- DataBinding.FieldName = 'C26'
- PropertiesClassName = 'TcxSpinEditProperties'
- Properties.Alignment.Horz = taRightJustify
- Properties.Alignment.Vert = taVCenter
- Properties.DisplayFormat = '##,##0'
- OnCustomDrawCell = vDayColumnCustomDrawCell
- BestFitMaxWidth = 50
- HeaderAlignmentHorz = taCenter
- HeaderAlignmentVert = vaCenter
- Width = 50
- Position.BandIndex = 1
- Position.ColIndex = 25
- Position.RowIndex = 0
- end
- object vMonColumn27: TcxGridDBBandedColumn
- Caption = '27'
- DataBinding.FieldName = 'C27'
- PropertiesClassName = 'TcxSpinEditProperties'
- Properties.Alignment.Horz = taRightJustify
- Properties.Alignment.Vert = taVCenter
- Properties.DisplayFormat = '##,##0'
- OnCustomDrawCell = vDayColumnCustomDrawCell
- BestFitMaxWidth = 50
- HeaderAlignmentHorz = taCenter
- HeaderAlignmentVert = vaCenter
- Width = 50
- Position.BandIndex = 1
- Position.ColIndex = 26
- Position.RowIndex = 0
- end
- object vMonColumn28: TcxGridDBBandedColumn
- Caption = '28'
- DataBinding.FieldName = 'C28'
- PropertiesClassName = 'TcxSpinEditProperties'
- Properties.Alignment.Horz = taRightJustify
- Properties.Alignment.Vert = taVCenter
- Properties.DisplayFormat = '##,##0'
- OnCustomDrawCell = vDayColumnCustomDrawCell
- BestFitMaxWidth = 50
- HeaderAlignmentHorz = taCenter
- HeaderAlignmentVert = vaCenter
- Width = 50
- Position.BandIndex = 1
- Position.ColIndex = 27
- Position.RowIndex = 0
- end
- object vMonColumn29: TcxGridDBBandedColumn
- Caption = '29'
- DataBinding.FieldName = 'C29'
- PropertiesClassName = 'TcxSpinEditProperties'
- Properties.Alignment.Horz = taRightJustify
- Properties.Alignment.Vert = taVCenter
- Properties.DisplayFormat = '##,##0'
- OnCustomDrawCell = vDayColumnCustomDrawCell
- BestFitMaxWidth = 50
- HeaderAlignmentHorz = taCenter
- HeaderAlignmentVert = vaCenter
- Width = 50
- Position.BandIndex = 1
- Position.ColIndex = 28
- Position.RowIndex = 0
- end
- object vMonColumn30: TcxGridDBBandedColumn
- Caption = '30'
- DataBinding.FieldName = 'C30'
- PropertiesClassName = 'TcxSpinEditProperties'
- Properties.Alignment.Horz = taRightJustify
- Properties.Alignment.Vert = taVCenter
- Properties.DisplayFormat = '##,##0'
- OnCustomDrawCell = vDayColumnCustomDrawCell
- BestFitMaxWidth = 50
- HeaderAlignmentHorz = taCenter
- HeaderAlignmentVert = vaCenter
- Width = 50
- Position.BandIndex = 1
- Position.ColIndex = 29
- Position.RowIndex = 0
- end
- object vMonColumn31: TcxGridDBBandedColumn
- Caption = '31'
- DataBinding.FieldName = 'C31'
- PropertiesClassName = 'TcxSpinEditProperties'
- Properties.Alignment.Horz = taRightJustify
- Properties.Alignment.Vert = taVCenter
- Properties.DisplayFormat = '##,##0'
- OnCustomDrawCell = vDayColumnCustomDrawCell
- BestFitMaxWidth = 50
- HeaderAlignmentHorz = taCenter
- HeaderAlignmentVert = vaCenter
- Width = 50
- Position.BandIndex = 1
- Position.ColIndex = 30
- Position.RowIndex = 0
- end
- object TvMonColumn1: TcxGridDBBandedColumn
- Caption = #44160#51648#44592#47749#52845
- DataBinding.FieldName = 'VDS_DTCT_NM'
- HeaderAlignmentHorz = taCenter
- HeaderAlignmentVert = vaCenter
- Width = 74
- Position.BandIndex = 0
- Position.ColIndex = 5
- Position.RowIndex = 0
- end
- end
- object GlMon: TcxGridLevel
- GridView = TvMon
- end
- end
- end
- object TsListYear: TcxTabSheet
- Caption = #50900#48324' '#53685#44228' '
- ImageIndex = 2
- TabVisible = False
- object PnlYearGraph: TPanel
- Left = 0
- Top = 284
- Width = 1331
- Height = 320
- Align = alBottom
- BevelInner = bvLowered
- BevelOuter = bvNone
- TabOrder = 0
- end
- object SplYear: TcxSplitter
- Left = 0
- Top = 278
- Width = 1331
- Height = 6
- HotZoneClassName = 'TcxSimpleStyle'
- AlignSplitter = salBottom
- ResizeUpdate = True
- Control = PnlYearGraph
- Color = 3893744
- ParentColor = False
- end
- object CxYear: TcxGrid
- Left = 0
- Top = 0
- Width = 1331
- Height = 278
- Align = alClient
- TabOrder = 2
- LookAndFeel.Kind = lfUltraFlat
- LookAndFeel.NativeStyle = False
- object TvYear: TcxGridDBBandedTableView
- DataController.Summary.DefaultGroupSummaryItems = <>
- DataController.Summary.FooterSummaryItems = <>
- DataController.Summary.SummaryGroups = <>
- DataController.Summary.Options = [soNullIgnore]
- FilterRow.InfoText = #44160#49353#50612' '#51077#47141
- OptionsBehavior.CellHints = True
- OptionsCustomize.ColumnFiltering = False
- OptionsCustomize.ColumnHidingOnGrouping = False
- OptionsCustomize.ColumnMoving = False
- OptionsCustomize.ColumnSorting = False
- OptionsCustomize.BandMoving = False
- OptionsCustomize.ColumnVertSizing = False
- OptionsData.CancelOnExit = False
- OptionsData.Deleting = False
- OptionsData.DeletingConfirmation = False
- OptionsData.Editing = False
- OptionsData.Inserting = False
- OptionsView.NoDataToDisplayInfoText = '<'#54364#52636' '#54624' '#45936#51060#53552#44032' '#50630#49845#45768#45796'>'
- OptionsView.GroupByBox = False
- OptionsView.GroupFooters = gfVisibleWhenExpanded
- OptionsView.FixedBandSeparatorColor = 10849679
- OptionsView.FixedBandSeparatorWidth = 0
- Bands = <
- item
- Caption = #44396#48516
- FixedKind = fkLeft
- Width = 455
- end
- item
- Caption = #50900#48324' '#53685#44228'(km/h)'
- end>
- object vYearColumnNo: TcxGridDBBandedColumn
- Caption = #44036#49440#46020#47196#47749
- DataBinding.FieldName = 'ARTERYNAME'
- PropertiesClassName = 'TcxTextEditProperties'
- Properties.Alignment.Horz = taLeftJustify
- Properties.Alignment.Vert = taVCenter
- BestFitMaxWidth = 55
- HeaderAlignmentHorz = taCenter
- HeaderAlignmentVert = vaCenter
- Options.CellMerging = True
- Width = 181
- Position.BandIndex = 0
- Position.ColIndex = 0
- Position.RowIndex = 0
- end
- object vYearColumnTot: TcxGridDBBandedColumn
- Caption = #48169#54693
- DataBinding.FieldName = 'DIRECTIONNAME'
- PropertiesClassName = 'TcxTextEditProperties'
- Properties.Alignment.Horz = taCenter
- Properties.Alignment.Vert = taVCenter
- BestFitMaxWidth = 70
- HeaderAlignmentHorz = taCenter
- HeaderAlignmentVert = vaCenter
- Options.CellMerging = True
- Width = 76
- Position.BandIndex = 0
- Position.ColIndex = 1
- Position.RowIndex = 0
- end
- object vYearColumnNm: TcxGridDBBandedColumn
- Caption = #44600#51060'(m)'
- DataBinding.FieldName = 'ARTERYLENGHT'
- PropertiesClassName = 'TcxSpinEditProperties'
- Properties.Alignment.Horz = taRightJustify
- Properties.Alignment.Vert = taVCenter
- Properties.DisplayFormat = '#,##0'
- BestFitMaxWidth = 195
- HeaderAlignmentHorz = taCenter
- HeaderAlignmentVert = vaCenter
- Options.CellMerging = True
- Width = 67
- Position.BandIndex = 0
- Position.ColIndex = 2
- Position.RowIndex = 0
- end
- object vYearColumnAvg: TcxGridDBBandedColumn
- Caption = #54217#44512
- DataBinding.FieldName = 'ARTERYSPD'
- PropertiesClassName = 'TcxSpinEditProperties'
- Properties.Alignment.Horz = taRightJustify
- Properties.Alignment.Vert = taVCenter
- OnCustomDrawCell = vDayColumnCustomDrawCell
- BestFitMaxWidth = 80
- HeaderAlignmentHorz = taCenter
- HeaderAlignmentVert = vaCenter
- Width = 61
- Position.BandIndex = 0
- Position.ColIndex = 4
- Position.RowIndex = 0
- end
- object vYearColumn1: TcxGridDBBandedColumn
- Caption = '1'
- DataBinding.FieldName = 'C01'
- PropertiesClassName = 'TcxSpinEditProperties'
- Properties.Alignment.Horz = taRightJustify
- Properties.Alignment.Vert = taVCenter
- Properties.DisplayFormat = '##,##0'
- OnCustomDrawCell = vDayColumnCustomDrawCell
- BestFitMaxWidth = 80
- HeaderAlignmentHorz = taCenter
- HeaderAlignmentVert = vaCenter
- Width = 80
- Position.BandIndex = 1
- Position.ColIndex = 0
- Position.RowIndex = 0
- end
- object vYearColumn2: TcxGridDBBandedColumn
- Caption = '2'
- DataBinding.FieldName = 'C02'
- PropertiesClassName = 'TcxSpinEditProperties'
- Properties.Alignment.Horz = taRightJustify
- Properties.Alignment.Vert = taVCenter
- Properties.DisplayFormat = '##,##0'
- OnCustomDrawCell = vDayColumnCustomDrawCell
- BestFitMaxWidth = 80
- HeaderAlignmentHorz = taCenter
- HeaderAlignmentVert = vaCenter
- Width = 80
- Position.BandIndex = 1
- Position.ColIndex = 1
- Position.RowIndex = 0
- end
- object vYearColumn3: TcxGridDBBandedColumn
- Caption = '3'
- DataBinding.FieldName = 'C03'
- PropertiesClassName = 'TcxSpinEditProperties'
- Properties.Alignment.Horz = taRightJustify
- Properties.Alignment.Vert = taVCenter
- Properties.DisplayFormat = '##,##0'
- OnCustomDrawCell = vDayColumnCustomDrawCell
- BestFitMaxWidth = 80
- HeaderAlignmentHorz = taCenter
- HeaderAlignmentVert = vaCenter
- Width = 80
- Position.BandIndex = 1
- Position.ColIndex = 2
- Position.RowIndex = 0
- end
- object vYearColumn4: TcxGridDBBandedColumn
- Caption = '4'
- DataBinding.FieldName = 'C04'
- PropertiesClassName = 'TcxSpinEditProperties'
- Properties.Alignment.Horz = taRightJustify
- Properties.Alignment.Vert = taVCenter
- Properties.DisplayFormat = '##,##0'
- OnCustomDrawCell = vDayColumnCustomDrawCell
- BestFitMaxWidth = 80
- HeaderAlignmentHorz = taCenter
- HeaderAlignmentVert = vaCenter
- Width = 80
- Position.BandIndex = 1
- Position.ColIndex = 3
- Position.RowIndex = 0
- end
- object vYearColumn5: TcxGridDBBandedColumn
- Caption = '5'
- DataBinding.FieldName = 'C05'
- PropertiesClassName = 'TcxSpinEditProperties'
- Properties.Alignment.Horz = taRightJustify
- Properties.Alignment.Vert = taVCenter
- Properties.DisplayFormat = '##,##0'
- OnCustomDrawCell = vDayColumnCustomDrawCell
- BestFitMaxWidth = 80
- HeaderAlignmentHorz = taCenter
- HeaderAlignmentVert = vaCenter
- Width = 80
- Position.BandIndex = 1
- Position.ColIndex = 4
- Position.RowIndex = 0
- end
- object vYearColumn6: TcxGridDBBandedColumn
- Caption = '6'
- DataBinding.FieldName = 'C06'
- PropertiesClassName = 'TcxSpinEditProperties'
- Properties.Alignment.Horz = taRightJustify
- Properties.Alignment.Vert = taVCenter
- Properties.DisplayFormat = '##,##0'
- OnCustomDrawCell = vDayColumnCustomDrawCell
- BestFitMaxWidth = 80
- HeaderAlignmentHorz = taCenter
- HeaderAlignmentVert = vaCenter
- Width = 80
- Position.BandIndex = 1
- Position.ColIndex = 5
- Position.RowIndex = 0
- end
- object vYearColumn7: TcxGridDBBandedColumn
- Caption = '7'
- DataBinding.FieldName = 'C07'
- PropertiesClassName = 'TcxSpinEditProperties'
- Properties.Alignment.Horz = taRightJustify
- Properties.Alignment.Vert = taVCenter
- Properties.DisplayFormat = '##,##0'
- OnCustomDrawCell = vDayColumnCustomDrawCell
- BestFitMaxWidth = 80
- HeaderAlignmentHorz = taCenter
- HeaderAlignmentVert = vaCenter
- Width = 80
- Position.BandIndex = 1
- Position.ColIndex = 6
- Position.RowIndex = 0
- end
- object vYearColumn8: TcxGridDBBandedColumn
- Caption = '8'
- DataBinding.FieldName = 'C08'
- PropertiesClassName = 'TcxSpinEditProperties'
- Properties.Alignment.Horz = taRightJustify
- Properties.Alignment.Vert = taVCenter
- Properties.DisplayFormat = '##,##0'
- OnCustomDrawCell = vDayColumnCustomDrawCell
- BestFitMaxWidth = 80
- HeaderAlignmentHorz = taCenter
- HeaderAlignmentVert = vaCenter
- Width = 80
- Position.BandIndex = 1
- Position.ColIndex = 7
- Position.RowIndex = 0
- end
- object vYearColumn9: TcxGridDBBandedColumn
- Caption = '9'
- DataBinding.FieldName = 'C09'
- PropertiesClassName = 'TcxSpinEditProperties'
- Properties.Alignment.Horz = taRightJustify
- Properties.Alignment.Vert = taVCenter
- Properties.DisplayFormat = '##,##0'
- OnCustomDrawCell = vDayColumnCustomDrawCell
- BestFitMaxWidth = 80
- HeaderAlignmentHorz = taCenter
- HeaderAlignmentVert = vaCenter
- Width = 80
- Position.BandIndex = 1
- Position.ColIndex = 8
- Position.RowIndex = 0
- end
- object vYearColumn10: TcxGridDBBandedColumn
- Caption = '10'
- DataBinding.FieldName = 'C10'
- PropertiesClassName = 'TcxSpinEditProperties'
- Properties.Alignment.Horz = taRightJustify
- Properties.Alignment.Vert = taVCenter
- Properties.DisplayFormat = '##,##0'
- OnCustomDrawCell = vDayColumnCustomDrawCell
- BestFitMaxWidth = 80
- HeaderAlignmentHorz = taCenter
- HeaderAlignmentVert = vaCenter
- Width = 80
- Position.BandIndex = 1
- Position.ColIndex = 9
- Position.RowIndex = 0
- end
- object vYearColumn11: TcxGridDBBandedColumn
- Caption = '11'
- DataBinding.FieldName = 'C11'
- PropertiesClassName = 'TcxSpinEditProperties'
- Properties.Alignment.Horz = taRightJustify
- Properties.Alignment.Vert = taVCenter
- Properties.DisplayFormat = '##,##0'
- OnCustomDrawCell = vDayColumnCustomDrawCell
- BestFitMaxWidth = 80
- HeaderAlignmentHorz = taCenter
- HeaderAlignmentVert = vaCenter
- Width = 80
- Position.BandIndex = 1
- Position.ColIndex = 10
- Position.RowIndex = 0
- end
- object vYearColumn12: TcxGridDBBandedColumn
- Caption = '12'
- DataBinding.FieldName = 'C12'
- PropertiesClassName = 'TcxSpinEditProperties'
- Properties.Alignment.Horz = taRightJustify
- Properties.Alignment.Vert = taVCenter
- Properties.DisplayFormat = '##,##0'
- OnCustomDrawCell = vDayColumnCustomDrawCell
- BestFitMaxWidth = 80
- HeaderAlignmentHorz = taCenter
- HeaderAlignmentVert = vaCenter
- Width = 80
- Position.BandIndex = 1
- Position.ColIndex = 11
- Position.RowIndex = 0
- end
- object TvYearColumn1: TcxGridDBBandedColumn
- Caption = #49688#51665#50896
- DataBinding.FieldName = 'TRFTYPE'
- Visible = False
- HeaderAlignmentHorz = taCenter
- HeaderAlignmentVert = vaCenter
- VisibleForCustomization = False
- Width = 68
- Position.BandIndex = 0
- Position.ColIndex = 3
- Position.RowIndex = 0
- end
- end
- object GlYear: TcxGridLevel
- GridView = TvYear
- end
- end
- end
- end
- object BtnClose: TcxButton
- Left = 1261
- Top = 11
- Width = 80
- Height = 25
- Cursor = crHandPoint
- Hint = #45803#44592
- Anchors = [akTop, akRight]
- Caption = #45803#44592
- Colors.Default = 10737865
- LookAndFeel.NativeStyle = False
- TabOrder = 6
- Font.Charset = DEFAULT_CHARSET
- Font.Color = clWindowText
- Font.Height = -13
- Font.Name = #47569#51008' '#44256#46357
- Font.Style = [fsBold]
- ParentFont = False
- OnClick = BtnCloseClick
- end
- object CbLinkLevel: TComboBox
- Left = 542
- Top = 50
- Width = 45
- Height = 25
- Style = csDropDownList
- ImeName = #54620#44397#50612' '#51077#47141' '#49884#49828#53596' (IME 2000)'
- ItemIndex = 0
- TabOrder = 7
- Text = '1'
- Visible = False
- Items.Strings = (
- '1'
- '2')
- end
- object CbStatCfg: TComboBox
- Left = 637
- Top = 8
- Width = 124
- Height = 21
- Style = csDropDownList
- Font.Charset = DEFAULT_CHARSET
- Font.Color = clHighlight
- Font.Height = -13
- Font.Name = #44404#47548
- Font.Style = []
- ImeName = 'Microsoft Office IME 2007'
- ItemIndex = 0
- ParentFont = False
- TabOrder = 8
- Text = #53685#44228#51221#48372
- Visible = False
- Items.Strings = (
- #53685#44228#51221#48372)
- end
- object TmrRefresh: TTimer
- Enabled = False
- Interval = 500
- OnTimer = TmrRefreshTimer
- Left = 333
- Top = 285
- end
- object LimgTmp: TImageList
- DrawingStyle = dsTransparent
- ShareImages = True
- Left = 478
- Top = 12
- Bitmap = {
- 494C01010A000D00040010001000FFFFFFFFFF10FFFFFFFFFFFFFFFF424D3600
- 0000000000003600000028000000400000003000000001002000000000000030
- 0000000000000000000000000000000000000000000000000000000000000000
- 0000000000000000000000000000000000000000000000000000000000000000
- 0000000000000000000000000000000000000000000000800000008000000080
- 0000008000000080000000800000008000000080000000800000008000000080
- 0000008000000080000000800000000000000000000000000000000000000000
- 0000000000000000000000000000000000000000000000000000000000000000
- 0000000000000000000000000000000000000000000000000000000000000000
- 0000000000000000000000000000000000000000000000000000000000000000
- 0000000000000000000000000000000000000000000000000000000000000000
- 0000000000000000000000000000000000000000000000000000000000000000
- 0000000000000000000000000000000000000080000000800000008000000080
- 0000008000000080000000800000008000000080000000800000008000000080
- 0000008000000080000000800000008000000000000000000000000000000000
- 0000000000000000000000000000000000000000000000000000000000000000
- 0000000000000000000000000000000000000000000000000000000000000000
- 0000000000000000000000000000000000000000000000000000000000000000
- 0000000000000000000000000000000000000000000000000000000000000000
- 00008484840084848400848484008484840084848400848484000000000000FF
- FF00000000008484840000000000000000000080000000800000008000000080
- 0000000000000000000000000000000000000000000000000000000000000000
- 0000008000000080000000800000008000000000000000000000000000000000
- 0000000000000000000000000000000000000000000000000000000000000000
- 0000000000000000000000000000000000000000000000000000000000000000
- 0000000000000000000000000000000000000000000000000000000000000000
- 0000000000000000000000000000000000000000000000000000000000000000
- 0000000000000000000000000000000000000000000000000000FFFFFF00FFFF
- FF00000000000000000084848400000000000080000000800000008000000000
- 0000008000000080000000800000008000000080000000800000008000000080
- 0000000000000080000000800000008000000000000000000000000000000000
- 0000000000000000000000000000000000000000000000000000000000000000
- 0000000000000000000000000000000000000000000000000000000000000000
- 0000000000000000000000000000000000000000000000000000000000000000
- 000000000000000000000000000000000000000000000000000000000000FFFF
- FF00FFFFFF00FFFFFF0000FFFF00FFFFFF0000FFFF00FFFFFF0000FFFF00FFFF
- FF00FFFFFF00FFFFFF0000000000848484000080000000800000000000000080
- 0000008000000080000000800000008000000080000000800000008000000080
- 0000008000000000000000800000008000000000000000000000000000000000
- 0000000000000000000000000000000000000000000000000000000000000000
- 0000000000000000000000000000000000000000000000000000000000000000
- 0000000000000000000000000000000000000000000000000000000000000000
- 000000000000000000000000000000000000000000000000000000000000FFFF
- FF0000FFFF00FFFFFF00FFFFFF00FFFFFF008400000084000000FFFFFF00FFFF
- FF0000FFFF00FFFFFF0000000000848484000080000000800000008000000080
- 0000008000000080000000800000008000000080000000800000008000000080
- 0000008000000080000000800000008000000000000000000000000000000000
- 0000000000000000000000000000000000000000000000000000000000000000
- 0000000000000000000000000000000000000000000000000000000000000000
- 0000000000000000000000000000000000000000000000000000000000000000
- 000000000000000000000000000000000000000000000000000000000000FFFF
- FF00FFFFFF00FFFFFF0000FFFF00FFFFFF00FFFFFF00FFFFFF0000FFFF00FFFF
- FF00FFFFFF00FFFFFF0000000000848484000080000000800000008000000080
- 0000008000000080000000800000008000000080000000800000008000000080
- 0000008000000080000000800000008000000000000000000000000000000000
- 0000000000000000000000000000000000000000000000000000000000000000
- 0000000000000000000000000000000000000000000000000000000000000000
- 0000000000000000000000000000000000000000000000000000000000000000
- 000000000000000000000000000000000000000000000000000000000000FFFF
- FF0000FFFF00FFFFFF00FFFFFF00FFFFFF008400000084848400FFFFFF00FFFF
- FF0000FFFF00FFFFFF0000000000848484000080000000800000008000000080
- 0000008000000080000000800000008000000080000000800000008000000080
- 0000008000000080000000800000008000000000000000000000000000000000
- 0000000000000000000000000000000000000000000000000000000000000000
- 0000000000000000000000000000000000000000000000000000000000000000
- 0000000000000000000000000000000000000000000000000000000000000000
- 000000000000000000000000000000000000000000000000000000000000FFFF
- FF00FFFFFF00FFFFFF0000FFFF00FFFFFF00848484008400000000000000FFFF
- FF00FFFFFF00FFFFFF0000000000848484000080000000800000008000000080
- 0000008000000080000000800000008000000080000000800000008000000080
- 0000008000000080000000800000008000000000000000000000000000000000
- 0000000000000000000000000000000000000000000000000000000000000000
- 0000000000000000000000000000000000000000000000000000000000000000
- 0000000000000000000000000000000000000000000000000000000000000000
- 000000000000000000000000000000000000000000000000000000000000FFFF
- FF0000FFFF00FFFFFF00FFFFFF00FFFFFF0000FFFF0084848400840000008484
- 840000FFFF00FFFFFF0000000000848484000080000000800000008000000080
- 0000008000000080000000800000008000000080000000800000008000000080
- 0000008000000080000000800000008000000000000000000000000000000000
- 0000000000000000000000000000000000000000000000000000000000000000
- 0000000000000000000000000000000000000000000000000000000000000000
- 0000000000000000000000000000000000000000000000000000000000000000
- 000000000000000000000000000000000000000000000000000000000000FFFF
- FF00FFFFFF00FFFFFF008400000084848400FFFFFF00FFFFFF00840000008400
- 0000FFFFFF00FFFFFF0000000000848484000080000000800000008000000080
- 0000008000000080000000800000008000000080000000800000008000000080
- 0000008000000080000000800000008000000000000000000000000000000000
- 0000000000000000000000000000000000000000000000000000000000000000
- 0000000000000000000000000000000000000000000000000000000000000000
- 0000000000000000000000000000000000000000000000000000000000000000
- 000000000000000000000000000000000000000000000000000000000000FFFF
- FF0000FFFF00FFFFFF00840000008400000000FFFF0000000000840000008400
- 000000FFFF00FFFFFF0000000000848484000080000000800000008000000080
- 0000000000000000000000800000008000000080000000800000000000000000
- 0000008000000080000000800000008000000000000000000000000000000000
- 0000000000000000000000000000000000000000000000000000000000000000
- 0000000000000000000000000000000000000000000000000000000000000000
- 0000000000000000000000000000000000000000000000000000000000000000
- 000000000000000000000000000000000000000000000000000000000000FFFF
- FF00FFFFFF00FFFFFF0000000000840000008400000084000000840000000000
- 0000FFFFFF00FFFFFF0000000000848484000080000000800000008000000080
- 0000000000000000000000800000008000000080000000800000000000000000
- 0000008000000080000000800000008000000000000000000000000000000000
- 0000000000000000000000000000000000000000000000000000000000000000
- 0000000000000000000000000000000000000000000000000000000000000000
- 0000000000000000000000000000000000000000000000000000000000000000
- 000000000000000000000000000000000000000000000000000000000000FFFF
- FF0000FFFF00FFFFFF00FFFFFF00FFFFFF0000FFFF00FFFFFF00FFFFFF00FFFF
- FF0000FFFF00FFFFFF0000000000848484000080000000800000008000000080
- 0000008000000080000000800000008000000080000000800000008000000080
- 0000008000000080000000800000008000000000000000000000000000000000
- 0000000000000000000000000000000000000000000000000000000000000000
- 0000000000000000000000000000000000000000000000000000000000000000
- 0000000000000000000000000000000000000000000000000000000000000000
- 000000000000000000000000000000000000000000000000000000000000FFFF
- FF00FFFFFF00FFFFFF0000FFFF00FFFFFF00FFFFFF00FFFFFF0000FFFF00FFFF
- FF00FFFFFF00FFFFFF0000000000000000000080000000800000008000000080
- 0000008000000080000000800000008000000080000000800000008000000080
- 0000008000000080000000800000008000000000000000000000000000000000
- 0000000000000000000000000000000000000000000000000000000000000000
- 0000000000000000000000000000000000000000000000000000000000000000
- 0000000000000000000000000000000000000000000000000000000000000000
- 0000000000000000000000000000000000000000000000000000000000000000
- 0000000000000000000000000000000000000000000000000000000000000000
- 0000000000000000000000000000000000000000000000800000008000000080
- 0000008000000080000000800000008000000080000000800000008000000080
- 0000008000000080000000800000000000000000000000000000000000000000
- 0000000000000000000000000000000000000000000000000000000000000000
- 0000000000000000000000000000000000000000000000000000000000000000
- 0000000000000000000000000000000000000000000000000000000000000000
- 0000000000000000000000000000000000000000000000000000000000000000
- 0000000000000000000000000000000000000000000000000000000000000000
- 0000000000000000000000000000000000000000000000000000000000000000
- 0000000000000000000000000000000000000000000000000000000000000000
- 0000000000000000000000000000000000000000000000000000000000000000
- 0000000000000000000000000000000000000000000000000000000000000000
- 0000000000000000000000000000000000000000000000000000000000000000
- 0000000000007B7B7B0000000000000000000000000000000000000000007B7B
- 7B00000000000000000000000000000000000000000000000000000000000000
- 0000000000000000000000000000000080000000800000000000000000000000
- 0000000000000000000000000000000000000000000000000000000000000000
- 0000000000000000000000000000000000000000000000000000000000000000
- 0000000000000000000000000000000000000000000000000000000000000000
- 0000000000000000000000000000000000000000000000000000000000000000
- 0000000000000000000000000000000000000000000000000000000000000000
- 00000000000000007B000000FF000000FF000000FF000000FF000000FF000000
- 7B00000000000000000000000000000000000000000000000000000000000000
- 0000000000000000000000008000000080000000800000008000000000000000
- 0000000000000000000000000000000000000000000000840000000000000000
- 0000000000000000000000000000000000000084000000000000000000000000
- 0000000000000000000000000000000000000000000000000000000000000000
- 0000000000000000000000000000808080008080800000000000000000000000
- 0000000000000000000000000000000000000000000000000000000000000000
- 00000000FF000000FF000000FF000000FF000000FF000000FF000000FF000000
- FF000000FF000000000000000000000000000000000000000000000000000000
- 0000000000000000000000008000000080000000800000008000000000000000
- 0000000000000000000000000000000000000000000000840000008400000000
- 0000000000000000000000000000000000000084000000840000000000000000
- 0000000000000000000000000000000000000000000000000000000000000000
- 0000000000000000000000000000000000000000000000000000000000000000
- 0000000000000000000000000000000000000000000000000000000000000000
- FF000000FF000000FF000000FF000000FF000000FF000000FF000000FF000000
- FF000000FF000000FF0000000000000000000000000000000000000000000000
- 0000000000000000000000000000000080000000800000000000000000000000
- 000000000000000000000000000000000000000000000084000000FF00000084
- 0000000000000000000000000000000000000084000000FF0000008400000000
- 0000000000000000000000000000000000000000000000000000000000000000
- 0000000000000000000000000000000000000000000000000000000000000000
- 000000000000000000000000000000000000000000007B7B7B0000007B000000
- FF000000FF000000FF000000FF000000FF000000FF000000FF000000FF000000
- FF000000FF000000FF0000007B007B7B7B000000000000000000000000000000
- 0000000000000000000000000000000000000000000000000000000000000000
- 000000000000000000000000000000000000000000000084000000FF000000FF
- 0000008400000000000000000000000000000084000000FF000000FF00000084
- 0000000000000000000000000000000000000000000000000000000000000000
- 00000000FF000000FF000000FF000000FF000000FF000000FF000000FF000000
- FF000000000000000000000000000000000000000000000000000000FF000000
- FF000000FF00FFFFFF00FFFFFF000000FF000000FF000000FF00FFFFFF00FFFF
- FF000000FF000000FF000000FF00000000000000000000000000000000000000
- 0000000000000000000000000000000080000000800000000000000000000000
- 000000000000000000000000000000000000000000000084000000FF000000FF
- 000000FF00000084000000000000000000000084000000FF000000FF000000FF
- 0000008400000000000000000000000000000000000000000000000000000000
- 0000000000000000FF00FFFFFF000000FF000000FF000000FF000000FF000000
- 00000000000000000000000000000000000000000000000000000000FF000000
- FF000000FF000000FF00FFFFFF00FFFFFF000000FF00FFFFFF00FFFFFF000000
- FF000000FF000000FF000000FF00000000000000000000000000000000000000
- 0000000000000000000080808000000080000000800080808000000000000000
- 000000000000000000000000000000000000000000000084000000FF000000FF
- 000000FF000000FF000000840000000000000084000000FF000000FF000000FF
- 000000FF0000008400000000000000000000000000000000FF000000FF000000
- 000000000000000000000000FF00FFFFFF000000FF000000FF00000000000000
- 0000000000000000FF000000FF000000000000000000000000000000FF000000
- FF000000FF000000FF000000FF00FFFFFF00FFFFFF00FFFFFF000000FF000000
- FF000000FF000000FF000000FF00000000000000000000000000000000000000
- 0000000000000000000000008000000080000000800000008000000000000000
- 000000000000000000000000000000000000000000000084000000FF000000FF
- 000000FF000000FF000000FF0000008400000084000000FF000000FF000000FF
- 000000FF000000FF000000840000000000000000000000000000000000000000
- 000000000000000000000000FF000000FF000000FF000000FF00000000000000
- 00000000000000000000000000000000000000000000000000000000FF000000
- FF000000FF000000FF000000FF00FFFFFF00FFFFFF00FFFFFF000000FF000000
- FF000000FF000000FF000000FF00000000000000000000000000000000000000
- 0000000000000000000000008000000080000000800000008000000000000000
- 000000000000000000000000000000000000000000000084000000FF000000FF
- 000000FF000000FF000000840000000000000084000000FF000000FF000000FF
- 000000FF00000084000000000000000000000000000000000000000000000000
- 000000000000000000000000FF00FFFFFF000000FF000000FF00000000000000
- 00000000000000000000000000000000000000000000000000000000FF000000
- FF000000FF000000FF00FFFFFF00FFFFFF000000FF00FFFFFF00FFFFFF000000
- FF000000FF000000FF000000FF00000000000000000000000000000000000000
- 0000000000000000000000008000000080000000800000008000000000000000
- 000000000000000000000000000000000000000000000084000000FF000000FF
- 000000FF00000084000000000000000000000084000000FF000000FF000000FF
- 0000008400000000000000000000000000000000000000000000000000000000
- 000000000000000000000000FF000000FF000000FF000000FF00000000000000
- 000000000000000000000000000000000000000000007B7B7B0000007B000000
- FF000000FF00FFFFFF00FFFFFF000000FF000000FF000000FF00FFFFFF00FFFF
- FF000000FF000000FF0000007B007B7B7B000000000000000000000000000000
- 0000000000000000000000008000000080000000800000008000000000000000
- 000000000000000000000000000000000000000000000084000000FF000000FF
- 0000008400000000000000000000000000000084000000FF000000FF00000084
- 000000000000000000000000000000000000000000000000FF000000FF000000
- 000000000000000000000000FF00FFFFFF000000FF000000FF00000000000000
- 0000000000000000FF000000FF00000000000000000000000000000000000000
- FF000000FF000000FF000000FF000000FF000000FF000000FF000000FF000000
- FF000000FF000000FF0000000000000000000000000000000000000000000000
- 0000000000000000000000008000000080000000800000008000000000000000
- 000000000000000000000000000000000000000000000084000000FF00000084
- 0000000000000000000000000000000000000084000000FF0000008400000000
- 0000000000000000000000000000000000000000000000000000000000000000
- 00000000000000000000808080000000FF000000FF0080808000000000000000
- 0000000000000000000000000000000000000000000000000000000000000000
- 00000000FF000000FF000000FF000000FF000000FF000000FF000000FF000000
- FF000000FF000000000000000000000000000000000000000000000000000000
- 0000000000000000000000008000000080000000800000008000000000000000
- 0000000000000000000000000000000000000000000000840000008400000000
- 0000000000000000000000000000000000000084000000840000000000000000
- 0000000000000000000000000000000000000000000000000000000000000000
- 00000000FF000000000000000000808080008080800000000000000000000000
- FF00000000000000000000000000000000000000000000000000000000000000
- 00000000000000007B000000FF000000FF000000FF000000FF000000FF000000
- 7B00000000000000000000000000000000000000000000000000000000000000
- 0000000000000000000000000000000080000000800000000000000000000000
- 0000000000000000000000000000000000000000000000840000000000000000
- 0000000000000000000000000000000000000084000000000000000000000000
- 0000000000000000000000000000000000000000000000000000000000000000
- FF00000000000000000000000000000000000000000000000000000000000000
- 00000000FF000000000000000000000000000000000000000000000000000000
- 0000000000007B7B7B0000000000000000000000000000000000000000007B7B
- 7B00000000000000000000000000000000000000000000000000000000000000
- 0000000000000000000000000000000000000000000000000000000000000000
- 0000000000000000000000000000000000000000000000000000000000000000
- 0000000000000000000000000000000000000000000000000000000000000000
- 0000000000000000000000000000000000000000000000000000000000000000
- 0000000000000000000000000000000000000000000000000000000000000000
- 0000000000000000000000000000000000000000000000000000000000000000
- 0000000000000000000000000000000000000000000000000000000000000000
- 0000000000000000000000000000000000000000000000000000000000000000
- 0000000000000000000000000000000000000000000000000000000000000000
- 0000000000000000000000000000000000000000000000000000000000000000
- 0000000000000000000000000000000000000000000000000000000000000000
- 0000000000000000000000000000000000000000000000000000000000000000
- 0000000000000000000000000000000000000000000000000000000000000000
- 0000000000000000000000000000000000000000000000000000000000000000
- 0000000000000000000000000000694731006947310000000000000000000000
- 0000000000000000000000000000000000000000000000000000000000000000
- 0000000000000000000000000000000000000000000000000000000000000000
- 0000000000000000000000000000000000000000000000000000000000000000
- 0000000000000000000000000000000000000000000000000000000000000000
- 0000000000000000000000000000000000000000000000000000000000000000
- 0000000000000000000000000000000000000000000000000000000000000000
- 0000000000000000000000000000000000000000000000000000000000000000
- 0000000000000000000069473100F2ECE900F2ECE90069473100000000000000
- 0000000000000000000000000000000000000000000000000000000000000000
- 00000000000000000000878787004F4F4F003A3A3A0058585800878787000000
- 0000000000000000000000000000000000000000000000000000000000000000
- 000000000000000000008686860055555500292929004D4D4D00808080000000
- 0000000000000000000000000000000000000000000000000000000000000000
- 0000000000000000000080808000424242003333330055555500808080000000
- 0000000000000000000000000000000000000000000000000000000000000000
- 00000000000069473100F2ECE9009830000098300000F2ECE900694731000000
- 0000000000000000000000000000000000000000000000000000000000000000
- 0000989898005555550081818100A9A9A900C5C5C500A1A1A1007C7C7C005A5A
- 5A009B9B9B000000000000000000000000000000000000000000000000000000
- 00009696960033336600333399006666CC009999CC006666CC00336699003333
- 6600868686000000000000000000000000000000000000000000000000000000
- 000096969600336633003399660066CC990066CC990066999900339966003366
- 3300969696000000000000000000000000000000000000000000000000000000
- 000069473100F2ECE90098300000F6865000F57C430098300000F2ECE9006947
- 3100000000000000000000000000000000000000000000000000000000009D9D
- 9D006A6A6A00AFAFAF00D6D6D600E2E2E200E2E2E200E6E6E600DBDBDB00B1B1
- B1006A6A6A009999990000000000000000000000000000000000000000009696
- 960033336600807CFF009999FF009999FF0099CCFF009999FF009999FF006666
- CC00333399009696960000000000000000000000000000000000000000009999
- 99003366660066CC990066FFCC0099FFCC0099FFCC0099FFCC0099FFCC0066CC
- 9900339966009696960000000000000000000000000000000000000000006947
- 3100F2ECE90098300000C4937500C4937500C4937500C493750098300000F2EC
- E900694731000000000000000000000000000000000000000000000000005757
- 570096969600D8D8D800DFDFDF00E1E1E100E3E3E300DBDBDB00E1E1E100D8D8
- D800A3A3A3005F5F5F0000000000000000000000000000000000000000003333
- 66006666CC00807CFF009999FF009999FF0099CCFF0099CCFF0099CCFF00807C
- FF006666CC003333660000000000000000000000000000000000000000003366
- 330033CC660066FFCC0099FFCC0099FFCC0099FFCC0066FFCC0066FFCC0066FF
- CC0066CC9900336633000000000000000000000000000000000069473100F2EE
- EA0098300000F79B6C00FFFFFF00FFFFFF00FFFFFF00FFFFFF00AA6644009830
- 0000F2ECE9006947310000000000000000000000000000000000959595007474
- 7400AEAEAE00C9C9C900D4D4D400D7D7D700E4E4E400E0E0E000DCDCDC00C8C8
- C800B9B9B9007878780090909000000000000000000000000000868686003333
- 99006666FF00807CFF009999FF009999FF009999FF009999FF009999FF00807C
- FF00807CFF003333990086868600000000000000000000000000669999003399
- 660066CC990066FF990066FF990099FFCC0099FFCC0099FFCC0066FFCC0066FF
- 990066CC99003399660086868600000000000000000069473100F2ECE9009830
- 0000F9B18700F9AC8100F79B6C00FFFFFF00FFFFFF00AA664400F6865000F57C
- 430098300000F2ECE90069473100000000000000000000000000606060008888
- 8800B0B0B000AFAFAF00CECECE00CECECE00D5D5D500CDCDCD00CECECE00B0B0
- B000AFAFAF007D7D7D0064646400000000000000000000000000336666003333
- CC006666FF00807CFF00807CFF009999FF009999FF009999FF00807CFF006666
- FF006666FF003333CC0033339900000000000000000000000000555555006699
- 660066CC990033CC990066FF990066FF990099FFCC0066FF990066FF990033CC
- 990033CC990033996600555555000000000098300000F9F6F400C8600000FBC3
- 9F00FABA9300F9B18700F9AC8100FFFFFF00FFFFFF00AA664400F68D5900F686
- 5000F57C430098300000F2ECE900694731000000000000000000373737008787
- 870096969600A7A7A700B7B7B700BDBDBD00C1C1C100C2C2C200B7B7B700AAAA
- AA00939393008A8A8A003A3A3A00000000000000000000000000000066003333
- CC005050FF006666FF006666FF00807CFF00807CFF00807CFF006666FF006666
- FF006666CC003333CC0000008000000000000000000000000000222222003399
- 660033CC660033CC660066CC990066CC990066CC990066CC990066CC990033CC
- 660033CC660033996600222222000000000098300000FEFEFE00C8600000FBC3
- 9F00FBC39F00FABA9300F9B18700FFFFFF00FFFFFF00AA664400F7926000F68D
- 5900F686500098300000F2ECE900694731000000000000000000424242007373
- 73008787870090909000A5A5A500AAAAAA00ACACAC00ABABAB00A5A5A5008F8F
- 8F0086868600818181004B4B4B00000000000000000000000000333366003333
- 99003333CC003366CC006666CC006666FF006666FF006666FF005050FF005050
- FF003333CC003333CC0033336600000000000000000000000000336633003399
- 66003399660033CC660033CC990033CC990066CC990066CC990033CC990033CC
- 6600339966003399660033663300000000000000000098300000FDFAF800C860
- 0000FBC39F00FBC39F00FFFFFF00FFFFFF00FFFFFF00AA664400F79B6C00F792
- 600098300000F2ECE90069473100000000000000000000000000797979006363
- 630074747400787878009191910096969600909090008B8B8B00949494008383
- 8300737373005A5A5A007A7A7A00000000000000000000000000666699003333
- 9900333399003333CC003333CC003366CC003366CC003366CC003333CC003333
- CC00003399003333990066669900000000000000000000000000777777003366
- 3300339966000099660033CC660033CC660033CC66003399660033CC66003399
- 660033996600336633007777770000000000000000000000000098300000FEFE
- FE00C8600000FBC39F00FBC39F00C4937500C4937500F9AC8100F79B6C009830
- 0000F2ECE9006947310000000000000000000000000000000000000000005050
- 500068686800767676007E7E7E00898989009696960095959500818181007979
- 79006D6D6D004949490000000000000000000000000000000000000000003333
- 660033339900333399003333CC003366CC003366CC003366CC003333CC003333
- 9900333399003333660000000000000000000000000000000000000000003366
- 33003399330033996600339966003399660033CC660033CC6600339966003399
- 6600339966003366330000000000000000000000000000000000000000009830
- 0000FFFFFF00C8600000FBC39F00FFFFFF00FFFFFF00AA66440098300000F2EC
- E900694731000000000000000000000000000000000000000000000000008F8F
- 8F005F5F5F00A5A5A500B4B4B400B8B8B800BDBDBD00B7B7B700B4B4B4009F9F
- 9F005B5B5B009494940000000000000000000000000000000000000000009696
- 9600666699006666CC009999CC009999CC009999CC009999CC009999CC006666
- CC00666699009696960000000000000000000000000000000000000000008686
- 86004D4D4D0099CC990099CC990099CC990099CC990099CC990099CC99006699
- 99004D4D4D009696960000000000000000000000000000000000000000000000
- 000098300000FEFEFE00C8600000FFFFFF00FFFFFF0098300000F2ECE9006947
- 3100000000000000000000000000000000000000000000000000000000000000
- 0000989898008A8A8A00CDCDCD00EEEEEE00EBEBEB00E5E5E500D6D6D6008E8E
- 8E00919191000000000000000000000000000000000000000000000000000000
- 00009696960090A9AD00C6D6EF00EAEAEA00DDDDDD00DDDDDD00CBCBCB008686
- 8600A4A0A0000000000000000000000000000000000000000000000000000000
- 00009696960086868600C0DCC000EAEAEA00EAEAEA00E3E3E300CCCCCC008686
- 8600969696000000000000000000000000000000000000000000000000000000
- 00000000000098300000FDFAF800C8600000C8600000F2EDEA00694731000000
- 0000000000000000000000000000000000000000000000000000000000000000
- 00000000000000000000B5B5B500C3C3C300CDCDCD00C6C6C600B3B3B3000000
- 0000000000000000000000000000000000000000000000000000000000000000
- 00000000000000000000B2B2B200CBCBCB00CCCCCC00CBCBCB00B2B2B2000000
- 0000000000000000000000000000000000000000000000000000000000000000
- 00000000000000000000B2B2B200C0C0C000CCCCCC00CBCBCB00B2B2B2000000
- 0000000000000000000000000000000000000000000000000000000000000000
- 0000000000000000000098300000FEFEFE00F9F6F40069473100000000000000
- 0000000000000000000000000000000000000000000000000000000000000000
- 0000000000000000000000000000000000000000000000000000000000000000
- 0000000000000000000000000000000000000000000000000000000000000000
- 0000000000000000000000000000000000000000000000000000000000000000
- 0000000000000000000000000000000000000000000000000000000000000000
- 0000000000000000000000000000000000000000000000000000000000000000
- 0000000000000000000000000000000000000000000000000000000000000000
- 0000000000000000000000000000983000009830000000000000000000000000
- 000000000000000000000000000000000000424D3E000000000000003E000000
- 2800000040000000300000000100010000000000800100000000000000000000
- 000000000000000000000000FFFFFF00FFF7800100000000FFE7000000000000
- F0030FF000000000E001100800000000C000200400000000C000000000000000
- C000000000000000C000000000000000C020000000000000C000000000000000
- C000000000000000C0400C3000000000C2100C3000000000C000000000000000
- C001000000000000E003800100000000FFFFFFFFFFFFF80FFE7FFFFFFFFFF007
- FC3FBF7FFE7FE003FC3F9F3FFE7FC001FE7F8F1FE0078000FFFF870FE0078000
- FE7F8307F00F8000FC3F810398198000FC3F8001F81F8000FC3F8103F81F8000
- FC3F8307F81F8000FC3F870F9819C001FC3F8F1FFC3FE003FC3F9F3FF42FF007
- FE7FBF7FEE77F80FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE7FFFFFFFFFFFFFFC3F
- FC1FFC1FFC1FF81FF007F007F007F00FE003E003E003E007E003E003E003C003
- C001C001C0018001C001C001C0010000C001C001C0010000C001C001C0018001
- C001C001C001C003E003E003E003E007E003E003E003F00FF007F007F007F81F
- FC1FFC1FFC1FFC3FFFFFFFFFFFFFFE7F00000000000000000000000000000000
- 000000000000}
- end
- object ADOD: TADOQuery
- Parameters = <>
- Left = 72
- Top = 208
- end
- object DSD: TDataSource
- DataSet = ADOD
- Left = 112
- Top = 208
- end
- object ADOM: TADOQuery
- Parameters = <>
- Left = 72
- Top = 260
- end
- object DSM: TDataSource
- DataSet = ADOM
- Left = 112
- Top = 260
- end
- object ADOY: TADOQuery
- Parameters = <>
- Left = 72
- Top = 320
- end
- object DSY: TDataSource
- DataSet = ADOY
- Left = 124
- Top = 320
- end
- end
|