123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860 |
- object FRAMEIncidentEnd: TFRAMEIncidentEnd
- Left = 0
- Top = 0
- Width = 1377
- Height = 880
- Font.Charset = DEFAULT_CHARSET
- Font.Color = clWindowText
- Font.Height = -13
- Font.Name = #47569#51008' '#44256#46357
- Font.Style = []
- ParentFont = False
- TabOrder = 0
- object cxGroupBox2: TcxGroupBox
- Left = 0
- Top = 392
- Align = alBottom
- Caption = #9654' '#49888#44508' '#46028#48156' '#51221#48372' '#51077#47141
- PanelStyle.Active = True
- Style.TextStyle = [fsBold]
- TabOrder = 0
- Height = 488
- Width = 1377
- object PnlTitle: TPanel
- Left = 2
- Top = 2
- Width = 1373
- Height = 24
- Align = alTop
- Alignment = taLeftJustify
- Caption = ' '#9654' '#46028#48156' '#51333#47308' '#51221#48372' '#51077#47141
- Color = 33023
- ParentBackground = False
- TabOrder = 0
- end
- object cxGroupBox3: TcxGroupBox
- Left = 2
- Top = 26
- Align = alTop
- Caption = #46028#48156' '#44592#48376#51221#48372
- Enabled = False
- TabOrder = 1
- Height = 68
- Width = 1373
- object ImgDesc01: TImage
- Left = 15
- Top = 35
- Width = 9
- Height = 9
- Transparent = True
- end
- object ImgDesc02: TImage
- Left = 265
- Top = 35
- Width = 9
- Height = 9
- Transparent = True
- end
- object ImgDesc03: TImage
- Left = 537
- Top = 35
- Width = 9
- Height = 9
- Transparent = True
- end
- object cxLabel1: TcxLabel
- Left = 27
- Top = 29
- AutoSize = False
- Caption = #46028#48156' ID'
- Properties.Alignment.Horz = taRightJustify
- Properties.Alignment.Vert = taVCenter
- Transparent = True
- Height = 21
- Width = 85
- AnchorX = 112
- AnchorY = 40
- end
- object EdINCD_OCRR_ID: TcxTextEdit
- Left = 115
- Top = 28
- Properties.Alignment.Horz = taCenter
- Properties.Alignment.Vert = taVCenter
- Properties.ReadOnly = True
- TabOrder = 0
- Width = 130
- end
- object cxLabel2: TcxLabel
- Left = 277
- Top = 29
- Caption = #46321#47197#51068#49884
- Transparent = True
- end
- object EdRGST_DT: TcxTextEdit
- Left = 337
- Top = 29
- Properties.Alignment.Horz = taCenter
- Properties.Alignment.Vert = taVCenter
- Properties.ReadOnly = True
- TabOrder = 2
- Width = 185
- end
- object cxLabel3: TcxLabel
- Left = 549
- Top = 29
- Caption = #46028#48156#44396#48516
- Transparent = True
- end
- object CbINCD_ORGN_CD: TcxComboBox
- Left = 610
- Top = 29
- Cursor = crHandPoint
- Properties.Alignment.Vert = taVCenter
- Properties.DropDownListStyle = lsFixedList
- Properties.DropDownSizeable = True
- TabOrder = 4
- Width = 195
- end
- object cxLabel46: TcxLabel
- Left = 243
- Top = 29
- Caption = #9733
- Style.TextColor = clOlive
- Transparent = True
- end
- object EdRegDt: TcxTextEdit
- Left = 843
- Top = 29
- Properties.Alignment.Horz = taCenter
- Properties.Alignment.Vert = taVCenter
- Properties.ReadOnly = True
- TabOrder = 7
- Visible = False
- Width = 185
- end
- object EdLinkId: TcxTextEdit
- Left = 1049
- Top = 25
- Properties.Alignment.Horz = taCenter
- Properties.Alignment.Vert = taVCenter
- Properties.ReadOnly = True
- TabOrder = 8
- Visible = False
- Width = 185
- end
- end
- object Panel1: TPanel
- Left = 2
- Top = 447
- Width = 1373
- Height = 39
- Align = alBottom
- BevelOuter = bvNone
- TabOrder = 2
- DesignSize = (
- 1373
- 39)
- object BtnSave: TcxButton
- Left = 1269
- Top = 8
- Width = 95
- Height = 25
- Cursor = crHandPoint
- Hint = #46028#48156' '#51333#47308#51221#48372#47484' '#46321#47197#54633#45768#45796'.'
- Anchors = [akRight, akBottom]
- Caption = #46028#48156#51333#47308
- LookAndFeel.NativeStyle = False
- TabOrder = 0
- Font.Charset = DEFAULT_CHARSET
- Font.Color = clWindowText
- Font.Height = -13
- Font.Name = #47569#51008' '#44256#46357
- Font.Style = [fsBold]
- ParentFont = False
- OnClick = BtnSaveClick
- end
- object cxLabel10: TcxLabel
- Left = 12
- Top = 9
- Caption = #9733
- Style.TextColor = clRed
- Transparent = True
- end
- object cxLabel11: TcxLabel
- Left = 30
- Top = 10
- Caption = #54364#49884#54637#47785#51008' '#54596#49688' '#51077#47141' '#54637#47785#51077#45768#45796'.'
- StyleDisabled.BorderColor = cl3DLight
- Transparent = True
- end
- object BtnInfoCancel: TcxButton
- Tag = 5
- Left = 1169
- Top = 8
- Width = 95
- Height = 25
- Cursor = crHandPoint
- Hint = #54868#47732#51012' '#52488#44592#54868' '#54633#45768#45796'.'
- Anchors = [akRight, akBottom]
- Caption = #52488#44592#54868
- Colors.Default = 10737865
- Glyph.Data = {
- B6030000424DB603000000000000360000002800000012000000100000000100
- 1800000000008003000012170000121700000000000000000000C0C0C0C0C0C0
- C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0
- C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C00000C0C0C0C0C0C0C0C0C0C0C0C0C0C0
- C0C0C0C09F9F9F7878787878787878787878789F9F9FC0C0C0B9B9B978787878
- 7878A5A5A5C0C0C00000C0C0C0C0C0C0C0C0C0C0C0C0B9B9B978787841414100
- 0000000000000000000000414141ACACAC737373000000363636A5A5A5C0C0C0
- 0000C0C0C0C0C0C0C0C0C0A5A5A54A47477B6359B28F81F6C6B2F6C6B2F6C6B2
- D0A899846B624E474580685EB39081454545B1B1B1C0C0C00000C0C0C0C0C0C0
- 989898202020DFB3A1F6C6B2F6C6B2F6C6B22C24202C2320F6C6B2F6C6B2F6C6
- B2F6C6B2B39081454545B1B1B1C0C0C00000C0C0C0C0C0C0575757B28F81F6C6
- B2F6C6B2866C610000009D9D9D9D9D9D000000866B61F6C6B2F6C6B2B3908145
- 4545B1B1B1C0C0C00000C0C0C0C0C0C0575757B28F81F6C6B2B29081575757C0
- C0C0C0C0C09D9D9D594740F6C6B2F6C6B2F6C6B2B39081454545B1B1B1C0C0C0
- 0000C0C0C0C0C0C0C0C0C07A7A7A625F5F73625A8B8B8BC0C0C0C0C0C064605E
- 7B63597B63597B63597B63595948404E4E4EB8B8B8C0C0C00000C0C0C0C0C0C0
- C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0
- C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C00000C0C0C0C0C0C0C0C0C08B8B8B7878
- 78787878787878787878787878BFBFBFC0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0
- C0C0C0C0C0C0C0C00000C0C0C0C0C0C057575700000000000000000000000000
- 0000626262BFBFBFC0C0C0C0C0C03434346D6D6D8B8B8BC0C0C0C0C0C0C0C0C0
- 0000C0C0C0C0C0C0575757B28F81F6C6B2F6C6B2F6C6B2A78779474341A2A2A2
- B2B2B2464646B28F81866C61695850575757A5A5A5C0C0C00000C0C0C0C0C0C0
- 575757B28F81F6C6B2F6C6B2866C61000000626262626262000000866B61F6C6
- B2F6C6B2B39081575757C0C0C0C0C0C00000C0C0C0C0C0C0575757B28F81F6C6
- B2F6C6B2F6C6B2F6C6B22C24202C2320F6C6B2F6C6B2F6C6B2DFB4A1343434C0
- C0C0C0C0C0C0C0C00000C0C0C0C0C0C0575757B28F81E0B4A2453833F6C6B2F6
- C6B2F6C6B2F6C6B2F6C6B2F6C6B2F6C6B2272321C0C0C0C0C0C0C0C0C0C0C0C0
- 0000C0C0C0C0C0C05757575947406A6867A5A5A53D3C3D5545407B63597B6359
- 7B63596B615C606060B7B7B7C0C0C0C0C0C0C0C0C0C0C0C00000}
- LookAndFeel.NativeStyle = False
- TabOrder = 3
- Font.Charset = DEFAULT_CHARSET
- Font.Color = clBlack
- Font.Height = -13
- Font.Name = #47569#51008' '#44256#46357
- Font.Style = [fsBold]
- ParentFont = False
- OnClick = BtnInfoCancelClick
- end
- object BtnMoveGis: TcxButton
- Left = 950
- Top = 8
- Width = 95
- Height = 25
- Cursor = crHandPoint
- Anchors = [akRight, akBottom]
- Caption = #50948#52824#48372#44592
- Colors.Default = 10737865
- Glyph.Data = {
- 36040000424D3604000000000000360000002800000010000000100000000100
- 2000000000000004000000000000000000000000000000000000FF00FF00FF00
- FF00FF00FF00FF00FF00D007CB38AE308094AE5246CEB6652EE6D3A19EE8CB8C
- A8D4B5448CA0CA0CC444CA06CA3BF000F00FFF00FF00FF00FF00FF00FF00FF00
- FF00F800F807AE29878BBB6F0DF9C17800FFC68000FFDAA84CFFFAEBE2FFFFED
- E1FFDDC1A5FF826237FF666264FC663268CAC704C73CFF00FF00FF00FF00F800
- F807AF4175A9BD7100FFCC8A05FFD99D1AFFE1AB2BFFF9E0B1FFECE0D3FFAFA5
- 99FF807E7EFFB2B5B9FFFDFEFEFFEDEDEDFF7F787FF88F118F81FF00FF00B834
- AC81C07702FFCF8D06FFE6BB5EFFF9E7C5FFFFF5D8FFC7C1B6FF8B8988FF9091
- 92FFCDCECFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF807681F5DD05DC27D09A
- 68F5CA8602FFDFA725FFFBEBCDFFFFF9EEFFFFFDEEFFBEBBB1FFA6A4A2FF7B7B
- 7BFFE9E9E9FFFFFFFFFFFFFFFFFFFFFFFFFFF5F5F5FF8A418AB6B933AC7FC37C
- 09FFD59812FFEBB832FFFBE9BAFFFEF8F0FFFFF7ECFFFFFFFCFFACA8A1FFACAD
- AEFFD1D1D2FFFDFDFDFFFFFFFFFFFFFFFFFFB7B4B1FFA1378B9FB95D88B9C680
- 01FFDEA41FFFF2C441FFF8D477FFFDEDD0FFFFFCF1FFD9D3C5FFA6A5A3FF9091
- 94FF939497FFA6A7ABFFB8B9BCFFC6C8C9FF9D8C71FFB66252D4BB6B67D3C884
- 00FFE2AA25FFF4C94DFFF7D277FFFBE5B8FFFFFCEEFFB9B5ADFF9FA0A3FFBCB7
- ABFFCEC7B9FFABA494FFA09B93FFBEB6AEFFEBD4BBFFBB6C32E8B55E55D1C984
- 03FFE2AA25FFF4C84BFFF7D47BFFF9DEA4FFFDF2DDFFFAF8F6FFEBEAE9FFFFFD
- F1FFFFF9E4FFFFF0C7FFFFF7E1FFFFF1E0FFF5E2D1FFC58567E7B0486FB2C580
- 00FFDCA21CFFF1C33FFFF7D16FFFF8DA96FFFBE8C1FFFEF2DAFFFFF8E8FFFFFA
- F3FFFEF7EBFFFDF4E2FFFDF2DFFFF8E9D6FFF3DFD0FFCC8EB1D1B825A873BD71
- 00FFD49818FFEAB937FFF5CB50FFF7D275FFF8DA94FFFAE4B5FFFDF4E2FFFFF7
- E9FFFEF6E9FFFDF4E0FFFBEEDBFFF6E5D5FFF0D9CBFFBA48AA95E502E51CCA91
- 75EBE6C492FFEBC779FFEEC149FFFBE1A0FFF8DA90FFF7D173FFF9DC95FFFADE
- 99FFFCF0D5FFFCF0DDFFF8E8D6FFF4E1D3FFE7CABEFAD509D434FF00FF00BE27
- BA6BF1DCD6FFEBCFAAFFE3B655FFF0D18BFFFDEED6FFF7D577FFF4C94EFFF2C8
- 53FFF8E3B8FFF8E9DCFFF5E4D7FFEACEB7FFB73CA68BFF00FF00FF00FF00FF00
- FF00BC47B68EE7C6A5FFE1B978FFE6BE73FFE8C37AFFE3B03BFFDFA517FFDDA7
- 2AFFF1DABCFFF6E6DDFFECD2C0FFBB59A0A9F700F708FF00FF00FF00FF00FF00
- FF00FF00FF00BD29B96DDBB0C1E6EACEB5FFDAAA5CFFCE8E16FFCC8B10FFD6A1
- 46FFE6C6A5FFCE997AF0B630A182FA00FA05FF00FF00FF00FF00FF00FF00FF00
- FF00FF00FF00FF00FF00E502E41DB926AC72B95A95B0BD6E77D0B35C4CD3B759
- 8AB6B830A87EDB05DA29FF00FF00FF00FF00FF00FF00FF00FF00}
- LookAndFeel.NativeStyle = False
- TabOrder = 4
- Font.Charset = DEFAULT_CHARSET
- Font.Color = clBlack
- Font.Height = -13
- Font.Name = #47569#51008' '#44256#46357
- Font.Style = [fsBold]
- ParentFont = False
- OnClick = BtnMoveGisClick
- end
- end
- object cxGroupBox4: TcxGroupBox
- Left = 2
- Top = 94
- Align = alTop
- Caption = #46028#48156' '#49345#54889#51221#48372
- Enabled = False
- TabOrder = 3
- Height = 128
- Width = 1373
- object ImgDesc04: TImage
- Left = 15
- Top = 35
- Width = 9
- Height = 9
- Transparent = True
- end
- object ImgDesc05: TImage
- Left = 15
- Top = 64
- Width = 9
- Height = 9
- Transparent = True
- end
- object ImgDesc06: TImage
- Left = 15
- Top = 94
- Width = 9
- Height = 9
- Transparent = True
- end
- object ImgDesc15: TImage
- Left = 657
- Top = 35
- Width = 9
- Height = 9
- Transparent = True
- end
- object ImgDesc16: TImage
- Left = 657
- Top = 64
- Width = 9
- Height = 9
- Transparent = True
- end
- object ImgDesc40: TImage
- Left = 334
- Top = 94
- Width = 9
- Height = 9
- Transparent = True
- end
- object cxLabel4: TcxLabel
- Left = 27
- Top = 29
- AutoSize = False
- Caption = #48156#49373#50948#52824#49444#47749
- Properties.Alignment.Horz = taRightJustify
- Properties.Alignment.Vert = taVCenter
- Transparent = True
- Height = 21
- Width = 85
- AnchorX = 112
- AnchorY = 40
- end
- object EdOCRR_LCTN_NM: TcxTextEdit
- Left = 115
- Top = 27
- Properties.Alignment.Vert = taVCenter
- Properties.ReadOnly = True
- TabOrder = 0
- Width = 407
- end
- object cxLabel5: TcxLabel
- Left = 27
- Top = 58
- AutoSize = False
- Caption = #46028#48156#49345#54889#49444#47749
- Properties.Alignment.Horz = taRightJustify
- Properties.Alignment.Vert = taVCenter
- Transparent = True
- Height = 21
- Width = 85
- AnchorX = 112
- AnchorY = 69
- end
- object EdINCD_EXPL: TcxTextEdit
- Left = 115
- Top = 58
- Properties.Alignment.Vert = taVCenter
- Properties.ReadOnly = True
- TabOrder = 1
- Width = 498
- end
- object cxLabel6: TcxLabel
- Left = 27
- Top = 88
- AutoSize = False
- Caption = #49548#53685#49345#54889
- Properties.Alignment.Horz = taRightJustify
- Properties.Alignment.Vert = taVCenter
- Transparent = True
- Height = 21
- Width = 85
- AnchorX = 112
- AnchorY = 99
- end
- object CbCMTR_GRAD_CD: TcxComboBox
- Left = 115
- Top = 88
- Cursor = crHandPoint
- Properties.Alignment.Vert = taVCenter
- Properties.DropDownListStyle = lsFixedList
- Properties.DropDownSizeable = True
- Properties.ReadOnly = True
- TabOrder = 2
- Width = 185
- end
- object cxLabel21: TcxLabel
- Left = 672
- Top = 29
- AutoSize = False
- Caption = #48156#49373#44396#44036'('#47553#53356')'
- Properties.Alignment.Horz = taRightJustify
- Properties.Alignment.Vert = taVCenter
- Transparent = True
- Height = 21
- Width = 92
- AnchorX = 764
- AnchorY = 40
- end
- object EdLINK_ID: TcxTextEdit
- Left = 768
- Top = 27
- Properties.Alignment.Vert = taVCenter
- Properties.ReadOnly = True
- TabOrder = 5
- Width = 437
- end
- object cxLabel22: TcxLabel
- Left = 672
- Top = 58
- AutoSize = False
- Caption = #48156#49373#51340#54364'(X/Y)'
- Properties.Alignment.Horz = taRightJustify
- Properties.Alignment.Vert = taVCenter
- Transparent = True
- Height = 21
- Width = 92
- AnchorX = 764
- AnchorY = 69
- end
- object cxLabel23: TcxLabel
- Left = 980
- Top = 59
- Caption = '/'
- Transparent = True
- end
- object SePosX: TcxSpinEdit
- Left = 768
- Top = 58
- Properties.Alignment.Horz = taRightJustify
- Properties.Alignment.Vert = taVCenter
- Properties.DisplayFormat = '##0.######0'
- Properties.EditFormat = '##0.######0'
- Properties.MaxValue = 9999999999.000000000000000000
- Properties.ReadOnly = True
- Properties.SpinButtons.Visible = False
- Properties.ValueType = vtFloat
- Style.LookAndFeel.Kind = lfUltraFlat
- Style.LookAndFeel.NativeStyle = False
- Style.TextStyle = []
- Style.ButtonStyle = btsUltraFlat
- StyleDisabled.LookAndFeel.Kind = lfUltraFlat
- StyleDisabled.LookAndFeel.NativeStyle = False
- StyleFocused.LookAndFeel.Kind = lfUltraFlat
- StyleFocused.LookAndFeel.NativeStyle = False
- StyleFocused.TextStyle = [fsBold]
- StyleHot.LookAndFeel.Kind = lfUltraFlat
- StyleHot.LookAndFeel.NativeStyle = False
- TabOrder = 10
- Width = 206
- end
- object SePosY: TcxSpinEdit
- Left = 995
- Top = 58
- Properties.Alignment.Horz = taRightJustify
- Properties.Alignment.Vert = taVCenter
- Properties.DisplayFormat = '##0.######0'
- Properties.EditFormat = '##0.######0'
- Properties.MaxValue = 9999999999.000000000000000000
- Properties.ReadOnly = True
- Properties.SpinButtons.Visible = False
- Properties.ValueType = vtFloat
- Style.LookAndFeel.Kind = lfUltraFlat
- Style.LookAndFeel.NativeStyle = False
- Style.TextStyle = []
- Style.ButtonStyle = btsUltraFlat
- StyleDisabled.LookAndFeel.Kind = lfUltraFlat
- StyleDisabled.LookAndFeel.NativeStyle = False
- StyleFocused.LookAndFeel.Kind = lfUltraFlat
- StyleFocused.LookAndFeel.NativeStyle = False
- StyleFocused.TextStyle = [fsBold]
- StyleHot.LookAndFeel.Kind = lfUltraFlat
- StyleHot.LookAndFeel.NativeStyle = False
- TabOrder = 11
- Width = 210
- end
- object CbRESP_LVL_CD: TcxComboBox
- Left = 433
- Top = 89
- Cursor = crHandPoint
- Properties.Alignment.Vert = taVCenter
- Properties.DropDownListStyle = lsFixedList
- Properties.DropDownSizeable = True
- Properties.ReadOnly = True
- TabOrder = 12
- Width = 180
- end
- object cxLabel19: TcxLabel
- Left = 345
- Top = 88
- AutoSize = False
- Caption = #45824#51025#49688#51456
- Properties.Alignment.Horz = taRightJustify
- Properties.Alignment.Vert = taVCenter
- Transparent = True
- Height = 21
- Width = 85
- AnchorX = 430
- AnchorY = 99
- end
- end
- object cxGroupBox5: TcxGroupBox
- Left = 2
- Top = 350
- Align = alClient
- Caption = #46028#48156' '#51333#47308' '#51221#48372
- TabOrder = 4
- Height = 97
- Width = 1373
- object ImgDesc19: TImage
- Left = 15
- Top = 31
- Width = 9
- Height = 9
- Transparent = True
- end
- object ImgDesc20: TImage
- Left = 334
- Top = 31
- Width = 9
- Height = 9
- Transparent = True
- end
- object ImgDesc25: TImage
- Left = 334
- Top = 59
- Width = 9
- Height = 9
- Transparent = True
- end
- object cxLabel33: TcxLabel
- Left = 27
- Top = 25
- AutoSize = False
- Caption = #51333#47308#54869#51064#48169#48277
- Properties.Alignment.Horz = taRightJustify
- Properties.Alignment.Vert = taVCenter
- Transparent = True
- Height = 21
- Width = 85
- AnchorX = 112
- AnchorY = 36
- end
- object cxLabel34: TcxLabel
- Left = 27
- Top = 53
- AutoSize = False
- Caption = #46028#48156#51333#47308#49884#44033
- Properties.Alignment.Horz = taRightJustify
- Properties.Alignment.Vert = taVCenter
- Transparent = True
- Height = 21
- Width = 85
- AnchorX = 112
- AnchorY = 64
- end
- object cxLabel36: TcxLabel
- Left = 798
- Top = 53
- AutoSize = False
- Caption = #48373#44396#49884#44036'('#48516')'
- Properties.Alignment.Horz = taRightJustify
- Properties.Alignment.Vert = taVCenter
- Transparent = True
- Height = 21
- Width = 80
- AnchorX = 878
- AnchorY = 64
- end
- object cxLabel39: TcxLabel
- Left = 798
- Top = 25
- AutoSize = False
- Caption = #52636#46041#51064#50896#49688
- Properties.Alignment.Horz = taRightJustify
- Properties.Alignment.Vert = taVCenter
- Transparent = True
- Height = 21
- Width = 80
- AnchorX = 878
- AnchorY = 36
- end
- object cxLabel40: TcxLabel
- Left = 345
- Top = 25
- AutoSize = False
- Caption = #52636#46041#51109#48708#45236#50669
- Properties.Alignment.Horz = taRightJustify
- Properties.Alignment.Vert = taVCenter
- Transparent = True
- Height = 21
- Width = 85
- AnchorX = 430
- AnchorY = 36
- end
- object cxLabel44: TcxLabel
- Left = 345
- Top = 53
- AutoSize = False
- Caption = #46028#48156#48373#44396#45236#50669
- Properties.Alignment.Horz = taRightJustify
- Properties.Alignment.Vert = taVCenter
- Transparent = True
- Height = 21
- Width = 85
- AnchorX = 430
- AnchorY = 64
- end
- object CbINCD_END_CNFM_MTHD_CD: TcxComboBox
- Left = 115
- Top = 24
- Cursor = crHandPoint
- Properties.Alignment.Vert = taVCenter
- Properties.DropDownListStyle = lsFixedList
- Properties.DropDownSizeable = True
- TabOrder = 6
- Width = 185
- end
- object DtINCD_END_DT: TcxDateEdit
- Left = 115
- Top = 55
- Properties.Alignment.Horz = taCenter
- Properties.Alignment.Vert = taVCenter
- Properties.DateButtons = [btnNow]
- Properties.DateOnError = deToday
- Properties.ImmediatePost = True
- Properties.Kind = ckDateTime
- Properties.ReadOnly = False
- TabOrder = 7
- Width = 185
- end
- object EdMBLZ_EQPM_CONT: TcxTextEdit
- Left = 433
- Top = 24
- Properties.Alignment.Vert = taVCenter
- TabOrder = 8
- Width = 360
- end
- object SeMBLZ_PNUM: TcxSpinEdit
- Left = 881
- Top = 24
- TabOrder = 9
- Width = 49
- end
- object EdRECR_CONT: TcxTextEdit
- Left = 433
- Top = 55
- Properties.Alignment.Vert = taVCenter
- TabOrder = 10
- Width = 360
- end
- object SeRECR_PERD: TcxSpinEdit
- Left = 881
- Top = 55
- TabOrder = 11
- Width = 49
- end
- object cxLabel12: TcxLabel
- Left = 298
- Top = 26
- Caption = #9733
- Style.TextColor = clRed
- Transparent = True
- end
- object cxLabel13: TcxLabel
- Left = 298
- Top = 57
- Caption = #9733
- Style.TextColor = clRed
- Transparent = True
- end
- end
- object Panel2: TPanel
- Left = 2
- Top = 222
- Width = 1373
- Height = 128
- Align = alTop
- BevelOuter = bvNone
- TabOrder = 5
- object cxGroupBox7: TcxGroupBox
- Left = 0
- Top = 0
- Align = alClient
- Caption = #46028#48156' '#54869#51064#51221#48372
- Enabled = False
- TabOrder = 0
- Height = 128
- Width = 1112
- object ImgDesc07: TImage
- Left = 15
- Top = 35
- Width = 9
- Height = 9
- Transparent = True
- end
- object ImgDesc08: TImage
- Left = 15
- Top = 64
- Width = 9
- Height = 9
- Transparent = True
- end
- object ImgDesc09: TImage
- Left = 15
- Top = 94
- Width = 9
- Height = 9
- Transparent = True
- end
- object ImgDesc10: TImage
- Left = 334
- Top = 35
- Width = 9
- Height = 9
- Transparent = True
- end
- object ImgDesc11: TImage
- Left = 334
- Top = 64
- Width = 9
- Height = 9
- Transparent = True
- end
- object ImgDesc13: TImage
- Left = 634
- Top = 35
- Width = 9
- Height = 9
- Transparent = True
- end
- object ImgDesc14: TImage
- Left = 634
- Top = 64
- Width = 9
- Height = 9
- Transparent = True
- end
- object ImgDesc17: TImage
- Left = 334
- Top = 94
- Width = 9
- Height = 9
- Transparent = True
- end
- object ImgDesc24: TImage
- Left = 939
- Top = 35
- Width = 9
- Height = 9
- Transparent = True
- Visible = False
- end
- object cxLabel7: TcxLabel
- Left = 27
- Top = 29
- AutoSize = False
- Caption = #51228#48372#51088#47749
- Properties.Alignment.Horz = taRightJustify
- Properties.Alignment.Vert = taVCenter
- Transparent = True
- Height = 21
- Width = 85
- AnchorX = 112
- AnchorY = 40
- end
- object cxLabel8: TcxLabel
- Left = 27
- Top = 58
- AutoSize = False
- Caption = #54869#51064#48169#48277
- Properties.Alignment.Horz = taRightJustify
- Properties.Alignment.Vert = taVCenter
- Transparent = True
- Height = 21
- Width = 85
- AnchorX = 112
- AnchorY = 69
- end
- object cxLabel9: TcxLabel
- Left = 27
- Top = 88
- AutoSize = False
- Caption = #49900#44033#46020
- Properties.Alignment.Horz = taRightJustify
- Properties.Alignment.Vert = taVCenter
- Transparent = True
- Height = 21
- Width = 85
- AnchorX = 112
- AnchorY = 99
- end
- object EdIFMR_NM: TcxTextEdit
- Left = 115
- Top = 28
- Properties.Alignment.Vert = taVCenter
- Properties.ReadOnly = True
- TabOrder = 3
- Width = 185
- end
- object CbINCD_CNFM_MTHD_CD: TcxComboBox
- Left = 115
- Top = 58
- Cursor = crHandPoint
- Properties.Alignment.Vert = taVCenter
- Properties.DropDownListStyle = lsFixedList
- Properties.DropDownSizeable = True
- Properties.ReadOnly = True
- TabOrder = 4
- Width = 185
- end
- object CbINCD_SERN_CD: TcxComboBox
- Left = 115
- Top = 88
- Cursor = crHandPoint
- Properties.Alignment.Vert = taVCenter
- Properties.DropDownListStyle = lsFixedList
- Properties.DropDownSizeable = True
- Properties.ReadOnly = True
- TabOrder = 5
- Width = 185
- end
- object cxLabel14: TcxLabel
- Left = 345
- Top = 29
- AutoSize = False
- Caption = #46028#48156#50976#54805
- Properties.Alignment.Horz = taRightJustify
- Properties.Alignment.Vert = taVCenter
- Transparent = True
- Height = 21
- Width = 85
- AnchorX = 430
- AnchorY = 40
- end
- object cxLabel15: TcxLabel
- Left = 345
- Top = 58
- AutoSize = False
- Caption = #46028#48156#49464#48512#50976#54805
- Properties.Alignment.Horz = taRightJustify
- Properties.Alignment.Vert = taVCenter
- Transparent = True
- Height = 21
- Width = 85
- AnchorX = 430
- AnchorY = 69
- end
- object CbINCD_TYPE_CLSF_CD: TcxComboBox
- Left = 433
- Top = 28
- Cursor = crHandPoint
- Properties.Alignment.Vert = taVCenter
- Properties.DropDownListStyle = lsFixedList
- Properties.DropDownSizeable = True
- Properties.ReadOnly = True
- TabOrder = 8
- Width = 167
- end
- object CbINCD_TYPE_CD: TcxComboBox
- Left = 433
- Top = 59
- Cursor = crHandPoint
- Properties.Alignment.Vert = taVCenter
- Properties.DropDownListStyle = lsFixedList
- Properties.DropDownSizeable = True
- Properties.ReadOnly = True
- TabOrder = 9
- Width = 167
- end
- object cxLabel17: TcxLabel
- Left = 646
- Top = 29
- AutoSize = False
- Caption = #46028#48156#49884#51089#49884#44033
- Properties.Alignment.Horz = taRightJustify
- Properties.Alignment.Vert = taVCenter
- Transparent = True
- Height = 21
- Width = 85
- AnchorX = 731
- AnchorY = 40
- end
- object cxLabel18: TcxLabel
- Left = 645
- Top = 61
- AutoSize = False
- Caption = #51333#47308#50696#51221#49884#44033
- Properties.Alignment.Horz = taRightJustify
- Properties.Alignment.Vert = taVCenter
- Transparent = True
- Height = 21
- Width = 85
- AnchorX = 730
- AnchorY = 72
- end
- object DtINCD_STRT_DT: TcxDateEdit
- Left = 739
- Top = 29
- Properties.Alignment.Horz = taCenter
- Properties.Alignment.Vert = taVCenter
- Properties.DateButtons = [btnNow]
- Properties.DateOnError = deToday
- Properties.ImmediatePost = True
- Properties.Kind = ckDateTime
- Properties.ReadOnly = True
- TabOrder = 12
- Width = 174
- end
- object DtINCD_END_PRAR_DT: TcxDateEdit
- Left = 739
- Top = 59
- Properties.Alignment.Horz = taCenter
- Properties.Alignment.Vert = taVCenter
- Properties.DateButtons = [btnNow]
- Properties.DateOnError = deToday
- Properties.ImmediatePost = True
- Properties.Kind = ckDateTime
- Properties.ReadOnly = True
- TabOrder = 13
- Width = 174
- end
- object cxLabel27: TcxLabel
- Left = 345
- Top = 88
- AutoSize = False
- Caption = #46028#48156#51228#47785
- Properties.Alignment.Horz = taRightJustify
- Properties.Alignment.Vert = taVCenter
- Transparent = True
- Height = 21
- Width = 85
- AnchorX = 430
- AnchorY = 99
- end
- object EdINCD_TITL: TcxTextEdit
- Left = 433
- Top = 90
- Properties.ReadOnly = True
- TabOrder = 15
- Width = 480
- end
- object cxLabel45: TcxLabel
- Left = 955
- Top = 29
- Caption = 'UTIS'#50672#44228
- Properties.Alignment.Horz = taRightJustify
- Properties.Alignment.Vert = taVCenter
- Transparent = True
- Visible = False
- AnchorX = 1012
- AnchorY = 40
- end
- object ChkUTIS_CNCT_YN: TcxCheckBox
- Left = 1020
- Top = 29
- Caption = #51221#48372#51228#44277
- Properties.ReadOnly = True
- TabOrder = 17
- Transparent = True
- Visible = False
- Width = 88
- end
- end
- object GrpIncid: TcxGroupBox
- Left = 1112
- Top = 0
- Align = alRight
- Caption = 'VMS '#54364#52636
- TabOrder = 1
- Visible = False
- DesignSize = (
- 261
- 121)
- Height = 128
- Width = 261
- object ImgDesc18: TImage
- Left = 14
- Top = 94
- Width = 9
- Height = 9
- Transparent = True
- end
- object ChkVMS_DSPL_YN: TcxCheckBox
- Left = 7
- Top = 29
- Cursor = crHandPoint
- Caption = 'VMS '#54364#52636
- TabOrder = 0
- Transparent = True
- Width = 90
- end
- object PnlVms: TPanel
- Left = 132
- Top = 21
- Width = 228
- Height = 60
- Color = clBlack
- ParentBackground = False
- TabOrder = 1
- object Image1: TImage
- Left = 105
- Top = 8
- Width = 16
- Height = 16
- Picture.Data = {
- 0B546478504E47496D61676589504E470D0A1A0A0000000D4948445200000010
- 0000001008060000001FF3FF610000000467414D410000B18E7CFB5193000000
- 206348524D0000870F00008C0F0000FD520000814000007D790000E98B00003C
- E5000019CC733C857700000A396943435050686F746F73686F70204943432070
- 726F66696C65000048C79D96775454D71687CFBD777AA1CD30D2197A932E3080
- F42E201D045118660618CA00C30C4D6C88A840441111014590A08001A3A148AC
- 88622128A8600F48105062308AA8A86446D64A7C7979EFE5E5F7C7BDDFDA67EF
- 73F7D97B9FB52E00244F1F2E2F059602209927E0077A38D3578547D0B1FD0006
- 788001A6003059E9A9BE41EEC140242F37177ABAC809FC8BDE0C0148FCBE65E8
- E94FA783FF4FD2AC54BE0000C85FC4E66C4E3A4BC4F9224ECA14A48AED3322A6
- C6248A194689992F4A50C472628E5BE4A59F7D16D951CCEC641E5BC4E29C53D9
- C96C31F788787B86902362C447C405195C4EA6886F8B58334998CC15F15B716C
- 3287990E008A24B60B38AC78119B8898C40F0E7411F1720070A4B82F38E60B16
- 70B204E243B9A4A466F3B971F102BA2E4B8F6E6A6DCDA07B723293380281A13F
- 9395C8E4B3E92E29C9A94C5E36008B67FE2C19716DE9A2225B9A5A5B5A1A9A19
- 997E51A8FFBAF83725EEED22BD0AF8DC3388D6F787EDAFFC52EA0060CC8A6AB3
- EB0F5BCC7E003AB6022077FF0F9BE6210024457D6BBFF1C57968E27989170852
- 6D8C8D3333338DB81C9691B8A0BFEB7F3AFC0D7DF13D23F176BF9787EECA8965
- 0A93047471DD58294929423E3D3D95C9E2D00DFF3CC4FF38F0AFF3581AC889E5
- F0393C5144A868CAB8BC3851BB796CAE809BC2A37379FFA989FF30EC4F5A9C6B
- 9128F59F0035CA0848DDA002E4E73E80A21001127950DCF5DFFBE6830F05E29B
- 17A63AB138F79F05FDFBAE7089F891CE8DFB1CE712184C6709F9198B6BE26B09
- D08000240115C80315A001748121300356C016380237B002F88160100ED60216
- 8807C9800F32412ED80C0A4011D805F6824A5003EA41236801274007380D2E80
- CBE03AB809EE800760048C83E76006BC01F310046121324481E42155480B3280
- CC2006640FB9413E5020140E454371100F1242B9D016A8082A852AA15AA811FA
- 163A055D80AE4203D03D68149A827E85DEC3084C82A9B032AC0D1BC30CD809F6
- 8683E135701C9C06E7C0F9F04EB802AE838FC1EDF005F83A7C071E819FC3B308
- 4088080D51430C1106E282F82111482CC24736208548395287B4205D482F720B
- 1941A69177280C8A82A2A30C51B6284F54088A854A436D4015A32A514751EDA8
- 1ED42DD4286A06F5094D462BA10DD036682FF42A741C3A135D802E4737A0DBD0
- 97D077D0E3E837180C8686D1C158613C31E19804CC3A4C31E600A615731E3380
- 19C3CC62B15879AC01D60EEB87656205D802EC7EEC31EC39EC20761CFB1647C4
- A9E2CC70EEB8081C0F97872BC735E1CEE2067113B879BC145E0B6F83F7C3B3F1
- D9F8127C3DBE0B7F033F8E9F274813740876846042026133A182D042B8447848
- 78452412D589D6C4002297B88958413C4EBC421C25BE23C990F4492EA4489290
- B4937484749E748FF48A4C266B931DC91164017927B9917C91FC98FC56822261
- 24E125C196D8285125D12E3128F142122FA925E924B9563247B25CF2A4E40DC9
- 6929BC94B6948B14536A835495D429A961A959698AB4A9B49F74B274B17493F4
- 55E94919AC8CB68C9B0C5B265FE6B0CC4599310A42D1A0B85058942D947ACA25
- CA381543D5A17A5113A845D46FA8FDD4195919D965B2A1B259B255B267644768
- 084D9BE6454BA295D04ED08668EF97282F715AC259B26349CB92C12573728A72
- 8E721CB942B956B93B72EFE5E9F26EF289F2BBE53BE41F29A014F41502143215
- 0E2A5C529856A42ADA2AB2140B154F28DE578295F4950295D6291D56EA539A55
- 5651F6504E55DEAF7C51795A85A6E2A892A052A67256654A95A26AAFCA552D53
- 3DA7FA8C2E4B77A227D12BE83DF4193525354F35A15AAD5ABFDABCBA8E7A887A
- 9E7AABFA230D8206432356A34CA35B63465355D3573357B359F3BE165E8BA115
- AFB54FAB576B4E5B473B4C7B9B7687F6A48E9C8E974E8E4EB3CE435DB2AE836E
- 9A6E9DEE6D3D8C1E432F51EF80DE4D7D58DF423F5EBF4AFF86016C6069C03538
- 6030B014BDD47A296F69DDD2614392A193618661B3E1A811CDC8C728CFA8C3E8
- 85B1A67184F16EE35EE34F2616264926F5260F4C654C5798E6997699FE6AA66F
- C632AB32BB6D4E367737DF68DE69FE7299C132CEB283CBEE5A502C7C2DB65974
- 5B7CB4B4B2E45BB6584E59695A455B555B0D33A80C7F4631E38A35DADAD97AA3
- F569EB77369636029B1336BFD81ADA26DA36D94E2ED759CE595EBF7CCC4EDD8E
- 69576B37624FB78FB63F643FE2A0E6C074A87378E2A8E1C8766C709C70D2734A
- 703AE6F4C2D9C499EFDCE63CE762E3B2DEE5BC2BE2EAE15AE8DAEF26E316E256
- E9F6D85DDD3DCEBDD97DC6C3C2639DC7794FB4A7B7E76ECF612F652F9657A3D7
- CC0AAB15EB57F47893BC83BC2BBD9FF8E8FBF07DBA7C61DF15BE7B7C1FAED45A
- C95BD9E107FCBCFCF6F83DF2D7F14FF3FF3E0013E01F5015F034D0343037B037
- 88121415D414F426D839B824F841886E8830A43B54323432B431742ECC35AC34
- 6C6495F1AAF5ABAE872B8473C33B23B011A1110D11B3ABDD56EF5D3D1E691159
- 1039B446674DD69AAB6B15D626AD3D132519C58C3A198D8E0E8B6E8AFEC0F463
- D6316763BC62AA6366582EAC7DACE76C4776197B8A63C729E54CC4DAC596C64E
- C6D9C5ED899B8A77882F8F9FE6BA702BB92F133C136A12E612FD128F242E2485
- 25B526E392A3934FF1647889BC9E149594AC94815483D482D491349BB4BD6933
- 7C6F7E433A94BE26BD534015FD4CF50975855B85A319F61955196F3343334F66
- 4967F1B2FAB2F5B377644FE4B8E77CBD0EB58EB5AE3B572D7773EEE87AA7F5B5
- 1BA00D311BBA376A6CCCDF38BEC963D3D1CD84CD899B7FC833C92BCD7BBD256C
- 4B57BE72FEA6FCB1AD1E5B9B0B240AF805C3DB6CB7D56C476DE76EEFDF61BE63
- FF8E4F85ECC26B452645E5451F8A59C5D7BE32FDAAE2AB859DB13BFB4B2C4B0E
- EEC2ECE2ED1ADAEDB0FB68A974694EE9D81EDF3DED65F4B2C2B2D77BA3F65E2D
- 5F565EB38FB04FB86FA4C2A7A273BFE6FE5DFB3F54C657DEA972AE6AAD56AADE
- 513D77807D60F0A0E3C1961AE59AA29AF787B887EED67AD4B6D769D7951FC61C
- CE38FCB43EB4BEF76BC6D78D0D0A0D450D1F8FF08E8C1C0D3CDAD368D5D8D8A4
- D454D20C370B9BA78E451EBBF98DEB379D2D862DB5ADB4D6A2E3E0B8F0F8B36F
- A3BF1D3AE17DA2FB24E364CB775ADF55B751DA0ADBA1F6ECF6998EF88E91CEF0
- CE81532B4E7577D976B57D6FF4FD91D36AA7ABCEC89E29394B389B7F76E15CCE
- B9D9F3A9E7A72FC45D18EB8EEA7E7071D5C5DB3D013DFD97BC2F5DB9EC7EF962
- AF53EFB92B76574E5FB5B97AEA1AE35AC775CBEBED7D167D6D3F58FCD0D66FD9
- DF7EC3EA46E74DEB9B5D03CB07CE0E3A0C5EB8E57AEBF26DAFDBD7EFACBC3330
- 14327477387278E42EFBEEE4BDA47B2FEF67DC9F7FB0E921FA61E123A947E58F
- 951ED7FDA8F763EB88E5C89951D7D1BE27414F1E8CB1C69EFF94FED387F1FCA7
- E4A7E513AA138D936693A7A7DCA76E3E5BFD6CFC79EAF3F9E9829FA57FAE7EA1
- FBE2BB5F1C7FE99B593533FE92FF72E1D7E257F2AF8EBC5EF6BA7BD67FF6F19B
- E437F373856FE5DF1E7DC778D7FB3EECFDC47CE607EC878A8F7A1FBB3E797F7A
- B890BCB0F01BF784F3FBE2E61DC2000000097048597300000B0C00000B0C013F
- 4022C80000019349444154384FA5D2BD4EC2601406E0638DBF34B401110D041A
- 507E141124120C3A78095E80BBBBD10B7134D10BD03AE8E0E264EAE2EAA257E0
- A48020141138BE2DB689A431360EEF728627EFF9BE43CCFCAF380EDDC471E826
- F4323D4EAFE22455240FD5FC12BD057DD40805E83D3A47ADC508B59762F2C772
- 6CB7B39A18FD2CA4A957CC50BF94A57E3947BC99FF1D68C6C3A4A71400F10680
- 33007E0760620FC015800B002A0015800A400570AE27954B34E80060004F00B6
- 7E025313A700B82A7BB8E6F7723DE8E346689601702B1EE67632CA68C026B096
- E66E31A3F737B2870004ABC1B101A08123A00F0168C00018C00D8088F1060340
- 16B936E365ACC0F550C004B002000540CC04BA1650CA3297738F00560CE0C406
- D0C0029A760303B01AA40CA00FE088CB79D15AE100C07D4512EFAA7E4903A0E1
- 113534D0D0E016C0830D14D2CF00767A784400F6238E0010D040002000100008
- 0084E682F98DDBDFC03580486F3D43C3C0E00E649100987780157007F3A427A2
- D44E294500FB00C6CC431A069CCED34D1C876EE238FC7B98BE009B5A309B92AA
- 53920000000049454E44AE426082}
- end
- object EdEND_LCTN_NM: TcxTextEdit
- Left = 127
- Top = 4
- Properties.Alignment.Vert = taVCenter
- Properties.MaxLength = 10
- TabOrder = 0
- Text = #51333#47308#50948#52824
- Width = 92
- end
- object cxLabel_VMS_INCD_TYPE_CD: TcxLabel
- Left = 6
- Top = 35
- AutoSize = False
- Caption = #49324#44256#50976#54805
- Style.TextColor = clYellow
- Properties.Alignment.Horz = taCenter
- Transparent = True
- Height = 21
- Width = 215
- AnchorX = 114
- end
- object EdSTRT_LCTN_NM: TcxTextEdit
- Left = 8
- Top = 4
- Properties.Alignment.Vert = taVCenter
- Properties.MaxLength = 10
- TabOrder = 2
- Text = #49884#51089#50948#52824
- Width = 91
- end
- end
- object CbVMS_INCD_TYPE_CD: TcxComboBox
- Left = 119
- Top = 87
- Cursor = crHandPoint
- Properties.Alignment.Vert = taVCenter
- Properties.DropDownListStyle = lsFixedList
- TabOrder = 2
- Width = 127
- end
- object CbVMS_INCD_DETL_TYPE_CD: TcxComboBox
- Left = 252
- Top = 87
- Cursor = crHandPoint
- Properties.Alignment.Vert = taVCenter
- Properties.DropDownListStyle = lsFixedList
- TabOrder = 3
- Width = 141
- end
- object cxLabel16: TcxLabel
- Left = 32
- Top = 88
- Caption = 'VMS'#46028#48156#50976#54805
- Properties.Alignment.Horz = taRightJustify
- Properties.Alignment.Vert = taVCenter
- Transparent = True
- AnchorX = 115
- AnchorY = 99
- end
- object BtnVmsTarget: TcxButton
- Left = 28
- Top = 57
- Width = 96
- Height = 25
- Cursor = crHandPoint
- Hint = #48156#49373#44396#44036#50640' '#49444#51221#46108' VMS '#47785#47197#51012' '#54364#52636#54633#45768#45796'.'
- Anchors = [akRight, akBottom]
- Caption = 'VMS '#47785#47197
- LookAndFeel.NativeStyle = False
- TabOrder = 5
- Font.Charset = DEFAULT_CHARSET
- Font.Color = clWindowText
- Font.Height = -13
- Font.Name = #47569#51008' '#44256#46357
- Font.Style = [fsBold]
- ParentFont = False
- OnClick = BtnVmsTargetClick
- end
- end
- end
- end
- object cxSplitter1: TcxSplitter
- Left = 0
- Top = 384
- Width = 1377
- Height = 8
- AlignSplitter = salBottom
- Control = cxGroupBox2
- end
- object Panel3: TPanel
- Left = 0
- Top = 0
- Width = 1377
- Height = 384
- Align = alClient
- BevelOuter = bvNone
- TabOrder = 2
- object cxGroupBox1: TcxGroupBox
- Left = 0
- Top = 0
- Align = alClient
- Caption = #9654' '#46321#47197#46108' '#46028#48156#47785#47197' ('#47785#47197#50640#49436' '#45908#48660#53364#47533#51004#47196' '#46028#48156#51221#48372' '#49440#53469')'
- Style.TextStyle = [fsBold]
- TabOrder = 0
- Height = 384
- Width = 1377
- object PnlBottom: TPanel
- Left = 3
- Top = 343
- Width = 1371
- Height = 31
- Align = alBottom
- BevelOuter = bvNone
- TabOrder = 0
- DesignSize = (
- 1371
- 31)
- object LblRecords: TLabel
- Left = 1251
- Top = 9
- Width = 25
- Height = 17
- Alignment = taRightJustify
- Anchors = [akRight, akBottom]
- Caption = '0 '#44148
- Transparent = True
- ExplicitLeft = 1162
- end
- object LbDef: TLabel
- Left = 8
- Top = 9
- Width = 513
- Height = 17
- Hint = '('#54596#53552#47553' '#45936#51060#53552#45716' '#54252#54632#46104#51648' '#50506#49845#45768#45796'.)'
- AutoSize = False
- Caption = '('#47785#47197#50640#49436' '#51221#48372#47484' '#45908#48660' '#53364#47533#54616#49884#47732' '#50500#47000' '#54868#47732#50640' '#51221#48372#47484' '#54364#52636#54633#45768#45796'.)'
- Font.Charset = DEFAULT_CHARSET
- Font.Color = clBlue
- Font.Height = -13
- Font.Name = #47569#51008' '#44256#46357
- Font.Style = [fsBold]
- ParentFont = False
- Transparent = True
- end
- object Label1: TLabel
- Left = 910
- Top = 8
- Width = 19
- Height = 17
- Hint = '('#54596#53552#47553' '#45936#51060#53552#45716' '#54252#54632#46104#51648' '#50506#49845#45768#45796'.)'
- Anchors = [akTop, akRight]
- Caption = ' ~ '
- Enabled = False
- Transparent = True
- ExplicitLeft = 891
- end
- object BtnExlSave: TcxButton
- Tag = 1
- Left = 1284
- Top = 4
- Width = 80
- Height = 25
- Cursor = crHandPoint
- Hint = #54028#51068' '#51200#51109
- Anchors = [akRight, akBottom]
- Caption = #51200#51109
- Colors.Default = 10737865
- Glyph.Data = {
- B6030000424DB603000000000000360000002800000012000000100000000100
- 1800000000008003000012170000121700000000000000000000C0C0C0C0C0C0
- C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0
- C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C00000C0C0C0A5A5A57878787878787878
- 7878787878787878787878787878787878787878787878787878787878787878
- 78787878787878780000B6B6B6271A156E483B6E483B6E483B6E483B6E483B6E
- 483B6E483B6E483B6E483B6E483B6E483B6E483B6E483B6E483B281A15626262
- 0000D0D0D04F342AEAAD96F6C6B2F6C6B2F6C6B2F6C6B2F6C6B2F6C6B2F6C6B2
- F6C6B2F6C6B2F6C6B2F6C6B2F6C6B2EAAD9650342A6262620000D0D0D04F342A
- EAAD96F6C6B2F6C6B2F6C6B2F6C6B2F6C6B2F6C6B2F6C6B29C7E710000000000
- 0000000000000063413550342A6262620000D0D0D04F342AA77765211B180000
- 000000000000000000000000001717177F7F7F3A3A3A0000000B08089C7D71EA
- AD9650342A6262620000D0D0D04F342AEAAD96F6C6B216121000000000000000
- 0000000000D0D0D0000000000000000000161110F6C6B2EAAD9650342A626262
- 0000D0D0D04F342AEAAD96F6C6B2EABDA95948400000005151517F7F7F000000
- 0000004335307B63597B63599C7D71EAAD9650342A6262620000D0D0D04F342A
- EAAD96F6C6B2F6C6B2B290817373735C5C5C000000000000000000866B61F6C6
- B2F6C6B2F6C6B2EAAD9650342A6262620000D0D0D04F342AEAAD96F6C6B2DFB4
- A14545458B8B8B000000000000000000000000000000B28F81F6C6B2F6C6B2EA
- AD9650342A6262620000D0D0D04F342AEAAD969C7E717E7C7B5C5C5C00000000
- 00006450480000000000000000000000007A6258F6C6B2EAAD9650342A626262
- 0000D0D0D04F342A644135B9B9B91717170000000000009C7D71F6C6B2C9A291
- 000000000000000000000000423530EAAD9650342A6262620000D0D0D04F342A
- 6441350000000000000000006F5950F6C6B2F6C6B2F6C6B29C7E710000000000
- 00000000423530EAAD9650342A6262620000D0D0D04F342AEAAD96F6C6B2F6C6
- B2F6C6B2F6C6B2F6C6B2F6C6B2F6C6B2F6C6B2F6C6B2F6C6B2F6C6B2F6C6B2EA
- AD9650342A6262620000D0D0D04F342ADC9076DC9076DC9076DC9076DC9076DC
- 9076DC9076DC9076DC9076DC9076DC9076DC9076DC9076DC907650342A626262
- 0000E7E7E77F7F7F7F7F7F7F7F7F7F7F7F7F7F7F7F7F7F7F7F7F7F7F7F7F7F7F
- 7F7F7F7F7F7F7F7F7F7F7F7F7F7F7F7F7F7F6B6B6BAEAEAE0000}
- Spacing = 6
- TabOrder = 0
- Font.Charset = DEFAULT_CHARSET
- Font.Color = clBlack
- Font.Height = -13
- Font.Name = #47569#51008' '#44256#46357
- Font.Style = []
- ParentFont = False
- OnClick = BtnExlSaveClick
- end
- object ChkViewEnded: TcxCheckBox
- Left = 628
- Top = 7
- Cursor = crHandPoint
- Anchors = [akTop, akRight]
- AutoSize = False
- Caption = #51060#47141#51312#54924
- ParentBackground = False
- ParentColor = False
- Style.BorderColor = cl3DLight
- Style.Color = cl3DLight
- StyleDisabled.BorderColor = cl3DLight
- TabOrder = 1
- Transparent = True
- OnClick = ChkViewEndedClick
- Height = 19
- Width = 114
- end
- object DtStDate: TcxDateEdit
- Left = 748
- Top = 4
- Anchors = [akTop, akRight]
- EditValue = 39924d
- Enabled = False
- Properties.Alignment.Horz = taCenter
- Properties.DateButtons = [btnNow, btnToday]
- Properties.DateOnError = deToday
- Properties.SaveTime = False
- Properties.ShowTime = False
- Style.ButtonStyle = btsUltraFlat
- StyleFocused.TextStyle = [fsBold]
- StyleFocused.ButtonStyle = btsUltraFlat
- TabOrder = 2
- Width = 103
- end
- object DtStTime: TcxTimeEdit
- Left = 853
- Top = 4
- Anchors = [akTop, akRight]
- EditValue = 0d
- Enabled = False
- Properties.Alignment.Horz = taCenter
- Properties.TimeFormat = tfHour
- Style.ButtonStyle = btsUltraFlat
- StyleFocused.TextStyle = [fsBold]
- TabOrder = 3
- Width = 53
- end
- object DtEdDate: TcxDateEdit
- Left = 933
- Top = 4
- Anchors = [akTop, akRight]
- EditValue = 39924d
- Enabled = False
- Properties.Alignment.Horz = taCenter
- Properties.DateButtons = [btnNow, btnToday]
- Properties.DateOnError = deToday
- Properties.SaveTime = False
- Properties.ShowTime = False
- Style.ButtonStyle = btsUltraFlat
- StyleFocused.TextStyle = [fsBold]
- StyleFocused.ButtonStyle = btsUltraFlat
- TabOrder = 4
- Width = 103
- end
- object DtEdTime: TcxTimeEdit
- Left = 1038
- Top = 4
- Anchors = [akTop, akRight]
- EditValue = 0d
- Enabled = False
- Properties.Alignment.Horz = taCenter
- Properties.TimeFormat = tfHour
- Style.ButtonStyle = btsUltraFlat
- StyleFocused.TextStyle = [fsBold]
- TabOrder = 5
- Width = 53
- end
- object BtnSearch: TcxButton
- Left = 1099
- Top = 4
- Width = 80
- Height = 25
- Cursor = crHandPoint
- Hint = #45936#51060#53552#47484' '#44160#49353#54633#45768#45796'.'
- Anchors = [akTop, akRight]
- Caption = #51312#54924
- Colors.Default = 3893744
- Enabled = False
- TabOrder = 6
- Font.Charset = DEFAULT_CHARSET
- Font.Color = clWindowText
- Font.Height = -13
- Font.Name = #47569#51008' '#44256#46357
- Font.Style = []
- ParentFont = False
- OnClick = BtnSearchClick
- end
- end
- object CxList: TcxGrid
- Left = 3
- Top = 19
- Width = 1371
- Height = 324
- Align = alClient
- TabOrder = 1
- LookAndFeel.NativeStyle = False
- object TvList: TcxGridTableView
- OnCellDblClick = TvListCellDblClick
- DataController.Filter.OnChanged = TvListDataControllerFilterChanged
- DataController.Summary.DefaultGroupSummaryItems = <>
- DataController.Summary.FooterSummaryItems = <>
- DataController.Summary.SummaryGroups = <>
- FilterRow.InfoText = '<'#44160#49353#50612#47484' '#51077#47141' '#54616#49464#50836'>'
- OptionsBehavior.CellHints = True
- OptionsData.Deleting = False
- OptionsData.DeletingConfirmation = False
- OptionsData.Editing = False
- OptionsData.Inserting = False
- OptionsView.NoDataToDisplayInfoText = '<'#46028#48156' '#48156#49373' '#51221#48372#44032' '#50630#49845#45768#45796'.>'
- OptionsView.GroupByBox = False
- OptionsView.Indicator = True
- object Column01: TcxGridColumn
- Caption = 'ID'
- PropertiesClassName = 'TcxLabelProperties'
- Properties.Alignment.Horz = taCenter
- Properties.Alignment.Vert = taVCenter
- HeaderAlignmentHorz = taCenter
- HeaderAlignmentVert = vaCenter
- Options.Editing = False
- Width = 110
- end
- object Column02: TcxGridColumn
- Caption = #46321#47197' '#51068#49884
- PropertiesClassName = 'TcxLabelProperties'
- Properties.Alignment.Horz = taCenter
- Properties.Alignment.Vert = taVCenter
- HeaderAlignmentHorz = taCenter
- HeaderAlignmentVert = vaCenter
- Options.Editing = False
- Width = 150
- end
- object Column04: TcxGridColumn
- Caption = #46028#48156#49345#54889' '#44396#48516
- PropertiesClassName = 'TcxLabelProperties'
- Properties.Alignment.Vert = taVCenter
- HeaderAlignmentHorz = taCenter
- HeaderAlignmentVert = vaCenter
- Options.Editing = False
- Width = 100
- end
- object Column03: TcxGridColumn
- Caption = #51652#54665' '#45800#44228
- PropertiesClassName = 'TcxLabelProperties'
- Properties.Alignment.Horz = taCenter
- Properties.Alignment.Vert = taVCenter
- Visible = False
- HeaderAlignmentHorz = taCenter
- HeaderAlignmentVert = vaCenter
- Options.Editing = False
- Width = 120
- end
- object Column14: TcxGridColumn
- Caption = #46028#48156#49345#54889' '#51228#47785
- PropertiesClassName = 'TcxLabelProperties'
- Properties.Alignment.Vert = taVCenter
- HeaderAlignmentHorz = taCenter
- HeaderAlignmentVert = vaCenter
- Options.Editing = False
- Width = 189
- end
- object Column15: TcxGridColumn
- Caption = #46028#48156#50976#54805
- PropertiesClassName = 'TcxLabelProperties'
- Properties.Alignment.Vert = taVCenter
- HeaderAlignmentHorz = taCenter
- HeaderAlignmentVert = vaCenter
- Width = 117
- end
- object Column16: TcxGridColumn
- Caption = #46028#48156#49464#48512#50976#54805
- PropertiesClassName = 'TcxLabelProperties'
- Properties.Alignment.Vert = taVCenter
- HeaderAlignmentHorz = taCenter
- HeaderAlignmentVert = vaCenter
- Width = 140
- end
- object Column05: TcxGridColumn
- Caption = #48156#49373' '#50948#52824' '#49444#47749
- PropertiesClassName = 'TcxLabelProperties'
- Properties.Alignment.Vert = taVCenter
- HeaderAlignmentHorz = taCenter
- HeaderAlignmentVert = vaCenter
- Options.Editing = False
- Width = 175
- end
- object Column09: TcxGridColumn
- Caption = #46028#48156' '#49345#54889' '#49444#47749
- PropertiesClassName = 'TcxLabelProperties'
- Properties.Alignment.Vert = taVCenter
- HeaderAlignmentHorz = taCenter
- HeaderAlignmentVert = vaCenter
- Options.Editing = False
- Width = 254
- end
- object Column10: TcxGridColumn
- Caption = #49548#53685' '#46321#44553
- PropertiesClassName = 'TcxLabelProperties'
- Properties.Alignment.Vert = taVCenter
- HeaderAlignmentHorz = taCenter
- HeaderAlignmentVert = vaCenter
- Options.Editing = False
- Width = 76
- end
- object Column11: TcxGridColumn
- Caption = #51228#48372#51088
- PropertiesClassName = 'TcxLabelProperties'
- Properties.Alignment.Vert = taVCenter
- HeaderAlignmentHorz = taCenter
- HeaderAlignmentVert = vaCenter
- Options.Editing = False
- Width = 98
- end
- object Column12: TcxGridColumn
- Caption = #46028#48156#49345#54889' '#54869#51064' '#48169#48277
- PropertiesClassName = 'TcxLabelProperties'
- Properties.Alignment.Vert = taVCenter
- HeaderAlignmentHorz = taCenter
- HeaderAlignmentVert = vaCenter
- Options.Editing = False
- Width = 120
- end
- object Column13: TcxGridColumn
- Caption = #49900#44033#46020
- PropertiesClassName = 'TcxLabelProperties'
- Properties.Alignment.Horz = taCenter
- Properties.Alignment.Vert = taVCenter
- HeaderAlignmentHorz = taCenter
- HeaderAlignmentVert = vaCenter
- Options.Editing = False
- Width = 74
- end
- object Column35: TcxGridColumn
- Caption = #46028#48156#49345#54889' '#54869#51064#51068#49884
- PropertiesClassName = 'TcxLabelProperties'
- Properties.Alignment.Horz = taCenter
- Properties.Alignment.Vert = taVCenter
- HeaderAlignmentHorz = taCenter
- HeaderAlignmentVert = vaCenter
- Width = 139
- end
- object Column17: TcxGridColumn
- Caption = #49884#51089' '#51068#49884
- PropertiesClassName = 'TcxLabelProperties'
- Properties.Alignment.Horz = taCenter
- Properties.Alignment.Vert = taVCenter
- HeaderAlignmentHorz = taCenter
- HeaderAlignmentVert = vaCenter
- Width = 137
- end
- object Column18: TcxGridColumn
- Caption = #51333#47308' '#50696#51221' '#51068#49884
- PropertiesClassName = 'TcxLabelProperties'
- Properties.Alignment.Horz = taCenter
- Properties.Alignment.Vert = taVCenter
- HeaderAlignmentHorz = taCenter
- HeaderAlignmentVert = vaCenter
- Width = 126
- end
- object Column36: TcxGridColumn
- Caption = #46028#48156#49345#54889' '#51333#47308' '#54869#51064#48169#48277
- PropertiesClassName = 'TcxLabelProperties'
- Properties.Alignment.Vert = taVCenter
- HeaderAlignmentHorz = taCenter
- HeaderAlignmentVert = vaCenter
- Width = 176
- end
- object Column37: TcxGridColumn
- Caption = #46028#48156#49345#54889' '#51333#47308#51068#49884
- PropertiesClassName = 'TcxLabelProperties'
- Properties.Alignment.Horz = taCenter
- Properties.Alignment.Vert = taVCenter
- HeaderAlignmentHorz = taCenter
- HeaderAlignmentVert = vaCenter
- Width = 153
- end
- object Column38: TcxGridColumn
- Caption = #52636#46041#51109#48708#45236#50857
- PropertiesClassName = 'TcxLabelProperties'
- Properties.Alignment.Vert = taVCenter
- HeaderAlignmentHorz = taCenter
- HeaderAlignmentVert = vaCenter
- Width = 146
- end
- object Column39: TcxGridColumn
- Caption = #52636#46041#51064#50896#49688
- PropertiesClassName = 'TcxLabelProperties'
- Properties.Alignment.Horz = taRightJustify
- Properties.Alignment.Vert = taVCenter
- HeaderAlignmentHorz = taCenter
- HeaderAlignmentVert = vaCenter
- Width = 101
- end
- object Column40: TcxGridColumn
- Caption = #48373#44396#45236#50857
- PropertiesClassName = 'TcxLabelProperties'
- Properties.Alignment.Vert = taVCenter
- HeaderAlignmentHorz = taCenter
- HeaderAlignmentVert = vaCenter
- Width = 170
- end
- object Column41: TcxGridColumn
- Caption = #48373#44396#44592#44036'('#48516')'
- PropertiesClassName = 'TcxLabelProperties'
- Properties.Alignment.Horz = taRightJustify
- Properties.Alignment.Vert = taVCenter
- HeaderAlignmentHorz = taCenter
- HeaderAlignmentVert = vaCenter
- Width = 94
- end
- object Column06: TcxGridColumn
- Caption = #44396#44036' ID'
- PropertiesClassName = 'TcxLabelProperties'
- Properties.Alignment.Horz = taCenter
- Properties.Alignment.Vert = taVCenter
- HeaderAlignmentHorz = taCenter
- HeaderAlignmentVert = vaCenter
- Options.Editing = False
- Width = 92
- end
- object Column07: TcxGridColumn
- Caption = 'X '#51340#54364
- PropertiesClassName = 'TcxLabelProperties'
- Properties.Alignment.Horz = taRightJustify
- Properties.Alignment.Vert = taVCenter
- HeaderAlignmentHorz = taCenter
- HeaderAlignmentVert = vaCenter
- Options.Editing = False
- Width = 90
- end
- object Column08: TcxGridColumn
- Caption = 'Y '#51340#54364
- PropertiesClassName = 'TcxLabelProperties'
- Properties.Alignment.Horz = taRightJustify
- Properties.Alignment.Vert = taVCenter
- HeaderAlignmentHorz = taCenter
- HeaderAlignmentVert = vaCenter
- Options.Editing = False
- Width = 80
- end
- object Column19: TcxGridColumn
- Caption = #48156#49373' '#52264#47196
- PropertiesClassName = 'TcxLabelProperties'
- Properties.Alignment.Horz = taRightJustify
- Properties.Alignment.Vert = taVCenter
- HeaderAlignmentHorz = taCenter
- HeaderAlignmentVert = vaCenter
- Width = 73
- end
- object Column20: TcxGridColumn
- Caption = #52264#45800' '#52264#47196
- PropertiesClassName = 'TcxLabelProperties'
- Properties.Alignment.Horz = taRightJustify
- Properties.Alignment.Vert = taVCenter
- HeaderAlignmentHorz = taCenter
- HeaderAlignmentVert = vaCenter
- Width = 70
- end
- object Column21: TcxGridColumn
- Caption = #51648#52404' '#44600#51060
- PropertiesClassName = 'TcxLabelProperties'
- Properties.Alignment.Horz = taRightJustify
- Properties.Alignment.Vert = taVCenter
- HeaderAlignmentHorz = taCenter
- HeaderAlignmentVert = vaCenter
- Width = 80
- end
- object Column22: TcxGridColumn
- Caption = #46028#48156#49345#54889' '#44600#51060
- PropertiesClassName = 'TcxLabelProperties'
- Properties.Alignment.Horz = taRightJustify
- Properties.Alignment.Vert = taVCenter
- HeaderAlignmentHorz = taCenter
- HeaderAlignmentVert = vaCenter
- Width = 80
- end
- object Column23: TcxGridColumn
- Caption = #49548#54805' '#52264#47049' '#45824#49688
- PropertiesClassName = 'TcxLabelProperties'
- Properties.Alignment.Horz = taRightJustify
- Properties.Alignment.Vert = taVCenter
- HeaderAlignmentHorz = taCenter
- HeaderAlignmentVert = vaCenter
- Width = 95
- end
- object Column24: TcxGridColumn
- Caption = #51473#45824#54805' '#52264#47049' '#45824#49688
- PropertiesClassName = 'TcxLabelProperties'
- Properties.Alignment.Horz = taRightJustify
- Properties.Alignment.Vert = taVCenter
- HeaderAlignmentHorz = taCenter
- HeaderAlignmentVert = vaCenter
- Width = 109
- end
- object Column25: TcxGridColumn
- Caption = #48512#49345#51088
- PropertiesClassName = 'TcxLabelProperties'
- Properties.Alignment.Horz = taRightJustify
- Properties.Alignment.Vert = taVCenter
- HeaderAlignmentHorz = taCenter
- HeaderAlignmentVert = vaCenter
- Width = 63
- end
- object Column26: TcxGridColumn
- Caption = #49324#47581#51088
- PropertiesClassName = 'TcxLabelProperties'
- Properties.Alignment.Horz = taRightJustify
- Properties.Alignment.Vert = taVCenter
- HeaderAlignmentHorz = taCenter
- HeaderAlignmentVert = vaCenter
- Width = 64
- end
- object Column27: TcxGridColumn
- Caption = #44592#49345' '#49345#53468
- PropertiesClassName = 'TcxLabelProperties'
- Properties.Alignment.Vert = taVCenter
- HeaderAlignmentHorz = taCenter
- HeaderAlignmentVert = vaCenter
- Width = 99
- end
- object Column28: TcxGridColumn
- Caption = #45824#51025#49688#51456
- PropertiesClassName = 'TcxLabelProperties'
- Properties.Alignment.Horz = taCenter
- Properties.Alignment.Vert = taVCenter
- HeaderAlignmentHorz = taCenter
- HeaderAlignmentVert = vaCenter
- Width = 89
- end
- object Column29: TcxGridColumn
- Caption = 'UTIS'#50672#44228#50668#48512
- PropertiesClassName = 'TcxLabelProperties'
- Properties.Alignment.Horz = taCenter
- Properties.Alignment.Vert = taVCenter
- HeaderAlignmentHorz = taCenter
- HeaderAlignmentVert = vaCenter
- Width = 84
- end
- object Column30: TcxGridColumn
- Caption = #44256#51109#52264#47049#50668#48512
- PropertiesClassName = 'TcxLabelProperties'
- Properties.Alignment.Horz = taCenter
- Properties.Alignment.Vert = taVCenter
- HeaderAlignmentHorz = taCenter
- HeaderAlignmentVert = vaCenter
- Width = 77
- end
- object Column31: TcxGridColumn
- Caption = #45209#54616#47932#50668#48512
- PropertiesClassName = 'TcxLabelProperties'
- Properties.Alignment.Horz = taCenter
- Properties.Alignment.Vert = taVCenter
- HeaderAlignmentHorz = taCenter
- HeaderAlignmentVert = vaCenter
- Width = 82
- end
- object Column32: TcxGridColumn
- Caption = #54868#51116#50948#54744#47932#50668#48512
- PropertiesClassName = 'TcxLabelProperties'
- Properties.Alignment.Horz = taCenter
- Properties.Alignment.Vert = taVCenter
- HeaderAlignmentHorz = taCenter
- HeaderAlignmentVert = vaCenter
- Width = 89
- end
- object Column33: TcxGridColumn
- Caption = #53685#54665#51228#54620#50976#54805
- PropertiesClassName = 'TcxLabelProperties'
- Properties.Alignment.Horz = taCenter
- Properties.Alignment.Vert = taVCenter
- HeaderAlignmentHorz = taCenter
- HeaderAlignmentVert = vaCenter
- Width = 77
- end
- object Column34: TcxGridColumn
- Caption = 'VMS'#54364#52636#50668#48512
- PropertiesClassName = 'TcxLabelProperties'
- Properties.Alignment.Horz = taCenter
- Properties.Alignment.Vert = taVCenter
- HeaderAlignmentHorz = taCenter
- HeaderAlignmentVert = vaCenter
- Width = 73
- end
- object Column99: TcxGridColumn
- Caption = #47700#47784#47532
- DataBinding.ValueType = 'Integer'
- PropertiesClassName = 'TcxCalcEditProperties'
- Properties.Alignment.Horz = taRightJustify
- Properties.Alignment.Vert = taVCenter
- Visible = False
- HeaderAlignmentHorz = taCenter
- HeaderAlignmentVert = vaCenter
- end
- end
- object GlList: TcxGridLevel
- GridView = TvList
- end
- end
- end
- end
- object lblFileName: TcxLabel
- Left = 30
- Top = 209
- Caption = #46028#48156#51221#48372
- Transparent = True
- Visible = False
- end
- end
|