PRK0010MF.dfm 107 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823
  1. object PRK0010M: TPRK0010M
  2. Left = 0
  3. Top = 0
  4. HorzScrollBar.Visible = False
  5. VertScrollBar.Visible = False
  6. Caption = #51452#52264#51109' '#44288#47532
  7. ClientHeight = 848
  8. ClientWidth = 1532
  9. Color = clBtnFace
  10. Font.Charset = DEFAULT_CHARSET
  11. Font.Color = clWindowText
  12. Font.Height = -13
  13. Font.Name = #47569#51008' '#44256#46357
  14. Font.Style = []
  15. KeyPreview = True
  16. OldCreateOrder = False
  17. Position = poOwnerFormCenter
  18. ShowHint = True
  19. OnClose = FormClose
  20. OnCloseQuery = FormCloseQuery
  21. OnShow = FormShow
  22. DesignSize = (
  23. 1532
  24. 848)
  25. PixelsPerInch = 96
  26. TextHeight = 17
  27. object ShpTitle: TShape
  28. Left = 4
  29. Top = 4
  30. Width = 1524
  31. Height = 40
  32. Anchors = [akLeft, akTop, akRight]
  33. Brush.Color = 14671839
  34. Pen.Color = 10849679
  35. Pen.Width = 2
  36. ExplicitWidth = 1269
  37. end
  38. object LblCaption: TLabel
  39. Left = 16
  40. Top = 10
  41. Width = 267
  42. Height = 23
  43. Caption = #53440#51060#53952' '
  44. Font.Charset = DEFAULT_CHARSET
  45. Font.Color = 4740964
  46. Font.Height = -17
  47. Font.Name = #47569#51008' '#44256#46357
  48. Font.Style = [fsBold]
  49. ParentFont = False
  50. ParentShowHint = False
  51. ShowHint = True
  52. end
  53. object ShpList: TShape
  54. Left = 8
  55. Top = 50
  56. Width = 1524
  57. Height = 792
  58. Anchors = [akLeft, akTop, akRight, akBottom]
  59. Pen.Color = 10849679
  60. Pen.Width = 2
  61. end
  62. object BtnClose: TcxButton
  63. Left = 1443
  64. Top = 11
  65. Width = 75
  66. Height = 25
  67. Cursor = crHandPoint
  68. Hint = #45803#44592
  69. Anchors = [akTop, akRight]
  70. Caption = #45803#44592
  71. Colors.Default = 10737865
  72. TabOrder = 0
  73. Font.Charset = DEFAULT_CHARSET
  74. Font.Color = clBlack
  75. Font.Height = -13
  76. Font.Name = #47569#51008' '#44256#46357
  77. Font.Style = [fsBold]
  78. ParentFont = False
  79. OnClick = BtnCloseClick
  80. end
  81. object EdFocus: TEdit
  82. Left = -10
  83. Top = -10
  84. Width = 2
  85. Height = 25
  86. ImeName = 'Microsoft Office IME 2007'
  87. TabOrder = 1
  88. Text = 'EdFocus'
  89. end
  90. object PnlBack: TPanel
  91. Left = 12
  92. Top = 56
  93. Width = 1506
  94. Height = 779
  95. Anchors = [akLeft, akTop, akRight, akBottom]
  96. BevelOuter = bvNone
  97. ParentBackground = False
  98. ParentColor = True
  99. TabOrder = 2
  100. object PnlBottom: TPanel
  101. Left = 0
  102. Top = 0
  103. Width = 1506
  104. Height = 779
  105. Align = alClient
  106. BevelOuter = bvNone
  107. TabOrder = 0
  108. object PnlLeft: TPanel
  109. Left = 0
  110. Top = 0
  111. Width = 1506
  112. Height = 779
  113. Align = alClient
  114. BevelOuter = bvNone
  115. TabOrder = 0
  116. ExplicitWidth = 658
  117. object cxGroupBox3: TcxGroupBox
  118. Left = 0
  119. Top = 0
  120. Align = alClient
  121. Caption = #9654' '#51452#52264#51109' '#47785#47197
  122. ParentFont = False
  123. Style.BorderColor = clCaptionText
  124. Style.Font.Charset = DEFAULT_CHARSET
  125. Style.Font.Color = clWindowText
  126. Style.Font.Height = -13
  127. Style.Font.Name = #47569#51008' '#44256#46357
  128. Style.Font.Style = []
  129. Style.Shadow = False
  130. Style.TextColor = clWindowText
  131. Style.TextStyle = [fsBold]
  132. Style.IsFontAssigned = True
  133. TabOrder = 0
  134. ExplicitWidth = 658
  135. Height = 282
  136. Width = 728
  137. object CxList: TcxGrid
  138. Left = 3
  139. Top = 19
  140. Width = 722
  141. Height = 253
  142. Align = alClient
  143. TabOrder = 0
  144. ExplicitWidth = 652
  145. object TvList: TcxGridTableView
  146. Navigator.Buttons.Append.Visible = True
  147. Navigator.Buttons.SaveBookmark.Visible = False
  148. Navigator.InfoPanel.Visible = True
  149. FilterBox.CustomizeDialog = False
  150. OnCellDblClick = TvListCellDblClick
  151. DataController.Summary.DefaultGroupSummaryItems = <>
  152. DataController.Summary.FooterSummaryItems = <>
  153. DataController.Summary.SummaryGroups = <>
  154. FilterRow.InfoText = '<'#44160#49353#50612#47484' '#51077#47141' '#54616#49464#50836'>'
  155. FilterRow.ApplyChanges = fracImmediately
  156. OptionsBehavior.CellHints = True
  157. OptionsBehavior.ShowLockedStateImageOptions.BestFit = lsimImmediate
  158. OptionsBehavior.ShowLockedStateImageOptions.Filtering = lsimImmediate
  159. OptionsBehavior.ShowLockedStateImageOptions.Grouping = lsimImmediate
  160. OptionsBehavior.ShowLockedStateImageOptions.Sorting = lsimImmediate
  161. OptionsData.Deleting = False
  162. OptionsData.DeletingConfirmation = False
  163. OptionsData.Inserting = False
  164. OptionsView.GroupByBox = False
  165. OptionsView.Indicator = True
  166. object ColumnSel: TcxGridColumn
  167. Caption = #49440#53469
  168. DataBinding.ValueType = 'Boolean'
  169. PropertiesClassName = 'TcxCheckBoxProperties'
  170. Properties.Alignment = taCenter
  171. Properties.ImmediatePost = True
  172. Properties.NullStyle = nssUnchecked
  173. Visible = False
  174. HeaderAlignmentHorz = taCenter
  175. VisibleForCustomization = False
  176. Width = 45
  177. end
  178. object Column00: TcxGridColumn
  179. Caption = #54200#51665#47784#46300
  180. PropertiesClassName = 'TcxTextEditProperties'
  181. Properties.Alignment.Horz = taCenter
  182. Properties.Alignment.Vert = taVCenter
  183. Visible = False
  184. HeaderAlignmentHorz = taCenter
  185. Options.Editing = False
  186. end
  187. object Column01: TcxGridColumn
  188. Caption = #48264#54840
  189. PropertiesClassName = 'TcxTextEditProperties'
  190. Properties.Alignment.Horz = taCenter
  191. Properties.Alignment.Vert = taVCenter
  192. Properties.MaxLength = 0
  193. HeaderAlignmentHorz = taCenter
  194. Options.Editing = False
  195. Width = 80
  196. end
  197. object Column11: TcxGridColumn
  198. Caption = #51452#52264#51109' ID'
  199. PropertiesClassName = 'TcxTextEditProperties'
  200. Properties.Alignment.Horz = taCenter
  201. Properties.Alignment.Vert = taVCenter
  202. HeaderAlignmentHorz = taCenter
  203. Options.Editing = False
  204. Width = 134
  205. end
  206. object Column02: TcxGridColumn
  207. Caption = #50868#50689#44396#48516
  208. PropertiesClassName = 'TcxTextEditProperties'
  209. Properties.Alignment.Horz = taCenter
  210. Properties.Alignment.Vert = taVCenter
  211. Properties.MaxLength = 0
  212. Visible = False
  213. HeaderAlignmentHorz = taCenter
  214. Options.Editing = False
  215. Width = 91
  216. end
  217. object Column03: TcxGridColumn
  218. Caption = #50976#54805#44396#48516
  219. PropertiesClassName = 'TcxTextEditProperties'
  220. Properties.Alignment.Horz = taCenter
  221. Properties.Alignment.Vert = taVCenter
  222. Visible = False
  223. HeaderAlignmentHorz = taCenter
  224. Options.Editing = False
  225. Width = 94
  226. end
  227. object Column04: TcxGridColumn
  228. Caption = #47749#52845
  229. PropertiesClassName = 'TcxTextEditProperties'
  230. Properties.Alignment.Vert = taVCenter
  231. Properties.MaxLength = 0
  232. HeaderAlignmentHorz = taCenter
  233. Options.Editing = False
  234. Width = 176
  235. end
  236. object Column13: TcxGridColumn
  237. Caption = #49892#49884#44036#51221#48372#51228#44277
  238. PropertiesClassName = 'TcxLabelProperties'
  239. Properties.Alignment.Horz = taCenter
  240. Properties.Alignment.Vert = taVCenter
  241. Visible = False
  242. HeaderAlignmentHorz = taCenter
  243. HeaderAlignmentVert = vaCenter
  244. Width = 106
  245. end
  246. object Column06: TcxGridColumn
  247. Caption = #51228#50612#44592'IP'
  248. PropertiesClassName = 'TcxTextEditProperties'
  249. Properties.Alignment.Horz = taCenter
  250. Properties.Alignment.Vert = taVCenter
  251. Properties.MaxLength = 20
  252. Visible = False
  253. HeaderAlignmentHorz = taCenter
  254. Options.Editing = False
  255. Width = 94
  256. end
  257. object Column07: TcxGridColumn
  258. Caption = #53685#49888#54252#53944
  259. PropertiesClassName = 'TcxTextEditProperties'
  260. Properties.Alignment.Horz = taRightJustify
  261. Properties.Alignment.Vert = taVCenter
  262. Properties.MaxLength = 5
  263. Visible = False
  264. HeaderAlignmentHorz = taCenter
  265. Options.Editing = False
  266. Width = 60
  267. end
  268. object Column08: TcxGridColumn
  269. Caption = #49688#51665#51452#44592
  270. PropertiesClassName = 'TcxTextEditProperties'
  271. Properties.Alignment.Horz = taRightJustify
  272. Properties.Alignment.Vert = taVCenter
  273. Visible = False
  274. HeaderAlignmentHorz = taCenter
  275. Options.Editing = False
  276. Width = 82
  277. end
  278. object Column09: TcxGridColumn
  279. Caption = #49345#53468#51452#44592
  280. PropertiesClassName = 'TcxTextEditProperties'
  281. Properties.Alignment.Horz = taRightJustify
  282. Properties.Alignment.Vert = taVCenter
  283. Visible = False
  284. HeaderAlignmentHorz = taCenter
  285. Options.Editing = False
  286. Width = 72
  287. end
  288. object Column10: TcxGridColumn
  289. Caption = #52509#51452#52264' '#44396#54925#49688
  290. PropertiesClassName = 'TcxTextEditProperties'
  291. Properties.Alignment.Horz = taRightJustify
  292. Properties.Alignment.Vert = taVCenter
  293. HeaderAlignmentHorz = taCenter
  294. Options.Editing = False
  295. Width = 88
  296. end
  297. object Column12: TcxGridColumn
  298. Caption = #52789#51221#48372
  299. PropertiesClassName = 'TcxTextEditProperties'
  300. Properties.Alignment.Vert = taVCenter
  301. Visible = False
  302. HeaderAlignmentHorz = taCenter
  303. Options.Editing = False
  304. VisibleForCustomization = False
  305. Width = 150
  306. end
  307. object Column05: TcxGridColumn
  308. Caption = #49324#50857#50668#48512
  309. PropertiesClassName = 'TcxTextEditProperties'
  310. Properties.Alignment.Horz = taCenter
  311. Properties.Alignment.Vert = taVCenter
  312. Properties.MaxLength = 20
  313. Visible = False
  314. HeaderAlignmentHorz = taCenter
  315. Options.Editing = False
  316. VisibleForCustomization = False
  317. Width = 63
  318. end
  319. object Column99: TcxGridColumn
  320. Caption = #47700#47784#47532
  321. DataBinding.ValueType = 'Integer'
  322. PropertiesClassName = 'TcxCalcEditProperties'
  323. Properties.Alignment.Horz = taCenter
  324. Properties.Alignment.Vert = taVCenter
  325. Visible = False
  326. Options.Editing = False
  327. end
  328. end
  329. object GlList: TcxGridLevel
  330. GridView = TvList
  331. end
  332. end
  333. end
  334. object GrpMap: TcxGroupBox
  335. Left = 0
  336. Top = 288
  337. Align = alBottom
  338. Caption = #9654' '#50948#52824#49444#51221
  339. ParentFont = False
  340. Style.BorderColor = clCaptionText
  341. Style.Font.Charset = DEFAULT_CHARSET
  342. Style.Font.Color = clWindowText
  343. Style.Font.Height = -13
  344. Style.Font.Name = #47569#51008' '#44256#46357
  345. Style.Font.Style = []
  346. Style.Shadow = False
  347. Style.TextColor = clBlack
  348. Style.TextStyle = [fsBold]
  349. Style.IsFontAssigned = True
  350. TabOrder = 1
  351. ExplicitWidth = 658
  352. Height = 491
  353. Width = 1506
  354. inline FRAMEOpenMap1: TFRAMEOpenMap
  355. Left = 3
  356. Top = 19
  357. Width = 1500
  358. Height = 462
  359. Align = alClient
  360. ParentShowHint = False
  361. ShowHint = True
  362. TabOrder = 0
  363. ExplicitLeft = 3
  364. ExplicitTop = 19
  365. ExplicitWidth = 652
  366. ExplicitHeight = 462
  367. inherited PnlToolbar: TPanel
  368. Width = 1500
  369. ExplicitWidth = 652
  370. inherited EdFocus: TEdit
  371. Height = 25
  372. ExplicitHeight = 25
  373. end
  374. inherited cxLabel26: TcxLabel
  375. AnchorX = 122
  376. AnchorY = 19
  377. end
  378. inherited cxLabel27: TcxLabel
  379. AnchorX = 280
  380. AnchorY = 19
  381. end
  382. inherited PnlGisTool: TPanel
  383. Width = 1067
  384. ExplicitWidth = 219
  385. inherited ChkShowNmbr: TcxCheckBox
  386. ExplicitHeight = 28
  387. end
  388. inherited EdMapPos: TcxTextEdit
  389. ExplicitHeight = 28
  390. end
  391. end
  392. inherited cxLabel1: TcxLabel
  393. AnchorX = 346
  394. AnchorY = 19
  395. end
  396. inherited LblZoom: TcxLabel
  397. Left = 1413
  398. ExplicitLeft = 565
  399. AnchorX = 1495
  400. AnchorY = 19
  401. end
  402. end
  403. inherited lblTitle: TcxLabel
  404. ExplicitWidth = 69
  405. ExplicitHeight = 21
  406. end
  407. inherited reMsg: TMemo
  408. Top = 315
  409. Width = 1500
  410. ExplicitTop = 315
  411. ExplicitWidth = 652
  412. end
  413. inherited PnlMap: TPanel
  414. Width = 1500
  415. Height = 277
  416. ExplicitWidth = 652
  417. ExplicitHeight = 277
  418. inherited WebBrowser1: TWebBrowser
  419. Width = 1496
  420. Height = 273
  421. ExplicitWidth = 659
  422. ExplicitHeight = 330
  423. ControlData = {
  424. 4C0000009E9A0000371C00000000000000000000000000000000000000000000
  425. 000000004C000000000000000000000001000000E0D057007335CF11AE690800
  426. 2B2E126208000000000000004C0000000114020000000000C000000000000046
  427. 8000000000000000000000000000000000000000000000000000000000000000
  428. 00000000000000000100000000000000000000000000000000000000}
  429. end
  430. end
  431. inherited ilToolbarsSmall: TcxImageList
  432. FormatVersion = 1
  433. end
  434. end
  435. end
  436. object cxSplitter1: TcxSplitter
  437. Left = 0
  438. Top = 282
  439. Width = 1506
  440. Height = 6
  441. AlignSplitter = salBottom
  442. Control = GrpMap
  443. ExplicitWidth = 658
  444. end
  445. object cxSplitter3: TcxSplitter
  446. Left = 728
  447. Top = 0
  448. Width = 6
  449. Height = 282
  450. AlignSplitter = salRight
  451. Visible = False
  452. ExplicitLeft = 725
  453. ExplicitTop = -6
  454. end
  455. object PnlEdit: TPanel
  456. Left = 734
  457. Top = 0
  458. Width = 772
  459. Height = 282
  460. Align = alRight
  461. BevelOuter = bvNone
  462. TabOrder = 4
  463. ExplicitLeft = 728
  464. object PnlMenu: TPanel
  465. Left = 0
  466. Top = 251
  467. Width = 772
  468. Height = 31
  469. Align = alBottom
  470. BevelOuter = bvNone
  471. TabOrder = 0
  472. ExplicitWidth = 842
  473. DesignSize = (
  474. 772
  475. 31)
  476. object BtnEdit: TcxButton
  477. Tag = 2
  478. Left = 442
  479. Top = 3
  480. Width = 75
  481. Height = 25
  482. Cursor = crHandPoint
  483. Hint = #45936#51060#53552' '#54200#51665
  484. Anchors = [akRight, akBottom]
  485. Caption = #54200#51665
  486. Colors.Default = 10737865
  487. Enabled = False
  488. TabOrder = 0
  489. Font.Charset = DEFAULT_CHARSET
  490. Font.Color = clBlack
  491. Font.Height = -13
  492. Font.Name = #47569#51008' '#44256#46357
  493. Font.Style = [fsBold]
  494. ParentFont = False
  495. OnClick = BtnEditClick
  496. ExplicitLeft = 512
  497. end
  498. object BtnInsert: TcxButton
  499. Tag = 2
  500. Left = 523
  501. Top = 3
  502. Width = 75
  503. Height = 25
  504. Cursor = crHandPoint
  505. Hint = #45936#51060#53552' '#52628#44032
  506. Anchors = [akRight, akBottom]
  507. Caption = #52628#44032
  508. Colors.Default = 10737865
  509. TabOrder = 1
  510. Font.Charset = DEFAULT_CHARSET
  511. Font.Color = clBlack
  512. Font.Height = -13
  513. Font.Name = #47569#51008' '#44256#46357
  514. Font.Style = [fsBold]
  515. ParentFont = False
  516. OnClick = BtnInsertClick
  517. ExplicitLeft = 593
  518. end
  519. object BtnDelete: TcxButton
  520. Tag = 4
  521. Left = 605
  522. Top = 3
  523. Width = 75
  524. Height = 25
  525. Cursor = crHandPoint
  526. Hint = #45936#51060#53552' '#49325#51228
  527. Anchors = [akRight, akBottom]
  528. Caption = #49325#51228
  529. Colors.Default = 10737865
  530. Enabled = False
  531. TabOrder = 2
  532. Font.Charset = DEFAULT_CHARSET
  533. Font.Color = clBlack
  534. Font.Height = -13
  535. Font.Name = #47569#51008' '#44256#46357
  536. Font.Style = [fsBold]
  537. ParentFont = False
  538. OnClick = BtnDeleteClick
  539. ExplicitLeft = 675
  540. end
  541. object BtnSave: TcxButton
  542. Tag = 5
  543. Left = 686
  544. Top = 3
  545. Width = 75
  546. Height = 25
  547. Cursor = crHandPoint
  548. Hint = #54200#51665#51089#50629' '#51200#51109
  549. Anchors = [akRight, akBottom]
  550. Caption = #51200#51109
  551. Colors.Default = 10737865
  552. Enabled = False
  553. TabOrder = 3
  554. Font.Charset = DEFAULT_CHARSET
  555. Font.Color = clBlack
  556. Font.Height = -13
  557. Font.Name = #47569#51008' '#44256#46357
  558. Font.Style = [fsBold]
  559. ParentFont = False
  560. OnClick = BtnSaveClick
  561. ExplicitLeft = 756
  562. end
  563. end
  564. object GrpInfo: TcxGroupBox
  565. Left = 0
  566. Top = 0
  567. Align = alClient
  568. Caption = #9654' '#51452#52264#51109' '#51221#48372
  569. ParentFont = False
  570. Style.BorderColor = clCaptionText
  571. Style.Font.Charset = DEFAULT_CHARSET
  572. Style.Font.Color = clWindowText
  573. Style.Font.Height = -13
  574. Style.Font.Name = #47569#51008' '#44256#46357
  575. Style.Font.Style = []
  576. Style.Shadow = False
  577. Style.TextColor = clBlack
  578. Style.TextStyle = [fsBold]
  579. Style.IsFontAssigned = True
  580. TabOrder = 1
  581. ExplicitTop = -3
  582. DesignSize = (
  583. 772
  584. 244)
  585. Height = 251
  586. Width = 772
  587. object ImgDesc02: TImage
  588. Left = 9
  589. Top = 59
  590. Width = 9
  591. Height = 9
  592. Transparent = True
  593. end
  594. object ImgDesc03: TImage
  595. Left = 9
  596. Top = 147
  597. Width = 9
  598. Height = 9
  599. Transparent = True
  600. end
  601. object ImgDesc04: TImage
  602. Left = 9
  603. Top = 116
  604. Width = 9
  605. Height = 9
  606. Transparent = True
  607. end
  608. object ImgDesc99: TImage
  609. Left = 9
  610. Top = 89
  611. Width = 9
  612. Height = 9
  613. Transparent = True
  614. end
  615. object ImgDesc24: TImage
  616. Left = 9
  617. Top = 29
  618. Width = 9
  619. Height = 9
  620. Transparent = True
  621. end
  622. object ImgDesc79: TImage
  623. Left = 9
  624. Top = 181
  625. Width = 9
  626. Height = 9
  627. Transparent = True
  628. end
  629. object ImgDesc05: TImage
  630. Left = 633
  631. Top = 38
  632. Width = 9
  633. Height = 9
  634. Transparent = True
  635. Visible = False
  636. end
  637. object ImgDesc35: TImage
  638. Left = 673
  639. Top = 50
  640. Width = 9
  641. Height = 9
  642. Transparent = True
  643. Visible = False
  644. end
  645. object PRK_PLCE_MANAGE_NO: TcxTextEdit
  646. Left = 229
  647. Top = 22
  648. Properties.Alignment.Vert = taVCenter
  649. TabOrder = 0
  650. Width = 187
  651. end
  652. object cxLabel2: TcxLabel
  653. Left = 19
  654. Top = 54
  655. AutoSize = False
  656. Caption = #51452#52264#51109#47749' [*]'
  657. Properties.Alignment.Horz = taRightJustify
  658. Properties.Alignment.Vert = taVCenter
  659. Transparent = True
  660. Height = 21
  661. Width = 105
  662. AnchorX = 124
  663. AnchorY = 65
  664. end
  665. object cxLabel6: TcxLabel
  666. Left = 19
  667. Top = 113
  668. AutoSize = False
  669. Caption = #50948#52824' X/Y'
  670. Properties.Alignment.Horz = taRightJustify
  671. Properties.Alignment.Vert = taVCenter
  672. Transparent = True
  673. Height = 21
  674. Width = 105
  675. AnchorX = 124
  676. AnchorY = 124
  677. end
  678. object PRK_PLCE_NM: TcxTextEdit
  679. Left = 128
  680. Top = 50
  681. Properties.Alignment.Vert = taVCenter
  682. Properties.MaxLength = 32
  683. Properties.ReadOnly = False
  684. TabOrder = 3
  685. Width = 290
  686. end
  687. object cxLabel15: TcxLabel
  688. Left = 24
  689. Top = 85
  690. AutoSize = False
  691. Caption = #51452#49548
  692. Properties.Alignment.Horz = taRightJustify
  693. Properties.Alignment.Vert = taVCenter
  694. Transparent = True
  695. Height = 21
  696. Width = 94
  697. AnchorX = 118
  698. AnchorY = 96
  699. end
  700. object PRK_PLCE_NMBR: TcxTextEdit
  701. Left = 128
  702. Top = 22
  703. Properties.Alignment.Horz = taCenter
  704. Properties.Alignment.Vert = taVCenter
  705. Properties.ReadOnly = True
  706. TabOrder = 5
  707. Width = 100
  708. end
  709. object cxLabel18: TcxLabel
  710. Left = 19
  711. Top = 24
  712. AutoSize = False
  713. Caption = #51452#52264#51109#48264#54840'/ID[*]'
  714. Properties.Alignment.Horz = taRightJustify
  715. Properties.Alignment.Vert = taVCenter
  716. Transparent = True
  717. Height = 21
  718. Width = 105
  719. AnchorX = 124
  720. AnchorY = 35
  721. end
  722. object PRK_PLCE_ENTRC_LA: TcxSpinEdit
  723. Left = 128
  724. Top = 110
  725. Properties.Alignment.Horz = taRightJustify
  726. Properties.Alignment.Vert = taVCenter
  727. Properties.DisplayFormat = '##0.######0'
  728. Properties.EditFormat = '##0.######0'
  729. Properties.MaxValue = 9999999999.000000000000000000
  730. Properties.ReadOnly = False
  731. Properties.SpinButtons.Visible = False
  732. Properties.ValueType = vtFloat
  733. Style.LookAndFeel.Kind = lfUltraFlat
  734. Style.LookAndFeel.NativeStyle = False
  735. Style.TextStyle = []
  736. Style.ButtonStyle = btsUltraFlat
  737. StyleDisabled.LookAndFeel.Kind = lfUltraFlat
  738. StyleDisabled.LookAndFeel.NativeStyle = False
  739. StyleFocused.LookAndFeel.Kind = lfUltraFlat
  740. StyleFocused.LookAndFeel.NativeStyle = False
  741. StyleFocused.TextStyle = [fsBold]
  742. StyleHot.LookAndFeel.Kind = lfUltraFlat
  743. StyleHot.LookAndFeel.NativeStyle = False
  744. TabOrder = 7
  745. Width = 100
  746. end
  747. object PRK_PLCE_ENTRC_LO: TcxSpinEdit
  748. Left = 229
  749. Top = 110
  750. Properties.Alignment.Horz = taRightJustify
  751. Properties.Alignment.Vert = taVCenter
  752. Properties.DisplayFormat = '##0.######0'
  753. Properties.EditFormat = '##0.######0'
  754. Properties.MaxValue = 9999999999.000000000000000000
  755. Properties.ReadOnly = False
  756. Properties.SpinButtons.Visible = False
  757. Properties.ValueType = vtFloat
  758. Style.LookAndFeel.Kind = lfUltraFlat
  759. Style.LookAndFeel.NativeStyle = False
  760. Style.TextStyle = []
  761. Style.ButtonStyle = btsUltraFlat
  762. StyleDisabled.LookAndFeel.Kind = lfUltraFlat
  763. StyleDisabled.LookAndFeel.NativeStyle = False
  764. StyleFocused.LookAndFeel.Kind = lfUltraFlat
  765. StyleFocused.LookAndFeel.NativeStyle = False
  766. StyleFocused.TextStyle = [fsBold]
  767. StyleHot.LookAndFeel.Kind = lfUltraFlat
  768. StyleHot.LookAndFeel.NativeStyle = False
  769. TabOrder = 8
  770. Width = 100
  771. end
  772. object PRK_PLCE_ADRES: TcxTextEdit
  773. Left = 128
  774. Top = 81
  775. Properties.Alignment.Vert = taVCenter
  776. Properties.MaxLength = 128
  777. Properties.ReadOnly = False
  778. TabOrder = 9
  779. Width = 484
  780. end
  781. object BtnOPR_CHRGE: TcxButton
  782. Tag = 2
  783. Left = 750
  784. Top = 1313
  785. Width = 143
  786. Height = 25
  787. Cursor = crHandPoint
  788. Hint = #51452#52264#50836#44552' '#54200#51665
  789. Anchors = [akRight, akBottom]
  790. Caption = #51452#52264#50836#44552' '#54200#51665
  791. Colors.Default = 10737865
  792. Glyph.Data = {
  793. 36040000424D3604000000000000360000002800000010000000100000000100
  794. 2000000000000004000000000000000000000000000000000000000000000000
  795. 0000000000000000000000000000000000000000000000000000000000000000
  796. 0000000000000000000000000000000000000000000000000000000000E60000
  797. 00E6000000E6000000E6000000E6000000E6000000E6000000E6000000E60000
  798. 00E6000000E6000000E600000000000000000000000000000000000000E6B1B2
  799. B1E6B1B2B1E6B1B2B1E6B1B2B1E6B1B2B1E6B1B2B1E6B1B2B1E6B1B2B1E6B1B2
  800. B1E6838383E6000000E600000000000000000000000000000000000000E6E6E6
  801. E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6
  802. E6E6B1B2B1E6000000E600000000000000000000000000000000000000E6E6E6
  803. E6E6747C74E6747C74E6747C74E6747C74E6747C74E6747C74E6000000E60000
  804. 00E6B1B2B1E6000000E600000000000000000000000000000000000000E6E6E6
  805. E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6000000E61F4AE6E60000
  806. 00E6B1B2B1E6000000E600000000000000000000000000000000000000E6E6E6
  807. E6E6B1B2B1E6B1B2B1E6B1B2B1E6B1B2B1E6000000E61F4AE6E661A1E6E60000
  808. 00E6000000E6000000E6000000E6000000E6000000E600000000000000E6E6E6
  809. E6E6E6E6E6E6E6E6E6E6E6E6E6E6000000E61F4AE6E685D0E6E67BC2E6E61F4A
  810. E6E61F4AE6E61F4AE6E61F4AE6E61F4AE6E6000000E600000000000000E6E6E6
  811. E6E6747C74E6747C74E6000000E696E5E6E696E5E6E696E5E6E68FDDE6E685D0
  812. E6E67BC2E6E66FB2E6E661A1E6E65490E6E6000000E600000000000000E6E6E6
  813. E6E6E6E6E6E6E6E6E6E6E6E6E6E6000000E696E5E6E696E5E6E696E5E6E696E5
  814. E6E68FDCE6E685D0E6E67BC2E6E66EB2E6E6000000E600000000000000E6E6E6
  815. E6E6B1B2B1E6B1B2B1E6B1B2B1E6B1B2B1E6000000E696E5E6E696E5E6E60000
  816. 00E6000000E6000000E6000000E6000000E6000000E600000000000000E6E6E6
  817. E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6000000E696E5E6E60000
  818. 00E6000000E60000000000000000000000000000000000000000000000E6E6E6
  819. E6E6747C74E6747C74E6747C74E6747C74E6747C74E6747C74E6000000E60000
  820. 00E6000000000000000000000000000000000000000000000000000000E6E6E6
  821. E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6000000E60000
  822. 0000000000000000000000000000000000000000000000000000000000E60000
  823. 00E6000000E6000000E6000000E6000000E6000000E6000000E6000000000000
  824. 0000000000000000000000000000000000000000000000000000000000000000
  825. 0000000000000000000000000000000000000000000000000000000000000000
  826. 0000000000000000000000000000000000000000000000000000}
  827. LookAndFeel.NativeStyle = False
  828. TabOrder = 10
  829. end
  830. object BtnOPR_SCHED: TcxButton
  831. Tag = 2
  832. Left = 900
  833. Top = 1313
  834. Width = 143
  835. Height = 25
  836. Cursor = crHandPoint
  837. Hint = #50868#50689#49828#52992#51572' '#54200#51665
  838. Anchors = [akRight, akBottom]
  839. Caption = #50868#50689#49828#52992#51572' '#54200#51665
  840. Colors.Default = 10737865
  841. Glyph.Data = {
  842. 36040000424D3604000000000000360000002800000010000000100000000100
  843. 2000000000000004000000000000000000000000000000000000000000000000
  844. 0000000000000000000000000000000000000000000000000000000000000000
  845. 0000000000000000000000000000000000000000000000000000000000E60000
  846. 00E6000000E6000000E6000000E6000000E6000000E6000000E6000000E60000
  847. 00E6000000E6000000E600000000000000000000000000000000000000E6B1B2
  848. B1E6B1B2B1E6B1B2B1E6B1B2B1E6B1B2B1E6B1B2B1E6B1B2B1E6B1B2B1E6B1B2
  849. B1E6838383E6000000E600000000000000000000000000000000000000E6E6E6
  850. E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6
  851. E6E6B1B2B1E6000000E600000000000000000000000000000000000000E6E6E6
  852. E6E6747C74E6747C74E6747C74E6747C74E6747C74E6747C74E6000000E60000
  853. 00E6B1B2B1E6000000E600000000000000000000000000000000000000E6E6E6
  854. E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6000000E61F4AE6E60000
  855. 00E6B1B2B1E6000000E600000000000000000000000000000000000000E6E6E6
  856. E6E6B1B2B1E6B1B2B1E6B1B2B1E6B1B2B1E6000000E61F4AE6E661A1E6E60000
  857. 00E6000000E6000000E6000000E6000000E6000000E600000000000000E6E6E6
  858. E6E6E6E6E6E6E6E6E6E6E6E6E6E6000000E61F4AE6E685D0E6E67BC2E6E61F4A
  859. E6E61F4AE6E61F4AE6E61F4AE6E61F4AE6E6000000E600000000000000E6E6E6
  860. E6E6747C74E6747C74E6000000E696E5E6E696E5E6E696E5E6E68FDDE6E685D0
  861. E6E67BC2E6E66FB2E6E661A1E6E65490E6E6000000E600000000000000E6E6E6
  862. E6E6E6E6E6E6E6E6E6E6E6E6E6E6000000E696E5E6E696E5E6E696E5E6E696E5
  863. E6E68FDCE6E685D0E6E67BC2E6E66EB2E6E6000000E600000000000000E6E6E6
  864. E6E6B1B2B1E6B1B2B1E6B1B2B1E6B1B2B1E6000000E696E5E6E696E5E6E60000
  865. 00E6000000E6000000E6000000E6000000E6000000E600000000000000E6E6E6
  866. E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6000000E696E5E6E60000
  867. 00E6000000E60000000000000000000000000000000000000000000000E6E6E6
  868. E6E6747C74E6747C74E6747C74E6747C74E6747C74E6747C74E6000000E60000
  869. 00E6000000000000000000000000000000000000000000000000000000E6E6E6
  870. E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6000000E60000
  871. 0000000000000000000000000000000000000000000000000000000000E60000
  872. 00E6000000E6000000E6000000E6000000E6000000E6000000E6000000000000
  873. 0000000000000000000000000000000000000000000000000000000000000000
  874. 0000000000000000000000000000000000000000000000000000000000000000
  875. 0000000000000000000000000000000000000000000000000000}
  876. LookAndFeel.NativeStyle = False
  877. TabOrder = 11
  878. end
  879. object BtnFLR_NO: TcxButton
  880. Tag = 2
  881. Left = 1292
  882. Top = 1313
  883. Width = 151
  884. Height = 25
  885. Cursor = crHandPoint
  886. Hint = #51452#52264#51109' '#52789' '#51221#48372' '#54200#51665
  887. Anchors = [akRight, akBottom]
  888. Caption = #51452#52264#51109' '#52789' '#51221#48372' '#54200#51665
  889. Colors.Default = 10737865
  890. Glyph.Data = {
  891. 36040000424D3604000000000000360000002800000010000000100000000100
  892. 2000000000000004000000000000000000000000000000000000000000000000
  893. 0000000000000000000000000000000000000000000000000000000000000000
  894. 0000000000000000000000000000000000000000000000000000000000E60000
  895. 00E6000000E6000000E6000000E6000000E6000000E6000000E6000000E60000
  896. 00E6000000E6000000E600000000000000000000000000000000000000E6B1B2
  897. B1E6B1B2B1E6B1B2B1E6B1B2B1E6B1B2B1E6B1B2B1E6B1B2B1E6B1B2B1E6B1B2
  898. B1E6838383E6000000E600000000000000000000000000000000000000E6E6E6
  899. E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6
  900. E6E6B1B2B1E6000000E600000000000000000000000000000000000000E6E6E6
  901. E6E6747C74E6747C74E6747C74E6747C74E6747C74E6747C74E6000000E60000
  902. 00E6B1B2B1E6000000E600000000000000000000000000000000000000E6E6E6
  903. E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6000000E61F4AE6E60000
  904. 00E6B1B2B1E6000000E600000000000000000000000000000000000000E6E6E6
  905. E6E6B1B2B1E6B1B2B1E6B1B2B1E6B1B2B1E6000000E61F4AE6E661A1E6E60000
  906. 00E6000000E6000000E6000000E6000000E6000000E600000000000000E6E6E6
  907. E6E6E6E6E6E6E6E6E6E6E6E6E6E6000000E61F4AE6E685D0E6E67BC2E6E61F4A
  908. E6E61F4AE6E61F4AE6E61F4AE6E61F4AE6E6000000E600000000000000E6E6E6
  909. E6E6747C74E6747C74E6000000E696E5E6E696E5E6E696E5E6E68FDDE6E685D0
  910. E6E67BC2E6E66FB2E6E661A1E6E65490E6E6000000E600000000000000E6E6E6
  911. E6E6E6E6E6E6E6E6E6E6E6E6E6E6000000E696E5E6E696E5E6E696E5E6E696E5
  912. E6E68FDCE6E685D0E6E67BC2E6E66EB2E6E6000000E600000000000000E6E6E6
  913. E6E6B1B2B1E6B1B2B1E6B1B2B1E6B1B2B1E6000000E696E5E6E696E5E6E60000
  914. 00E6000000E6000000E6000000E6000000E6000000E600000000000000E6E6E6
  915. E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6000000E696E5E6E60000
  916. 00E6000000E60000000000000000000000000000000000000000000000E6E6E6
  917. E6E6747C74E6747C74E6747C74E6747C74E6747C74E6747C74E6000000E60000
  918. 00E6000000000000000000000000000000000000000000000000000000E6E6E6
  919. E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6000000E60000
  920. 0000000000000000000000000000000000000000000000000000000000E60000
  921. 00E6000000E6000000E6000000E6000000E6000000E6000000E6000000000000
  922. 0000000000000000000000000000000000000000000000000000000000000000
  923. 0000000000000000000000000000000000000000000000000000000000000000
  924. 0000000000000000000000000000000000000000000000000000}
  925. LookAndFeel.NativeStyle = False
  926. TabOrder = 12
  927. end
  928. object Panel2: TPanel
  929. Left = 876
  930. Top = 19
  931. Width = 1063
  932. Height = 742
  933. Caption = 'Panel1'
  934. TabOrder = 13
  935. Visible = False
  936. object ImgDesc07: TImage
  937. Left = 9
  938. Top = 302
  939. Width = 9
  940. Height = 9
  941. Transparent = True
  942. end
  943. object ImgDesc28: TImage
  944. Left = 9
  945. Top = 271
  946. Width = 9
  947. Height = 9
  948. Transparent = True
  949. end
  950. object ImgDesc27: TImage
  951. Left = 9
  952. Top = 331
  953. Width = 9
  954. Height = 9
  955. Transparent = True
  956. end
  957. object ImgDesc29: TImage
  958. Left = 9
  959. Top = 391
  960. Width = 9
  961. Height = 9
  962. Transparent = True
  963. end
  964. object ImgDesc30: TImage
  965. Left = 9
  966. Top = 427
  967. Width = 9
  968. Height = 9
  969. Transparent = True
  970. end
  971. object ImgDesc31: TImage
  972. Left = 9
  973. Top = 625
  974. Width = 9
  975. Height = 9
  976. Transparent = True
  977. end
  978. object ImgDesc32: TImage
  979. Left = 9
  980. Top = 685
  981. Width = 9
  982. Height = 9
  983. Transparent = True
  984. end
  985. object cxLabel3: TcxLabel
  986. Left = 19
  987. Top = 145
  988. AutoSize = False
  989. Caption = #51452#52264#54805#49885'/'#51060#50857#54805#53468'/'#44553#51648#44396#48516
  990. Properties.Alignment.Horz = taRightJustify
  991. Properties.Alignment.Vert = taVCenter
  992. Transparent = True
  993. Height = 21
  994. Width = 205
  995. AnchorX = 224
  996. AnchorY = 156
  997. end
  998. object cxLabel10: TcxLabel
  999. Left = 19
  1000. Top = 296
  1001. AutoSize = False
  1002. Caption = #52509' '#51452#52264' '#44396#54925#49688
  1003. Properties.Alignment.Horz = taRightJustify
  1004. Properties.Alignment.Vert = taVCenter
  1005. Transparent = True
  1006. Height = 21
  1007. Width = 105
  1008. AnchorX = 124
  1009. AnchorY = 307
  1010. end
  1011. object PARKING_TY: TcxComboBox
  1012. Left = 229
  1013. Top = 140
  1014. Cursor = crHandPoint
  1015. Properties.Alignment.Vert = taVCenter
  1016. Properties.DropDownListStyle = lsFixedList
  1017. Properties.DropDownSizeable = True
  1018. Properties.ReadOnly = False
  1019. TabOrder = 2
  1020. Width = 180
  1021. end
  1022. object PARKING_US: TcxComboBox
  1023. Left = 414
  1024. Top = 140
  1025. Cursor = crHandPoint
  1026. Properties.Alignment.Vert = taVCenter
  1027. Properties.DropDownListStyle = lsFixedList
  1028. Properties.DropDownSizeable = True
  1029. Properties.ReadOnly = False
  1030. TabOrder = 3
  1031. Width = 180
  1032. end
  1033. object cxLabel12: TcxLabel
  1034. Left = 19
  1035. Top = 266
  1036. AutoSize = False
  1037. Caption = #51060#50857#44032#45733#52264#47049
  1038. Properties.Alignment.Horz = taRightJustify
  1039. Properties.Alignment.Vert = taVCenter
  1040. Transparent = True
  1041. Height = 21
  1042. Width = 105
  1043. AnchorX = 124
  1044. AnchorY = 277
  1045. end
  1046. object cxLabel13: TcxLabel
  1047. Left = 307
  1048. Top = 327
  1049. AutoSize = False
  1050. Caption = #51228#50612#44592' Master/Slave/'#49688#51665#51109#52824' '#49688#47049
  1051. Properties.Alignment.Horz = taRightJustify
  1052. Properties.Alignment.Vert = taVCenter
  1053. Transparent = True
  1054. Height = 21
  1055. Width = 246
  1056. AnchorX = 553
  1057. AnchorY = 338
  1058. end
  1059. object COLCT_DEVICE_QTY: TcxSpinEdit
  1060. Left = 708
  1061. Top = 324
  1062. Properties.Alignment.Horz = taRightJustify
  1063. Properties.Alignment.Vert = taVCenter
  1064. Properties.AssignedValues.MinValue = True
  1065. Properties.MaxValue = 99999.000000000000000000
  1066. Properties.ReadOnly = False
  1067. Properties.ValueType = vtInt
  1068. Style.BorderStyle = ebsUltraFlat
  1069. Style.LookAndFeel.Kind = lfUltraFlat
  1070. Style.LookAndFeel.NativeStyle = False
  1071. Style.ButtonStyle = btsUltraFlat
  1072. StyleDisabled.LookAndFeel.Kind = lfUltraFlat
  1073. StyleDisabled.LookAndFeel.NativeStyle = False
  1074. StyleFocused.LookAndFeel.Kind = lfUltraFlat
  1075. StyleFocused.LookAndFeel.NativeStyle = False
  1076. StyleHot.LookAndFeel.Kind = lfUltraFlat
  1077. StyleHot.LookAndFeel.NativeStyle = False
  1078. TabOrder = 6
  1079. Width = 70
  1080. end
  1081. object PRK_PLCE_IMAGE_DC: TcxTextEdit
  1082. Left = 484
  1083. Top = 169
  1084. Properties.MaxLength = 50
  1085. Properties.ReadOnly = False
  1086. TabOrder = 7
  1087. Width = 351
  1088. end
  1089. object cxLabel1: TcxLabel
  1090. Left = 19
  1091. Top = 175
  1092. AutoSize = False
  1093. Caption = #51452#52264#51109' '#51060#48120#51648
  1094. Properties.Alignment.Horz = taRightJustify
  1095. Properties.Alignment.Vert = taVCenter
  1096. Transparent = True
  1097. Height = 21
  1098. Width = 105
  1099. AnchorX = 124
  1100. AnchorY = 186
  1101. end
  1102. object cxLabel8: TcxLabel
  1103. Left = 19
  1104. Top = 205
  1105. AutoSize = False
  1106. Caption = #49884#49828#53596#47749
  1107. Properties.Alignment.Horz = taRightJustify
  1108. Properties.Alignment.Vert = taVCenter
  1109. Transparent = True
  1110. Height = 21
  1111. Width = 105
  1112. AnchorX = 124
  1113. AnchorY = 216
  1114. end
  1115. object cxLabel16: TcxLabel
  1116. Left = 19
  1117. Top = 327
  1118. AutoSize = False
  1119. Caption = #51452#52264#44396#54925' '#45800#50948#51221#48372' '#49688#51665#51109#52824
  1120. Properties.Alignment.Horz = taRightJustify
  1121. Properties.Alignment.Vert = taVCenter
  1122. Transparent = True
  1123. Height = 21
  1124. Width = 191
  1125. AnchorX = 210
  1126. AnchorY = 338
  1127. end
  1128. object cxLabel20: TcxLabel
  1129. Left = 19
  1130. Top = 236
  1131. AutoSize = False
  1132. Caption = #44288#47144' '#44540#44144' '#48277#47161
  1133. Properties.Alignment.Horz = taRightJustify
  1134. Properties.Alignment.Vert = taVCenter
  1135. Transparent = True
  1136. Height = 21
  1137. Width = 105
  1138. AnchorX = 124
  1139. AnchorY = 247
  1140. end
  1141. object MASTER_CONTROLLER: TcxSpinEdit
  1142. Left = 556
  1143. Top = 324
  1144. Properties.Alignment.Horz = taRightJustify
  1145. Properties.Alignment.Vert = taVCenter
  1146. Properties.AssignedValues.MinValue = True
  1147. Properties.MaxValue = 99999.000000000000000000
  1148. Properties.ReadOnly = False
  1149. Properties.ValueType = vtInt
  1150. Style.BorderStyle = ebsUltraFlat
  1151. Style.LookAndFeel.Kind = lfUltraFlat
  1152. Style.LookAndFeel.NativeStyle = False
  1153. Style.ButtonStyle = btsUltraFlat
  1154. StyleDisabled.LookAndFeel.Kind = lfUltraFlat
  1155. StyleDisabled.LookAndFeel.NativeStyle = False
  1156. StyleFocused.LookAndFeel.Kind = lfUltraFlat
  1157. StyleFocused.LookAndFeel.NativeStyle = False
  1158. StyleHot.LookAndFeel.Kind = lfUltraFlat
  1159. StyleHot.LookAndFeel.NativeStyle = False
  1160. TabOrder = 12
  1161. Width = 70
  1162. end
  1163. object AR_LEVEL_SE: TcxComboBox
  1164. Left = 600
  1165. Top = 140
  1166. Cursor = crHandPoint
  1167. Properties.Alignment.Vert = taVCenter
  1168. Properties.DropDownListStyle = lsFixedList
  1169. Properties.DropDownSizeable = True
  1170. Properties.ReadOnly = False
  1171. TabOrder = 13
  1172. Width = 180
  1173. end
  1174. object cxLabel25: TcxLabel
  1175. Left = 335
  1176. Top = 175
  1177. AutoSize = False
  1178. Caption = #51452#52264#51109' '#51060#48120#51648#49444#47749
  1179. Properties.Alignment.Horz = taRightJustify
  1180. Properties.Alignment.Vert = taVCenter
  1181. Transparent = True
  1182. Height = 21
  1183. Width = 143
  1184. AnchorX = 478
  1185. AnchorY = 186
  1186. end
  1187. object BtnPRK_PLCE_IMAGE_DATA: TcxButton
  1188. Tag = 2
  1189. Left = 128
  1190. Top = 169
  1191. Width = 175
  1192. Height = 25
  1193. Cursor = crHandPoint
  1194. Hint = #51452#52264#51109#44396#51312#51060#48120#51648' '#49440#53469
  1195. Caption = #51452#52264#51109#44396#51312#51060#48120#51648
  1196. Colors.Default = 10737865
  1197. TabOrder = 15
  1198. Font.Charset = DEFAULT_CHARSET
  1199. Font.Color = clBlack
  1200. Font.Height = -13
  1201. Font.Name = #47569#51008' '#44256#46357
  1202. Font.Style = [fsBold]
  1203. ParentFont = False
  1204. end
  1205. object PRK_PLCE_IMAGE_TYPE: TcxTextEdit
  1206. Left = 311
  1207. Top = 169
  1208. Properties.Alignment.Horz = taCenter
  1209. Properties.Alignment.Vert = taVCenter
  1210. Properties.MaxLength = 10
  1211. Properties.ReadOnly = False
  1212. TabOrder = 16
  1213. Width = 49
  1214. end
  1215. object SYS_NE: TcxTextEdit
  1216. Left = 128
  1217. Top = 201
  1218. Properties.Alignment.Vert = taVCenter
  1219. Properties.MaxLength = 32
  1220. Properties.ReadOnly = False
  1221. TabOrder = 17
  1222. Width = 290
  1223. end
  1224. object cxLabel26: TcxLabel
  1225. Left = 422
  1226. Top = 205
  1227. AutoSize = False
  1228. Caption = #44288#51228#49884#49828#53596' '#49444#52824#51068#51088
  1229. Properties.Alignment.Horz = taRightJustify
  1230. Properties.Alignment.Vert = taVCenter
  1231. Transparent = True
  1232. Height = 21
  1233. Width = 143
  1234. AnchorX = 565
  1235. AnchorY = 216
  1236. end
  1237. object PARKING_CNTRL_SYS_INSTL_DE: TcxTextEdit
  1238. Left = 571
  1239. Top = 201
  1240. Properties.Alignment.Horz = taCenter
  1241. Properties.Alignment.Vert = taVCenter
  1242. Properties.MaxLength = 8
  1243. Properties.ReadOnly = False
  1244. TabOrder = 19
  1245. Width = 100
  1246. end
  1247. object RELATION_LAW_AND_ORDINANCES: TcxTextEdit
  1248. Left = 128
  1249. Top = 233
  1250. Properties.MaxLength = 50
  1251. Properties.ReadOnly = False
  1252. TabOrder = 20
  1253. Width = 351
  1254. end
  1255. object PRK_AVAIL_CARTYPE0: TcxCheckBox
  1256. Left = 132
  1257. Top = 264
  1258. Cursor = crHandPoint
  1259. Caption = #49849#50857'('#49548#54805')'
  1260. ParentShowHint = False
  1261. ShowHint = True
  1262. State = cbsChecked
  1263. Style.BorderColor = 9868950
  1264. Style.BorderStyle = ebsThick
  1265. Style.Shadow = False
  1266. TabOrder = 21
  1267. Transparent = True
  1268. Width = 89
  1269. end
  1270. object PRK_AVAIL_CARTYPE: TcxTextEdit
  1271. Left = 484
  1272. Top = 232
  1273. Properties.Alignment.Vert = taVCenter
  1274. Properties.MaxLength = 32
  1275. Properties.ReadOnly = False
  1276. TabOrder = 22
  1277. Width = 133
  1278. end
  1279. object PRK_AVAIL_CARTYPE1: TcxCheckBox
  1280. Left = 230
  1281. Top = 264
  1282. Cursor = crHandPoint
  1283. Caption = #49849#50857'('#51473#54805')'
  1284. ParentShowHint = False
  1285. ShowHint = True
  1286. State = cbsChecked
  1287. Style.BorderColor = 9868950
  1288. Style.BorderStyle = ebsThick
  1289. Style.Shadow = False
  1290. TabOrder = 23
  1291. Transparent = True
  1292. Width = 89
  1293. end
  1294. object PRK_AVAIL_CARTYPE2: TcxCheckBox
  1295. Left = 325
  1296. Top = 264
  1297. Cursor = crHandPoint
  1298. Caption = #49849#50857'('#45824#54805')'
  1299. ParentShowHint = False
  1300. ShowHint = True
  1301. State = cbsChecked
  1302. Style.BorderColor = 9868950
  1303. Style.BorderStyle = ebsThick
  1304. Style.Shadow = False
  1305. TabOrder = 24
  1306. Transparent = True
  1307. Width = 89
  1308. end
  1309. object PRK_AVAIL_CARTYPE3: TcxCheckBox
  1310. Left = 423
  1311. Top = 264
  1312. Cursor = crHandPoint
  1313. Caption = 'SUV'
  1314. ParentShowHint = False
  1315. ShowHint = True
  1316. State = cbsChecked
  1317. Style.BorderColor = 9868950
  1318. Style.BorderStyle = ebsThick
  1319. Style.Shadow = False
  1320. TabOrder = 25
  1321. Transparent = True
  1322. Width = 54
  1323. end
  1324. object PRK_AVAIL_CARTYPE6: TcxCheckBox
  1325. Left = 660
  1326. Top = 264
  1327. Cursor = crHandPoint
  1328. Caption = #54868#47932'('#45824#54805')'
  1329. ParentShowHint = False
  1330. ShowHint = True
  1331. State = cbsChecked
  1332. Style.BorderColor = 9868950
  1333. Style.BorderStyle = ebsThick
  1334. Style.Shadow = False
  1335. TabOrder = 26
  1336. Transparent = True
  1337. Width = 89
  1338. end
  1339. object PRK_AVAIL_CARTYPE5: TcxCheckBox
  1340. Left = 562
  1341. Top = 264
  1342. Cursor = crHandPoint
  1343. Caption = #54868#47932'('#51473#54805')'
  1344. ParentShowHint = False
  1345. ShowHint = True
  1346. State = cbsChecked
  1347. Style.BorderColor = 9868950
  1348. Style.BorderStyle = ebsThick
  1349. Style.Shadow = False
  1350. TabOrder = 27
  1351. Transparent = True
  1352. Width = 89
  1353. end
  1354. object PRK_AVAIL_CARTYPE4: TcxCheckBox
  1355. Left = 487
  1356. Top = 264
  1357. Cursor = crHandPoint
  1358. Caption = #49849#54633#52264
  1359. ParentShowHint = False
  1360. ShowHint = True
  1361. State = cbsChecked
  1362. Style.BorderColor = 9868950
  1363. Style.BorderStyle = ebsThick
  1364. Style.Shadow = False
  1365. TabOrder = 28
  1366. Transparent = True
  1367. Width = 67
  1368. end
  1369. object COLCT_DEVICE_INSTL_AT: TcxCheckBox
  1370. Left = 230
  1371. Top = 326
  1372. Cursor = crHandPoint
  1373. Caption = #49444#52824
  1374. ParentShowHint = False
  1375. ShowHint = True
  1376. State = cbsChecked
  1377. Style.BorderColor = 9868950
  1378. Style.BorderStyle = ebsThick
  1379. Style.Shadow = False
  1380. TabOrder = 29
  1381. Transparent = True
  1382. Width = 68
  1383. end
  1384. object SLAVE_CONTROLLER: TcxSpinEdit
  1385. Left = 632
  1386. Top = 324
  1387. Properties.Alignment.Horz = taRightJustify
  1388. Properties.Alignment.Vert = taVCenter
  1389. Properties.AssignedValues.MinValue = True
  1390. Properties.MaxValue = 99999.000000000000000000
  1391. Properties.ReadOnly = False
  1392. Properties.ValueType = vtInt
  1393. Style.BorderStyle = ebsUltraFlat
  1394. Style.LookAndFeel.Kind = lfUltraFlat
  1395. Style.LookAndFeel.NativeStyle = False
  1396. Style.ButtonStyle = btsUltraFlat
  1397. StyleDisabled.LookAndFeel.Kind = lfUltraFlat
  1398. StyleDisabled.LookAndFeel.NativeStyle = False
  1399. StyleFocused.LookAndFeel.Kind = lfUltraFlat
  1400. StyleFocused.LookAndFeel.NativeStyle = False
  1401. StyleHot.LookAndFeel.Kind = lfUltraFlat
  1402. StyleHot.LookAndFeel.NativeStyle = False
  1403. TabOrder = 30
  1404. Width = 70
  1405. end
  1406. object cxLabel27: TcxLabel
  1407. Left = 19
  1408. Top = 355
  1409. AutoSize = False
  1410. Caption = #49688#51665#51109#52824' '#51333#47448
  1411. Properties.Alignment.Horz = taRightJustify
  1412. Properties.Alignment.Vert = taVCenter
  1413. Transparent = True
  1414. Height = 21
  1415. Width = 191
  1416. AnchorX = 210
  1417. AnchorY = 366
  1418. end
  1419. object COLCT_DEVICE_KND0: TcxCheckBox
  1420. Left = 230
  1421. Top = 355
  1422. Cursor = crHandPoint
  1423. Caption = #50689#49345#49885
  1424. ParentShowHint = False
  1425. ShowHint = True
  1426. State = cbsChecked
  1427. Style.BorderColor = 9868950
  1428. Style.BorderStyle = ebsThick
  1429. Style.Shadow = False
  1430. TabOrder = 32
  1431. Transparent = True
  1432. Width = 70
  1433. end
  1434. object COLCT_DEVICE_KND1: TcxCheckBox
  1435. Left = 301
  1436. Top = 355
  1437. Cursor = crHandPoint
  1438. Caption = #51648#51088#44592
  1439. ParentShowHint = False
  1440. ShowHint = True
  1441. State = cbsChecked
  1442. Style.BorderColor = 9868950
  1443. Style.BorderStyle = ebsThick
  1444. Style.Shadow = False
  1445. TabOrder = 33
  1446. Transparent = True
  1447. Width = 70
  1448. end
  1449. object COLCT_DEVICE_KND2: TcxCheckBox
  1450. Left = 377
  1451. Top = 355
  1452. Cursor = crHandPoint
  1453. Caption = #47112#51060#45908
  1454. ParentShowHint = False
  1455. ShowHint = True
  1456. State = cbsChecked
  1457. Style.BorderColor = 9868950
  1458. Style.BorderStyle = ebsThick
  1459. Style.Shadow = False
  1460. TabOrder = 34
  1461. Transparent = True
  1462. Width = 70
  1463. end
  1464. object COLCT_DEVICE_KND3: TcxCheckBox
  1465. Left = 449
  1466. Top = 355
  1467. Cursor = crHandPoint
  1468. Caption = #47336#54532
  1469. ParentShowHint = False
  1470. ShowHint = True
  1471. State = cbsChecked
  1472. Style.BorderColor = 9868950
  1473. Style.BorderStyle = ebsThick
  1474. Style.Shadow = False
  1475. TabOrder = 35
  1476. Transparent = True
  1477. Width = 70
  1478. end
  1479. object COLCT_DEVICE_KND4: TcxCheckBox
  1480. Left = 516
  1481. Top = 355
  1482. Cursor = crHandPoint
  1483. Caption = #52488#51020#54028
  1484. ParentShowHint = False
  1485. ShowHint = True
  1486. State = cbsChecked
  1487. Style.BorderColor = 9868950
  1488. Style.BorderStyle = ebsThick
  1489. Style.Shadow = False
  1490. TabOrder = 36
  1491. Transparent = True
  1492. Width = 70
  1493. end
  1494. object COLCT_DEVICE_KND5: TcxCheckBox
  1495. Left = 590
  1496. Top = 355
  1497. Cursor = crHandPoint
  1498. Caption = #44592#53440
  1499. ParentShowHint = False
  1500. ShowHint = True
  1501. State = cbsChecked
  1502. Style.BorderColor = 9868950
  1503. Style.BorderStyle = ebsThick
  1504. Style.Shadow = False
  1505. TabOrder = 37
  1506. Transparent = True
  1507. Width = 70
  1508. end
  1509. object COLCT_DEVICE_KND: TcxTextEdit
  1510. Left = 708
  1511. Top = 351
  1512. Properties.Alignment.Horz = taCenter
  1513. Properties.Alignment.Vert = taVCenter
  1514. Properties.MaxLength = 10
  1515. Properties.ReadOnly = False
  1516. TabOrder = 38
  1517. Width = 101
  1518. end
  1519. object CRM_PRV_CCTV_INSTL_AT: TcxCheckBox
  1520. Left = 230
  1521. Top = 294
  1522. Cursor = crHandPoint
  1523. Caption = #48169#48276' CCTV '#49444#52824
  1524. ParentShowHint = False
  1525. ShowHint = True
  1526. State = cbsChecked
  1527. Style.BorderColor = 9868950
  1528. Style.BorderStyle = ebsThick
  1529. Style.Shadow = False
  1530. TabOrder = 39
  1531. Transparent = True
  1532. Width = 119
  1533. end
  1534. object CRM_PRV_CCTV_INSTL_CO: TcxSpinEdit
  1535. Left = 353
  1536. Top = 292
  1537. Properties.Alignment.Horz = taRightJustify
  1538. Properties.Alignment.Vert = taVCenter
  1539. Properties.AssignedValues.MinValue = True
  1540. Properties.MaxValue = 99999.000000000000000000
  1541. Properties.ReadOnly = False
  1542. Properties.ValueType = vtInt
  1543. Style.BorderStyle = ebsUltraFlat
  1544. Style.LookAndFeel.Kind = lfUltraFlat
  1545. Style.LookAndFeel.NativeStyle = False
  1546. Style.ButtonStyle = btsUltraFlat
  1547. StyleDisabled.LookAndFeel.Kind = lfUltraFlat
  1548. StyleDisabled.LookAndFeel.NativeStyle = False
  1549. StyleFocused.LookAndFeel.Kind = lfUltraFlat
  1550. StyleFocused.LookAndFeel.NativeStyle = False
  1551. StyleHot.LookAndFeel.Kind = lfUltraFlat
  1552. StyleHot.LookAndFeel.NativeStyle = False
  1553. TabOrder = 40
  1554. Width = 70
  1555. end
  1556. object cxLabel14: TcxLabel
  1557. Left = 19
  1558. Top = 384
  1559. AutoSize = False
  1560. Caption = #49892#49884#44036' '#51221#48372#51228#44277' '#51452#52264#49884#49828#53596' '#44396#48516
  1561. Properties.Alignment.Horz = taRightJustify
  1562. Properties.Alignment.Vert = taVCenter
  1563. Transparent = True
  1564. Height = 21
  1565. Width = 212
  1566. AnchorX = 231
  1567. AnchorY = 395
  1568. end
  1569. object PIS_TYPE: TcxComboBox
  1570. Left = 247
  1571. Top = 382
  1572. Cursor = crHandPoint
  1573. Properties.Alignment.Vert = taVCenter
  1574. Properties.DropDownListStyle = lsFixedList
  1575. Properties.DropDownSizeable = True
  1576. Properties.Items.Strings = (
  1577. ' [N] '#49444#52824#50504#46092
  1578. ' [C2F] '#51648#50669#51452#52264#44288#51228#49884#49828#53596
  1579. ' [C2C] '#51452#52264#49468#53552#50672#44228)
  1580. Properties.ReadOnly = False
  1581. TabOrder = 42
  1582. Text = ' [C2F] '#51648#50669#51452#52264#44288#51228#49884#49828#53596
  1583. Width = 250
  1584. end
  1585. object cxLabel19: TcxLabel
  1586. Left = 24
  1587. Top = 421
  1588. AutoSize = False
  1589. Caption = #50868#50689#51221#48372
  1590. Properties.Alignment.Horz = taRightJustify
  1591. Properties.Alignment.Vert = taVCenter
  1592. Transparent = True
  1593. Height = 21
  1594. Width = 95
  1595. AnchorX = 119
  1596. AnchorY = 432
  1597. end
  1598. object cxLabel28: TcxLabel
  1599. Left = 127
  1600. Top = 421
  1601. AutoSize = False
  1602. Caption = #51452#52264#50868#50689' '#51221#48372#48260#51204
  1603. Properties.Alignment.Horz = taRightJustify
  1604. Properties.Alignment.Vert = taVCenter
  1605. Transparent = True
  1606. Height = 21
  1607. Width = 114
  1608. AnchorX = 241
  1609. AnchorY = 432
  1610. end
  1611. object PRK_PLCE_OPR_VER: TcxTextEdit
  1612. Left = 247
  1613. Top = 417
  1614. Properties.Alignment.Horz = taCenter
  1615. Properties.Alignment.Vert = taVCenter
  1616. Properties.MaxLength = 10
  1617. Properties.ReadOnly = False
  1618. TabOrder = 45
  1619. Width = 100
  1620. end
  1621. object cxLabel29: TcxLabel
  1622. Left = 383
  1623. Top = 421
  1624. AutoSize = False
  1625. Caption = #44288#54624#44592#44288#47749
  1626. Properties.Alignment.Horz = taRightJustify
  1627. Properties.Alignment.Vert = taVCenter
  1628. Transparent = True
  1629. Height = 21
  1630. Width = 114
  1631. AnchorX = 497
  1632. AnchorY = 432
  1633. end
  1634. object CMPT_INST_NM: TcxTextEdit
  1635. Left = 503
  1636. Top = 417
  1637. Properties.Alignment.Vert = taVCenter
  1638. Properties.MaxLength = 32
  1639. Properties.ReadOnly = False
  1640. TabOrder = 47
  1641. Width = 290
  1642. end
  1643. object cxLabel30: TcxLabel
  1644. Left = 19
  1645. Top = 448
  1646. AutoSize = False
  1647. Caption = #50868#50689#48512#49436#47749
  1648. Properties.Alignment.Horz = taRightJustify
  1649. Properties.Alignment.Vert = taVCenter
  1650. Transparent = True
  1651. Height = 21
  1652. Width = 114
  1653. AnchorX = 133
  1654. AnchorY = 459
  1655. end
  1656. object OPER_DEPT_NM: TcxTextEdit
  1657. Left = 138
  1658. Top = 445
  1659. Properties.Alignment.Vert = taVCenter
  1660. Properties.MaxLength = 32
  1661. Properties.ReadOnly = False
  1662. TabOrder = 49
  1663. Width = 290
  1664. end
  1665. object cxLabel31: TcxLabel
  1666. Left = 434
  1667. Top = 448
  1668. AutoSize = False
  1669. Caption = #45812#45817#51088
  1670. Properties.Alignment.Horz = taRightJustify
  1671. Properties.Alignment.Vert = taVCenter
  1672. Transparent = True
  1673. Height = 21
  1674. Width = 63
  1675. AnchorX = 497
  1676. AnchorY = 459
  1677. end
  1678. object OPER_PERSON_NM: TcxTextEdit
  1679. Left = 503
  1680. Top = 445
  1681. Properties.Alignment.Vert = taVCenter
  1682. Properties.MaxLength = 10
  1683. Properties.ReadOnly = False
  1684. TabOrder = 51
  1685. Width = 106
  1686. end
  1687. object cxLabel32: TcxLabel
  1688. Left = 19
  1689. Top = 477
  1690. AutoSize = False
  1691. Caption = #51204#54868#48264#54840
  1692. Properties.Alignment.Horz = taRightJustify
  1693. Properties.Alignment.Vert = taVCenter
  1694. Transparent = True
  1695. Height = 21
  1696. Width = 114
  1697. AnchorX = 133
  1698. AnchorY = 488
  1699. end
  1700. object OPER_CTT_PC_TEL: TcxTextEdit
  1701. Left = 138
  1702. Top = 473
  1703. Properties.Alignment.Vert = taVCenter
  1704. Properties.MaxLength = 32
  1705. Properties.ReadOnly = False
  1706. TabOrder = 53
  1707. Width = 122
  1708. end
  1709. object cxLabel33: TcxLabel
  1710. Left = 354
  1711. Top = 477
  1712. AutoSize = False
  1713. Caption = #45812#45817#51088' '#51060#47700#51068
  1714. Properties.Alignment.Horz = taRightJustify
  1715. Properties.Alignment.Vert = taVCenter
  1716. Transparent = True
  1717. Height = 21
  1718. Width = 143
  1719. AnchorX = 497
  1720. AnchorY = 488
  1721. end
  1722. object OPER_CTT_PC_EMAIL: TcxTextEdit
  1723. Left = 503
  1724. Top = 473
  1725. Properties.MaxLength = 50
  1726. Properties.ReadOnly = False
  1727. TabOrder = 55
  1728. Width = 290
  1729. end
  1730. object cxLabel34: TcxLabel
  1731. Left = 19
  1732. Top = 504
  1733. AutoSize = False
  1734. Caption = #51452#52264' '#48512#51228' '#49884#54665
  1735. Properties.Alignment.Horz = taRightJustify
  1736. Properties.Alignment.Vert = taVCenter
  1737. Transparent = True
  1738. Height = 21
  1739. Width = 114
  1740. AnchorX = 133
  1741. AnchorY = 515
  1742. end
  1743. object NO_DRV_DAY_OPERTN_AT: TcxComboBox
  1744. Left = 138
  1745. Top = 501
  1746. Cursor = crHandPoint
  1747. Properties.Alignment.Vert = taVCenter
  1748. Properties.DropDownListStyle = lsFixedList
  1749. Properties.DropDownSizeable = True
  1750. Properties.ReadOnly = False
  1751. TabOrder = 57
  1752. Width = 180
  1753. end
  1754. object OPERTN_BS_FREE_TIME: TcxTextEdit
  1755. Left = 503
  1756. Top = 501
  1757. Properties.Alignment.Horz = taCenter
  1758. Properties.Alignment.Vert = taVCenter
  1759. Properties.MaxLength = 8
  1760. Properties.ReadOnly = False
  1761. TabOrder = 58
  1762. Width = 106
  1763. end
  1764. object cxLabel35: TcxLabel
  1765. Left = 328
  1766. Top = 504
  1767. AutoSize = False
  1768. Caption = #44592#48376#47924#47308' '#49884#44036', '#51452#52264#51109' '#54924#52264
  1769. Properties.Alignment.Horz = taRightJustify
  1770. Properties.Alignment.Vert = taVCenter
  1771. Transparent = True
  1772. Height = 21
  1773. Width = 169
  1774. AnchorX = 497
  1775. AnchorY = 515
  1776. end
  1777. object cxLabel36: TcxLabel
  1778. Left = 615
  1779. Top = 504
  1780. AutoSize = False
  1781. Caption = ' ('#44592#48376' '#47924#47308') (00:30:00)'
  1782. Properties.Alignment.Horz = taLeftJustify
  1783. Properties.Alignment.Vert = taVCenter
  1784. Transparent = True
  1785. Height = 21
  1786. Width = 169
  1787. AnchorY = 515
  1788. end
  1789. object OPN_CODE: TcxCheckBox
  1790. Left = 143
  1791. Top = 533
  1792. Cursor = crHandPoint
  1793. Caption = #50868#50689#49884#44036' '#50808' '#47924#47308' '#44060#48169
  1794. ParentShowHint = False
  1795. ShowHint = True
  1796. State = cbsChecked
  1797. Style.BorderColor = 9868950
  1798. Style.BorderStyle = ebsThick
  1799. Style.Shadow = False
  1800. TabOrder = 61
  1801. Transparent = True
  1802. Width = 178
  1803. end
  1804. object cxLabel37: TcxLabel
  1805. Left = 425
  1806. Top = 294
  1807. AutoSize = False
  1808. Caption = #45824' '
  1809. Properties.Alignment.Horz = taLeftJustify
  1810. Properties.Alignment.Vert = taVCenter
  1811. Transparent = True
  1812. Height = 21
  1813. Width = 37
  1814. AnchorY = 305
  1815. end
  1816. object cxLabel38: TcxLabel
  1817. Left = 328
  1818. Top = 533
  1819. AutoSize = False
  1820. Caption = #51452#52264#50836#44552' '#51221#49328' '#48169#49885
  1821. Properties.Alignment.Horz = taRightJustify
  1822. Properties.Alignment.Vert = taVCenter
  1823. Transparent = True
  1824. Height = 21
  1825. Width = 169
  1826. AnchorX = 497
  1827. AnchorY = 544
  1828. end
  1829. object PARKING_CHRGE_EXCCLC_MTHD: TcxComboBox
  1830. Left = 503
  1831. Top = 529
  1832. Cursor = crHandPoint
  1833. Properties.Alignment.Vert = taVCenter
  1834. Properties.DropDownListStyle = lsFixedList
  1835. Properties.DropDownSizeable = True
  1836. Properties.ReadOnly = False
  1837. TabOrder = 64
  1838. Width = 180
  1839. end
  1840. object cxLabel39: TcxLabel
  1841. Left = 19
  1842. Top = 563
  1843. AutoSize = False
  1844. Caption = #51452#52264#50836#44552' '#51648#48520#49688#45800
  1845. Properties.Alignment.Horz = taRightJustify
  1846. Properties.Alignment.Vert = taVCenter
  1847. Transparent = True
  1848. Height = 21
  1849. Width = 114
  1850. AnchorX = 133
  1851. AnchorY = 574
  1852. end
  1853. object PARKING_CHRGE_PYMNT_MN1: TcxCheckBox
  1854. Left = 143
  1855. Top = 562
  1856. Cursor = crHandPoint
  1857. Caption = #54788#44552
  1858. ParentShowHint = False
  1859. ShowHint = True
  1860. State = cbsChecked
  1861. Style.BorderColor = 9868950
  1862. Style.BorderStyle = ebsThick
  1863. Style.Shadow = False
  1864. TabOrder = 66
  1865. Transparent = True
  1866. Width = 58
  1867. end
  1868. object PARKING_CHRGE_PYMNT_MN2: TcxCheckBox
  1869. Left = 207
  1870. Top = 562
  1871. Cursor = crHandPoint
  1872. Caption = #49888#50857#52852#46300
  1873. ParentShowHint = False
  1874. ShowHint = True
  1875. State = cbsChecked
  1876. Style.BorderColor = 9868950
  1877. Style.BorderStyle = ebsThick
  1878. Style.Shadow = False
  1879. TabOrder = 67
  1880. Transparent = True
  1881. Width = 89
  1882. end
  1883. object PARKING_CHRGE_PYMNT_MN3: TcxCheckBox
  1884. Left = 296
  1885. Top = 562
  1886. Cursor = crHandPoint
  1887. Caption = #44368#53685#52852#46300
  1888. ParentShowHint = False
  1889. ShowHint = True
  1890. State = cbsChecked
  1891. Style.BorderColor = 9868950
  1892. Style.BorderStyle = ebsThick
  1893. Style.Shadow = False
  1894. TabOrder = 68
  1895. Transparent = True
  1896. Width = 89
  1897. end
  1898. object PARKING_CHRGE_PYMNT_MN4: TcxCheckBox
  1899. Left = 375
  1900. Top = 562
  1901. Cursor = crHandPoint
  1902. Caption = #51204#51088#51648#48520
  1903. ParentShowHint = False
  1904. ShowHint = True
  1905. State = cbsChecked
  1906. Style.BorderColor = 9868950
  1907. Style.BorderStyle = ebsThick
  1908. Style.Shadow = False
  1909. TabOrder = 69
  1910. Transparent = True
  1911. Width = 82
  1912. end
  1913. object PARKING_CHRGE_PYMNT_MN5: TcxCheckBox
  1914. Left = 463
  1915. Top = 562
  1916. Cursor = crHandPoint
  1917. Caption = #55092#45824#54256
  1918. ParentShowHint = False
  1919. ShowHint = True
  1920. State = cbsChecked
  1921. Style.BorderColor = 9868950
  1922. Style.BorderStyle = ebsThick
  1923. Style.Shadow = False
  1924. TabOrder = 70
  1925. Transparent = True
  1926. Width = 67
  1927. end
  1928. object PARKING_CHRGE_PYMNT_MN6: TcxCheckBox
  1929. Left = 536
  1930. Top = 562
  1931. Cursor = crHandPoint
  1932. Caption = #54592#53580#53356
  1933. ParentShowHint = False
  1934. ShowHint = True
  1935. State = cbsChecked
  1936. Style.BorderColor = 9868950
  1937. Style.BorderStyle = ebsThick
  1938. Style.Shadow = False
  1939. TabOrder = 71
  1940. Transparent = True
  1941. Width = 89
  1942. end
  1943. object PARKING_CHRGE_PYMNT_MN7: TcxCheckBox
  1944. Left = 608
  1945. Top = 562
  1946. Cursor = crHandPoint
  1947. Caption = 'MaaS '#53685#54633#44208#51228
  1948. ParentShowHint = False
  1949. ShowHint = True
  1950. State = cbsChecked
  1951. Style.BorderColor = 9868950
  1952. Style.BorderStyle = ebsThick
  1953. Style.Shadow = False
  1954. TabOrder = 72
  1955. Transparent = True
  1956. Width = 130
  1957. end
  1958. object PARKING_CHRGE_PYMNT_MN8: TcxCheckBox
  1959. Left = 731
  1960. Top = 562
  1961. Cursor = crHandPoint
  1962. Caption = #44592#53440
  1963. ParentShowHint = False
  1964. ShowHint = True
  1965. State = cbsChecked
  1966. Style.BorderColor = 9868950
  1967. Style.BorderStyle = ebsThick
  1968. Style.Shadow = False
  1969. TabOrder = 73
  1970. Transparent = True
  1971. Width = 89
  1972. end
  1973. object PARKING_CHRGE_PYMNT_MN: TcxTextEdit
  1974. Left = 704
  1975. Top = 531
  1976. Properties.Alignment.Horz = taCenter
  1977. Properties.Alignment.Vert = taVCenter
  1978. Properties.MaxLength = 10
  1979. Properties.ReadOnly = False
  1980. TabOrder = 74
  1981. Width = 89
  1982. end
  1983. object cxLabel40: TcxLabel
  1984. Left = 19
  1985. Top = 589
  1986. AutoSize = False
  1987. Caption = #51452#52264#50696#50557' '#49884#54665#50668#48512
  1988. Properties.Alignment.Horz = taRightJustify
  1989. Properties.Alignment.Vert = taVCenter
  1990. Transparent = True
  1991. Height = 21
  1992. Width = 114
  1993. AnchorX = 133
  1994. AnchorY = 600
  1995. end
  1996. object PARKING_RESVE_OPERTN_AT: TcxComboBox
  1997. Left = 138
  1998. Top = 585
  1999. Cursor = crHandPoint
  2000. Properties.Alignment.Vert = taVCenter
  2001. Properties.DropDownListStyle = lsFixedList
  2002. Properties.DropDownSizeable = True
  2003. Properties.ReadOnly = False
  2004. TabOrder = 76
  2005. Width = 146
  2006. end
  2007. object cxLabel41: TcxLabel
  2008. Left = 283
  2009. Top = 589
  2010. AutoSize = False
  2011. Caption = #53945#51060#49324#54637
  2012. Properties.Alignment.Horz = taRightJustify
  2013. Properties.Alignment.Vert = taVCenter
  2014. Transparent = True
  2015. Height = 21
  2016. Width = 64
  2017. AnchorX = 347
  2018. AnchorY = 600
  2019. end
  2020. object PARTCLR_MATTER: TcxTextEdit
  2021. Left = 350
  2022. Top = 585
  2023. Properties.MaxLength = 128
  2024. Properties.ReadOnly = False
  2025. TabOrder = 78
  2026. Width = 481
  2027. end
  2028. object cxLabel42: TcxLabel
  2029. Left = 19
  2030. Top = 622
  2031. AutoSize = False
  2032. Caption = #51452#52264#44396#54925#49688
  2033. Properties.Alignment.Horz = taRightJustify
  2034. Properties.Alignment.Vert = taVCenter
  2035. Transparent = True
  2036. Height = 21
  2037. Width = 114
  2038. AnchorX = 133
  2039. AnchorY = 633
  2040. end
  2041. object VHCTY_AR_SE0: TcxSpinEdit
  2042. Left = 199
  2043. Top = 619
  2044. Properties.Alignment.Horz = taRightJustify
  2045. Properties.Alignment.Vert = taVCenter
  2046. Properties.AssignedValues.MinValue = True
  2047. Properties.MaxValue = 99999.000000000000000000
  2048. Properties.ReadOnly = False
  2049. Properties.ValueType = vtInt
  2050. Style.BorderStyle = ebsUltraFlat
  2051. Style.LookAndFeel.Kind = lfUltraFlat
  2052. Style.LookAndFeel.NativeStyle = False
  2053. Style.ButtonStyle = btsUltraFlat
  2054. StyleDisabled.LookAndFeel.Kind = lfUltraFlat
  2055. StyleDisabled.LookAndFeel.NativeStyle = False
  2056. StyleFocused.LookAndFeel.Kind = lfUltraFlat
  2057. StyleFocused.LookAndFeel.NativeStyle = False
  2058. StyleHot.LookAndFeel.Kind = lfUltraFlat
  2059. StyleHot.LookAndFeel.NativeStyle = False
  2060. TabOrder = 80
  2061. Width = 70
  2062. end
  2063. object VHCTY_AR_SE1: TcxSpinEdit
  2064. Left = 388
  2065. Top = 619
  2066. Properties.Alignment.Horz = taRightJustify
  2067. Properties.Alignment.Vert = taVCenter
  2068. Properties.AssignedValues.MinValue = True
  2069. Properties.MaxValue = 99999.000000000000000000
  2070. Properties.ReadOnly = False
  2071. Properties.ValueType = vtInt
  2072. Style.BorderStyle = ebsUltraFlat
  2073. Style.LookAndFeel.Kind = lfUltraFlat
  2074. Style.LookAndFeel.NativeStyle = False
  2075. Style.ButtonStyle = btsUltraFlat
  2076. StyleDisabled.LookAndFeel.Kind = lfUltraFlat
  2077. StyleDisabled.LookAndFeel.NativeStyle = False
  2078. StyleFocused.LookAndFeel.Kind = lfUltraFlat
  2079. StyleFocused.LookAndFeel.NativeStyle = False
  2080. StyleHot.LookAndFeel.Kind = lfUltraFlat
  2081. StyleHot.LookAndFeel.NativeStyle = False
  2082. TabOrder = 81
  2083. Width = 70
  2084. end
  2085. object VHCTY_AR_SE3: TcxSpinEdit
  2086. Left = 691
  2087. Top = 618
  2088. Properties.Alignment.Horz = taRightJustify
  2089. Properties.Alignment.Vert = taVCenter
  2090. Properties.AssignedValues.MinValue = True
  2091. Properties.MaxValue = 99999.000000000000000000
  2092. Properties.ReadOnly = False
  2093. Properties.ValueType = vtInt
  2094. Style.BorderStyle = ebsUltraFlat
  2095. Style.LookAndFeel.Kind = lfUltraFlat
  2096. Style.LookAndFeel.NativeStyle = False
  2097. Style.ButtonStyle = btsUltraFlat
  2098. StyleDisabled.LookAndFeel.Kind = lfUltraFlat
  2099. StyleDisabled.LookAndFeel.NativeStyle = False
  2100. StyleFocused.LookAndFeel.Kind = lfUltraFlat
  2101. StyleFocused.LookAndFeel.NativeStyle = False
  2102. StyleHot.LookAndFeel.Kind = lfUltraFlat
  2103. StyleHot.LookAndFeel.NativeStyle = False
  2104. TabOrder = 82
  2105. Width = 70
  2106. end
  2107. object VHCTY_AR_SE2: TcxSpinEdit
  2108. Left = 532
  2109. Top = 619
  2110. Properties.Alignment.Horz = taRightJustify
  2111. Properties.Alignment.Vert = taVCenter
  2112. Properties.AssignedValues.MinValue = True
  2113. Properties.MaxValue = 99999.000000000000000000
  2114. Properties.ReadOnly = False
  2115. Properties.ValueType = vtInt
  2116. Style.BorderStyle = ebsUltraFlat
  2117. Style.LookAndFeel.Kind = lfUltraFlat
  2118. Style.LookAndFeel.NativeStyle = False
  2119. Style.ButtonStyle = btsUltraFlat
  2120. StyleDisabled.LookAndFeel.Kind = lfUltraFlat
  2121. StyleDisabled.LookAndFeel.NativeStyle = False
  2122. StyleFocused.LookAndFeel.Kind = lfUltraFlat
  2123. StyleFocused.LookAndFeel.NativeStyle = False
  2124. StyleHot.LookAndFeel.Kind = lfUltraFlat
  2125. StyleHot.LookAndFeel.NativeStyle = False
  2126. TabOrder = 83
  2127. Width = 70
  2128. end
  2129. object VHCTY_AR_SE4: TcxSpinEdit
  2130. Left = 199
  2131. Top = 647
  2132. Properties.Alignment.Horz = taRightJustify
  2133. Properties.Alignment.Vert = taVCenter
  2134. Properties.AssignedValues.MinValue = True
  2135. Properties.MaxValue = 99999.000000000000000000
  2136. Properties.ReadOnly = False
  2137. Properties.ValueType = vtInt
  2138. Style.BorderStyle = ebsUltraFlat
  2139. Style.LookAndFeel.Kind = lfUltraFlat
  2140. Style.LookAndFeel.NativeStyle = False
  2141. Style.ButtonStyle = btsUltraFlat
  2142. StyleDisabled.LookAndFeel.Kind = lfUltraFlat
  2143. StyleDisabled.LookAndFeel.NativeStyle = False
  2144. StyleFocused.LookAndFeel.Kind = lfUltraFlat
  2145. StyleFocused.LookAndFeel.NativeStyle = False
  2146. StyleHot.LookAndFeel.Kind = lfUltraFlat
  2147. StyleHot.LookAndFeel.NativeStyle = False
  2148. TabOrder = 84
  2149. Width = 70
  2150. end
  2151. object VHCTY_AR_SE5: TcxSpinEdit
  2152. Left = 388
  2153. Top = 647
  2154. Properties.Alignment.Horz = taRightJustify
  2155. Properties.Alignment.Vert = taVCenter
  2156. Properties.AssignedValues.MinValue = True
  2157. Properties.MaxValue = 99999.000000000000000000
  2158. Properties.ReadOnly = False
  2159. Properties.ValueType = vtInt
  2160. Style.BorderStyle = ebsUltraFlat
  2161. Style.LookAndFeel.Kind = lfUltraFlat
  2162. Style.LookAndFeel.NativeStyle = False
  2163. Style.ButtonStyle = btsUltraFlat
  2164. StyleDisabled.LookAndFeel.Kind = lfUltraFlat
  2165. StyleDisabled.LookAndFeel.NativeStyle = False
  2166. StyleFocused.LookAndFeel.Kind = lfUltraFlat
  2167. StyleFocused.LookAndFeel.NativeStyle = False
  2168. StyleHot.LookAndFeel.Kind = lfUltraFlat
  2169. StyleHot.LookAndFeel.NativeStyle = False
  2170. TabOrder = 85
  2171. Width = 70
  2172. end
  2173. object VHCTY_AR_SE6: TcxSpinEdit
  2174. Left = 532
  2175. Top = 647
  2176. Properties.Alignment.Horz = taRightJustify
  2177. Properties.Alignment.Vert = taVCenter
  2178. Properties.AssignedValues.MinValue = True
  2179. Properties.MaxValue = 99999.000000000000000000
  2180. Properties.ReadOnly = False
  2181. Properties.ValueType = vtInt
  2182. Style.BorderStyle = ebsUltraFlat
  2183. Style.LookAndFeel.Kind = lfUltraFlat
  2184. Style.LookAndFeel.NativeStyle = False
  2185. Style.ButtonStyle = btsUltraFlat
  2186. StyleDisabled.LookAndFeel.Kind = lfUltraFlat
  2187. StyleDisabled.LookAndFeel.NativeStyle = False
  2188. StyleFocused.LookAndFeel.Kind = lfUltraFlat
  2189. StyleFocused.LookAndFeel.NativeStyle = False
  2190. StyleHot.LookAndFeel.Kind = lfUltraFlat
  2191. StyleHot.LookAndFeel.NativeStyle = False
  2192. TabOrder = 86
  2193. Width = 70
  2194. end
  2195. object VHCTY_AR_SE7: TcxSpinEdit
  2196. Left = 691
  2197. Top = 647
  2198. Properties.Alignment.Horz = taRightJustify
  2199. Properties.Alignment.Vert = taVCenter
  2200. Properties.AssignedValues.MinValue = True
  2201. Properties.MaxValue = 99999.000000000000000000
  2202. Properties.ReadOnly = False
  2203. Properties.ValueType = vtInt
  2204. Style.BorderStyle = ebsUltraFlat
  2205. Style.LookAndFeel.Kind = lfUltraFlat
  2206. Style.LookAndFeel.NativeStyle = False
  2207. Style.ButtonStyle = btsUltraFlat
  2208. StyleDisabled.LookAndFeel.Kind = lfUltraFlat
  2209. StyleDisabled.LookAndFeel.NativeStyle = False
  2210. StyleFocused.LookAndFeel.Kind = lfUltraFlat
  2211. StyleFocused.LookAndFeel.NativeStyle = False
  2212. StyleHot.LookAndFeel.Kind = lfUltraFlat
  2213. StyleHot.LookAndFeel.NativeStyle = False
  2214. TabOrder = 87
  2215. Width = 70
  2216. end
  2217. object cxLabel43: TcxLabel
  2218. Left = 132
  2219. Top = 622
  2220. AutoSize = False
  2221. Caption = #44221#52264#51204#50857
  2222. Properties.Alignment.Horz = taRightJustify
  2223. Properties.Alignment.Vert = taVCenter
  2224. Transparent = True
  2225. Height = 21
  2226. Width = 64
  2227. AnchorX = 196
  2228. AnchorY = 633
  2229. end
  2230. object cxLabel44: TcxLabel
  2231. Left = 278
  2232. Top = 622
  2233. AutoSize = False
  2234. Caption = #52828#54872#44221#52264'('#51204#44592#52264')'
  2235. Properties.Alignment.Horz = taRightJustify
  2236. Properties.Alignment.Vert = taVCenter
  2237. Transparent = True
  2238. Height = 21
  2239. Width = 107
  2240. AnchorX = 385
  2241. AnchorY = 633
  2242. end
  2243. object cxLabel45: TcxLabel
  2244. Left = 476
  2245. Top = 622
  2246. AutoSize = False
  2247. Caption = #54868#47932#52264
  2248. Properties.Alignment.Horz = taRightJustify
  2249. Properties.Alignment.Vert = taVCenter
  2250. Transparent = True
  2251. Height = 21
  2252. Width = 51
  2253. AnchorX = 527
  2254. AnchorY = 633
  2255. end
  2256. object cxLabel46: TcxLabel
  2257. Left = 618
  2258. Top = 622
  2259. AutoSize = False
  2260. Caption = #44596#44553#52264#47049
  2261. Properties.Alignment.Horz = taRightJustify
  2262. Properties.Alignment.Vert = taVCenter
  2263. Transparent = True
  2264. Height = 21
  2265. Width = 67
  2266. AnchorX = 685
  2267. AnchorY = 633
  2268. end
  2269. object cxLabel47: TcxLabel
  2270. Left = 132
  2271. Top = 650
  2272. AutoSize = False
  2273. Caption = #51109#50528#51064
  2274. Properties.Alignment.Horz = taRightJustify
  2275. Properties.Alignment.Vert = taVCenter
  2276. Transparent = True
  2277. Height = 21
  2278. Width = 64
  2279. AnchorX = 196
  2280. AnchorY = 661
  2281. end
  2282. object cxLabel48: TcxLabel
  2283. Left = 278
  2284. Top = 650
  2285. AutoSize = False
  2286. Caption = #50612#47476#49888
  2287. Properties.Alignment.Horz = taRightJustify
  2288. Properties.Alignment.Vert = taVCenter
  2289. Transparent = True
  2290. Height = 21
  2291. Width = 107
  2292. AnchorX = 385
  2293. AnchorY = 661
  2294. end
  2295. object cxLabel49: TcxLabel
  2296. Left = 461
  2297. Top = 650
  2298. AutoSize = False
  2299. Caption = #50668#49457#51204#50857
  2300. Properties.Alignment.Horz = taRightJustify
  2301. Properties.Alignment.Vert = taVCenter
  2302. Transparent = True
  2303. Height = 21
  2304. Width = 66
  2305. AnchorX = 527
  2306. AnchorY = 661
  2307. end
  2308. object cxLabel50: TcxLabel
  2309. Left = 619
  2310. Top = 650
  2311. AutoSize = False
  2312. Caption = #44592#53440
  2313. Properties.Alignment.Horz = taRightJustify
  2314. Properties.Alignment.Vert = taVCenter
  2315. Transparent = True
  2316. Height = 21
  2317. Width = 66
  2318. AnchorX = 685
  2319. AnchorY = 661
  2320. end
  2321. object cxLabel51: TcxLabel
  2322. Left = 19
  2323. Top = 681
  2324. AutoSize = False
  2325. Caption = #51068#48152#51452#52264#50836#44552
  2326. Properties.Alignment.Horz = taRightJustify
  2327. Properties.Alignment.Vert = taVCenter
  2328. Transparent = True
  2329. Height = 21
  2330. Width = 114
  2331. AnchorX = 133
  2332. AnchorY = 692
  2333. end
  2334. object cxLabel52: TcxLabel
  2335. Left = 139
  2336. Top = 681
  2337. AutoSize = False
  2338. Caption = #44592#48376#51452#52264#49884#44036'('#48516')/'#50836#44552'('#50896')'
  2339. Properties.Alignment.Horz = taRightJustify
  2340. Properties.Alignment.Vert = taVCenter
  2341. Transparent = True
  2342. Height = 21
  2343. Width = 161
  2344. AnchorX = 300
  2345. AnchorY = 692
  2346. end
  2347. object PARKING_CHRGE_BS_TIME: TcxSpinEdit
  2348. Left = 303
  2349. Top = 679
  2350. Properties.Alignment.Horz = taRightJustify
  2351. Properties.Alignment.Vert = taVCenter
  2352. Properties.AssignedValues.MinValue = True
  2353. Properties.MaxValue = 99999.000000000000000000
  2354. Properties.ReadOnly = False
  2355. Properties.ValueType = vtInt
  2356. Style.BorderStyle = ebsUltraFlat
  2357. Style.LookAndFeel.Kind = lfUltraFlat
  2358. Style.LookAndFeel.NativeStyle = False
  2359. Style.ButtonStyle = btsUltraFlat
  2360. StyleDisabled.LookAndFeel.Kind = lfUltraFlat
  2361. StyleDisabled.LookAndFeel.NativeStyle = False
  2362. StyleFocused.LookAndFeel.Kind = lfUltraFlat
  2363. StyleFocused.LookAndFeel.NativeStyle = False
  2364. StyleHot.LookAndFeel.Kind = lfUltraFlat
  2365. StyleHot.LookAndFeel.NativeStyle = False
  2366. TabOrder = 98
  2367. Width = 70
  2368. end
  2369. object PARKING_CHRGE_BS_CHRGE: TcxSpinEdit
  2370. Left = 375
  2371. Top = 679
  2372. Properties.Alignment.Horz = taRightJustify
  2373. Properties.Alignment.Vert = taVCenter
  2374. Properties.AssignedValues.MinValue = True
  2375. Properties.MaxValue = 99999.000000000000000000
  2376. Properties.ReadOnly = False
  2377. Properties.ValueType = vtInt
  2378. Style.BorderStyle = ebsUltraFlat
  2379. Style.LookAndFeel.Kind = lfUltraFlat
  2380. Style.LookAndFeel.NativeStyle = False
  2381. Style.ButtonStyle = btsUltraFlat
  2382. StyleDisabled.LookAndFeel.Kind = lfUltraFlat
  2383. StyleDisabled.LookAndFeel.NativeStyle = False
  2384. StyleFocused.LookAndFeel.Kind = lfUltraFlat
  2385. StyleFocused.LookAndFeel.NativeStyle = False
  2386. StyleHot.LookAndFeel.Kind = lfUltraFlat
  2387. StyleHot.LookAndFeel.NativeStyle = False
  2388. TabOrder = 99
  2389. Width = 70
  2390. end
  2391. object cxLabel55: TcxLabel
  2392. Left = 451
  2393. Top = 681
  2394. AutoSize = False
  2395. Caption = #52628#44032#45800#50948#49884#44036'('#48516')/'#50836#44552'('#50896')'
  2396. Properties.Alignment.Horz = taRightJustify
  2397. Properties.Alignment.Vert = taVCenter
  2398. Transparent = True
  2399. Height = 21
  2400. Width = 161
  2401. AnchorX = 612
  2402. AnchorY = 692
  2403. end
  2404. object PARKING_CHRGE_ADIT_UNIT_TIME: TcxSpinEdit
  2405. Left = 618
  2406. Top = 679
  2407. Properties.Alignment.Horz = taRightJustify
  2408. Properties.Alignment.Vert = taVCenter
  2409. Properties.AssignedValues.MinValue = True
  2410. Properties.MaxValue = 99999.000000000000000000
  2411. Properties.ReadOnly = False
  2412. Properties.ValueType = vtInt
  2413. Style.BorderStyle = ebsUltraFlat
  2414. Style.LookAndFeel.Kind = lfUltraFlat
  2415. Style.LookAndFeel.NativeStyle = False
  2416. Style.ButtonStyle = btsUltraFlat
  2417. StyleDisabled.LookAndFeel.Kind = lfUltraFlat
  2418. StyleDisabled.LookAndFeel.NativeStyle = False
  2419. StyleFocused.LookAndFeel.Kind = lfUltraFlat
  2420. StyleFocused.LookAndFeel.NativeStyle = False
  2421. StyleHot.LookAndFeel.Kind = lfUltraFlat
  2422. StyleHot.LookAndFeel.NativeStyle = False
  2423. TabOrder = 101
  2424. Width = 70
  2425. end
  2426. object PARKING_CHRGE_ADIT_UNIT_CHRGE: TcxSpinEdit
  2427. Left = 691
  2428. Top = 679
  2429. Properties.Alignment.Horz = taRightJustify
  2430. Properties.Alignment.Vert = taVCenter
  2431. Properties.AssignedValues.MinValue = True
  2432. Properties.MaxValue = 99999.000000000000000000
  2433. Properties.ReadOnly = False
  2434. Properties.ValueType = vtInt
  2435. Style.BorderStyle = ebsUltraFlat
  2436. Style.LookAndFeel.Kind = lfUltraFlat
  2437. Style.LookAndFeel.NativeStyle = False
  2438. Style.ButtonStyle = btsUltraFlat
  2439. StyleDisabled.LookAndFeel.Kind = lfUltraFlat
  2440. StyleDisabled.LookAndFeel.NativeStyle = False
  2441. StyleFocused.LookAndFeel.Kind = lfUltraFlat
  2442. StyleFocused.LookAndFeel.NativeStyle = False
  2443. StyleHot.LookAndFeel.Kind = lfUltraFlat
  2444. StyleHot.LookAndFeel.NativeStyle = False
  2445. TabOrder = 102
  2446. Width = 70
  2447. end
  2448. object cxLabel4: TcxLabel
  2449. Left = 673
  2450. Top = 203
  2451. AutoSize = False
  2452. Caption = '(YYYY-MM-DD)'
  2453. Properties.Alignment.Horz = taLeftJustify
  2454. Properties.Alignment.Vert = taVCenter
  2455. Transparent = True
  2456. Height = 21
  2457. Width = 92
  2458. AnchorY = 214
  2459. end
  2460. object cxLabel7: TcxLabel
  2461. Left = 459
  2462. Top = 294
  2463. AutoSize = False
  2464. Caption = #51452#52264#44396#54925' '#45800#50948#51221#48372' '#49688#51665#51109#52824' '#49444#52824#51068#51088
  2465. Properties.Alignment.Horz = taRightJustify
  2466. Properties.Alignment.Vert = taVCenter
  2467. Transparent = True
  2468. Height = 21
  2469. Width = 246
  2470. AnchorX = 705
  2471. AnchorY = 305
  2472. end
  2473. object COLCT_DEVICE_INSTL_DE: TcxTextEdit
  2474. Left = 708
  2475. Top = 293
  2476. Properties.Alignment.Horz = taCenter
  2477. Properties.Alignment.Vert = taVCenter
  2478. Properties.MaxLength = 8
  2479. Properties.ReadOnly = False
  2480. TabOrder = 105
  2481. Width = 100
  2482. end
  2483. object cxLabel24: TcxLabel
  2484. Left = 392
  2485. Top = 113
  2486. AutoSize = False
  2487. Caption = #51452#52264#51109' '#51077#52636#44396' '#54805#53468
  2488. Properties.Alignment.Horz = taRightJustify
  2489. Properties.Alignment.Vert = taVCenter
  2490. Transparent = True
  2491. Height = 21
  2492. Width = 143
  2493. AnchorX = 535
  2494. AnchorY = 124
  2495. end
  2496. object PRK_PLCE_ENTRC_EXTTY: TcxComboBox
  2497. Left = 545
  2498. Top = 110
  2499. Cursor = crHandPoint
  2500. Properties.Alignment.Vert = taVCenter
  2501. Properties.DropDownListStyle = lsFixedList
  2502. Properties.DropDownSizeable = True
  2503. Properties.ReadOnly = False
  2504. TabOrder = 107
  2505. Width = 290
  2506. end
  2507. object cxLabel23: TcxLabel
  2508. Left = 421
  2509. Top = 84
  2510. AutoSize = False
  2511. Caption = #51452#52264#51109' '#51077#44396#47749
  2512. Properties.Alignment.Horz = taRightJustify
  2513. Properties.Alignment.Vert = taVCenter
  2514. Transparent = True
  2515. Height = 21
  2516. Width = 114
  2517. AnchorX = 535
  2518. AnchorY = 95
  2519. end
  2520. object PRK_PLCE_ENTRC_NM: TcxTextEdit
  2521. Left = 545
  2522. Top = 80
  2523. Properties.Alignment.Vert = taVCenter
  2524. Properties.MaxLength = 32
  2525. Properties.ReadOnly = False
  2526. TabOrder = 109
  2527. Width = 290
  2528. end
  2529. object cxLabel5: TcxLabel
  2530. Left = 333
  2531. Top = 84
  2532. AutoSize = False
  2533. Caption = '(YYYY-MM-DD)'
  2534. Properties.Alignment.Horz = taLeftJustify
  2535. Properties.Alignment.Vert = taVCenter
  2536. Transparent = True
  2537. Height = 21
  2538. Width = 92
  2539. AnchorY = 95
  2540. end
  2541. object PRK_PLCE_ABL_DE: TcxTextEdit
  2542. Left = 229
  2543. Top = 80
  2544. Properties.Alignment.Horz = taCenter
  2545. Properties.Alignment.Vert = taVCenter
  2546. Properties.MaxLength = 8
  2547. Properties.ReadOnly = False
  2548. TabOrder = 111
  2549. Width = 100
  2550. end
  2551. object PRK_PLCE_INSTL_DE: TcxTextEdit
  2552. Left = 128
  2553. Top = 80
  2554. Properties.Alignment.Horz = taCenter
  2555. Properties.Alignment.Vert = taVCenter
  2556. Properties.MaxLength = 8
  2557. Properties.ReadOnly = False
  2558. TabOrder = 112
  2559. Width = 100
  2560. end
  2561. object cxLabel22: TcxLabel
  2562. Left = 19
  2563. Top = 84
  2564. AutoSize = False
  2565. Caption = #49444#52824'/'#54224#51648#51068#51088
  2566. Properties.Alignment.Horz = taRightJustify
  2567. Properties.Alignment.Vert = taVCenter
  2568. Transparent = True
  2569. Height = 21
  2570. Width = 105
  2571. AnchorX = 124
  2572. AnchorY = 95
  2573. end
  2574. object cxLabel21: TcxLabel
  2575. Left = 421
  2576. Top = 24
  2577. AutoSize = False
  2578. Caption = #51452#52264#49884#49444' '#51221#48372#48260#51204
  2579. Properties.Alignment.Horz = taRightJustify
  2580. Properties.Alignment.Vert = taVCenter
  2581. Transparent = True
  2582. Height = 21
  2583. Width = 114
  2584. AnchorX = 535
  2585. AnchorY = 35
  2586. end
  2587. object PRK_PLCE_STTUS_VER: TcxTextEdit
  2588. Left = 641
  2589. Top = 19
  2590. Properties.Alignment.Horz = taCenter
  2591. Properties.Alignment.Vert = taVCenter
  2592. Properties.MaxLength = 10
  2593. Properties.ReadOnly = False
  2594. TabOrder = 115
  2595. Width = 100
  2596. end
  2597. end
  2598. object OPR_INFO: TcxTextEdit
  2599. Left = 128
  2600. Top = 141
  2601. Properties.Alignment.Vert = taVCenter
  2602. Properties.MaxLength = 256
  2603. Properties.ReadOnly = False
  2604. TabOrder = 14
  2605. Width = 625
  2606. end
  2607. object cxLabel9: TcxLabel
  2608. Left = 3
  2609. Top = 145
  2610. AutoSize = False
  2611. Caption = #50868#50689#51221#48372
  2612. Properties.Alignment.Horz = taRightJustify
  2613. Properties.Alignment.Vert = taVCenter
  2614. Transparent = True
  2615. Height = 21
  2616. Width = 115
  2617. AnchorX = 118
  2618. AnchorY = 156
  2619. end
  2620. object cxLabel11: TcxLabel
  2621. Left = 30
  2622. Top = 178
  2623. AutoSize = False
  2624. Caption = #52572#52488' 30'#48516' '#50836#44552
  2625. Properties.Alignment.Horz = taRightJustify
  2626. Properties.Alignment.Vert = taVCenter
  2627. Transparent = True
  2628. Height = 21
  2629. Width = 115
  2630. AnchorX = 145
  2631. AnchorY = 189
  2632. end
  2633. object cxLabel17: TcxLabel
  2634. Left = -37
  2635. Top = 206
  2636. AutoSize = False
  2637. Caption = '30'#48516#52488#44284' '#47588' 10'#48516' '#50836#44552
  2638. Properties.Alignment.Horz = taRightJustify
  2639. Properties.Alignment.Vert = taVCenter
  2640. Transparent = True
  2641. Height = 21
  2642. Width = 182
  2643. AnchorX = 145
  2644. AnchorY = 217
  2645. end
  2646. object cxLabel53: TcxLabel
  2647. Left = 261
  2648. Top = 206
  2649. AutoSize = False
  2650. Caption = #50900' '#51221#44592#44428' '#50836#44552
  2651. Properties.Alignment.Horz = taRightJustify
  2652. Properties.Alignment.Vert = taVCenter
  2653. Transparent = True
  2654. Height = 21
  2655. Width = 105
  2656. AnchorX = 366
  2657. AnchorY = 217
  2658. end
  2659. object cxLabel54: TcxLabel
  2660. Left = 251
  2661. Top = 178
  2662. AutoSize = False
  2663. Caption = '1'#51068' '#51452#52264#50836#44552
  2664. Properties.Alignment.Horz = taRightJustify
  2665. Properties.Alignment.Vert = taVCenter
  2666. Transparent = True
  2667. Height = 21
  2668. Width = 115
  2669. AnchorX = 366
  2670. AnchorY = 189
  2671. end
  2672. object MIN30_FEE: TcxSpinEdit
  2673. Left = 151
  2674. Top = 177
  2675. Properties.Alignment.Horz = taRightJustify
  2676. Properties.Alignment.Vert = taVCenter
  2677. Properties.AssignedValues.MinValue = True
  2678. Properties.MaxValue = 99999.000000000000000000
  2679. Properties.ReadOnly = False
  2680. Properties.ValueType = vtInt
  2681. Style.BorderStyle = ebsUltraFlat
  2682. Style.LookAndFeel.Kind = lfUltraFlat
  2683. Style.LookAndFeel.NativeStyle = False
  2684. Style.ButtonStyle = btsUltraFlat
  2685. StyleDisabled.LookAndFeel.Kind = lfUltraFlat
  2686. StyleDisabled.LookAndFeel.NativeStyle = False
  2687. StyleFocused.LookAndFeel.Kind = lfUltraFlat
  2688. StyleFocused.LookAndFeel.NativeStyle = False
  2689. StyleHot.LookAndFeel.Kind = lfUltraFlat
  2690. StyleHot.LookAndFeel.NativeStyle = False
  2691. TabOrder = 20
  2692. Width = 70
  2693. end
  2694. object MIN10_FEE: TcxSpinEdit
  2695. Left = 151
  2696. Top = 206
  2697. Properties.Alignment.Horz = taRightJustify
  2698. Properties.Alignment.Vert = taVCenter
  2699. Properties.AssignedValues.MinValue = True
  2700. Properties.MaxValue = 99999.000000000000000000
  2701. Properties.ReadOnly = False
  2702. Properties.ValueType = vtInt
  2703. Style.BorderStyle = ebsUltraFlat
  2704. Style.LookAndFeel.Kind = lfUltraFlat
  2705. Style.LookAndFeel.NativeStyle = False
  2706. Style.ButtonStyle = btsUltraFlat
  2707. StyleDisabled.LookAndFeel.Kind = lfUltraFlat
  2708. StyleDisabled.LookAndFeel.NativeStyle = False
  2709. StyleFocused.LookAndFeel.Kind = lfUltraFlat
  2710. StyleFocused.LookAndFeel.NativeStyle = False
  2711. StyleHot.LookAndFeel.Kind = lfUltraFlat
  2712. StyleHot.LookAndFeel.NativeStyle = False
  2713. TabOrder = 21
  2714. Width = 70
  2715. end
  2716. object MON_FEE: TcxSpinEdit
  2717. Left = 372
  2718. Top = 206
  2719. Properties.Alignment.Horz = taRightJustify
  2720. Properties.Alignment.Vert = taVCenter
  2721. Properties.AssignedValues.MinValue = True
  2722. Properties.MaxValue = 9999999999.000000000000000000
  2723. Properties.ReadOnly = False
  2724. Properties.ValueType = vtInt
  2725. Style.BorderStyle = ebsUltraFlat
  2726. Style.LookAndFeel.Kind = lfUltraFlat
  2727. Style.LookAndFeel.NativeStyle = False
  2728. Style.ButtonStyle = btsUltraFlat
  2729. StyleDisabled.LookAndFeel.Kind = lfUltraFlat
  2730. StyleDisabled.LookAndFeel.NativeStyle = False
  2731. StyleFocused.LookAndFeel.Kind = lfUltraFlat
  2732. StyleFocused.LookAndFeel.NativeStyle = False
  2733. StyleHot.LookAndFeel.Kind = lfUltraFlat
  2734. StyleHot.LookAndFeel.NativeStyle = False
  2735. TabOrder = 22
  2736. Width = 95
  2737. end
  2738. object DAY_FEE: TcxSpinEdit
  2739. Left = 372
  2740. Top = 177
  2741. Properties.Alignment.Horz = taRightJustify
  2742. Properties.Alignment.Vert = taVCenter
  2743. Properties.AssignedValues.MinValue = True
  2744. Properties.MaxValue = 9999999999.000000000000000000
  2745. Properties.ReadOnly = False
  2746. Properties.ValueType = vtInt
  2747. Style.BorderStyle = ebsUltraFlat
  2748. Style.LookAndFeel.Kind = lfUltraFlat
  2749. Style.LookAndFeel.NativeStyle = False
  2750. Style.ButtonStyle = btsUltraFlat
  2751. StyleDisabled.LookAndFeel.Kind = lfUltraFlat
  2752. StyleDisabled.LookAndFeel.NativeStyle = False
  2753. StyleFocused.LookAndFeel.Kind = lfUltraFlat
  2754. StyleFocused.LookAndFeel.NativeStyle = False
  2755. StyleHot.LookAndFeel.Kind = lfUltraFlat
  2756. StyleHot.LookAndFeel.NativeStyle = False
  2757. TabOrder = 23
  2758. Width = 95
  2759. end
  2760. object PRK_CMPRT_CO: TcxSpinEdit
  2761. Left = 542
  2762. Top = 53
  2763. Properties.Alignment.Horz = taRightJustify
  2764. Properties.Alignment.Vert = taVCenter
  2765. Properties.AssignedValues.MinValue = True
  2766. Properties.MaxValue = 9999.000000000000000000
  2767. Properties.ReadOnly = False
  2768. Properties.ValueType = vtInt
  2769. Style.BorderStyle = ebsUltraFlat
  2770. Style.LookAndFeel.Kind = lfUltraFlat
  2771. Style.LookAndFeel.NativeStyle = False
  2772. Style.ButtonStyle = btsUltraFlat
  2773. StyleDisabled.LookAndFeel.Kind = lfUltraFlat
  2774. StyleDisabled.LookAndFeel.NativeStyle = False
  2775. StyleFocused.LookAndFeel.Kind = lfUltraFlat
  2776. StyleFocused.LookAndFeel.NativeStyle = False
  2777. StyleHot.LookAndFeel.Kind = lfUltraFlat
  2778. StyleHot.LookAndFeel.NativeStyle = False
  2779. TabOrder = 24
  2780. Width = 70
  2781. end
  2782. object cxLabel56: TcxLabel
  2783. Left = 434
  2784. Top = 54
  2785. AutoSize = False
  2786. Caption = #52509#51452#52264' '#44396#54925#49688' [*]'
  2787. Properties.Alignment.Horz = taRightJustify
  2788. Properties.Alignment.Vert = taVCenter
  2789. Transparent = True
  2790. Height = 21
  2791. Width = 105
  2792. AnchorX = 539
  2793. AnchorY = 65
  2794. end
  2795. end
  2796. end
  2797. end
  2798. end
  2799. end
  2800. object Panel1: TPanel
  2801. Left = 115
  2802. Top = 532
  2803. Width = 369
  2804. Height = 115
  2805. TabOrder = 3
  2806. Visible = False
  2807. object PRK_PLCE_IMAGE_DATA: TImage
  2808. Left = 51
  2809. Top = 25
  2810. Width = 80
  2811. Height = 57
  2812. AutoSize = True
  2813. Center = True
  2814. end
  2815. end
  2816. object TmrShow: TTimer
  2817. Enabled = False
  2818. Interval = 300
  2819. OnTimer = TmrShowTimer
  2820. Left = 876
  2821. Top = 8
  2822. end
  2823. end