FRAME_IncidentEndF.dfm 66 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860
  1. object FRAMEIncidentEnd: TFRAMEIncidentEnd
  2. Left = 0
  3. Top = 0
  4. Width = 1377
  5. Height = 880
  6. Font.Charset = DEFAULT_CHARSET
  7. Font.Color = clWindowText
  8. Font.Height = -13
  9. Font.Name = #47569#51008' '#44256#46357
  10. Font.Style = []
  11. ParentFont = False
  12. TabOrder = 0
  13. object cxGroupBox2: TcxGroupBox
  14. Left = 0
  15. Top = 392
  16. Align = alBottom
  17. Caption = #9654' '#49888#44508' '#46028#48156' '#51221#48372' '#51077#47141
  18. PanelStyle.Active = True
  19. Style.TextStyle = [fsBold]
  20. TabOrder = 0
  21. Height = 488
  22. Width = 1377
  23. object PnlTitle: TPanel
  24. Left = 2
  25. Top = 2
  26. Width = 1373
  27. Height = 24
  28. Align = alTop
  29. Alignment = taLeftJustify
  30. Caption = ' '#9654' '#46028#48156' '#51333#47308' '#51221#48372' '#51077#47141
  31. Color = 33023
  32. ParentBackground = False
  33. TabOrder = 0
  34. end
  35. object cxGroupBox3: TcxGroupBox
  36. Left = 2
  37. Top = 26
  38. Align = alTop
  39. Caption = #46028#48156' '#44592#48376#51221#48372
  40. Enabled = False
  41. TabOrder = 1
  42. Height = 68
  43. Width = 1373
  44. object ImgDesc01: TImage
  45. Left = 15
  46. Top = 35
  47. Width = 9
  48. Height = 9
  49. Transparent = True
  50. end
  51. object ImgDesc02: TImage
  52. Left = 265
  53. Top = 35
  54. Width = 9
  55. Height = 9
  56. Transparent = True
  57. end
  58. object ImgDesc03: TImage
  59. Left = 537
  60. Top = 35
  61. Width = 9
  62. Height = 9
  63. Transparent = True
  64. end
  65. object cxLabel1: TcxLabel
  66. Left = 27
  67. Top = 29
  68. AutoSize = False
  69. Caption = #46028#48156' ID'
  70. Properties.Alignment.Horz = taRightJustify
  71. Properties.Alignment.Vert = taVCenter
  72. Transparent = True
  73. Height = 21
  74. Width = 85
  75. AnchorX = 112
  76. AnchorY = 40
  77. end
  78. object EdINCD_OCRR_ID: TcxTextEdit
  79. Left = 115
  80. Top = 28
  81. Properties.Alignment.Horz = taCenter
  82. Properties.Alignment.Vert = taVCenter
  83. Properties.ReadOnly = True
  84. TabOrder = 0
  85. Width = 130
  86. end
  87. object cxLabel2: TcxLabel
  88. Left = 277
  89. Top = 29
  90. Caption = #46321#47197#51068#49884
  91. Transparent = True
  92. end
  93. object EdRGST_DT: TcxTextEdit
  94. Left = 337
  95. Top = 29
  96. Properties.Alignment.Horz = taCenter
  97. Properties.Alignment.Vert = taVCenter
  98. Properties.ReadOnly = True
  99. TabOrder = 2
  100. Width = 185
  101. end
  102. object cxLabel3: TcxLabel
  103. Left = 549
  104. Top = 29
  105. Caption = #46028#48156#44396#48516
  106. Transparent = True
  107. end
  108. object CbINCD_ORGN_CD: TcxComboBox
  109. Left = 610
  110. Top = 29
  111. Cursor = crHandPoint
  112. Properties.Alignment.Vert = taVCenter
  113. Properties.DropDownListStyle = lsFixedList
  114. Properties.DropDownSizeable = True
  115. TabOrder = 4
  116. Width = 195
  117. end
  118. object cxLabel46: TcxLabel
  119. Left = 243
  120. Top = 29
  121. Caption = #9733
  122. Style.TextColor = clOlive
  123. Transparent = True
  124. end
  125. object EdRegDt: TcxTextEdit
  126. Left = 843
  127. Top = 29
  128. Properties.Alignment.Horz = taCenter
  129. Properties.Alignment.Vert = taVCenter
  130. Properties.ReadOnly = True
  131. TabOrder = 7
  132. Visible = False
  133. Width = 185
  134. end
  135. object EdLinkId: TcxTextEdit
  136. Left = 1049
  137. Top = 25
  138. Properties.Alignment.Horz = taCenter
  139. Properties.Alignment.Vert = taVCenter
  140. Properties.ReadOnly = True
  141. TabOrder = 8
  142. Visible = False
  143. Width = 185
  144. end
  145. end
  146. object Panel1: TPanel
  147. Left = 2
  148. Top = 447
  149. Width = 1373
  150. Height = 39
  151. Align = alBottom
  152. BevelOuter = bvNone
  153. TabOrder = 2
  154. DesignSize = (
  155. 1373
  156. 39)
  157. object BtnSave: TcxButton
  158. Left = 1269
  159. Top = 8
  160. Width = 95
  161. Height = 25
  162. Cursor = crHandPoint
  163. Hint = #46028#48156' '#51333#47308#51221#48372#47484' '#46321#47197#54633#45768#45796'.'
  164. Anchors = [akRight, akBottom]
  165. Caption = #46028#48156#51333#47308
  166. LookAndFeel.NativeStyle = False
  167. TabOrder = 0
  168. Font.Charset = DEFAULT_CHARSET
  169. Font.Color = clWindowText
  170. Font.Height = -13
  171. Font.Name = #47569#51008' '#44256#46357
  172. Font.Style = [fsBold]
  173. ParentFont = False
  174. OnClick = BtnSaveClick
  175. end
  176. object cxLabel10: TcxLabel
  177. Left = 12
  178. Top = 9
  179. Caption = #9733
  180. Style.TextColor = clRed
  181. Transparent = True
  182. end
  183. object cxLabel11: TcxLabel
  184. Left = 30
  185. Top = 10
  186. Caption = #54364#49884#54637#47785#51008' '#54596#49688' '#51077#47141' '#54637#47785#51077#45768#45796'.'
  187. StyleDisabled.BorderColor = cl3DLight
  188. Transparent = True
  189. end
  190. object BtnInfoCancel: TcxButton
  191. Tag = 5
  192. Left = 1169
  193. Top = 8
  194. Width = 95
  195. Height = 25
  196. Cursor = crHandPoint
  197. Hint = #54868#47732#51012' '#52488#44592#54868' '#54633#45768#45796'.'
  198. Anchors = [akRight, akBottom]
  199. Caption = #52488#44592#54868
  200. Colors.Default = 10737865
  201. Glyph.Data = {
  202. B6030000424DB603000000000000360000002800000012000000100000000100
  203. 1800000000008003000012170000121700000000000000000000C0C0C0C0C0C0
  204. C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0
  205. C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C00000C0C0C0C0C0C0C0C0C0C0C0C0C0C0
  206. C0C0C0C09F9F9F7878787878787878787878789F9F9FC0C0C0B9B9B978787878
  207. 7878A5A5A5C0C0C00000C0C0C0C0C0C0C0C0C0C0C0C0B9B9B978787841414100
  208. 0000000000000000000000414141ACACAC737373000000363636A5A5A5C0C0C0
  209. 0000C0C0C0C0C0C0C0C0C0A5A5A54A47477B6359B28F81F6C6B2F6C6B2F6C6B2
  210. D0A899846B624E474580685EB39081454545B1B1B1C0C0C00000C0C0C0C0C0C0
  211. 989898202020DFB3A1F6C6B2F6C6B2F6C6B22C24202C2320F6C6B2F6C6B2F6C6
  212. B2F6C6B2B39081454545B1B1B1C0C0C00000C0C0C0C0C0C0575757B28F81F6C6
  213. B2F6C6B2866C610000009D9D9D9D9D9D000000866B61F6C6B2F6C6B2B3908145
  214. 4545B1B1B1C0C0C00000C0C0C0C0C0C0575757B28F81F6C6B2B29081575757C0
  215. C0C0C0C0C09D9D9D594740F6C6B2F6C6B2F6C6B2B39081454545B1B1B1C0C0C0
  216. 0000C0C0C0C0C0C0C0C0C07A7A7A625F5F73625A8B8B8BC0C0C0C0C0C064605E
  217. 7B63597B63597B63597B63595948404E4E4EB8B8B8C0C0C00000C0C0C0C0C0C0
  218. C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0
  219. C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C00000C0C0C0C0C0C0C0C0C08B8B8B7878
  220. 78787878787878787878787878BFBFBFC0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0
  221. C0C0C0C0C0C0C0C00000C0C0C0C0C0C057575700000000000000000000000000
  222. 0000626262BFBFBFC0C0C0C0C0C03434346D6D6D8B8B8BC0C0C0C0C0C0C0C0C0
  223. 0000C0C0C0C0C0C0575757B28F81F6C6B2F6C6B2F6C6B2A78779474341A2A2A2
  224. B2B2B2464646B28F81866C61695850575757A5A5A5C0C0C00000C0C0C0C0C0C0
  225. 575757B28F81F6C6B2F6C6B2866C61000000626262626262000000866B61F6C6
  226. B2F6C6B2B39081575757C0C0C0C0C0C00000C0C0C0C0C0C0575757B28F81F6C6
  227. B2F6C6B2F6C6B2F6C6B22C24202C2320F6C6B2F6C6B2F6C6B2DFB4A1343434C0
  228. C0C0C0C0C0C0C0C00000C0C0C0C0C0C0575757B28F81E0B4A2453833F6C6B2F6
  229. C6B2F6C6B2F6C6B2F6C6B2F6C6B2F6C6B2272321C0C0C0C0C0C0C0C0C0C0C0C0
  230. 0000C0C0C0C0C0C05757575947406A6867A5A5A53D3C3D5545407B63597B6359
  231. 7B63596B615C606060B7B7B7C0C0C0C0C0C0C0C0C0C0C0C00000}
  232. LookAndFeel.NativeStyle = False
  233. TabOrder = 3
  234. Font.Charset = DEFAULT_CHARSET
  235. Font.Color = clBlack
  236. Font.Height = -13
  237. Font.Name = #47569#51008' '#44256#46357
  238. Font.Style = [fsBold]
  239. ParentFont = False
  240. OnClick = BtnInfoCancelClick
  241. end
  242. object BtnMoveGis: TcxButton
  243. Left = 950
  244. Top = 8
  245. Width = 95
  246. Height = 25
  247. Cursor = crHandPoint
  248. Anchors = [akRight, akBottom]
  249. Caption = #50948#52824#48372#44592
  250. Colors.Default = 10737865
  251. Glyph.Data = {
  252. 36040000424D3604000000000000360000002800000010000000100000000100
  253. 2000000000000004000000000000000000000000000000000000FF00FF00FF00
  254. FF00FF00FF00FF00FF00D007CB38AE308094AE5246CEB6652EE6D3A19EE8CB8C
  255. A8D4B5448CA0CA0CC444CA06CA3BF000F00FFF00FF00FF00FF00FF00FF00FF00
  256. FF00F800F807AE29878BBB6F0DF9C17800FFC68000FFDAA84CFFFAEBE2FFFFED
  257. E1FFDDC1A5FF826237FF666264FC663268CAC704C73CFF00FF00FF00FF00F800
  258. F807AF4175A9BD7100FFCC8A05FFD99D1AFFE1AB2BFFF9E0B1FFECE0D3FFAFA5
  259. 99FF807E7EFFB2B5B9FFFDFEFEFFEDEDEDFF7F787FF88F118F81FF00FF00B834
  260. AC81C07702FFCF8D06FFE6BB5EFFF9E7C5FFFFF5D8FFC7C1B6FF8B8988FF9091
  261. 92FFCDCECFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF807681F5DD05DC27D09A
  262. 68F5CA8602FFDFA725FFFBEBCDFFFFF9EEFFFFFDEEFFBEBBB1FFA6A4A2FF7B7B
  263. 7BFFE9E9E9FFFFFFFFFFFFFFFFFFFFFFFFFFF5F5F5FF8A418AB6B933AC7FC37C
  264. 09FFD59812FFEBB832FFFBE9BAFFFEF8F0FFFFF7ECFFFFFFFCFFACA8A1FFACAD
  265. AEFFD1D1D2FFFDFDFDFFFFFFFFFFFFFFFFFFB7B4B1FFA1378B9FB95D88B9C680
  266. 01FFDEA41FFFF2C441FFF8D477FFFDEDD0FFFFFCF1FFD9D3C5FFA6A5A3FF9091
  267. 94FF939497FFA6A7ABFFB8B9BCFFC6C8C9FF9D8C71FFB66252D4BB6B67D3C884
  268. 00FFE2AA25FFF4C94DFFF7D277FFFBE5B8FFFFFCEEFFB9B5ADFF9FA0A3FFBCB7
  269. ABFFCEC7B9FFABA494FFA09B93FFBEB6AEFFEBD4BBFFBB6C32E8B55E55D1C984
  270. 03FFE2AA25FFF4C84BFFF7D47BFFF9DEA4FFFDF2DDFFFAF8F6FFEBEAE9FFFFFD
  271. F1FFFFF9E4FFFFF0C7FFFFF7E1FFFFF1E0FFF5E2D1FFC58567E7B0486FB2C580
  272. 00FFDCA21CFFF1C33FFFF7D16FFFF8DA96FFFBE8C1FFFEF2DAFFFFF8E8FFFFFA
  273. F3FFFEF7EBFFFDF4E2FFFDF2DFFFF8E9D6FFF3DFD0FFCC8EB1D1B825A873BD71
  274. 00FFD49818FFEAB937FFF5CB50FFF7D275FFF8DA94FFFAE4B5FFFDF4E2FFFFF7
  275. E9FFFEF6E9FFFDF4E0FFFBEEDBFFF6E5D5FFF0D9CBFFBA48AA95E502E51CCA91
  276. 75EBE6C492FFEBC779FFEEC149FFFBE1A0FFF8DA90FFF7D173FFF9DC95FFFADE
  277. 99FFFCF0D5FFFCF0DDFFF8E8D6FFF4E1D3FFE7CABEFAD509D434FF00FF00BE27
  278. BA6BF1DCD6FFEBCFAAFFE3B655FFF0D18BFFFDEED6FFF7D577FFF4C94EFFF2C8
  279. 53FFF8E3B8FFF8E9DCFFF5E4D7FFEACEB7FFB73CA68BFF00FF00FF00FF00FF00
  280. FF00BC47B68EE7C6A5FFE1B978FFE6BE73FFE8C37AFFE3B03BFFDFA517FFDDA7
  281. 2AFFF1DABCFFF6E6DDFFECD2C0FFBB59A0A9F700F708FF00FF00FF00FF00FF00
  282. FF00FF00FF00BD29B96DDBB0C1E6EACEB5FFDAAA5CFFCE8E16FFCC8B10FFD6A1
  283. 46FFE6C6A5FFCE997AF0B630A182FA00FA05FF00FF00FF00FF00FF00FF00FF00
  284. FF00FF00FF00FF00FF00E502E41DB926AC72B95A95B0BD6E77D0B35C4CD3B759
  285. 8AB6B830A87EDB05DA29FF00FF00FF00FF00FF00FF00FF00FF00}
  286. LookAndFeel.NativeStyle = False
  287. TabOrder = 4
  288. Font.Charset = DEFAULT_CHARSET
  289. Font.Color = clBlack
  290. Font.Height = -13
  291. Font.Name = #47569#51008' '#44256#46357
  292. Font.Style = [fsBold]
  293. ParentFont = False
  294. OnClick = BtnMoveGisClick
  295. end
  296. end
  297. object cxGroupBox4: TcxGroupBox
  298. Left = 2
  299. Top = 94
  300. Align = alTop
  301. Caption = #46028#48156' '#49345#54889#51221#48372
  302. Enabled = False
  303. TabOrder = 3
  304. Height = 128
  305. Width = 1373
  306. object ImgDesc04: TImage
  307. Left = 15
  308. Top = 35
  309. Width = 9
  310. Height = 9
  311. Transparent = True
  312. end
  313. object ImgDesc05: TImage
  314. Left = 15
  315. Top = 64
  316. Width = 9
  317. Height = 9
  318. Transparent = True
  319. end
  320. object ImgDesc06: TImage
  321. Left = 15
  322. Top = 94
  323. Width = 9
  324. Height = 9
  325. Transparent = True
  326. end
  327. object ImgDesc15: TImage
  328. Left = 657
  329. Top = 35
  330. Width = 9
  331. Height = 9
  332. Transparent = True
  333. end
  334. object ImgDesc16: TImage
  335. Left = 657
  336. Top = 64
  337. Width = 9
  338. Height = 9
  339. Transparent = True
  340. end
  341. object ImgDesc40: TImage
  342. Left = 334
  343. Top = 94
  344. Width = 9
  345. Height = 9
  346. Transparent = True
  347. end
  348. object cxLabel4: TcxLabel
  349. Left = 27
  350. Top = 29
  351. AutoSize = False
  352. Caption = #48156#49373#50948#52824#49444#47749
  353. Properties.Alignment.Horz = taRightJustify
  354. Properties.Alignment.Vert = taVCenter
  355. Transparent = True
  356. Height = 21
  357. Width = 85
  358. AnchorX = 112
  359. AnchorY = 40
  360. end
  361. object EdOCRR_LCTN_NM: TcxTextEdit
  362. Left = 115
  363. Top = 27
  364. Properties.Alignment.Vert = taVCenter
  365. Properties.ReadOnly = True
  366. TabOrder = 0
  367. Width = 407
  368. end
  369. object cxLabel5: TcxLabel
  370. Left = 27
  371. Top = 58
  372. AutoSize = False
  373. Caption = #46028#48156#49345#54889#49444#47749
  374. Properties.Alignment.Horz = taRightJustify
  375. Properties.Alignment.Vert = taVCenter
  376. Transparent = True
  377. Height = 21
  378. Width = 85
  379. AnchorX = 112
  380. AnchorY = 69
  381. end
  382. object EdINCD_EXPL: TcxTextEdit
  383. Left = 115
  384. Top = 58
  385. Properties.Alignment.Vert = taVCenter
  386. Properties.ReadOnly = True
  387. TabOrder = 1
  388. Width = 498
  389. end
  390. object cxLabel6: TcxLabel
  391. Left = 27
  392. Top = 88
  393. AutoSize = False
  394. Caption = #49548#53685#49345#54889
  395. Properties.Alignment.Horz = taRightJustify
  396. Properties.Alignment.Vert = taVCenter
  397. Transparent = True
  398. Height = 21
  399. Width = 85
  400. AnchorX = 112
  401. AnchorY = 99
  402. end
  403. object CbCMTR_GRAD_CD: TcxComboBox
  404. Left = 115
  405. Top = 88
  406. Cursor = crHandPoint
  407. Properties.Alignment.Vert = taVCenter
  408. Properties.DropDownListStyle = lsFixedList
  409. Properties.DropDownSizeable = True
  410. Properties.ReadOnly = True
  411. TabOrder = 2
  412. Width = 185
  413. end
  414. object cxLabel21: TcxLabel
  415. Left = 672
  416. Top = 29
  417. AutoSize = False
  418. Caption = #48156#49373#44396#44036'('#47553#53356')'
  419. Properties.Alignment.Horz = taRightJustify
  420. Properties.Alignment.Vert = taVCenter
  421. Transparent = True
  422. Height = 21
  423. Width = 92
  424. AnchorX = 764
  425. AnchorY = 40
  426. end
  427. object EdLINK_ID: TcxTextEdit
  428. Left = 768
  429. Top = 27
  430. Properties.Alignment.Vert = taVCenter
  431. Properties.ReadOnly = True
  432. TabOrder = 5
  433. Width = 437
  434. end
  435. object cxLabel22: TcxLabel
  436. Left = 672
  437. Top = 58
  438. AutoSize = False
  439. Caption = #48156#49373#51340#54364'(X/Y)'
  440. Properties.Alignment.Horz = taRightJustify
  441. Properties.Alignment.Vert = taVCenter
  442. Transparent = True
  443. Height = 21
  444. Width = 92
  445. AnchorX = 764
  446. AnchorY = 69
  447. end
  448. object cxLabel23: TcxLabel
  449. Left = 980
  450. Top = 59
  451. Caption = '/'
  452. Transparent = True
  453. end
  454. object SePosX: TcxSpinEdit
  455. Left = 768
  456. Top = 58
  457. Properties.Alignment.Horz = taRightJustify
  458. Properties.Alignment.Vert = taVCenter
  459. Properties.DisplayFormat = '##0.######0'
  460. Properties.EditFormat = '##0.######0'
  461. Properties.MaxValue = 9999999999.000000000000000000
  462. Properties.ReadOnly = True
  463. Properties.SpinButtons.Visible = False
  464. Properties.ValueType = vtFloat
  465. Style.LookAndFeel.Kind = lfUltraFlat
  466. Style.LookAndFeel.NativeStyle = False
  467. Style.TextStyle = []
  468. Style.ButtonStyle = btsUltraFlat
  469. StyleDisabled.LookAndFeel.Kind = lfUltraFlat
  470. StyleDisabled.LookAndFeel.NativeStyle = False
  471. StyleFocused.LookAndFeel.Kind = lfUltraFlat
  472. StyleFocused.LookAndFeel.NativeStyle = False
  473. StyleFocused.TextStyle = [fsBold]
  474. StyleHot.LookAndFeel.Kind = lfUltraFlat
  475. StyleHot.LookAndFeel.NativeStyle = False
  476. TabOrder = 10
  477. Width = 206
  478. end
  479. object SePosY: TcxSpinEdit
  480. Left = 995
  481. Top = 58
  482. Properties.Alignment.Horz = taRightJustify
  483. Properties.Alignment.Vert = taVCenter
  484. Properties.DisplayFormat = '##0.######0'
  485. Properties.EditFormat = '##0.######0'
  486. Properties.MaxValue = 9999999999.000000000000000000
  487. Properties.ReadOnly = True
  488. Properties.SpinButtons.Visible = False
  489. Properties.ValueType = vtFloat
  490. Style.LookAndFeel.Kind = lfUltraFlat
  491. Style.LookAndFeel.NativeStyle = False
  492. Style.TextStyle = []
  493. Style.ButtonStyle = btsUltraFlat
  494. StyleDisabled.LookAndFeel.Kind = lfUltraFlat
  495. StyleDisabled.LookAndFeel.NativeStyle = False
  496. StyleFocused.LookAndFeel.Kind = lfUltraFlat
  497. StyleFocused.LookAndFeel.NativeStyle = False
  498. StyleFocused.TextStyle = [fsBold]
  499. StyleHot.LookAndFeel.Kind = lfUltraFlat
  500. StyleHot.LookAndFeel.NativeStyle = False
  501. TabOrder = 11
  502. Width = 210
  503. end
  504. object CbRESP_LVL_CD: TcxComboBox
  505. Left = 433
  506. Top = 89
  507. Cursor = crHandPoint
  508. Properties.Alignment.Vert = taVCenter
  509. Properties.DropDownListStyle = lsFixedList
  510. Properties.DropDownSizeable = True
  511. Properties.ReadOnly = True
  512. TabOrder = 12
  513. Width = 180
  514. end
  515. object cxLabel19: TcxLabel
  516. Left = 345
  517. Top = 88
  518. AutoSize = False
  519. Caption = #45824#51025#49688#51456
  520. Properties.Alignment.Horz = taRightJustify
  521. Properties.Alignment.Vert = taVCenter
  522. Transparent = True
  523. Height = 21
  524. Width = 85
  525. AnchorX = 430
  526. AnchorY = 99
  527. end
  528. end
  529. object cxGroupBox5: TcxGroupBox
  530. Left = 2
  531. Top = 350
  532. Align = alClient
  533. Caption = #46028#48156' '#51333#47308' '#51221#48372
  534. TabOrder = 4
  535. Height = 97
  536. Width = 1373
  537. object ImgDesc19: TImage
  538. Left = 15
  539. Top = 31
  540. Width = 9
  541. Height = 9
  542. Transparent = True
  543. end
  544. object ImgDesc20: TImage
  545. Left = 334
  546. Top = 31
  547. Width = 9
  548. Height = 9
  549. Transparent = True
  550. end
  551. object ImgDesc25: TImage
  552. Left = 334
  553. Top = 59
  554. Width = 9
  555. Height = 9
  556. Transparent = True
  557. end
  558. object cxLabel33: TcxLabel
  559. Left = 27
  560. Top = 25
  561. AutoSize = False
  562. Caption = #51333#47308#54869#51064#48169#48277
  563. Properties.Alignment.Horz = taRightJustify
  564. Properties.Alignment.Vert = taVCenter
  565. Transparent = True
  566. Height = 21
  567. Width = 85
  568. AnchorX = 112
  569. AnchorY = 36
  570. end
  571. object cxLabel34: TcxLabel
  572. Left = 27
  573. Top = 53
  574. AutoSize = False
  575. Caption = #46028#48156#51333#47308#49884#44033
  576. Properties.Alignment.Horz = taRightJustify
  577. Properties.Alignment.Vert = taVCenter
  578. Transparent = True
  579. Height = 21
  580. Width = 85
  581. AnchorX = 112
  582. AnchorY = 64
  583. end
  584. object cxLabel36: TcxLabel
  585. Left = 798
  586. Top = 53
  587. AutoSize = False
  588. Caption = #48373#44396#49884#44036'('#48516')'
  589. Properties.Alignment.Horz = taRightJustify
  590. Properties.Alignment.Vert = taVCenter
  591. Transparent = True
  592. Height = 21
  593. Width = 80
  594. AnchorX = 878
  595. AnchorY = 64
  596. end
  597. object cxLabel39: TcxLabel
  598. Left = 798
  599. Top = 25
  600. AutoSize = False
  601. Caption = #52636#46041#51064#50896#49688
  602. Properties.Alignment.Horz = taRightJustify
  603. Properties.Alignment.Vert = taVCenter
  604. Transparent = True
  605. Height = 21
  606. Width = 80
  607. AnchorX = 878
  608. AnchorY = 36
  609. end
  610. object cxLabel40: TcxLabel
  611. Left = 345
  612. Top = 25
  613. AutoSize = False
  614. Caption = #52636#46041#51109#48708#45236#50669
  615. Properties.Alignment.Horz = taRightJustify
  616. Properties.Alignment.Vert = taVCenter
  617. Transparent = True
  618. Height = 21
  619. Width = 85
  620. AnchorX = 430
  621. AnchorY = 36
  622. end
  623. object cxLabel44: TcxLabel
  624. Left = 345
  625. Top = 53
  626. AutoSize = False
  627. Caption = #46028#48156#48373#44396#45236#50669
  628. Properties.Alignment.Horz = taRightJustify
  629. Properties.Alignment.Vert = taVCenter
  630. Transparent = True
  631. Height = 21
  632. Width = 85
  633. AnchorX = 430
  634. AnchorY = 64
  635. end
  636. object CbINCD_END_CNFM_MTHD_CD: TcxComboBox
  637. Left = 115
  638. Top = 24
  639. Cursor = crHandPoint
  640. Properties.Alignment.Vert = taVCenter
  641. Properties.DropDownListStyle = lsFixedList
  642. Properties.DropDownSizeable = True
  643. TabOrder = 6
  644. Width = 185
  645. end
  646. object DtINCD_END_DT: TcxDateEdit
  647. Left = 115
  648. Top = 55
  649. Properties.Alignment.Horz = taCenter
  650. Properties.Alignment.Vert = taVCenter
  651. Properties.DateButtons = [btnNow]
  652. Properties.DateOnError = deToday
  653. Properties.ImmediatePost = True
  654. Properties.Kind = ckDateTime
  655. Properties.ReadOnly = False
  656. TabOrder = 7
  657. Width = 185
  658. end
  659. object EdMBLZ_EQPM_CONT: TcxTextEdit
  660. Left = 433
  661. Top = 24
  662. Properties.Alignment.Vert = taVCenter
  663. TabOrder = 8
  664. Width = 360
  665. end
  666. object SeMBLZ_PNUM: TcxSpinEdit
  667. Left = 881
  668. Top = 24
  669. TabOrder = 9
  670. Width = 49
  671. end
  672. object EdRECR_CONT: TcxTextEdit
  673. Left = 433
  674. Top = 55
  675. Properties.Alignment.Vert = taVCenter
  676. TabOrder = 10
  677. Width = 360
  678. end
  679. object SeRECR_PERD: TcxSpinEdit
  680. Left = 881
  681. Top = 55
  682. TabOrder = 11
  683. Width = 49
  684. end
  685. object cxLabel12: TcxLabel
  686. Left = 298
  687. Top = 26
  688. Caption = #9733
  689. Style.TextColor = clRed
  690. Transparent = True
  691. end
  692. object cxLabel13: TcxLabel
  693. Left = 298
  694. Top = 57
  695. Caption = #9733
  696. Style.TextColor = clRed
  697. Transparent = True
  698. end
  699. end
  700. object Panel2: TPanel
  701. Left = 2
  702. Top = 222
  703. Width = 1373
  704. Height = 128
  705. Align = alTop
  706. BevelOuter = bvNone
  707. TabOrder = 5
  708. object cxGroupBox7: TcxGroupBox
  709. Left = 0
  710. Top = 0
  711. Align = alClient
  712. Caption = #46028#48156' '#54869#51064#51221#48372
  713. Enabled = False
  714. TabOrder = 0
  715. Height = 128
  716. Width = 1112
  717. object ImgDesc07: TImage
  718. Left = 15
  719. Top = 35
  720. Width = 9
  721. Height = 9
  722. Transparent = True
  723. end
  724. object ImgDesc08: TImage
  725. Left = 15
  726. Top = 64
  727. Width = 9
  728. Height = 9
  729. Transparent = True
  730. end
  731. object ImgDesc09: TImage
  732. Left = 15
  733. Top = 94
  734. Width = 9
  735. Height = 9
  736. Transparent = True
  737. end
  738. object ImgDesc10: TImage
  739. Left = 334
  740. Top = 35
  741. Width = 9
  742. Height = 9
  743. Transparent = True
  744. end
  745. object ImgDesc11: TImage
  746. Left = 334
  747. Top = 64
  748. Width = 9
  749. Height = 9
  750. Transparent = True
  751. end
  752. object ImgDesc13: TImage
  753. Left = 634
  754. Top = 35
  755. Width = 9
  756. Height = 9
  757. Transparent = True
  758. end
  759. object ImgDesc14: TImage
  760. Left = 634
  761. Top = 64
  762. Width = 9
  763. Height = 9
  764. Transparent = True
  765. end
  766. object ImgDesc17: TImage
  767. Left = 334
  768. Top = 94
  769. Width = 9
  770. Height = 9
  771. Transparent = True
  772. end
  773. object ImgDesc24: TImage
  774. Left = 939
  775. Top = 35
  776. Width = 9
  777. Height = 9
  778. Transparent = True
  779. Visible = False
  780. end
  781. object cxLabel7: TcxLabel
  782. Left = 27
  783. Top = 29
  784. AutoSize = False
  785. Caption = #51228#48372#51088#47749
  786. Properties.Alignment.Horz = taRightJustify
  787. Properties.Alignment.Vert = taVCenter
  788. Transparent = True
  789. Height = 21
  790. Width = 85
  791. AnchorX = 112
  792. AnchorY = 40
  793. end
  794. object cxLabel8: TcxLabel
  795. Left = 27
  796. Top = 58
  797. AutoSize = False
  798. Caption = #54869#51064#48169#48277
  799. Properties.Alignment.Horz = taRightJustify
  800. Properties.Alignment.Vert = taVCenter
  801. Transparent = True
  802. Height = 21
  803. Width = 85
  804. AnchorX = 112
  805. AnchorY = 69
  806. end
  807. object cxLabel9: TcxLabel
  808. Left = 27
  809. Top = 88
  810. AutoSize = False
  811. Caption = #49900#44033#46020
  812. Properties.Alignment.Horz = taRightJustify
  813. Properties.Alignment.Vert = taVCenter
  814. Transparent = True
  815. Height = 21
  816. Width = 85
  817. AnchorX = 112
  818. AnchorY = 99
  819. end
  820. object EdIFMR_NM: TcxTextEdit
  821. Left = 115
  822. Top = 28
  823. Properties.Alignment.Vert = taVCenter
  824. Properties.ReadOnly = True
  825. TabOrder = 3
  826. Width = 185
  827. end
  828. object CbINCD_CNFM_MTHD_CD: TcxComboBox
  829. Left = 115
  830. Top = 58
  831. Cursor = crHandPoint
  832. Properties.Alignment.Vert = taVCenter
  833. Properties.DropDownListStyle = lsFixedList
  834. Properties.DropDownSizeable = True
  835. Properties.ReadOnly = True
  836. TabOrder = 4
  837. Width = 185
  838. end
  839. object CbINCD_SERN_CD: TcxComboBox
  840. Left = 115
  841. Top = 88
  842. Cursor = crHandPoint
  843. Properties.Alignment.Vert = taVCenter
  844. Properties.DropDownListStyle = lsFixedList
  845. Properties.DropDownSizeable = True
  846. Properties.ReadOnly = True
  847. TabOrder = 5
  848. Width = 185
  849. end
  850. object cxLabel14: TcxLabel
  851. Left = 345
  852. Top = 29
  853. AutoSize = False
  854. Caption = #46028#48156#50976#54805
  855. Properties.Alignment.Horz = taRightJustify
  856. Properties.Alignment.Vert = taVCenter
  857. Transparent = True
  858. Height = 21
  859. Width = 85
  860. AnchorX = 430
  861. AnchorY = 40
  862. end
  863. object cxLabel15: TcxLabel
  864. Left = 345
  865. Top = 58
  866. AutoSize = False
  867. Caption = #46028#48156#49464#48512#50976#54805
  868. Properties.Alignment.Horz = taRightJustify
  869. Properties.Alignment.Vert = taVCenter
  870. Transparent = True
  871. Height = 21
  872. Width = 85
  873. AnchorX = 430
  874. AnchorY = 69
  875. end
  876. object CbINCD_TYPE_CLSF_CD: TcxComboBox
  877. Left = 433
  878. Top = 28
  879. Cursor = crHandPoint
  880. Properties.Alignment.Vert = taVCenter
  881. Properties.DropDownListStyle = lsFixedList
  882. Properties.DropDownSizeable = True
  883. Properties.ReadOnly = True
  884. TabOrder = 8
  885. Width = 167
  886. end
  887. object CbINCD_TYPE_CD: TcxComboBox
  888. Left = 433
  889. Top = 59
  890. Cursor = crHandPoint
  891. Properties.Alignment.Vert = taVCenter
  892. Properties.DropDownListStyle = lsFixedList
  893. Properties.DropDownSizeable = True
  894. Properties.ReadOnly = True
  895. TabOrder = 9
  896. Width = 167
  897. end
  898. object cxLabel17: TcxLabel
  899. Left = 646
  900. Top = 29
  901. AutoSize = False
  902. Caption = #46028#48156#49884#51089#49884#44033
  903. Properties.Alignment.Horz = taRightJustify
  904. Properties.Alignment.Vert = taVCenter
  905. Transparent = True
  906. Height = 21
  907. Width = 85
  908. AnchorX = 731
  909. AnchorY = 40
  910. end
  911. object cxLabel18: TcxLabel
  912. Left = 645
  913. Top = 61
  914. AutoSize = False
  915. Caption = #51333#47308#50696#51221#49884#44033
  916. Properties.Alignment.Horz = taRightJustify
  917. Properties.Alignment.Vert = taVCenter
  918. Transparent = True
  919. Height = 21
  920. Width = 85
  921. AnchorX = 730
  922. AnchorY = 72
  923. end
  924. object DtINCD_STRT_DT: TcxDateEdit
  925. Left = 739
  926. Top = 29
  927. Properties.Alignment.Horz = taCenter
  928. Properties.Alignment.Vert = taVCenter
  929. Properties.DateButtons = [btnNow]
  930. Properties.DateOnError = deToday
  931. Properties.ImmediatePost = True
  932. Properties.Kind = ckDateTime
  933. Properties.ReadOnly = True
  934. TabOrder = 12
  935. Width = 174
  936. end
  937. object DtINCD_END_PRAR_DT: TcxDateEdit
  938. Left = 739
  939. Top = 59
  940. Properties.Alignment.Horz = taCenter
  941. Properties.Alignment.Vert = taVCenter
  942. Properties.DateButtons = [btnNow]
  943. Properties.DateOnError = deToday
  944. Properties.ImmediatePost = True
  945. Properties.Kind = ckDateTime
  946. Properties.ReadOnly = True
  947. TabOrder = 13
  948. Width = 174
  949. end
  950. object cxLabel27: TcxLabel
  951. Left = 345
  952. Top = 88
  953. AutoSize = False
  954. Caption = #46028#48156#51228#47785
  955. Properties.Alignment.Horz = taRightJustify
  956. Properties.Alignment.Vert = taVCenter
  957. Transparent = True
  958. Height = 21
  959. Width = 85
  960. AnchorX = 430
  961. AnchorY = 99
  962. end
  963. object EdINCD_TITL: TcxTextEdit
  964. Left = 433
  965. Top = 90
  966. Properties.ReadOnly = True
  967. TabOrder = 15
  968. Width = 480
  969. end
  970. object cxLabel45: TcxLabel
  971. Left = 955
  972. Top = 29
  973. Caption = 'UTIS'#50672#44228
  974. Properties.Alignment.Horz = taRightJustify
  975. Properties.Alignment.Vert = taVCenter
  976. Transparent = True
  977. Visible = False
  978. AnchorX = 1012
  979. AnchorY = 40
  980. end
  981. object ChkUTIS_CNCT_YN: TcxCheckBox
  982. Left = 1020
  983. Top = 29
  984. Caption = #51221#48372#51228#44277
  985. Properties.ReadOnly = True
  986. TabOrder = 17
  987. Transparent = True
  988. Visible = False
  989. Width = 88
  990. end
  991. end
  992. object cxGroupBox6: TcxGroupBox
  993. Left = 1112
  994. Top = 0
  995. Align = alRight
  996. Caption = 'VMS '#54364#52636
  997. TabOrder = 1
  998. Visible = False
  999. DesignSize = (
  1000. 261
  1001. 121)
  1002. Height = 128
  1003. Width = 261
  1004. object ImgDesc18: TImage
  1005. Left = 14
  1006. Top = 94
  1007. Width = 9
  1008. Height = 9
  1009. Transparent = True
  1010. end
  1011. object ChkVMS_DSPL_YN: TcxCheckBox
  1012. Left = 7
  1013. Top = 29
  1014. Cursor = crHandPoint
  1015. Caption = 'VMS '#54364#52636
  1016. TabOrder = 0
  1017. Transparent = True
  1018. Width = 90
  1019. end
  1020. object PnlVms: TPanel
  1021. Left = 132
  1022. Top = 21
  1023. Width = 228
  1024. Height = 60
  1025. Color = clBlack
  1026. ParentBackground = False
  1027. TabOrder = 1
  1028. object Image1: TImage
  1029. Left = 105
  1030. Top = 8
  1031. Width = 16
  1032. Height = 16
  1033. Picture.Data = {
  1034. 0B546478504E47496D61676589504E470D0A1A0A0000000D4948445200000010
  1035. 0000001008060000001FF3FF610000000467414D410000B18E7CFB5193000000
  1036. 206348524D0000870F00008C0F0000FD520000814000007D790000E98B00003C
  1037. E5000019CC733C857700000A396943435050686F746F73686F70204943432070
  1038. 726F66696C65000048C79D96775454D71687CFBD777AA1CD30D2197A932E3080
  1039. F42E201D045118660618CA00C30C4D6C88A840441111014590A08001A3A148AC
  1040. 88622128A8600F48105062308AA8A86446D64A7C7979EFE5E5F7C7BDDFDA67EF
  1041. 73F7D97B9FB52E00244F1F2E2F059602209927E0077A38D3578547D0B1FD0006
  1042. 788001A6003059E9A9BE41EEC140242F37177ABAC809FC8BDE0C0148FCBE65E8
  1043. E94FA783FF4FD2AC54BE0000C85FC4E66C4E3A4BC4F9224ECA14A48AED3322A6
  1044. C6248A194689992F4A50C472628E5BE4A59F7D16D951CCEC641E5BC4E29C53D9
  1045. C96C31F788787B86902362C447C405195C4EA6886F8B58334998CC15F15B716C
  1046. 3287990E008A24B60B38AC78119B8898C40F0E7411F1720070A4B82F38E60B16
  1047. 70B204E243B9A4A466F3B971F102BA2E4B8F6E6A6DCDA07B723293380281A13F
  1048. 9395C8E4B3E92E29C9A94C5E36008B67FE2C19716DE9A2225B9A5A5B5A1A9A19
  1049. 997E51A8FFBAF83725EEED22BD0AF8DC3388D6F787EDAFFC52EA0060CC8A6AB3
  1050. EB0F5BCC7E003AB6022077FF0F9BE6210024457D6BBFF1C57968E27989170852
  1051. 6D8C8D3333338DB81C9691B8A0BFEB7F3AFC0D7DF13D23F176BF9787EECA8965
  1052. 0A93047471DD58294929423E3D3D95C9E2D00DFF3CC4FF38F0AFF3581AC889E5
  1053. F0393C5144A868CAB8BC3851BB796CAE809BC2A37379FFA989FF30EC4F5A9C6B
  1054. 9128F59F0035CA0848DDA002E4E73E80A21001127950DCF5DFFBE6830F05E29B
  1055. 17A63AB138F79F05FDFBAE7089F891CE8DFB1CE712184C6709F9198B6BE26B09
  1056. D08000240115C80315A001748121300356C016380237B002F88160100ED60216
  1057. 8807C9800F32412ED80C0A4011D805F6824A5003EA41236801274007380D2E80
  1058. CBE03AB809EE800760048C83E76006BC01F310046121324481E42155480B3280
  1059. CC2006640FB9413E5020140E454371100F1242B9D016A8082A852AA15AA811FA
  1060. 163A055D80AE4203D03D68149A827E85DEC3084C82A9B032AC0D1BC30CD809F6
  1061. 8683E135701C9C06E7C0F9F04EB802AE838FC1EDF005F83A7C071E819FC3B308
  1062. 4088080D51430C1106E282F82111482CC24736208548395287B4205D482F720B
  1063. 1941A69177280C8A82A2A30C51B6284F54088A854A436D4015A32A514751EDA8
  1064. 1ED42DD4286A06F5094D462BA10DD036682FF42A741C3A135D802E4737A0DBD0
  1065. 97D077D0E3E837180C8686D1C158613C31E19804CC3A4C31E600A615731E3380
  1066. 19C3CC62B15879AC01D60EEB87656205D802EC7EEC31EC39EC20761CFB1647C4
  1067. A9E2CC70EEB8081C0F97872BC735E1CEE2067113B879BC145E0B6F83F7C3B3F1
  1068. D9F8127C3DBE0B7F033F8E9F274813740876846042026133A182D042B8447848
  1069. 78452412D589D6C4002297B88958413C4EBC421C25BE23C990F4492EA4489290
  1070. B4937484749E748FF48A4C266B931DC91164017927B9917C91FC98FC56822261
  1071. 24E125C196D8285125D12E3128F142122FA925E924B9563247B25CF2A4E40DC9
  1072. 6929BC94B6948B14536A835495D429A961A959698AB4A9B49F74B274B17493F4
  1073. 55E94919AC8CB68C9B0C5B265FE6B0CC4599310A42D1A0B85058942D947ACA25
  1074. CA381543D5A17A5113A845D46FA8FDD4195919D965B2A1B259B255B267644768
  1075. 084D9BE6454BA295D04ED08668EF97282F715AC259B26349CB92C12573728A72
  1076. 8E721CB942B956B93B72EFE5E9F26EF289F2BBE53BE41F29A014F41502143215
  1077. 0E2A5C529856A42ADA2AB2140B154F28DE578295F4950295D6291D56EA539A55
  1078. 5651F6504E55DEAF7C51795A85A6E2A892A052A67256654A95A26AAFCA552D53
  1079. 3DA7FA8C2E4B77A227D12BE83DF4193525354F35A15AAD5ABFDABCBA8E7A887A
  1080. 9E7AABFA230D8206432356A34CA35B63465355D3573357B359F3BE165E8BA115
  1081. AFB54FAB576B4E5B473B4C7B9B7687F6A48E9C8E974E8E4EB3CE435DB2AE836E
  1082. 9A6E9DEE6D3D8C1E432F51EF80DE4D7D58DF423F5EBF4AFF86016C6069C03538
  1083. 6030B014BDD47A296F69DDD2614392A193618661B3E1A811CDC8C728CFA8C3E8
  1084. 85B1A67184F16EE35EE34F2616264926F5260F4C654C5798E6997699FE6AA66F
  1085. C632AB32BB6D4E367737DF68DE69FE7299C132CEB283CBEE5A502C7C2DB65974
  1086. 5B7CB4B4B2E45BB6584E59695A455B555B0D33A80C7F4631E38A35DADAD97AA3
  1087. F569EB77369636029B1336BFD81ADA26DA36D94E2ED759CE595EBF7CCC4EDD8E
  1088. 69576B37624FB78FB63F643FE2A0E6C074A87378E2A8E1C8766C709C70D2734A
  1089. 703AE6F4C2D9C499EFDCE63CE762E3B2DEE5BC2BE2EAE15AE8DAEF26E316E256
  1090. E9F6D85DDD3DCEBDD97DC6C3C2639DC7794FB4A7B7E76ECF612F652F9657A3D7
  1091. CC0AAB15EB57F47893BC83BC2BBD9FF8E8FBF07DBA7C61DF15BE7B7C1FAED45A
  1092. C95BD9E107FCBCFCF6F83DF2D7F14FF3FF3E0013E01F5015F034D0343037B037
  1093. 88121415D414F426D839B824F841886E8830A43B54323432B431742ECC35AC34
  1094. 6C6495F1AAF5ABAE872B8473C33B23B011A1110D11B3ABDD56EF5D3D1E691159
  1095. 1039B446674DD69AAB6B15D626AD3D132519C58C3A198D8E0E8B6E8AFEC0F463
  1096. D6316763BC62AA6366582EAC7DACE76C4776197B8A63C729E54CC4DAC596C64E
  1097. C6D9C5ED899B8A77882F8F9FE6BA702BB92F133C136A12E612FD128F242E2485
  1098. 25B526E392A3934FF1647889BC9E149594AC94815483D482D491349BB4BD6933
  1099. 7C6F7E433A94BE26BD534015FD4CF50975855B85A319F61955196F3343334F66
  1100. 4967F1B2FAB2F5B377644FE4B8E77CBD0EB58EB5AE3B572D7773EEE87AA7F5B5
  1101. 1BA00D311BBA376A6CCCDF38BEC963D3D1CD84CD899B7FC833C92BCD7BBD256C
  1102. 4B57BE72FEA6FCB1AD1E5B9B0B240AF805C3DB6CB7D56C476DE76EEFDF61BE63
  1103. FF8E4F85ECC26B452645E5451F8A59C5D7BE32FDAAE2AB859DB13BFB4B2C4B0E
  1104. EEC2ECE2ED1ADAEDB0FB68A974694EE9D81EDF3DED65F4B2C2B2D77BA3F65E2D
  1105. 5F565EB38FB04FB86FA4C2A7A273BFE6FE5DFB3F54C657DEA972AE6AAD56AADE
  1106. 513D77807D60F0A0E3C1961AE59AA29AF787B887EED67AD4B6D769D7951FC61C
  1107. CE38FCB43EB4BEF76BC6D78D0D0A0D450D1F8FF08E8C1C0D3CDAD368D5D8D8A4
  1108. D454D20C370B9BA78E451EBBF98DEB379D2D862DB5ADB4D6A2E3E0B8F0F8B36F
  1109. A3BF1D3AE17DA2FB24E364CB775ADF55B751DA0ADBA1F6ECF6998EF88E91CEF0
  1110. CE81532B4E7577D976B57D6FF4FD91D36AA7ABCEC89E29394B389B7F76E15CCE
  1111. B9D9F3A9E7A72FC45D18EB8EEA7E7071D5C5DB3D013DFD97BC2F5DB9EC7EF962
  1112. AF53EFB92B76574E5FB5B97AEA1AE35AC775CBEBED7D167D6D3F58FCD0D66FD9
  1113. DF7EC3EA46E74DEB9B5D03CB07CE0E3A0C5EB8E57AEBF26DAFDBD7EFACBC3330
  1114. 14327477387278E42EFBEEE4BDA47B2FEF67DC9F7FB0E921FA61E123A947E58F
  1115. 951ED7FDA8F763EB88E5C89951D7D1BE27414F1E8CB1C69EFF94FED387F1FCA7
  1116. E4A7E513AA138D936693A7A7DCA76E3E5BFD6CFC79EAF3F9E9829FA57FAE7EA1
  1117. FBE2BB5F1C7FE99B593533FE92FF72E1D7E257F2AF8EBC5EF6BA7BD67FF6F19B
  1118. E437F373856FE5DF1E7DC778D7FB3EECFDC47CE607EC878A8F7A1FBB3E797F7A
  1119. B890BCB0F01BF784F3FBE2E61DC2000000097048597300000B0C00000B0C013F
  1120. 4022C80000019349444154384FA5D2BD4EC2601406E0638DBF34B401110D041A
  1121. 507E141124120C3A78095E80BBBBD10B7134D10BD03AE8E0E264EAE2EAA257E0
  1122. A48020141138BE2DB689A431360EEF728627EFF9BE43CCFCAF380EDDC471E826
  1123. F4323D4EAFE22455240FD5FC12BD057DD40805E83D3A47ADC508B59762F2C772
  1124. 6CB7B39A18FD2CA4A957CC50BF94A57E3947BC99FF1D68C6C3A4A71400F10680
  1125. 33007E0760620FC015800B002A0015800A400570AE27954B34E80060004F00B6
  1126. 7E025313A700B82A7BB8E6F7723DE8E346689601702B1EE67632CA68C026B096
  1127. E66E31A3F737B2870004ABC1B101A08123A00F0168C00018C00D8088F1060340
  1128. 16B936E365ACC0F550C004B002000540CC04BA1650CA3297738F00560CE0C406
  1129. D0C0029A760303B01AA40CA00FE088CB79D15AE100C07D4512EFAA7E4903A0E1
  1130. 113534D0D0E016C0830D14D2CF00767A784400F6238E0010D040002000100008
  1131. 0084E682F98DDBDFC03580486F3D43C3C0E00E649100987780157007F3A427A2
  1132. D44E294500FB00C6CC431A069CCED34D1C876EE238FC7B98BE009B5A309B92AA
  1133. 53920000000049454E44AE426082}
  1134. end
  1135. object EdEND_LCTN_NM: TcxTextEdit
  1136. Left = 127
  1137. Top = 4
  1138. Properties.Alignment.Vert = taVCenter
  1139. Properties.MaxLength = 10
  1140. TabOrder = 0
  1141. Text = #51333#47308#50948#52824
  1142. Width = 92
  1143. end
  1144. object cxLabel_VMS_INCD_TYPE_CD: TcxLabel
  1145. Left = 6
  1146. Top = 35
  1147. AutoSize = False
  1148. Caption = #49324#44256#50976#54805
  1149. Style.TextColor = clYellow
  1150. Properties.Alignment.Horz = taCenter
  1151. Transparent = True
  1152. Height = 21
  1153. Width = 215
  1154. AnchorX = 114
  1155. end
  1156. object EdSTRT_LCTN_NM: TcxTextEdit
  1157. Left = 8
  1158. Top = 4
  1159. Properties.Alignment.Vert = taVCenter
  1160. Properties.MaxLength = 10
  1161. TabOrder = 2
  1162. Text = #49884#51089#50948#52824
  1163. Width = 91
  1164. end
  1165. end
  1166. object CbVMS_INCD_TYPE_CD: TcxComboBox
  1167. Left = 119
  1168. Top = 87
  1169. Cursor = crHandPoint
  1170. Properties.Alignment.Vert = taVCenter
  1171. Properties.DropDownListStyle = lsFixedList
  1172. TabOrder = 2
  1173. Width = 127
  1174. end
  1175. object CbVMS_INCD_DETL_TYPE_CD: TcxComboBox
  1176. Left = 252
  1177. Top = 87
  1178. Cursor = crHandPoint
  1179. Properties.Alignment.Vert = taVCenter
  1180. Properties.DropDownListStyle = lsFixedList
  1181. TabOrder = 3
  1182. Width = 141
  1183. end
  1184. object cxLabel16: TcxLabel
  1185. Left = 32
  1186. Top = 88
  1187. Caption = 'VMS'#46028#48156#50976#54805
  1188. Properties.Alignment.Horz = taRightJustify
  1189. Properties.Alignment.Vert = taVCenter
  1190. Transparent = True
  1191. AnchorX = 115
  1192. AnchorY = 99
  1193. end
  1194. object BtnVmsTarget: TcxButton
  1195. Left = 28
  1196. Top = 57
  1197. Width = 96
  1198. Height = 25
  1199. Cursor = crHandPoint
  1200. Hint = #48156#49373#44396#44036#50640' '#49444#51221#46108' VMS '#47785#47197#51012' '#54364#52636#54633#45768#45796'.'
  1201. Anchors = [akRight, akBottom]
  1202. Caption = 'VMS '#47785#47197
  1203. LookAndFeel.NativeStyle = False
  1204. TabOrder = 5
  1205. Font.Charset = DEFAULT_CHARSET
  1206. Font.Color = clWindowText
  1207. Font.Height = -13
  1208. Font.Name = #47569#51008' '#44256#46357
  1209. Font.Style = [fsBold]
  1210. ParentFont = False
  1211. OnClick = BtnVmsTargetClick
  1212. end
  1213. end
  1214. end
  1215. end
  1216. object cxSplitter1: TcxSplitter
  1217. Left = 0
  1218. Top = 384
  1219. Width = 1377
  1220. Height = 8
  1221. AlignSplitter = salBottom
  1222. Control = cxGroupBox2
  1223. end
  1224. object Panel3: TPanel
  1225. Left = 0
  1226. Top = 0
  1227. Width = 1377
  1228. Height = 384
  1229. Align = alClient
  1230. BevelOuter = bvNone
  1231. TabOrder = 2
  1232. object cxGroupBox1: TcxGroupBox
  1233. Left = 0
  1234. Top = 0
  1235. Align = alClient
  1236. 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')'
  1237. Style.TextStyle = [fsBold]
  1238. TabOrder = 0
  1239. Height = 384
  1240. Width = 1377
  1241. object PnlBottom: TPanel
  1242. Left = 3
  1243. Top = 343
  1244. Width = 1371
  1245. Height = 31
  1246. Align = alBottom
  1247. BevelOuter = bvNone
  1248. TabOrder = 0
  1249. DesignSize = (
  1250. 1371
  1251. 31)
  1252. object LblRecords: TLabel
  1253. Left = 1251
  1254. Top = 9
  1255. Width = 25
  1256. Height = 17
  1257. Alignment = taRightJustify
  1258. Anchors = [akRight, akBottom]
  1259. Caption = '0 '#44148
  1260. Transparent = True
  1261. ExplicitLeft = 1162
  1262. end
  1263. object LbDef: TLabel
  1264. Left = 8
  1265. Top = 9
  1266. Width = 513
  1267. Height = 17
  1268. Hint = '('#54596#53552#47553' '#45936#51060#53552#45716' '#54252#54632#46104#51648' '#50506#49845#45768#45796'.)'
  1269. AutoSize = False
  1270. 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'.)'
  1271. Font.Charset = DEFAULT_CHARSET
  1272. Font.Color = clBlue
  1273. Font.Height = -13
  1274. Font.Name = #47569#51008' '#44256#46357
  1275. Font.Style = [fsBold]
  1276. ParentFont = False
  1277. Transparent = True
  1278. end
  1279. object Label1: TLabel
  1280. Left = 910
  1281. Top = 8
  1282. Width = 19
  1283. Height = 17
  1284. Hint = '('#54596#53552#47553' '#45936#51060#53552#45716' '#54252#54632#46104#51648' '#50506#49845#45768#45796'.)'
  1285. Anchors = [akTop, akRight]
  1286. Caption = ' ~ '
  1287. Enabled = False
  1288. Transparent = True
  1289. ExplicitLeft = 891
  1290. end
  1291. object BtnExlSave: TcxButton
  1292. Tag = 1
  1293. Left = 1284
  1294. Top = 4
  1295. Width = 80
  1296. Height = 25
  1297. Cursor = crHandPoint
  1298. Hint = #54028#51068' '#51200#51109
  1299. Anchors = [akRight, akBottom]
  1300. Caption = #51200#51109
  1301. Colors.Default = 10737865
  1302. Glyph.Data = {
  1303. B6030000424DB603000000000000360000002800000012000000100000000100
  1304. 1800000000008003000012170000121700000000000000000000C0C0C0C0C0C0
  1305. C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0
  1306. C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C00000C0C0C0A5A5A57878787878787878
  1307. 7878787878787878787878787878787878787878787878787878787878787878
  1308. 78787878787878780000B6B6B6271A156E483B6E483B6E483B6E483B6E483B6E
  1309. 483B6E483B6E483B6E483B6E483B6E483B6E483B6E483B6E483B281A15626262
  1310. 0000D0D0D04F342AEAAD96F6C6B2F6C6B2F6C6B2F6C6B2F6C6B2F6C6B2F6C6B2
  1311. F6C6B2F6C6B2F6C6B2F6C6B2F6C6B2EAAD9650342A6262620000D0D0D04F342A
  1312. EAAD96F6C6B2F6C6B2F6C6B2F6C6B2F6C6B2F6C6B2F6C6B29C7E710000000000
  1313. 0000000000000063413550342A6262620000D0D0D04F342AA77765211B180000
  1314. 000000000000000000000000001717177F7F7F3A3A3A0000000B08089C7D71EA
  1315. AD9650342A6262620000D0D0D04F342AEAAD96F6C6B216121000000000000000
  1316. 0000000000D0D0D0000000000000000000161110F6C6B2EAAD9650342A626262
  1317. 0000D0D0D04F342AEAAD96F6C6B2EABDA95948400000005151517F7F7F000000
  1318. 0000004335307B63597B63599C7D71EAAD9650342A6262620000D0D0D04F342A
  1319. EAAD96F6C6B2F6C6B2B290817373735C5C5C000000000000000000866B61F6C6
  1320. B2F6C6B2F6C6B2EAAD9650342A6262620000D0D0D04F342AEAAD96F6C6B2DFB4
  1321. A14545458B8B8B000000000000000000000000000000B28F81F6C6B2F6C6B2EA
  1322. AD9650342A6262620000D0D0D04F342AEAAD969C7E717E7C7B5C5C5C00000000
  1323. 00006450480000000000000000000000007A6258F6C6B2EAAD9650342A626262
  1324. 0000D0D0D04F342A644135B9B9B91717170000000000009C7D71F6C6B2C9A291
  1325. 000000000000000000000000423530EAAD9650342A6262620000D0D0D04F342A
  1326. 6441350000000000000000006F5950F6C6B2F6C6B2F6C6B29C7E710000000000
  1327. 00000000423530EAAD9650342A6262620000D0D0D04F342AEAAD96F6C6B2F6C6
  1328. B2F6C6B2F6C6B2F6C6B2F6C6B2F6C6B2F6C6B2F6C6B2F6C6B2F6C6B2F6C6B2EA
  1329. AD9650342A6262620000D0D0D04F342ADC9076DC9076DC9076DC9076DC9076DC
  1330. 9076DC9076DC9076DC9076DC9076DC9076DC9076DC9076DC907650342A626262
  1331. 0000E7E7E77F7F7F7F7F7F7F7F7F7F7F7F7F7F7F7F7F7F7F7F7F7F7F7F7F7F7F
  1332. 7F7F7F7F7F7F7F7F7F7F7F7F7F7F7F7F7F7F6B6B6BAEAEAE0000}
  1333. Spacing = 6
  1334. TabOrder = 0
  1335. Font.Charset = DEFAULT_CHARSET
  1336. Font.Color = clBlack
  1337. Font.Height = -13
  1338. Font.Name = #47569#51008' '#44256#46357
  1339. Font.Style = []
  1340. ParentFont = False
  1341. OnClick = BtnExlSaveClick
  1342. end
  1343. object ChkViewEnded: TcxCheckBox
  1344. Left = 628
  1345. Top = 7
  1346. Cursor = crHandPoint
  1347. Anchors = [akTop, akRight]
  1348. AutoSize = False
  1349. Caption = #51060#47141#51312#54924
  1350. ParentBackground = False
  1351. ParentColor = False
  1352. Style.BorderColor = cl3DLight
  1353. Style.Color = cl3DLight
  1354. StyleDisabled.BorderColor = cl3DLight
  1355. TabOrder = 1
  1356. Transparent = True
  1357. OnClick = ChkViewEndedClick
  1358. Height = 19
  1359. Width = 114
  1360. end
  1361. object DtStDate: TcxDateEdit
  1362. Left = 748
  1363. Top = 4
  1364. Anchors = [akTop, akRight]
  1365. EditValue = 39924d
  1366. Enabled = False
  1367. Properties.Alignment.Horz = taCenter
  1368. Properties.DateButtons = [btnNow, btnToday]
  1369. Properties.DateOnError = deToday
  1370. Properties.SaveTime = False
  1371. Properties.ShowTime = False
  1372. Style.ButtonStyle = btsUltraFlat
  1373. StyleFocused.TextStyle = [fsBold]
  1374. StyleFocused.ButtonStyle = btsUltraFlat
  1375. TabOrder = 2
  1376. Width = 103
  1377. end
  1378. object DtStTime: TcxTimeEdit
  1379. Left = 853
  1380. Top = 4
  1381. Anchors = [akTop, akRight]
  1382. EditValue = 0d
  1383. Enabled = False
  1384. Properties.Alignment.Horz = taCenter
  1385. Properties.TimeFormat = tfHour
  1386. Style.ButtonStyle = btsUltraFlat
  1387. StyleFocused.TextStyle = [fsBold]
  1388. TabOrder = 3
  1389. Width = 53
  1390. end
  1391. object DtEdDate: TcxDateEdit
  1392. Left = 933
  1393. Top = 4
  1394. Anchors = [akTop, akRight]
  1395. EditValue = 39924d
  1396. Enabled = False
  1397. Properties.Alignment.Horz = taCenter
  1398. Properties.DateButtons = [btnNow, btnToday]
  1399. Properties.DateOnError = deToday
  1400. Properties.SaveTime = False
  1401. Properties.ShowTime = False
  1402. Style.ButtonStyle = btsUltraFlat
  1403. StyleFocused.TextStyle = [fsBold]
  1404. StyleFocused.ButtonStyle = btsUltraFlat
  1405. TabOrder = 4
  1406. Width = 103
  1407. end
  1408. object DtEdTime: TcxTimeEdit
  1409. Left = 1038
  1410. Top = 4
  1411. Anchors = [akTop, akRight]
  1412. EditValue = 0d
  1413. Enabled = False
  1414. Properties.Alignment.Horz = taCenter
  1415. Properties.TimeFormat = tfHour
  1416. Style.ButtonStyle = btsUltraFlat
  1417. StyleFocused.TextStyle = [fsBold]
  1418. TabOrder = 5
  1419. Width = 53
  1420. end
  1421. object BtnSearch: TcxButton
  1422. Left = 1099
  1423. Top = 4
  1424. Width = 80
  1425. Height = 25
  1426. Cursor = crHandPoint
  1427. Hint = #45936#51060#53552#47484' '#44160#49353#54633#45768#45796'.'
  1428. Anchors = [akTop, akRight]
  1429. Caption = #51312#54924
  1430. Colors.Default = 3893744
  1431. Enabled = False
  1432. TabOrder = 6
  1433. Font.Charset = DEFAULT_CHARSET
  1434. Font.Color = clWindowText
  1435. Font.Height = -13
  1436. Font.Name = #47569#51008' '#44256#46357
  1437. Font.Style = []
  1438. ParentFont = False
  1439. OnClick = BtnSearchClick
  1440. end
  1441. end
  1442. object CxList: TcxGrid
  1443. Left = 3
  1444. Top = 19
  1445. Width = 1371
  1446. Height = 324
  1447. Align = alClient
  1448. TabOrder = 1
  1449. LookAndFeel.NativeStyle = False
  1450. object TvList: TcxGridTableView
  1451. OnCellDblClick = TvListCellDblClick
  1452. DataController.Filter.OnChanged = TvListDataControllerFilterChanged
  1453. DataController.Summary.DefaultGroupSummaryItems = <>
  1454. DataController.Summary.FooterSummaryItems = <>
  1455. DataController.Summary.SummaryGroups = <>
  1456. FilterRow.InfoText = '<'#44160#49353#50612#47484' '#51077#47141' '#54616#49464#50836'>'
  1457. OptionsBehavior.CellHints = True
  1458. OptionsData.Deleting = False
  1459. OptionsData.DeletingConfirmation = False
  1460. OptionsData.Editing = False
  1461. OptionsData.Inserting = False
  1462. OptionsView.NoDataToDisplayInfoText = '<'#46028#48156' '#48156#49373' '#51221#48372#44032' '#50630#49845#45768#45796'.>'
  1463. OptionsView.GroupByBox = False
  1464. OptionsView.Indicator = True
  1465. object Column01: TcxGridColumn
  1466. Caption = 'ID'
  1467. PropertiesClassName = 'TcxLabelProperties'
  1468. Properties.Alignment.Horz = taCenter
  1469. Properties.Alignment.Vert = taVCenter
  1470. HeaderAlignmentHorz = taCenter
  1471. HeaderAlignmentVert = vaCenter
  1472. Options.Editing = False
  1473. Width = 110
  1474. end
  1475. object Column02: TcxGridColumn
  1476. Caption = #46321#47197' '#51068#49884
  1477. PropertiesClassName = 'TcxLabelProperties'
  1478. Properties.Alignment.Horz = taCenter
  1479. Properties.Alignment.Vert = taVCenter
  1480. HeaderAlignmentHorz = taCenter
  1481. HeaderAlignmentVert = vaCenter
  1482. Options.Editing = False
  1483. Width = 150
  1484. end
  1485. object Column04: TcxGridColumn
  1486. Caption = #46028#48156#49345#54889' '#44396#48516
  1487. PropertiesClassName = 'TcxLabelProperties'
  1488. Properties.Alignment.Vert = taVCenter
  1489. HeaderAlignmentHorz = taCenter
  1490. HeaderAlignmentVert = vaCenter
  1491. Options.Editing = False
  1492. Width = 100
  1493. end
  1494. object Column03: TcxGridColumn
  1495. Caption = #51652#54665' '#45800#44228
  1496. PropertiesClassName = 'TcxLabelProperties'
  1497. Properties.Alignment.Horz = taCenter
  1498. Properties.Alignment.Vert = taVCenter
  1499. Visible = False
  1500. HeaderAlignmentHorz = taCenter
  1501. HeaderAlignmentVert = vaCenter
  1502. Options.Editing = False
  1503. Width = 120
  1504. end
  1505. object Column14: TcxGridColumn
  1506. Caption = #46028#48156#49345#54889' '#51228#47785
  1507. PropertiesClassName = 'TcxLabelProperties'
  1508. Properties.Alignment.Vert = taVCenter
  1509. HeaderAlignmentHorz = taCenter
  1510. HeaderAlignmentVert = vaCenter
  1511. Options.Editing = False
  1512. Width = 189
  1513. end
  1514. object Column15: TcxGridColumn
  1515. Caption = #46028#48156#50976#54805
  1516. PropertiesClassName = 'TcxLabelProperties'
  1517. Properties.Alignment.Vert = taVCenter
  1518. HeaderAlignmentHorz = taCenter
  1519. HeaderAlignmentVert = vaCenter
  1520. Width = 117
  1521. end
  1522. object Column16: TcxGridColumn
  1523. Caption = #46028#48156#49464#48512#50976#54805
  1524. PropertiesClassName = 'TcxLabelProperties'
  1525. Properties.Alignment.Vert = taVCenter
  1526. HeaderAlignmentHorz = taCenter
  1527. HeaderAlignmentVert = vaCenter
  1528. Width = 140
  1529. end
  1530. object Column05: TcxGridColumn
  1531. Caption = #48156#49373' '#50948#52824' '#49444#47749
  1532. PropertiesClassName = 'TcxLabelProperties'
  1533. Properties.Alignment.Vert = taVCenter
  1534. HeaderAlignmentHorz = taCenter
  1535. HeaderAlignmentVert = vaCenter
  1536. Options.Editing = False
  1537. Width = 175
  1538. end
  1539. object Column09: TcxGridColumn
  1540. Caption = #46028#48156' '#49345#54889' '#49444#47749
  1541. PropertiesClassName = 'TcxLabelProperties'
  1542. Properties.Alignment.Vert = taVCenter
  1543. HeaderAlignmentHorz = taCenter
  1544. HeaderAlignmentVert = vaCenter
  1545. Options.Editing = False
  1546. Width = 254
  1547. end
  1548. object Column10: TcxGridColumn
  1549. Caption = #49548#53685' '#46321#44553
  1550. PropertiesClassName = 'TcxLabelProperties'
  1551. Properties.Alignment.Vert = taVCenter
  1552. HeaderAlignmentHorz = taCenter
  1553. HeaderAlignmentVert = vaCenter
  1554. Options.Editing = False
  1555. Width = 76
  1556. end
  1557. object Column11: TcxGridColumn
  1558. Caption = #51228#48372#51088
  1559. PropertiesClassName = 'TcxLabelProperties'
  1560. Properties.Alignment.Vert = taVCenter
  1561. HeaderAlignmentHorz = taCenter
  1562. HeaderAlignmentVert = vaCenter
  1563. Options.Editing = False
  1564. Width = 98
  1565. end
  1566. object Column12: TcxGridColumn
  1567. Caption = #46028#48156#49345#54889' '#54869#51064' '#48169#48277
  1568. PropertiesClassName = 'TcxLabelProperties'
  1569. Properties.Alignment.Vert = taVCenter
  1570. HeaderAlignmentHorz = taCenter
  1571. HeaderAlignmentVert = vaCenter
  1572. Options.Editing = False
  1573. Width = 120
  1574. end
  1575. object Column13: TcxGridColumn
  1576. Caption = #49900#44033#46020
  1577. PropertiesClassName = 'TcxLabelProperties'
  1578. Properties.Alignment.Horz = taCenter
  1579. Properties.Alignment.Vert = taVCenter
  1580. HeaderAlignmentHorz = taCenter
  1581. HeaderAlignmentVert = vaCenter
  1582. Options.Editing = False
  1583. Width = 74
  1584. end
  1585. object Column35: TcxGridColumn
  1586. Caption = #46028#48156#49345#54889' '#54869#51064#51068#49884
  1587. PropertiesClassName = 'TcxLabelProperties'
  1588. Properties.Alignment.Horz = taCenter
  1589. Properties.Alignment.Vert = taVCenter
  1590. HeaderAlignmentHorz = taCenter
  1591. HeaderAlignmentVert = vaCenter
  1592. Width = 139
  1593. end
  1594. object Column17: TcxGridColumn
  1595. Caption = #49884#51089' '#51068#49884
  1596. PropertiesClassName = 'TcxLabelProperties'
  1597. Properties.Alignment.Horz = taCenter
  1598. Properties.Alignment.Vert = taVCenter
  1599. HeaderAlignmentHorz = taCenter
  1600. HeaderAlignmentVert = vaCenter
  1601. Width = 137
  1602. end
  1603. object Column18: TcxGridColumn
  1604. Caption = #51333#47308' '#50696#51221' '#51068#49884
  1605. PropertiesClassName = 'TcxLabelProperties'
  1606. Properties.Alignment.Horz = taCenter
  1607. Properties.Alignment.Vert = taVCenter
  1608. HeaderAlignmentHorz = taCenter
  1609. HeaderAlignmentVert = vaCenter
  1610. Width = 126
  1611. end
  1612. object Column36: TcxGridColumn
  1613. Caption = #46028#48156#49345#54889' '#51333#47308' '#54869#51064#48169#48277
  1614. PropertiesClassName = 'TcxLabelProperties'
  1615. Properties.Alignment.Vert = taVCenter
  1616. HeaderAlignmentHorz = taCenter
  1617. HeaderAlignmentVert = vaCenter
  1618. Width = 176
  1619. end
  1620. object Column37: TcxGridColumn
  1621. Caption = #46028#48156#49345#54889' '#51333#47308#51068#49884
  1622. PropertiesClassName = 'TcxLabelProperties'
  1623. Properties.Alignment.Horz = taCenter
  1624. Properties.Alignment.Vert = taVCenter
  1625. HeaderAlignmentHorz = taCenter
  1626. HeaderAlignmentVert = vaCenter
  1627. Width = 153
  1628. end
  1629. object Column38: TcxGridColumn
  1630. Caption = #52636#46041#51109#48708#45236#50857
  1631. PropertiesClassName = 'TcxLabelProperties'
  1632. Properties.Alignment.Vert = taVCenter
  1633. HeaderAlignmentHorz = taCenter
  1634. HeaderAlignmentVert = vaCenter
  1635. Width = 146
  1636. end
  1637. object Column39: TcxGridColumn
  1638. Caption = #52636#46041#51064#50896#49688
  1639. PropertiesClassName = 'TcxLabelProperties'
  1640. Properties.Alignment.Horz = taRightJustify
  1641. Properties.Alignment.Vert = taVCenter
  1642. HeaderAlignmentHorz = taCenter
  1643. HeaderAlignmentVert = vaCenter
  1644. Width = 101
  1645. end
  1646. object Column40: TcxGridColumn
  1647. Caption = #48373#44396#45236#50857
  1648. PropertiesClassName = 'TcxLabelProperties'
  1649. Properties.Alignment.Vert = taVCenter
  1650. HeaderAlignmentHorz = taCenter
  1651. HeaderAlignmentVert = vaCenter
  1652. Width = 170
  1653. end
  1654. object Column41: TcxGridColumn
  1655. Caption = #48373#44396#44592#44036'('#48516')'
  1656. PropertiesClassName = 'TcxLabelProperties'
  1657. Properties.Alignment.Horz = taRightJustify
  1658. Properties.Alignment.Vert = taVCenter
  1659. HeaderAlignmentHorz = taCenter
  1660. HeaderAlignmentVert = vaCenter
  1661. Width = 94
  1662. end
  1663. object Column06: TcxGridColumn
  1664. Caption = #44396#44036' ID'
  1665. PropertiesClassName = 'TcxLabelProperties'
  1666. Properties.Alignment.Horz = taCenter
  1667. Properties.Alignment.Vert = taVCenter
  1668. HeaderAlignmentHorz = taCenter
  1669. HeaderAlignmentVert = vaCenter
  1670. Options.Editing = False
  1671. Width = 92
  1672. end
  1673. object Column07: TcxGridColumn
  1674. Caption = 'X '#51340#54364
  1675. PropertiesClassName = 'TcxLabelProperties'
  1676. Properties.Alignment.Horz = taRightJustify
  1677. Properties.Alignment.Vert = taVCenter
  1678. HeaderAlignmentHorz = taCenter
  1679. HeaderAlignmentVert = vaCenter
  1680. Options.Editing = False
  1681. Width = 90
  1682. end
  1683. object Column08: TcxGridColumn
  1684. Caption = 'Y '#51340#54364
  1685. PropertiesClassName = 'TcxLabelProperties'
  1686. Properties.Alignment.Horz = taRightJustify
  1687. Properties.Alignment.Vert = taVCenter
  1688. HeaderAlignmentHorz = taCenter
  1689. HeaderAlignmentVert = vaCenter
  1690. Options.Editing = False
  1691. Width = 80
  1692. end
  1693. object Column19: TcxGridColumn
  1694. Caption = #48156#49373' '#52264#47196
  1695. PropertiesClassName = 'TcxLabelProperties'
  1696. Properties.Alignment.Horz = taRightJustify
  1697. Properties.Alignment.Vert = taVCenter
  1698. HeaderAlignmentHorz = taCenter
  1699. HeaderAlignmentVert = vaCenter
  1700. Width = 73
  1701. end
  1702. object Column20: TcxGridColumn
  1703. Caption = #52264#45800' '#52264#47196
  1704. PropertiesClassName = 'TcxLabelProperties'
  1705. Properties.Alignment.Horz = taRightJustify
  1706. Properties.Alignment.Vert = taVCenter
  1707. HeaderAlignmentHorz = taCenter
  1708. HeaderAlignmentVert = vaCenter
  1709. Width = 70
  1710. end
  1711. object Column21: TcxGridColumn
  1712. Caption = #51648#52404' '#44600#51060
  1713. PropertiesClassName = 'TcxLabelProperties'
  1714. Properties.Alignment.Horz = taRightJustify
  1715. Properties.Alignment.Vert = taVCenter
  1716. HeaderAlignmentHorz = taCenter
  1717. HeaderAlignmentVert = vaCenter
  1718. Width = 80
  1719. end
  1720. object Column22: TcxGridColumn
  1721. Caption = #46028#48156#49345#54889' '#44600#51060
  1722. PropertiesClassName = 'TcxLabelProperties'
  1723. Properties.Alignment.Horz = taRightJustify
  1724. Properties.Alignment.Vert = taVCenter
  1725. HeaderAlignmentHorz = taCenter
  1726. HeaderAlignmentVert = vaCenter
  1727. Width = 80
  1728. end
  1729. object Column23: TcxGridColumn
  1730. Caption = #49548#54805' '#52264#47049' '#45824#49688
  1731. PropertiesClassName = 'TcxLabelProperties'
  1732. Properties.Alignment.Horz = taRightJustify
  1733. Properties.Alignment.Vert = taVCenter
  1734. HeaderAlignmentHorz = taCenter
  1735. HeaderAlignmentVert = vaCenter
  1736. Width = 95
  1737. end
  1738. object Column24: TcxGridColumn
  1739. Caption = #51473#45824#54805' '#52264#47049' '#45824#49688
  1740. PropertiesClassName = 'TcxLabelProperties'
  1741. Properties.Alignment.Horz = taRightJustify
  1742. Properties.Alignment.Vert = taVCenter
  1743. HeaderAlignmentHorz = taCenter
  1744. HeaderAlignmentVert = vaCenter
  1745. Width = 109
  1746. end
  1747. object Column25: TcxGridColumn
  1748. Caption = #48512#49345#51088
  1749. PropertiesClassName = 'TcxLabelProperties'
  1750. Properties.Alignment.Horz = taRightJustify
  1751. Properties.Alignment.Vert = taVCenter
  1752. HeaderAlignmentHorz = taCenter
  1753. HeaderAlignmentVert = vaCenter
  1754. Width = 63
  1755. end
  1756. object Column26: TcxGridColumn
  1757. Caption = #49324#47581#51088
  1758. PropertiesClassName = 'TcxLabelProperties'
  1759. Properties.Alignment.Horz = taRightJustify
  1760. Properties.Alignment.Vert = taVCenter
  1761. HeaderAlignmentHorz = taCenter
  1762. HeaderAlignmentVert = vaCenter
  1763. Width = 64
  1764. end
  1765. object Column27: TcxGridColumn
  1766. Caption = #44592#49345' '#49345#53468
  1767. PropertiesClassName = 'TcxLabelProperties'
  1768. Properties.Alignment.Vert = taVCenter
  1769. HeaderAlignmentHorz = taCenter
  1770. HeaderAlignmentVert = vaCenter
  1771. Width = 99
  1772. end
  1773. object Column28: TcxGridColumn
  1774. Caption = #45824#51025#49688#51456
  1775. PropertiesClassName = 'TcxLabelProperties'
  1776. Properties.Alignment.Horz = taCenter
  1777. Properties.Alignment.Vert = taVCenter
  1778. HeaderAlignmentHorz = taCenter
  1779. HeaderAlignmentVert = vaCenter
  1780. Width = 89
  1781. end
  1782. object Column29: TcxGridColumn
  1783. Caption = 'UTIS'#50672#44228#50668#48512
  1784. PropertiesClassName = 'TcxLabelProperties'
  1785. Properties.Alignment.Horz = taCenter
  1786. Properties.Alignment.Vert = taVCenter
  1787. HeaderAlignmentHorz = taCenter
  1788. HeaderAlignmentVert = vaCenter
  1789. Width = 84
  1790. end
  1791. object Column30: TcxGridColumn
  1792. Caption = #44256#51109#52264#47049#50668#48512
  1793. PropertiesClassName = 'TcxLabelProperties'
  1794. Properties.Alignment.Horz = taCenter
  1795. Properties.Alignment.Vert = taVCenter
  1796. HeaderAlignmentHorz = taCenter
  1797. HeaderAlignmentVert = vaCenter
  1798. Width = 77
  1799. end
  1800. object Column31: TcxGridColumn
  1801. Caption = #45209#54616#47932#50668#48512
  1802. PropertiesClassName = 'TcxLabelProperties'
  1803. Properties.Alignment.Horz = taCenter
  1804. Properties.Alignment.Vert = taVCenter
  1805. HeaderAlignmentHorz = taCenter
  1806. HeaderAlignmentVert = vaCenter
  1807. Width = 82
  1808. end
  1809. object Column32: TcxGridColumn
  1810. Caption = #54868#51116#50948#54744#47932#50668#48512
  1811. PropertiesClassName = 'TcxLabelProperties'
  1812. Properties.Alignment.Horz = taCenter
  1813. Properties.Alignment.Vert = taVCenter
  1814. HeaderAlignmentHorz = taCenter
  1815. HeaderAlignmentVert = vaCenter
  1816. Width = 89
  1817. end
  1818. object Column33: TcxGridColumn
  1819. Caption = #53685#54665#51228#54620#50976#54805
  1820. PropertiesClassName = 'TcxLabelProperties'
  1821. Properties.Alignment.Horz = taCenter
  1822. Properties.Alignment.Vert = taVCenter
  1823. HeaderAlignmentHorz = taCenter
  1824. HeaderAlignmentVert = vaCenter
  1825. Width = 77
  1826. end
  1827. object Column34: TcxGridColumn
  1828. Caption = 'VMS'#54364#52636#50668#48512
  1829. PropertiesClassName = 'TcxLabelProperties'
  1830. Properties.Alignment.Horz = taCenter
  1831. Properties.Alignment.Vert = taVCenter
  1832. HeaderAlignmentHorz = taCenter
  1833. HeaderAlignmentVert = vaCenter
  1834. Width = 73
  1835. end
  1836. object Column99: TcxGridColumn
  1837. Caption = #47700#47784#47532
  1838. DataBinding.ValueType = 'Integer'
  1839. PropertiesClassName = 'TcxCalcEditProperties'
  1840. Properties.Alignment.Horz = taRightJustify
  1841. Properties.Alignment.Vert = taVCenter
  1842. Visible = False
  1843. HeaderAlignmentHorz = taCenter
  1844. HeaderAlignmentVert = vaCenter
  1845. end
  1846. end
  1847. object GlList: TcxGridLevel
  1848. GridView = TvList
  1849. end
  1850. end
  1851. end
  1852. end
  1853. object lblFileName: TcxLabel
  1854. Left = 30
  1855. Top = 209
  1856. Caption = #46028#48156#51221#48372
  1857. Transparent = True
  1858. Visible = False
  1859. end
  1860. end