123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823 |
- object PRK0010M: TPRK0010M
- Left = 0
- Top = 0
- HorzScrollBar.Visible = False
- VertScrollBar.Visible = False
- Caption = #51452#52264#51109' '#44288#47532
- ClientHeight = 848
- ClientWidth = 1532
- Color = clBtnFace
- Font.Charset = DEFAULT_CHARSET
- Font.Color = clWindowText
- Font.Height = -13
- Font.Name = #47569#51008' '#44256#46357
- Font.Style = []
- KeyPreview = True
- OldCreateOrder = False
- Position = poOwnerFormCenter
- ShowHint = True
- OnClose = FormClose
- OnCloseQuery = FormCloseQuery
- OnShow = FormShow
- DesignSize = (
- 1532
- 848)
- PixelsPerInch = 96
- TextHeight = 17
- object ShpTitle: TShape
- Left = 4
- Top = 4
- Width = 1524
- Height = 40
- Anchors = [akLeft, akTop, akRight]
- Brush.Color = 14671839
- Pen.Color = 10849679
- Pen.Width = 2
- ExplicitWidth = 1269
- end
- object LblCaption: TLabel
- Left = 16
- Top = 10
- Width = 267
- Height = 23
- Caption = #53440#51060#53952' '
- Font.Charset = DEFAULT_CHARSET
- Font.Color = 4740964
- Font.Height = -17
- Font.Name = #47569#51008' '#44256#46357
- Font.Style = [fsBold]
- ParentFont = False
- ParentShowHint = False
- ShowHint = True
- end
- object ShpList: TShape
- Left = 8
- Top = 50
- Width = 1524
- Height = 792
- Anchors = [akLeft, akTop, akRight, akBottom]
- Pen.Color = 10849679
- Pen.Width = 2
- end
- object BtnClose: TcxButton
- Left = 1443
- Top = 11
- Width = 75
- Height = 25
- Cursor = crHandPoint
- Hint = #45803#44592
- Anchors = [akTop, akRight]
- Caption = #45803#44592
- Colors.Default = 10737865
- TabOrder = 0
- Font.Charset = DEFAULT_CHARSET
- Font.Color = clBlack
- Font.Height = -13
- Font.Name = #47569#51008' '#44256#46357
- Font.Style = [fsBold]
- ParentFont = False
- OnClick = BtnCloseClick
- end
- object EdFocus: TEdit
- Left = -10
- Top = -10
- Width = 2
- Height = 25
- ImeName = 'Microsoft Office IME 2007'
- TabOrder = 1
- Text = 'EdFocus'
- end
- object PnlBack: TPanel
- Left = 12
- Top = 56
- Width = 1506
- Height = 779
- Anchors = [akLeft, akTop, akRight, akBottom]
- BevelOuter = bvNone
- ParentBackground = False
- ParentColor = True
- TabOrder = 2
- object PnlBottom: TPanel
- Left = 0
- Top = 0
- Width = 1506
- Height = 779
- Align = alClient
- BevelOuter = bvNone
- TabOrder = 0
- object PnlLeft: TPanel
- Left = 0
- Top = 0
- Width = 1506
- Height = 779
- Align = alClient
- BevelOuter = bvNone
- TabOrder = 0
- ExplicitWidth = 658
- object cxGroupBox3: TcxGroupBox
- Left = 0
- Top = 0
- Align = alClient
- Caption = #9654' '#51452#52264#51109' '#47785#47197
- ParentFont = False
- Style.BorderColor = clCaptionText
- Style.Font.Charset = DEFAULT_CHARSET
- Style.Font.Color = clWindowText
- Style.Font.Height = -13
- Style.Font.Name = #47569#51008' '#44256#46357
- Style.Font.Style = []
- Style.Shadow = False
- Style.TextColor = clWindowText
- Style.TextStyle = [fsBold]
- Style.IsFontAssigned = True
- TabOrder = 0
- ExplicitWidth = 658
- Height = 282
- Width = 728
- object CxList: TcxGrid
- Left = 3
- Top = 19
- Width = 722
- Height = 253
- Align = alClient
- TabOrder = 0
- ExplicitWidth = 652
- object TvList: TcxGridTableView
- Navigator.Buttons.Append.Visible = True
- Navigator.Buttons.SaveBookmark.Visible = False
- Navigator.InfoPanel.Visible = True
- FilterBox.CustomizeDialog = False
- OnCellDblClick = TvListCellDblClick
- DataController.Summary.DefaultGroupSummaryItems = <>
- DataController.Summary.FooterSummaryItems = <>
- DataController.Summary.SummaryGroups = <>
- FilterRow.InfoText = '<'#44160#49353#50612#47484' '#51077#47141' '#54616#49464#50836'>'
- FilterRow.ApplyChanges = fracImmediately
- OptionsBehavior.CellHints = True
- OptionsBehavior.ShowLockedStateImageOptions.BestFit = lsimImmediate
- OptionsBehavior.ShowLockedStateImageOptions.Filtering = lsimImmediate
- OptionsBehavior.ShowLockedStateImageOptions.Grouping = lsimImmediate
- OptionsBehavior.ShowLockedStateImageOptions.Sorting = lsimImmediate
- OptionsData.Deleting = False
- OptionsData.DeletingConfirmation = False
- OptionsData.Inserting = False
- OptionsView.GroupByBox = False
- OptionsView.Indicator = True
- object ColumnSel: TcxGridColumn
- Caption = #49440#53469
- DataBinding.ValueType = 'Boolean'
- PropertiesClassName = 'TcxCheckBoxProperties'
- Properties.Alignment = taCenter
- Properties.ImmediatePost = True
- Properties.NullStyle = nssUnchecked
- Visible = False
- HeaderAlignmentHorz = taCenter
- VisibleForCustomization = False
- Width = 45
- end
- object Column00: TcxGridColumn
- Caption = #54200#51665#47784#46300
- PropertiesClassName = 'TcxTextEditProperties'
- Properties.Alignment.Horz = taCenter
- Properties.Alignment.Vert = taVCenter
- Visible = False
- HeaderAlignmentHorz = taCenter
- Options.Editing = False
- end
- object Column01: TcxGridColumn
- Caption = #48264#54840
- PropertiesClassName = 'TcxTextEditProperties'
- Properties.Alignment.Horz = taCenter
- Properties.Alignment.Vert = taVCenter
- Properties.MaxLength = 0
- HeaderAlignmentHorz = taCenter
- Options.Editing = False
- Width = 80
- end
- object Column11: TcxGridColumn
- Caption = #51452#52264#51109' ID'
- PropertiesClassName = 'TcxTextEditProperties'
- Properties.Alignment.Horz = taCenter
- Properties.Alignment.Vert = taVCenter
- HeaderAlignmentHorz = taCenter
- Options.Editing = False
- Width = 134
- end
- object Column02: TcxGridColumn
- Caption = #50868#50689#44396#48516
- PropertiesClassName = 'TcxTextEditProperties'
- Properties.Alignment.Horz = taCenter
- Properties.Alignment.Vert = taVCenter
- Properties.MaxLength = 0
- Visible = False
- HeaderAlignmentHorz = taCenter
- Options.Editing = False
- Width = 91
- end
- object Column03: TcxGridColumn
- Caption = #50976#54805#44396#48516
- PropertiesClassName = 'TcxTextEditProperties'
- Properties.Alignment.Horz = taCenter
- Properties.Alignment.Vert = taVCenter
- Visible = False
- HeaderAlignmentHorz = taCenter
- Options.Editing = False
- Width = 94
- end
- object Column04: TcxGridColumn
- Caption = #47749#52845
- PropertiesClassName = 'TcxTextEditProperties'
- Properties.Alignment.Vert = taVCenter
- Properties.MaxLength = 0
- HeaderAlignmentHorz = taCenter
- Options.Editing = False
- Width = 176
- end
- object Column13: TcxGridColumn
- Caption = #49892#49884#44036#51221#48372#51228#44277
- PropertiesClassName = 'TcxLabelProperties'
- Properties.Alignment.Horz = taCenter
- Properties.Alignment.Vert = taVCenter
- Visible = False
- HeaderAlignmentHorz = taCenter
- HeaderAlignmentVert = vaCenter
- Width = 106
- end
- object Column06: TcxGridColumn
- Caption = #51228#50612#44592'IP'
- PropertiesClassName = 'TcxTextEditProperties'
- Properties.Alignment.Horz = taCenter
- Properties.Alignment.Vert = taVCenter
- Properties.MaxLength = 20
- Visible = False
- HeaderAlignmentHorz = taCenter
- Options.Editing = False
- Width = 94
- end
- object Column07: TcxGridColumn
- Caption = #53685#49888#54252#53944
- PropertiesClassName = 'TcxTextEditProperties'
- Properties.Alignment.Horz = taRightJustify
- Properties.Alignment.Vert = taVCenter
- Properties.MaxLength = 5
- Visible = False
- HeaderAlignmentHorz = taCenter
- Options.Editing = False
- Width = 60
- end
- object Column08: TcxGridColumn
- Caption = #49688#51665#51452#44592
- PropertiesClassName = 'TcxTextEditProperties'
- Properties.Alignment.Horz = taRightJustify
- Properties.Alignment.Vert = taVCenter
- Visible = False
- HeaderAlignmentHorz = taCenter
- Options.Editing = False
- Width = 82
- end
- object Column09: TcxGridColumn
- Caption = #49345#53468#51452#44592
- PropertiesClassName = 'TcxTextEditProperties'
- Properties.Alignment.Horz = taRightJustify
- Properties.Alignment.Vert = taVCenter
- Visible = False
- HeaderAlignmentHorz = taCenter
- Options.Editing = False
- Width = 72
- end
- object Column10: TcxGridColumn
- Caption = #52509#51452#52264' '#44396#54925#49688
- PropertiesClassName = 'TcxTextEditProperties'
- Properties.Alignment.Horz = taRightJustify
- Properties.Alignment.Vert = taVCenter
- HeaderAlignmentHorz = taCenter
- Options.Editing = False
- Width = 88
- end
- object Column12: TcxGridColumn
- Caption = #52789#51221#48372
- PropertiesClassName = 'TcxTextEditProperties'
- Properties.Alignment.Vert = taVCenter
- Visible = False
- HeaderAlignmentHorz = taCenter
- Options.Editing = False
- VisibleForCustomization = False
- Width = 150
- end
- object Column05: TcxGridColumn
- Caption = #49324#50857#50668#48512
- PropertiesClassName = 'TcxTextEditProperties'
- Properties.Alignment.Horz = taCenter
- Properties.Alignment.Vert = taVCenter
- Properties.MaxLength = 20
- Visible = False
- HeaderAlignmentHorz = taCenter
- Options.Editing = False
- VisibleForCustomization = False
- Width = 63
- end
- object Column99: TcxGridColumn
- Caption = #47700#47784#47532
- DataBinding.ValueType = 'Integer'
- PropertiesClassName = 'TcxCalcEditProperties'
- Properties.Alignment.Horz = taCenter
- Properties.Alignment.Vert = taVCenter
- Visible = False
- Options.Editing = False
- end
- end
- object GlList: TcxGridLevel
- GridView = TvList
- end
- end
- end
- object GrpMap: TcxGroupBox
- Left = 0
- Top = 288
- Align = alBottom
- Caption = #9654' '#50948#52824#49444#51221
- ParentFont = False
- Style.BorderColor = clCaptionText
- Style.Font.Charset = DEFAULT_CHARSET
- Style.Font.Color = clWindowText
- Style.Font.Height = -13
- Style.Font.Name = #47569#51008' '#44256#46357
- Style.Font.Style = []
- Style.Shadow = False
- Style.TextColor = clBlack
- Style.TextStyle = [fsBold]
- Style.IsFontAssigned = True
- TabOrder = 1
- ExplicitWidth = 658
- Height = 491
- Width = 1506
- inline FRAMEOpenMap1: TFRAMEOpenMap
- Left = 3
- Top = 19
- Width = 1500
- Height = 462
- Align = alClient
- ParentShowHint = False
- ShowHint = True
- TabOrder = 0
- ExplicitLeft = 3
- ExplicitTop = 19
- ExplicitWidth = 652
- ExplicitHeight = 462
- inherited PnlToolbar: TPanel
- Width = 1500
- ExplicitWidth = 652
- inherited EdFocus: TEdit
- Height = 25
- ExplicitHeight = 25
- end
- inherited cxLabel26: TcxLabel
- AnchorX = 122
- AnchorY = 19
- end
- inherited cxLabel27: TcxLabel
- AnchorX = 280
- AnchorY = 19
- end
- inherited PnlGisTool: TPanel
- Width = 1067
- ExplicitWidth = 219
- inherited ChkShowNmbr: TcxCheckBox
- ExplicitHeight = 28
- end
- inherited EdMapPos: TcxTextEdit
- ExplicitHeight = 28
- end
- end
- inherited cxLabel1: TcxLabel
- AnchorX = 346
- AnchorY = 19
- end
- inherited LblZoom: TcxLabel
- Left = 1413
- ExplicitLeft = 565
- AnchorX = 1495
- AnchorY = 19
- end
- end
- inherited lblTitle: TcxLabel
- ExplicitWidth = 69
- ExplicitHeight = 21
- end
- inherited reMsg: TMemo
- Top = 315
- Width = 1500
- ExplicitTop = 315
- ExplicitWidth = 652
- end
- inherited PnlMap: TPanel
- Width = 1500
- Height = 277
- ExplicitWidth = 652
- ExplicitHeight = 277
- inherited WebBrowser1: TWebBrowser
- Width = 1496
- Height = 273
- ExplicitWidth = 659
- ExplicitHeight = 330
- ControlData = {
- 4C0000009E9A0000371C00000000000000000000000000000000000000000000
- 000000004C000000000000000000000001000000E0D057007335CF11AE690800
- 2B2E126208000000000000004C0000000114020000000000C000000000000046
- 8000000000000000000000000000000000000000000000000000000000000000
- 00000000000000000100000000000000000000000000000000000000}
- end
- end
- inherited ilToolbarsSmall: TcxImageList
- FormatVersion = 1
- end
- end
- end
- object cxSplitter1: TcxSplitter
- Left = 0
- Top = 282
- Width = 1506
- Height = 6
- AlignSplitter = salBottom
- Control = GrpMap
- ExplicitWidth = 658
- end
- object cxSplitter3: TcxSplitter
- Left = 728
- Top = 0
- Width = 6
- Height = 282
- AlignSplitter = salRight
- Visible = False
- ExplicitLeft = 725
- ExplicitTop = -6
- end
- object PnlEdit: TPanel
- Left = 734
- Top = 0
- Width = 772
- Height = 282
- Align = alRight
- BevelOuter = bvNone
- TabOrder = 4
- ExplicitLeft = 728
- object PnlMenu: TPanel
- Left = 0
- Top = 251
- Width = 772
- Height = 31
- Align = alBottom
- BevelOuter = bvNone
- TabOrder = 0
- ExplicitWidth = 842
- DesignSize = (
- 772
- 31)
- object BtnEdit: TcxButton
- Tag = 2
- Left = 442
- Top = 3
- Width = 75
- Height = 25
- Cursor = crHandPoint
- Hint = #45936#51060#53552' '#54200#51665
- Anchors = [akRight, akBottom]
- Caption = #54200#51665
- Colors.Default = 10737865
- Enabled = False
- TabOrder = 0
- Font.Charset = DEFAULT_CHARSET
- Font.Color = clBlack
- Font.Height = -13
- Font.Name = #47569#51008' '#44256#46357
- Font.Style = [fsBold]
- ParentFont = False
- OnClick = BtnEditClick
- ExplicitLeft = 512
- end
- object BtnInsert: TcxButton
- Tag = 2
- Left = 523
- Top = 3
- Width = 75
- Height = 25
- Cursor = crHandPoint
- Hint = #45936#51060#53552' '#52628#44032
- Anchors = [akRight, akBottom]
- Caption = #52628#44032
- Colors.Default = 10737865
- TabOrder = 1
- Font.Charset = DEFAULT_CHARSET
- Font.Color = clBlack
- Font.Height = -13
- Font.Name = #47569#51008' '#44256#46357
- Font.Style = [fsBold]
- ParentFont = False
- OnClick = BtnInsertClick
- ExplicitLeft = 593
- end
- object BtnDelete: TcxButton
- Tag = 4
- Left = 605
- Top = 3
- Width = 75
- Height = 25
- Cursor = crHandPoint
- Hint = #45936#51060#53552' '#49325#51228
- Anchors = [akRight, akBottom]
- Caption = #49325#51228
- Colors.Default = 10737865
- Enabled = False
- TabOrder = 2
- Font.Charset = DEFAULT_CHARSET
- Font.Color = clBlack
- Font.Height = -13
- Font.Name = #47569#51008' '#44256#46357
- Font.Style = [fsBold]
- ParentFont = False
- OnClick = BtnDeleteClick
- ExplicitLeft = 675
- end
- object BtnSave: TcxButton
- Tag = 5
- Left = 686
- Top = 3
- Width = 75
- Height = 25
- Cursor = crHandPoint
- Hint = #54200#51665#51089#50629' '#51200#51109
- Anchors = [akRight, akBottom]
- Caption = #51200#51109
- Colors.Default = 10737865
- Enabled = False
- TabOrder = 3
- Font.Charset = DEFAULT_CHARSET
- Font.Color = clBlack
- Font.Height = -13
- Font.Name = #47569#51008' '#44256#46357
- Font.Style = [fsBold]
- ParentFont = False
- OnClick = BtnSaveClick
- ExplicitLeft = 756
- end
- end
- object GrpInfo: TcxGroupBox
- Left = 0
- Top = 0
- Align = alClient
- Caption = #9654' '#51452#52264#51109' '#51221#48372
- ParentFont = False
- Style.BorderColor = clCaptionText
- Style.Font.Charset = DEFAULT_CHARSET
- Style.Font.Color = clWindowText
- Style.Font.Height = -13
- Style.Font.Name = #47569#51008' '#44256#46357
- Style.Font.Style = []
- Style.Shadow = False
- Style.TextColor = clBlack
- Style.TextStyle = [fsBold]
- Style.IsFontAssigned = True
- TabOrder = 1
- ExplicitTop = -3
- DesignSize = (
- 772
- 244)
- Height = 251
- Width = 772
- object ImgDesc02: TImage
- Left = 9
- Top = 59
- Width = 9
- Height = 9
- Transparent = True
- end
- object ImgDesc03: TImage
- Left = 9
- Top = 147
- Width = 9
- Height = 9
- Transparent = True
- end
- object ImgDesc04: TImage
- Left = 9
- Top = 116
- Width = 9
- Height = 9
- Transparent = True
- end
- object ImgDesc99: TImage
- Left = 9
- Top = 89
- Width = 9
- Height = 9
- Transparent = True
- end
- object ImgDesc24: TImage
- Left = 9
- Top = 29
- Width = 9
- Height = 9
- Transparent = True
- end
- object ImgDesc79: TImage
- Left = 9
- Top = 181
- Width = 9
- Height = 9
- Transparent = True
- end
- object ImgDesc05: TImage
- Left = 633
- Top = 38
- Width = 9
- Height = 9
- Transparent = True
- Visible = False
- end
- object ImgDesc35: TImage
- Left = 673
- Top = 50
- Width = 9
- Height = 9
- Transparent = True
- Visible = False
- end
- object PRK_PLCE_MANAGE_NO: TcxTextEdit
- Left = 229
- Top = 22
- Properties.Alignment.Vert = taVCenter
- TabOrder = 0
- Width = 187
- end
- object cxLabel2: TcxLabel
- Left = 19
- Top = 54
- AutoSize = False
- Caption = #51452#52264#51109#47749' [*]'
- Properties.Alignment.Horz = taRightJustify
- Properties.Alignment.Vert = taVCenter
- Transparent = True
- Height = 21
- Width = 105
- AnchorX = 124
- AnchorY = 65
- end
- object cxLabel6: TcxLabel
- Left = 19
- Top = 113
- AutoSize = False
- Caption = #50948#52824' X/Y'
- Properties.Alignment.Horz = taRightJustify
- Properties.Alignment.Vert = taVCenter
- Transparent = True
- Height = 21
- Width = 105
- AnchorX = 124
- AnchorY = 124
- end
- object PRK_PLCE_NM: TcxTextEdit
- Left = 128
- Top = 50
- Properties.Alignment.Vert = taVCenter
- Properties.MaxLength = 32
- Properties.ReadOnly = False
- TabOrder = 3
- Width = 290
- end
- object cxLabel15: TcxLabel
- Left = 24
- Top = 85
- AutoSize = False
- Caption = #51452#49548
- Properties.Alignment.Horz = taRightJustify
- Properties.Alignment.Vert = taVCenter
- Transparent = True
- Height = 21
- Width = 94
- AnchorX = 118
- AnchorY = 96
- end
- object PRK_PLCE_NMBR: TcxTextEdit
- Left = 128
- Top = 22
- Properties.Alignment.Horz = taCenter
- Properties.Alignment.Vert = taVCenter
- Properties.ReadOnly = True
- TabOrder = 5
- Width = 100
- end
- object cxLabel18: TcxLabel
- Left = 19
- Top = 24
- AutoSize = False
- Caption = #51452#52264#51109#48264#54840'/ID[*]'
- Properties.Alignment.Horz = taRightJustify
- Properties.Alignment.Vert = taVCenter
- Transparent = True
- Height = 21
- Width = 105
- AnchorX = 124
- AnchorY = 35
- end
- object PRK_PLCE_ENTRC_LA: TcxSpinEdit
- Left = 128
- Top = 110
- Properties.Alignment.Horz = taRightJustify
- Properties.Alignment.Vert = taVCenter
- Properties.DisplayFormat = '##0.######0'
- Properties.EditFormat = '##0.######0'
- Properties.MaxValue = 9999999999.000000000000000000
- Properties.ReadOnly = False
- Properties.SpinButtons.Visible = False
- Properties.ValueType = vtFloat
- Style.LookAndFeel.Kind = lfUltraFlat
- Style.LookAndFeel.NativeStyle = False
- Style.TextStyle = []
- Style.ButtonStyle = btsUltraFlat
- StyleDisabled.LookAndFeel.Kind = lfUltraFlat
- StyleDisabled.LookAndFeel.NativeStyle = False
- StyleFocused.LookAndFeel.Kind = lfUltraFlat
- StyleFocused.LookAndFeel.NativeStyle = False
- StyleFocused.TextStyle = [fsBold]
- StyleHot.LookAndFeel.Kind = lfUltraFlat
- StyleHot.LookAndFeel.NativeStyle = False
- TabOrder = 7
- Width = 100
- end
- object PRK_PLCE_ENTRC_LO: TcxSpinEdit
- Left = 229
- Top = 110
- Properties.Alignment.Horz = taRightJustify
- Properties.Alignment.Vert = taVCenter
- Properties.DisplayFormat = '##0.######0'
- Properties.EditFormat = '##0.######0'
- Properties.MaxValue = 9999999999.000000000000000000
- Properties.ReadOnly = False
- Properties.SpinButtons.Visible = False
- Properties.ValueType = vtFloat
- Style.LookAndFeel.Kind = lfUltraFlat
- Style.LookAndFeel.NativeStyle = False
- Style.TextStyle = []
- Style.ButtonStyle = btsUltraFlat
- StyleDisabled.LookAndFeel.Kind = lfUltraFlat
- StyleDisabled.LookAndFeel.NativeStyle = False
- StyleFocused.LookAndFeel.Kind = lfUltraFlat
- StyleFocused.LookAndFeel.NativeStyle = False
- StyleFocused.TextStyle = [fsBold]
- StyleHot.LookAndFeel.Kind = lfUltraFlat
- StyleHot.LookAndFeel.NativeStyle = False
- TabOrder = 8
- Width = 100
- end
- object PRK_PLCE_ADRES: TcxTextEdit
- Left = 128
- Top = 81
- Properties.Alignment.Vert = taVCenter
- Properties.MaxLength = 128
- Properties.ReadOnly = False
- TabOrder = 9
- Width = 484
- end
- object BtnOPR_CHRGE: TcxButton
- Tag = 2
- Left = 750
- Top = 1313
- Width = 143
- Height = 25
- Cursor = crHandPoint
- Hint = #51452#52264#50836#44552' '#54200#51665
- Anchors = [akRight, akBottom]
- Caption = #51452#52264#50836#44552' '#54200#51665
- Colors.Default = 10737865
- Glyph.Data = {
- 36040000424D3604000000000000360000002800000010000000100000000100
- 2000000000000004000000000000000000000000000000000000000000000000
- 0000000000000000000000000000000000000000000000000000000000000000
- 0000000000000000000000000000000000000000000000000000000000E60000
- 00E6000000E6000000E6000000E6000000E6000000E6000000E6000000E60000
- 00E6000000E6000000E600000000000000000000000000000000000000E6B1B2
- B1E6B1B2B1E6B1B2B1E6B1B2B1E6B1B2B1E6B1B2B1E6B1B2B1E6B1B2B1E6B1B2
- B1E6838383E6000000E600000000000000000000000000000000000000E6E6E6
- E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6
- E6E6B1B2B1E6000000E600000000000000000000000000000000000000E6E6E6
- E6E6747C74E6747C74E6747C74E6747C74E6747C74E6747C74E6000000E60000
- 00E6B1B2B1E6000000E600000000000000000000000000000000000000E6E6E6
- E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6000000E61F4AE6E60000
- 00E6B1B2B1E6000000E600000000000000000000000000000000000000E6E6E6
- E6E6B1B2B1E6B1B2B1E6B1B2B1E6B1B2B1E6000000E61F4AE6E661A1E6E60000
- 00E6000000E6000000E6000000E6000000E6000000E600000000000000E6E6E6
- E6E6E6E6E6E6E6E6E6E6E6E6E6E6000000E61F4AE6E685D0E6E67BC2E6E61F4A
- E6E61F4AE6E61F4AE6E61F4AE6E61F4AE6E6000000E600000000000000E6E6E6
- E6E6747C74E6747C74E6000000E696E5E6E696E5E6E696E5E6E68FDDE6E685D0
- E6E67BC2E6E66FB2E6E661A1E6E65490E6E6000000E600000000000000E6E6E6
- E6E6E6E6E6E6E6E6E6E6E6E6E6E6000000E696E5E6E696E5E6E696E5E6E696E5
- E6E68FDCE6E685D0E6E67BC2E6E66EB2E6E6000000E600000000000000E6E6E6
- E6E6B1B2B1E6B1B2B1E6B1B2B1E6B1B2B1E6000000E696E5E6E696E5E6E60000
- 00E6000000E6000000E6000000E6000000E6000000E600000000000000E6E6E6
- E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6000000E696E5E6E60000
- 00E6000000E60000000000000000000000000000000000000000000000E6E6E6
- E6E6747C74E6747C74E6747C74E6747C74E6747C74E6747C74E6000000E60000
- 00E6000000000000000000000000000000000000000000000000000000E6E6E6
- E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6000000E60000
- 0000000000000000000000000000000000000000000000000000000000E60000
- 00E6000000E6000000E6000000E6000000E6000000E6000000E6000000000000
- 0000000000000000000000000000000000000000000000000000000000000000
- 0000000000000000000000000000000000000000000000000000000000000000
- 0000000000000000000000000000000000000000000000000000}
- LookAndFeel.NativeStyle = False
- TabOrder = 10
- end
- object BtnOPR_SCHED: TcxButton
- Tag = 2
- Left = 900
- Top = 1313
- Width = 143
- Height = 25
- Cursor = crHandPoint
- Hint = #50868#50689#49828#52992#51572' '#54200#51665
- Anchors = [akRight, akBottom]
- Caption = #50868#50689#49828#52992#51572' '#54200#51665
- Colors.Default = 10737865
- Glyph.Data = {
- 36040000424D3604000000000000360000002800000010000000100000000100
- 2000000000000004000000000000000000000000000000000000000000000000
- 0000000000000000000000000000000000000000000000000000000000000000
- 0000000000000000000000000000000000000000000000000000000000E60000
- 00E6000000E6000000E6000000E6000000E6000000E6000000E6000000E60000
- 00E6000000E6000000E600000000000000000000000000000000000000E6B1B2
- B1E6B1B2B1E6B1B2B1E6B1B2B1E6B1B2B1E6B1B2B1E6B1B2B1E6B1B2B1E6B1B2
- B1E6838383E6000000E600000000000000000000000000000000000000E6E6E6
- E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6
- E6E6B1B2B1E6000000E600000000000000000000000000000000000000E6E6E6
- E6E6747C74E6747C74E6747C74E6747C74E6747C74E6747C74E6000000E60000
- 00E6B1B2B1E6000000E600000000000000000000000000000000000000E6E6E6
- E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6000000E61F4AE6E60000
- 00E6B1B2B1E6000000E600000000000000000000000000000000000000E6E6E6
- E6E6B1B2B1E6B1B2B1E6B1B2B1E6B1B2B1E6000000E61F4AE6E661A1E6E60000
- 00E6000000E6000000E6000000E6000000E6000000E600000000000000E6E6E6
- E6E6E6E6E6E6E6E6E6E6E6E6E6E6000000E61F4AE6E685D0E6E67BC2E6E61F4A
- E6E61F4AE6E61F4AE6E61F4AE6E61F4AE6E6000000E600000000000000E6E6E6
- E6E6747C74E6747C74E6000000E696E5E6E696E5E6E696E5E6E68FDDE6E685D0
- E6E67BC2E6E66FB2E6E661A1E6E65490E6E6000000E600000000000000E6E6E6
- E6E6E6E6E6E6E6E6E6E6E6E6E6E6000000E696E5E6E696E5E6E696E5E6E696E5
- E6E68FDCE6E685D0E6E67BC2E6E66EB2E6E6000000E600000000000000E6E6E6
- E6E6B1B2B1E6B1B2B1E6B1B2B1E6B1B2B1E6000000E696E5E6E696E5E6E60000
- 00E6000000E6000000E6000000E6000000E6000000E600000000000000E6E6E6
- E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6000000E696E5E6E60000
- 00E6000000E60000000000000000000000000000000000000000000000E6E6E6
- E6E6747C74E6747C74E6747C74E6747C74E6747C74E6747C74E6000000E60000
- 00E6000000000000000000000000000000000000000000000000000000E6E6E6
- E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6000000E60000
- 0000000000000000000000000000000000000000000000000000000000E60000
- 00E6000000E6000000E6000000E6000000E6000000E6000000E6000000000000
- 0000000000000000000000000000000000000000000000000000000000000000
- 0000000000000000000000000000000000000000000000000000000000000000
- 0000000000000000000000000000000000000000000000000000}
- LookAndFeel.NativeStyle = False
- TabOrder = 11
- end
- object BtnFLR_NO: TcxButton
- Tag = 2
- Left = 1292
- Top = 1313
- Width = 151
- Height = 25
- Cursor = crHandPoint
- Hint = #51452#52264#51109' '#52789' '#51221#48372' '#54200#51665
- Anchors = [akRight, akBottom]
- Caption = #51452#52264#51109' '#52789' '#51221#48372' '#54200#51665
- Colors.Default = 10737865
- Glyph.Data = {
- 36040000424D3604000000000000360000002800000010000000100000000100
- 2000000000000004000000000000000000000000000000000000000000000000
- 0000000000000000000000000000000000000000000000000000000000000000
- 0000000000000000000000000000000000000000000000000000000000E60000
- 00E6000000E6000000E6000000E6000000E6000000E6000000E6000000E60000
- 00E6000000E6000000E600000000000000000000000000000000000000E6B1B2
- B1E6B1B2B1E6B1B2B1E6B1B2B1E6B1B2B1E6B1B2B1E6B1B2B1E6B1B2B1E6B1B2
- B1E6838383E6000000E600000000000000000000000000000000000000E6E6E6
- E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6
- E6E6B1B2B1E6000000E600000000000000000000000000000000000000E6E6E6
- E6E6747C74E6747C74E6747C74E6747C74E6747C74E6747C74E6000000E60000
- 00E6B1B2B1E6000000E600000000000000000000000000000000000000E6E6E6
- E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6000000E61F4AE6E60000
- 00E6B1B2B1E6000000E600000000000000000000000000000000000000E6E6E6
- E6E6B1B2B1E6B1B2B1E6B1B2B1E6B1B2B1E6000000E61F4AE6E661A1E6E60000
- 00E6000000E6000000E6000000E6000000E6000000E600000000000000E6E6E6
- E6E6E6E6E6E6E6E6E6E6E6E6E6E6000000E61F4AE6E685D0E6E67BC2E6E61F4A
- E6E61F4AE6E61F4AE6E61F4AE6E61F4AE6E6000000E600000000000000E6E6E6
- E6E6747C74E6747C74E6000000E696E5E6E696E5E6E696E5E6E68FDDE6E685D0
- E6E67BC2E6E66FB2E6E661A1E6E65490E6E6000000E600000000000000E6E6E6
- E6E6E6E6E6E6E6E6E6E6E6E6E6E6000000E696E5E6E696E5E6E696E5E6E696E5
- E6E68FDCE6E685D0E6E67BC2E6E66EB2E6E6000000E600000000000000E6E6E6
- E6E6B1B2B1E6B1B2B1E6B1B2B1E6B1B2B1E6000000E696E5E6E696E5E6E60000
- 00E6000000E6000000E6000000E6000000E6000000E600000000000000E6E6E6
- E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6000000E696E5E6E60000
- 00E6000000E60000000000000000000000000000000000000000000000E6E6E6
- E6E6747C74E6747C74E6747C74E6747C74E6747C74E6747C74E6000000E60000
- 00E6000000000000000000000000000000000000000000000000000000E6E6E6
- E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6E6000000E60000
- 0000000000000000000000000000000000000000000000000000000000E60000
- 00E6000000E6000000E6000000E6000000E6000000E6000000E6000000000000
- 0000000000000000000000000000000000000000000000000000000000000000
- 0000000000000000000000000000000000000000000000000000000000000000
- 0000000000000000000000000000000000000000000000000000}
- LookAndFeel.NativeStyle = False
- TabOrder = 12
- end
- object Panel2: TPanel
- Left = 876
- Top = 19
- Width = 1063
- Height = 742
- Caption = 'Panel1'
- TabOrder = 13
- Visible = False
- object ImgDesc07: TImage
- Left = 9
- Top = 302
- Width = 9
- Height = 9
- Transparent = True
- end
- object ImgDesc28: TImage
- Left = 9
- Top = 271
- Width = 9
- Height = 9
- Transparent = True
- end
- object ImgDesc27: TImage
- Left = 9
- Top = 331
- Width = 9
- Height = 9
- Transparent = True
- end
- object ImgDesc29: TImage
- Left = 9
- Top = 391
- Width = 9
- Height = 9
- Transparent = True
- end
- object ImgDesc30: TImage
- Left = 9
- Top = 427
- Width = 9
- Height = 9
- Transparent = True
- end
- object ImgDesc31: TImage
- Left = 9
- Top = 625
- Width = 9
- Height = 9
- Transparent = True
- end
- object ImgDesc32: TImage
- Left = 9
- Top = 685
- Width = 9
- Height = 9
- Transparent = True
- end
- object cxLabel3: TcxLabel
- Left = 19
- Top = 145
- AutoSize = False
- Caption = #51452#52264#54805#49885'/'#51060#50857#54805#53468'/'#44553#51648#44396#48516
- Properties.Alignment.Horz = taRightJustify
- Properties.Alignment.Vert = taVCenter
- Transparent = True
- Height = 21
- Width = 205
- AnchorX = 224
- AnchorY = 156
- end
- object cxLabel10: TcxLabel
- Left = 19
- Top = 296
- AutoSize = False
- Caption = #52509' '#51452#52264' '#44396#54925#49688
- Properties.Alignment.Horz = taRightJustify
- Properties.Alignment.Vert = taVCenter
- Transparent = True
- Height = 21
- Width = 105
- AnchorX = 124
- AnchorY = 307
- end
- object PARKING_TY: TcxComboBox
- Left = 229
- Top = 140
- Cursor = crHandPoint
- Properties.Alignment.Vert = taVCenter
- Properties.DropDownListStyle = lsFixedList
- Properties.DropDownSizeable = True
- Properties.ReadOnly = False
- TabOrder = 2
- Width = 180
- end
- object PARKING_US: TcxComboBox
- Left = 414
- Top = 140
- Cursor = crHandPoint
- Properties.Alignment.Vert = taVCenter
- Properties.DropDownListStyle = lsFixedList
- Properties.DropDownSizeable = True
- Properties.ReadOnly = False
- TabOrder = 3
- Width = 180
- end
- object cxLabel12: TcxLabel
- Left = 19
- Top = 266
- AutoSize = False
- Caption = #51060#50857#44032#45733#52264#47049
- Properties.Alignment.Horz = taRightJustify
- Properties.Alignment.Vert = taVCenter
- Transparent = True
- Height = 21
- Width = 105
- AnchorX = 124
- AnchorY = 277
- end
- object cxLabel13: TcxLabel
- Left = 307
- Top = 327
- AutoSize = False
- Caption = #51228#50612#44592' Master/Slave/'#49688#51665#51109#52824' '#49688#47049
- Properties.Alignment.Horz = taRightJustify
- Properties.Alignment.Vert = taVCenter
- Transparent = True
- Height = 21
- Width = 246
- AnchorX = 553
- AnchorY = 338
- end
- object COLCT_DEVICE_QTY: TcxSpinEdit
- Left = 708
- Top = 324
- Properties.Alignment.Horz = taRightJustify
- Properties.Alignment.Vert = taVCenter
- Properties.AssignedValues.MinValue = True
- Properties.MaxValue = 99999.000000000000000000
- Properties.ReadOnly = False
- Properties.ValueType = vtInt
- Style.BorderStyle = ebsUltraFlat
- Style.LookAndFeel.Kind = lfUltraFlat
- Style.LookAndFeel.NativeStyle = False
- Style.ButtonStyle = btsUltraFlat
- StyleDisabled.LookAndFeel.Kind = lfUltraFlat
- StyleDisabled.LookAndFeel.NativeStyle = False
- StyleFocused.LookAndFeel.Kind = lfUltraFlat
- StyleFocused.LookAndFeel.NativeStyle = False
- StyleHot.LookAndFeel.Kind = lfUltraFlat
- StyleHot.LookAndFeel.NativeStyle = False
- TabOrder = 6
- Width = 70
- end
- object PRK_PLCE_IMAGE_DC: TcxTextEdit
- Left = 484
- Top = 169
- Properties.MaxLength = 50
- Properties.ReadOnly = False
- TabOrder = 7
- Width = 351
- end
- object cxLabel1: TcxLabel
- Left = 19
- Top = 175
- AutoSize = False
- Caption = #51452#52264#51109' '#51060#48120#51648
- Properties.Alignment.Horz = taRightJustify
- Properties.Alignment.Vert = taVCenter
- Transparent = True
- Height = 21
- Width = 105
- AnchorX = 124
- AnchorY = 186
- end
- object cxLabel8: TcxLabel
- Left = 19
- Top = 205
- AutoSize = False
- Caption = #49884#49828#53596#47749
- Properties.Alignment.Horz = taRightJustify
- Properties.Alignment.Vert = taVCenter
- Transparent = True
- Height = 21
- Width = 105
- AnchorX = 124
- AnchorY = 216
- end
- object cxLabel16: TcxLabel
- Left = 19
- Top = 327
- AutoSize = False
- Caption = #51452#52264#44396#54925' '#45800#50948#51221#48372' '#49688#51665#51109#52824
- Properties.Alignment.Horz = taRightJustify
- Properties.Alignment.Vert = taVCenter
- Transparent = True
- Height = 21
- Width = 191
- AnchorX = 210
- AnchorY = 338
- end
- object cxLabel20: TcxLabel
- Left = 19
- Top = 236
- AutoSize = False
- Caption = #44288#47144' '#44540#44144' '#48277#47161
- Properties.Alignment.Horz = taRightJustify
- Properties.Alignment.Vert = taVCenter
- Transparent = True
- Height = 21
- Width = 105
- AnchorX = 124
- AnchorY = 247
- end
- object MASTER_CONTROLLER: TcxSpinEdit
- Left = 556
- Top = 324
- Properties.Alignment.Horz = taRightJustify
- Properties.Alignment.Vert = taVCenter
- Properties.AssignedValues.MinValue = True
- Properties.MaxValue = 99999.000000000000000000
- Properties.ReadOnly = False
- Properties.ValueType = vtInt
- Style.BorderStyle = ebsUltraFlat
- Style.LookAndFeel.Kind = lfUltraFlat
- Style.LookAndFeel.NativeStyle = False
- Style.ButtonStyle = btsUltraFlat
- StyleDisabled.LookAndFeel.Kind = lfUltraFlat
- StyleDisabled.LookAndFeel.NativeStyle = False
- StyleFocused.LookAndFeel.Kind = lfUltraFlat
- StyleFocused.LookAndFeel.NativeStyle = False
- StyleHot.LookAndFeel.Kind = lfUltraFlat
- StyleHot.LookAndFeel.NativeStyle = False
- TabOrder = 12
- Width = 70
- end
- object AR_LEVEL_SE: TcxComboBox
- Left = 600
- Top = 140
- Cursor = crHandPoint
- Properties.Alignment.Vert = taVCenter
- Properties.DropDownListStyle = lsFixedList
- Properties.DropDownSizeable = True
- Properties.ReadOnly = False
- TabOrder = 13
- Width = 180
- end
- object cxLabel25: TcxLabel
- Left = 335
- Top = 175
- AutoSize = False
- Caption = #51452#52264#51109' '#51060#48120#51648#49444#47749
- Properties.Alignment.Horz = taRightJustify
- Properties.Alignment.Vert = taVCenter
- Transparent = True
- Height = 21
- Width = 143
- AnchorX = 478
- AnchorY = 186
- end
- object BtnPRK_PLCE_IMAGE_DATA: TcxButton
- Tag = 2
- Left = 128
- Top = 169
- Width = 175
- Height = 25
- Cursor = crHandPoint
- Hint = #51452#52264#51109#44396#51312#51060#48120#51648' '#49440#53469
- Caption = #51452#52264#51109#44396#51312#51060#48120#51648
- Colors.Default = 10737865
- TabOrder = 15
- Font.Charset = DEFAULT_CHARSET
- Font.Color = clBlack
- Font.Height = -13
- Font.Name = #47569#51008' '#44256#46357
- Font.Style = [fsBold]
- ParentFont = False
- end
- object PRK_PLCE_IMAGE_TYPE: TcxTextEdit
- Left = 311
- Top = 169
- Properties.Alignment.Horz = taCenter
- Properties.Alignment.Vert = taVCenter
- Properties.MaxLength = 10
- Properties.ReadOnly = False
- TabOrder = 16
- Width = 49
- end
- object SYS_NE: TcxTextEdit
- Left = 128
- Top = 201
- Properties.Alignment.Vert = taVCenter
- Properties.MaxLength = 32
- Properties.ReadOnly = False
- TabOrder = 17
- Width = 290
- end
- object cxLabel26: TcxLabel
- Left = 422
- Top = 205
- AutoSize = False
- Caption = #44288#51228#49884#49828#53596' '#49444#52824#51068#51088
- Properties.Alignment.Horz = taRightJustify
- Properties.Alignment.Vert = taVCenter
- Transparent = True
- Height = 21
- Width = 143
- AnchorX = 565
- AnchorY = 216
- end
- object PARKING_CNTRL_SYS_INSTL_DE: TcxTextEdit
- Left = 571
- Top = 201
- Properties.Alignment.Horz = taCenter
- Properties.Alignment.Vert = taVCenter
- Properties.MaxLength = 8
- Properties.ReadOnly = False
- TabOrder = 19
- Width = 100
- end
- object RELATION_LAW_AND_ORDINANCES: TcxTextEdit
- Left = 128
- Top = 233
- Properties.MaxLength = 50
- Properties.ReadOnly = False
- TabOrder = 20
- Width = 351
- end
- object PRK_AVAIL_CARTYPE0: TcxCheckBox
- Left = 132
- Top = 264
- Cursor = crHandPoint
- Caption = #49849#50857'('#49548#54805')'
- ParentShowHint = False
- ShowHint = True
- State = cbsChecked
- Style.BorderColor = 9868950
- Style.BorderStyle = ebsThick
- Style.Shadow = False
- TabOrder = 21
- Transparent = True
- Width = 89
- end
- object PRK_AVAIL_CARTYPE: TcxTextEdit
- Left = 484
- Top = 232
- Properties.Alignment.Vert = taVCenter
- Properties.MaxLength = 32
- Properties.ReadOnly = False
- TabOrder = 22
- Width = 133
- end
- object PRK_AVAIL_CARTYPE1: TcxCheckBox
- Left = 230
- Top = 264
- Cursor = crHandPoint
- Caption = #49849#50857'('#51473#54805')'
- ParentShowHint = False
- ShowHint = True
- State = cbsChecked
- Style.BorderColor = 9868950
- Style.BorderStyle = ebsThick
- Style.Shadow = False
- TabOrder = 23
- Transparent = True
- Width = 89
- end
- object PRK_AVAIL_CARTYPE2: TcxCheckBox
- Left = 325
- Top = 264
- Cursor = crHandPoint
- Caption = #49849#50857'('#45824#54805')'
- ParentShowHint = False
- ShowHint = True
- State = cbsChecked
- Style.BorderColor = 9868950
- Style.BorderStyle = ebsThick
- Style.Shadow = False
- TabOrder = 24
- Transparent = True
- Width = 89
- end
- object PRK_AVAIL_CARTYPE3: TcxCheckBox
- Left = 423
- Top = 264
- Cursor = crHandPoint
- Caption = 'SUV'
- ParentShowHint = False
- ShowHint = True
- State = cbsChecked
- Style.BorderColor = 9868950
- Style.BorderStyle = ebsThick
- Style.Shadow = False
- TabOrder = 25
- Transparent = True
- Width = 54
- end
- object PRK_AVAIL_CARTYPE6: TcxCheckBox
- Left = 660
- Top = 264
- Cursor = crHandPoint
- Caption = #54868#47932'('#45824#54805')'
- ParentShowHint = False
- ShowHint = True
- State = cbsChecked
- Style.BorderColor = 9868950
- Style.BorderStyle = ebsThick
- Style.Shadow = False
- TabOrder = 26
- Transparent = True
- Width = 89
- end
- object PRK_AVAIL_CARTYPE5: TcxCheckBox
- Left = 562
- Top = 264
- Cursor = crHandPoint
- Caption = #54868#47932'('#51473#54805')'
- ParentShowHint = False
- ShowHint = True
- State = cbsChecked
- Style.BorderColor = 9868950
- Style.BorderStyle = ebsThick
- Style.Shadow = False
- TabOrder = 27
- Transparent = True
- Width = 89
- end
- object PRK_AVAIL_CARTYPE4: TcxCheckBox
- Left = 487
- Top = 264
- Cursor = crHandPoint
- Caption = #49849#54633#52264
- ParentShowHint = False
- ShowHint = True
- State = cbsChecked
- Style.BorderColor = 9868950
- Style.BorderStyle = ebsThick
- Style.Shadow = False
- TabOrder = 28
- Transparent = True
- Width = 67
- end
- object COLCT_DEVICE_INSTL_AT: TcxCheckBox
- Left = 230
- Top = 326
- Cursor = crHandPoint
- Caption = #49444#52824
- ParentShowHint = False
- ShowHint = True
- State = cbsChecked
- Style.BorderColor = 9868950
- Style.BorderStyle = ebsThick
- Style.Shadow = False
- TabOrder = 29
- Transparent = True
- Width = 68
- end
- object SLAVE_CONTROLLER: TcxSpinEdit
- Left = 632
- Top = 324
- Properties.Alignment.Horz = taRightJustify
- Properties.Alignment.Vert = taVCenter
- Properties.AssignedValues.MinValue = True
- Properties.MaxValue = 99999.000000000000000000
- Properties.ReadOnly = False
- Properties.ValueType = vtInt
- Style.BorderStyle = ebsUltraFlat
- Style.LookAndFeel.Kind = lfUltraFlat
- Style.LookAndFeel.NativeStyle = False
- Style.ButtonStyle = btsUltraFlat
- StyleDisabled.LookAndFeel.Kind = lfUltraFlat
- StyleDisabled.LookAndFeel.NativeStyle = False
- StyleFocused.LookAndFeel.Kind = lfUltraFlat
- StyleFocused.LookAndFeel.NativeStyle = False
- StyleHot.LookAndFeel.Kind = lfUltraFlat
- StyleHot.LookAndFeel.NativeStyle = False
- TabOrder = 30
- Width = 70
- end
- object cxLabel27: TcxLabel
- Left = 19
- Top = 355
- AutoSize = False
- Caption = #49688#51665#51109#52824' '#51333#47448
- Properties.Alignment.Horz = taRightJustify
- Properties.Alignment.Vert = taVCenter
- Transparent = True
- Height = 21
- Width = 191
- AnchorX = 210
- AnchorY = 366
- end
- object COLCT_DEVICE_KND0: TcxCheckBox
- Left = 230
- Top = 355
- Cursor = crHandPoint
- Caption = #50689#49345#49885
- ParentShowHint = False
- ShowHint = True
- State = cbsChecked
- Style.BorderColor = 9868950
- Style.BorderStyle = ebsThick
- Style.Shadow = False
- TabOrder = 32
- Transparent = True
- Width = 70
- end
- object COLCT_DEVICE_KND1: TcxCheckBox
- Left = 301
- Top = 355
- Cursor = crHandPoint
- Caption = #51648#51088#44592
- ParentShowHint = False
- ShowHint = True
- State = cbsChecked
- Style.BorderColor = 9868950
- Style.BorderStyle = ebsThick
- Style.Shadow = False
- TabOrder = 33
- Transparent = True
- Width = 70
- end
- object COLCT_DEVICE_KND2: TcxCheckBox
- Left = 377
- Top = 355
- Cursor = crHandPoint
- Caption = #47112#51060#45908
- ParentShowHint = False
- ShowHint = True
- State = cbsChecked
- Style.BorderColor = 9868950
- Style.BorderStyle = ebsThick
- Style.Shadow = False
- TabOrder = 34
- Transparent = True
- Width = 70
- end
- object COLCT_DEVICE_KND3: TcxCheckBox
- Left = 449
- Top = 355
- Cursor = crHandPoint
- Caption = #47336#54532
- ParentShowHint = False
- ShowHint = True
- State = cbsChecked
- Style.BorderColor = 9868950
- Style.BorderStyle = ebsThick
- Style.Shadow = False
- TabOrder = 35
- Transparent = True
- Width = 70
- end
- object COLCT_DEVICE_KND4: TcxCheckBox
- Left = 516
- Top = 355
- Cursor = crHandPoint
- Caption = #52488#51020#54028
- ParentShowHint = False
- ShowHint = True
- State = cbsChecked
- Style.BorderColor = 9868950
- Style.BorderStyle = ebsThick
- Style.Shadow = False
- TabOrder = 36
- Transparent = True
- Width = 70
- end
- object COLCT_DEVICE_KND5: TcxCheckBox
- Left = 590
- Top = 355
- Cursor = crHandPoint
- Caption = #44592#53440
- ParentShowHint = False
- ShowHint = True
- State = cbsChecked
- Style.BorderColor = 9868950
- Style.BorderStyle = ebsThick
- Style.Shadow = False
- TabOrder = 37
- Transparent = True
- Width = 70
- end
- object COLCT_DEVICE_KND: TcxTextEdit
- Left = 708
- Top = 351
- Properties.Alignment.Horz = taCenter
- Properties.Alignment.Vert = taVCenter
- Properties.MaxLength = 10
- Properties.ReadOnly = False
- TabOrder = 38
- Width = 101
- end
- object CRM_PRV_CCTV_INSTL_AT: TcxCheckBox
- Left = 230
- Top = 294
- Cursor = crHandPoint
- Caption = #48169#48276' CCTV '#49444#52824
- ParentShowHint = False
- ShowHint = True
- State = cbsChecked
- Style.BorderColor = 9868950
- Style.BorderStyle = ebsThick
- Style.Shadow = False
- TabOrder = 39
- Transparent = True
- Width = 119
- end
- object CRM_PRV_CCTV_INSTL_CO: TcxSpinEdit
- Left = 353
- Top = 292
- Properties.Alignment.Horz = taRightJustify
- Properties.Alignment.Vert = taVCenter
- Properties.AssignedValues.MinValue = True
- Properties.MaxValue = 99999.000000000000000000
- Properties.ReadOnly = False
- Properties.ValueType = vtInt
- Style.BorderStyle = ebsUltraFlat
- Style.LookAndFeel.Kind = lfUltraFlat
- Style.LookAndFeel.NativeStyle = False
- Style.ButtonStyle = btsUltraFlat
- StyleDisabled.LookAndFeel.Kind = lfUltraFlat
- StyleDisabled.LookAndFeel.NativeStyle = False
- StyleFocused.LookAndFeel.Kind = lfUltraFlat
- StyleFocused.LookAndFeel.NativeStyle = False
- StyleHot.LookAndFeel.Kind = lfUltraFlat
- StyleHot.LookAndFeel.NativeStyle = False
- TabOrder = 40
- Width = 70
- end
- object cxLabel14: TcxLabel
- Left = 19
- Top = 384
- AutoSize = False
- Caption = #49892#49884#44036' '#51221#48372#51228#44277' '#51452#52264#49884#49828#53596' '#44396#48516
- Properties.Alignment.Horz = taRightJustify
- Properties.Alignment.Vert = taVCenter
- Transparent = True
- Height = 21
- Width = 212
- AnchorX = 231
- AnchorY = 395
- end
- object PIS_TYPE: TcxComboBox
- Left = 247
- Top = 382
- Cursor = crHandPoint
- Properties.Alignment.Vert = taVCenter
- Properties.DropDownListStyle = lsFixedList
- Properties.DropDownSizeable = True
- Properties.Items.Strings = (
- ' [N] '#49444#52824#50504#46092
- ' [C2F] '#51648#50669#51452#52264#44288#51228#49884#49828#53596
- ' [C2C] '#51452#52264#49468#53552#50672#44228)
- Properties.ReadOnly = False
- TabOrder = 42
- Text = ' [C2F] '#51648#50669#51452#52264#44288#51228#49884#49828#53596
- Width = 250
- end
- object cxLabel19: TcxLabel
- Left = 24
- Top = 421
- AutoSize = False
- Caption = #50868#50689#51221#48372
- Properties.Alignment.Horz = taRightJustify
- Properties.Alignment.Vert = taVCenter
- Transparent = True
- Height = 21
- Width = 95
- AnchorX = 119
- AnchorY = 432
- end
- object cxLabel28: TcxLabel
- Left = 127
- Top = 421
- AutoSize = False
- Caption = #51452#52264#50868#50689' '#51221#48372#48260#51204
- Properties.Alignment.Horz = taRightJustify
- Properties.Alignment.Vert = taVCenter
- Transparent = True
- Height = 21
- Width = 114
- AnchorX = 241
- AnchorY = 432
- end
- object PRK_PLCE_OPR_VER: TcxTextEdit
- Left = 247
- Top = 417
- Properties.Alignment.Horz = taCenter
- Properties.Alignment.Vert = taVCenter
- Properties.MaxLength = 10
- Properties.ReadOnly = False
- TabOrder = 45
- Width = 100
- end
- object cxLabel29: TcxLabel
- Left = 383
- Top = 421
- AutoSize = False
- Caption = #44288#54624#44592#44288#47749
- Properties.Alignment.Horz = taRightJustify
- Properties.Alignment.Vert = taVCenter
- Transparent = True
- Height = 21
- Width = 114
- AnchorX = 497
- AnchorY = 432
- end
- object CMPT_INST_NM: TcxTextEdit
- Left = 503
- Top = 417
- Properties.Alignment.Vert = taVCenter
- Properties.MaxLength = 32
- Properties.ReadOnly = False
- TabOrder = 47
- Width = 290
- end
- object cxLabel30: TcxLabel
- Left = 19
- Top = 448
- AutoSize = False
- Caption = #50868#50689#48512#49436#47749
- Properties.Alignment.Horz = taRightJustify
- Properties.Alignment.Vert = taVCenter
- Transparent = True
- Height = 21
- Width = 114
- AnchorX = 133
- AnchorY = 459
- end
- object OPER_DEPT_NM: TcxTextEdit
- Left = 138
- Top = 445
- Properties.Alignment.Vert = taVCenter
- Properties.MaxLength = 32
- Properties.ReadOnly = False
- TabOrder = 49
- Width = 290
- end
- object cxLabel31: TcxLabel
- Left = 434
- Top = 448
- AutoSize = False
- Caption = #45812#45817#51088
- Properties.Alignment.Horz = taRightJustify
- Properties.Alignment.Vert = taVCenter
- Transparent = True
- Height = 21
- Width = 63
- AnchorX = 497
- AnchorY = 459
- end
- object OPER_PERSON_NM: TcxTextEdit
- Left = 503
- Top = 445
- Properties.Alignment.Vert = taVCenter
- Properties.MaxLength = 10
- Properties.ReadOnly = False
- TabOrder = 51
- Width = 106
- end
- object cxLabel32: TcxLabel
- Left = 19
- Top = 477
- AutoSize = False
- Caption = #51204#54868#48264#54840
- Properties.Alignment.Horz = taRightJustify
- Properties.Alignment.Vert = taVCenter
- Transparent = True
- Height = 21
- Width = 114
- AnchorX = 133
- AnchorY = 488
- end
- object OPER_CTT_PC_TEL: TcxTextEdit
- Left = 138
- Top = 473
- Properties.Alignment.Vert = taVCenter
- Properties.MaxLength = 32
- Properties.ReadOnly = False
- TabOrder = 53
- Width = 122
- end
- object cxLabel33: TcxLabel
- Left = 354
- Top = 477
- AutoSize = False
- Caption = #45812#45817#51088' '#51060#47700#51068
- Properties.Alignment.Horz = taRightJustify
- Properties.Alignment.Vert = taVCenter
- Transparent = True
- Height = 21
- Width = 143
- AnchorX = 497
- AnchorY = 488
- end
- object OPER_CTT_PC_EMAIL: TcxTextEdit
- Left = 503
- Top = 473
- Properties.MaxLength = 50
- Properties.ReadOnly = False
- TabOrder = 55
- Width = 290
- end
- object cxLabel34: TcxLabel
- Left = 19
- Top = 504
- AutoSize = False
- Caption = #51452#52264' '#48512#51228' '#49884#54665
- Properties.Alignment.Horz = taRightJustify
- Properties.Alignment.Vert = taVCenter
- Transparent = True
- Height = 21
- Width = 114
- AnchorX = 133
- AnchorY = 515
- end
- object NO_DRV_DAY_OPERTN_AT: TcxComboBox
- Left = 138
- Top = 501
- Cursor = crHandPoint
- Properties.Alignment.Vert = taVCenter
- Properties.DropDownListStyle = lsFixedList
- Properties.DropDownSizeable = True
- Properties.ReadOnly = False
- TabOrder = 57
- Width = 180
- end
- object OPERTN_BS_FREE_TIME: TcxTextEdit
- Left = 503
- Top = 501
- Properties.Alignment.Horz = taCenter
- Properties.Alignment.Vert = taVCenter
- Properties.MaxLength = 8
- Properties.ReadOnly = False
- TabOrder = 58
- Width = 106
- end
- object cxLabel35: TcxLabel
- Left = 328
- Top = 504
- AutoSize = False
- Caption = #44592#48376#47924#47308' '#49884#44036', '#51452#52264#51109' '#54924#52264
- Properties.Alignment.Horz = taRightJustify
- Properties.Alignment.Vert = taVCenter
- Transparent = True
- Height = 21
- Width = 169
- AnchorX = 497
- AnchorY = 515
- end
- object cxLabel36: TcxLabel
- Left = 615
- Top = 504
- AutoSize = False
- Caption = ' ('#44592#48376' '#47924#47308') (00:30:00)'
- Properties.Alignment.Horz = taLeftJustify
- Properties.Alignment.Vert = taVCenter
- Transparent = True
- Height = 21
- Width = 169
- AnchorY = 515
- end
- object OPN_CODE: TcxCheckBox
- Left = 143
- Top = 533
- Cursor = crHandPoint
- Caption = #50868#50689#49884#44036' '#50808' '#47924#47308' '#44060#48169
- ParentShowHint = False
- ShowHint = True
- State = cbsChecked
- Style.BorderColor = 9868950
- Style.BorderStyle = ebsThick
- Style.Shadow = False
- TabOrder = 61
- Transparent = True
- Width = 178
- end
- object cxLabel37: TcxLabel
- Left = 425
- Top = 294
- AutoSize = False
- Caption = #45824' '
- Properties.Alignment.Horz = taLeftJustify
- Properties.Alignment.Vert = taVCenter
- Transparent = True
- Height = 21
- Width = 37
- AnchorY = 305
- end
- object cxLabel38: TcxLabel
- Left = 328
- Top = 533
- AutoSize = False
- Caption = #51452#52264#50836#44552' '#51221#49328' '#48169#49885
- Properties.Alignment.Horz = taRightJustify
- Properties.Alignment.Vert = taVCenter
- Transparent = True
- Height = 21
- Width = 169
- AnchorX = 497
- AnchorY = 544
- end
- object PARKING_CHRGE_EXCCLC_MTHD: TcxComboBox
- Left = 503
- Top = 529
- Cursor = crHandPoint
- Properties.Alignment.Vert = taVCenter
- Properties.DropDownListStyle = lsFixedList
- Properties.DropDownSizeable = True
- Properties.ReadOnly = False
- TabOrder = 64
- Width = 180
- end
- object cxLabel39: TcxLabel
- Left = 19
- Top = 563
- AutoSize = False
- Caption = #51452#52264#50836#44552' '#51648#48520#49688#45800
- Properties.Alignment.Horz = taRightJustify
- Properties.Alignment.Vert = taVCenter
- Transparent = True
- Height = 21
- Width = 114
- AnchorX = 133
- AnchorY = 574
- end
- object PARKING_CHRGE_PYMNT_MN1: TcxCheckBox
- Left = 143
- Top = 562
- Cursor = crHandPoint
- Caption = #54788#44552
- ParentShowHint = False
- ShowHint = True
- State = cbsChecked
- Style.BorderColor = 9868950
- Style.BorderStyle = ebsThick
- Style.Shadow = False
- TabOrder = 66
- Transparent = True
- Width = 58
- end
- object PARKING_CHRGE_PYMNT_MN2: TcxCheckBox
- Left = 207
- Top = 562
- Cursor = crHandPoint
- Caption = #49888#50857#52852#46300
- ParentShowHint = False
- ShowHint = True
- State = cbsChecked
- Style.BorderColor = 9868950
- Style.BorderStyle = ebsThick
- Style.Shadow = False
- TabOrder = 67
- Transparent = True
- Width = 89
- end
- object PARKING_CHRGE_PYMNT_MN3: TcxCheckBox
- Left = 296
- Top = 562
- Cursor = crHandPoint
- Caption = #44368#53685#52852#46300
- ParentShowHint = False
- ShowHint = True
- State = cbsChecked
- Style.BorderColor = 9868950
- Style.BorderStyle = ebsThick
- Style.Shadow = False
- TabOrder = 68
- Transparent = True
- Width = 89
- end
- object PARKING_CHRGE_PYMNT_MN4: TcxCheckBox
- Left = 375
- Top = 562
- Cursor = crHandPoint
- Caption = #51204#51088#51648#48520
- ParentShowHint = False
- ShowHint = True
- State = cbsChecked
- Style.BorderColor = 9868950
- Style.BorderStyle = ebsThick
- Style.Shadow = False
- TabOrder = 69
- Transparent = True
- Width = 82
- end
- object PARKING_CHRGE_PYMNT_MN5: TcxCheckBox
- Left = 463
- Top = 562
- Cursor = crHandPoint
- Caption = #55092#45824#54256
- ParentShowHint = False
- ShowHint = True
- State = cbsChecked
- Style.BorderColor = 9868950
- Style.BorderStyle = ebsThick
- Style.Shadow = False
- TabOrder = 70
- Transparent = True
- Width = 67
- end
- object PARKING_CHRGE_PYMNT_MN6: TcxCheckBox
- Left = 536
- Top = 562
- Cursor = crHandPoint
- Caption = #54592#53580#53356
- ParentShowHint = False
- ShowHint = True
- State = cbsChecked
- Style.BorderColor = 9868950
- Style.BorderStyle = ebsThick
- Style.Shadow = False
- TabOrder = 71
- Transparent = True
- Width = 89
- end
- object PARKING_CHRGE_PYMNT_MN7: TcxCheckBox
- Left = 608
- Top = 562
- Cursor = crHandPoint
- Caption = 'MaaS '#53685#54633#44208#51228
- ParentShowHint = False
- ShowHint = True
- State = cbsChecked
- Style.BorderColor = 9868950
- Style.BorderStyle = ebsThick
- Style.Shadow = False
- TabOrder = 72
- Transparent = True
- Width = 130
- end
- object PARKING_CHRGE_PYMNT_MN8: TcxCheckBox
- Left = 731
- Top = 562
- Cursor = crHandPoint
- Caption = #44592#53440
- ParentShowHint = False
- ShowHint = True
- State = cbsChecked
- Style.BorderColor = 9868950
- Style.BorderStyle = ebsThick
- Style.Shadow = False
- TabOrder = 73
- Transparent = True
- Width = 89
- end
- object PARKING_CHRGE_PYMNT_MN: TcxTextEdit
- Left = 704
- Top = 531
- Properties.Alignment.Horz = taCenter
- Properties.Alignment.Vert = taVCenter
- Properties.MaxLength = 10
- Properties.ReadOnly = False
- TabOrder = 74
- Width = 89
- end
- object cxLabel40: TcxLabel
- Left = 19
- Top = 589
- AutoSize = False
- Caption = #51452#52264#50696#50557' '#49884#54665#50668#48512
- Properties.Alignment.Horz = taRightJustify
- Properties.Alignment.Vert = taVCenter
- Transparent = True
- Height = 21
- Width = 114
- AnchorX = 133
- AnchorY = 600
- end
- object PARKING_RESVE_OPERTN_AT: TcxComboBox
- Left = 138
- Top = 585
- Cursor = crHandPoint
- Properties.Alignment.Vert = taVCenter
- Properties.DropDownListStyle = lsFixedList
- Properties.DropDownSizeable = True
- Properties.ReadOnly = False
- TabOrder = 76
- Width = 146
- end
- object cxLabel41: TcxLabel
- Left = 283
- Top = 589
- AutoSize = False
- Caption = #53945#51060#49324#54637
- Properties.Alignment.Horz = taRightJustify
- Properties.Alignment.Vert = taVCenter
- Transparent = True
- Height = 21
- Width = 64
- AnchorX = 347
- AnchorY = 600
- end
- object PARTCLR_MATTER: TcxTextEdit
- Left = 350
- Top = 585
- Properties.MaxLength = 128
- Properties.ReadOnly = False
- TabOrder = 78
- Width = 481
- end
- object cxLabel42: TcxLabel
- Left = 19
- Top = 622
- AutoSize = False
- Caption = #51452#52264#44396#54925#49688
- Properties.Alignment.Horz = taRightJustify
- Properties.Alignment.Vert = taVCenter
- Transparent = True
- Height = 21
- Width = 114
- AnchorX = 133
- AnchorY = 633
- end
- object VHCTY_AR_SE0: TcxSpinEdit
- Left = 199
- Top = 619
- Properties.Alignment.Horz = taRightJustify
- Properties.Alignment.Vert = taVCenter
- Properties.AssignedValues.MinValue = True
- Properties.MaxValue = 99999.000000000000000000
- Properties.ReadOnly = False
- Properties.ValueType = vtInt
- Style.BorderStyle = ebsUltraFlat
- Style.LookAndFeel.Kind = lfUltraFlat
- Style.LookAndFeel.NativeStyle = False
- Style.ButtonStyle = btsUltraFlat
- StyleDisabled.LookAndFeel.Kind = lfUltraFlat
- StyleDisabled.LookAndFeel.NativeStyle = False
- StyleFocused.LookAndFeel.Kind = lfUltraFlat
- StyleFocused.LookAndFeel.NativeStyle = False
- StyleHot.LookAndFeel.Kind = lfUltraFlat
- StyleHot.LookAndFeel.NativeStyle = False
- TabOrder = 80
- Width = 70
- end
- object VHCTY_AR_SE1: TcxSpinEdit
- Left = 388
- Top = 619
- Properties.Alignment.Horz = taRightJustify
- Properties.Alignment.Vert = taVCenter
- Properties.AssignedValues.MinValue = True
- Properties.MaxValue = 99999.000000000000000000
- Properties.ReadOnly = False
- Properties.ValueType = vtInt
- Style.BorderStyle = ebsUltraFlat
- Style.LookAndFeel.Kind = lfUltraFlat
- Style.LookAndFeel.NativeStyle = False
- Style.ButtonStyle = btsUltraFlat
- StyleDisabled.LookAndFeel.Kind = lfUltraFlat
- StyleDisabled.LookAndFeel.NativeStyle = False
- StyleFocused.LookAndFeel.Kind = lfUltraFlat
- StyleFocused.LookAndFeel.NativeStyle = False
- StyleHot.LookAndFeel.Kind = lfUltraFlat
- StyleHot.LookAndFeel.NativeStyle = False
- TabOrder = 81
- Width = 70
- end
- object VHCTY_AR_SE3: TcxSpinEdit
- Left = 691
- Top = 618
- Properties.Alignment.Horz = taRightJustify
- Properties.Alignment.Vert = taVCenter
- Properties.AssignedValues.MinValue = True
- Properties.MaxValue = 99999.000000000000000000
- Properties.ReadOnly = False
- Properties.ValueType = vtInt
- Style.BorderStyle = ebsUltraFlat
- Style.LookAndFeel.Kind = lfUltraFlat
- Style.LookAndFeel.NativeStyle = False
- Style.ButtonStyle = btsUltraFlat
- StyleDisabled.LookAndFeel.Kind = lfUltraFlat
- StyleDisabled.LookAndFeel.NativeStyle = False
- StyleFocused.LookAndFeel.Kind = lfUltraFlat
- StyleFocused.LookAndFeel.NativeStyle = False
- StyleHot.LookAndFeel.Kind = lfUltraFlat
- StyleHot.LookAndFeel.NativeStyle = False
- TabOrder = 82
- Width = 70
- end
- object VHCTY_AR_SE2: TcxSpinEdit
- Left = 532
- Top = 619
- Properties.Alignment.Horz = taRightJustify
- Properties.Alignment.Vert = taVCenter
- Properties.AssignedValues.MinValue = True
- Properties.MaxValue = 99999.000000000000000000
- Properties.ReadOnly = False
- Properties.ValueType = vtInt
- Style.BorderStyle = ebsUltraFlat
- Style.LookAndFeel.Kind = lfUltraFlat
- Style.LookAndFeel.NativeStyle = False
- Style.ButtonStyle = btsUltraFlat
- StyleDisabled.LookAndFeel.Kind = lfUltraFlat
- StyleDisabled.LookAndFeel.NativeStyle = False
- StyleFocused.LookAndFeel.Kind = lfUltraFlat
- StyleFocused.LookAndFeel.NativeStyle = False
- StyleHot.LookAndFeel.Kind = lfUltraFlat
- StyleHot.LookAndFeel.NativeStyle = False
- TabOrder = 83
- Width = 70
- end
- object VHCTY_AR_SE4: TcxSpinEdit
- Left = 199
- Top = 647
- Properties.Alignment.Horz = taRightJustify
- Properties.Alignment.Vert = taVCenter
- Properties.AssignedValues.MinValue = True
- Properties.MaxValue = 99999.000000000000000000
- Properties.ReadOnly = False
- Properties.ValueType = vtInt
- Style.BorderStyle = ebsUltraFlat
- Style.LookAndFeel.Kind = lfUltraFlat
- Style.LookAndFeel.NativeStyle = False
- Style.ButtonStyle = btsUltraFlat
- StyleDisabled.LookAndFeel.Kind = lfUltraFlat
- StyleDisabled.LookAndFeel.NativeStyle = False
- StyleFocused.LookAndFeel.Kind = lfUltraFlat
- StyleFocused.LookAndFeel.NativeStyle = False
- StyleHot.LookAndFeel.Kind = lfUltraFlat
- StyleHot.LookAndFeel.NativeStyle = False
- TabOrder = 84
- Width = 70
- end
- object VHCTY_AR_SE5: TcxSpinEdit
- Left = 388
- Top = 647
- Properties.Alignment.Horz = taRightJustify
- Properties.Alignment.Vert = taVCenter
- Properties.AssignedValues.MinValue = True
- Properties.MaxValue = 99999.000000000000000000
- Properties.ReadOnly = False
- Properties.ValueType = vtInt
- Style.BorderStyle = ebsUltraFlat
- Style.LookAndFeel.Kind = lfUltraFlat
- Style.LookAndFeel.NativeStyle = False
- Style.ButtonStyle = btsUltraFlat
- StyleDisabled.LookAndFeel.Kind = lfUltraFlat
- StyleDisabled.LookAndFeel.NativeStyle = False
- StyleFocused.LookAndFeel.Kind = lfUltraFlat
- StyleFocused.LookAndFeel.NativeStyle = False
- StyleHot.LookAndFeel.Kind = lfUltraFlat
- StyleHot.LookAndFeel.NativeStyle = False
- TabOrder = 85
- Width = 70
- end
- object VHCTY_AR_SE6: TcxSpinEdit
- Left = 532
- Top = 647
- Properties.Alignment.Horz = taRightJustify
- Properties.Alignment.Vert = taVCenter
- Properties.AssignedValues.MinValue = True
- Properties.MaxValue = 99999.000000000000000000
- Properties.ReadOnly = False
- Properties.ValueType = vtInt
- Style.BorderStyle = ebsUltraFlat
- Style.LookAndFeel.Kind = lfUltraFlat
- Style.LookAndFeel.NativeStyle = False
- Style.ButtonStyle = btsUltraFlat
- StyleDisabled.LookAndFeel.Kind = lfUltraFlat
- StyleDisabled.LookAndFeel.NativeStyle = False
- StyleFocused.LookAndFeel.Kind = lfUltraFlat
- StyleFocused.LookAndFeel.NativeStyle = False
- StyleHot.LookAndFeel.Kind = lfUltraFlat
- StyleHot.LookAndFeel.NativeStyle = False
- TabOrder = 86
- Width = 70
- end
- object VHCTY_AR_SE7: TcxSpinEdit
- Left = 691
- Top = 647
- Properties.Alignment.Horz = taRightJustify
- Properties.Alignment.Vert = taVCenter
- Properties.AssignedValues.MinValue = True
- Properties.MaxValue = 99999.000000000000000000
- Properties.ReadOnly = False
- Properties.ValueType = vtInt
- Style.BorderStyle = ebsUltraFlat
- Style.LookAndFeel.Kind = lfUltraFlat
- Style.LookAndFeel.NativeStyle = False
- Style.ButtonStyle = btsUltraFlat
- StyleDisabled.LookAndFeel.Kind = lfUltraFlat
- StyleDisabled.LookAndFeel.NativeStyle = False
- StyleFocused.LookAndFeel.Kind = lfUltraFlat
- StyleFocused.LookAndFeel.NativeStyle = False
- StyleHot.LookAndFeel.Kind = lfUltraFlat
- StyleHot.LookAndFeel.NativeStyle = False
- TabOrder = 87
- Width = 70
- end
- object cxLabel43: TcxLabel
- Left = 132
- Top = 622
- AutoSize = False
- Caption = #44221#52264#51204#50857
- Properties.Alignment.Horz = taRightJustify
- Properties.Alignment.Vert = taVCenter
- Transparent = True
- Height = 21
- Width = 64
- AnchorX = 196
- AnchorY = 633
- end
- object cxLabel44: TcxLabel
- Left = 278
- Top = 622
- AutoSize = False
- Caption = #52828#54872#44221#52264'('#51204#44592#52264')'
- Properties.Alignment.Horz = taRightJustify
- Properties.Alignment.Vert = taVCenter
- Transparent = True
- Height = 21
- Width = 107
- AnchorX = 385
- AnchorY = 633
- end
- object cxLabel45: TcxLabel
- Left = 476
- Top = 622
- AutoSize = False
- Caption = #54868#47932#52264
- Properties.Alignment.Horz = taRightJustify
- Properties.Alignment.Vert = taVCenter
- Transparent = True
- Height = 21
- Width = 51
- AnchorX = 527
- AnchorY = 633
- end
- object cxLabel46: TcxLabel
- Left = 618
- Top = 622
- AutoSize = False
- Caption = #44596#44553#52264#47049
- Properties.Alignment.Horz = taRightJustify
- Properties.Alignment.Vert = taVCenter
- Transparent = True
- Height = 21
- Width = 67
- AnchorX = 685
- AnchorY = 633
- end
- object cxLabel47: TcxLabel
- Left = 132
- Top = 650
- AutoSize = False
- Caption = #51109#50528#51064
- Properties.Alignment.Horz = taRightJustify
- Properties.Alignment.Vert = taVCenter
- Transparent = True
- Height = 21
- Width = 64
- AnchorX = 196
- AnchorY = 661
- end
- object cxLabel48: TcxLabel
- Left = 278
- Top = 650
- AutoSize = False
- Caption = #50612#47476#49888
- Properties.Alignment.Horz = taRightJustify
- Properties.Alignment.Vert = taVCenter
- Transparent = True
- Height = 21
- Width = 107
- AnchorX = 385
- AnchorY = 661
- end
- object cxLabel49: TcxLabel
- Left = 461
- Top = 650
- AutoSize = False
- Caption = #50668#49457#51204#50857
- Properties.Alignment.Horz = taRightJustify
- Properties.Alignment.Vert = taVCenter
- Transparent = True
- Height = 21
- Width = 66
- AnchorX = 527
- AnchorY = 661
- end
- object cxLabel50: TcxLabel
- Left = 619
- Top = 650
- AutoSize = False
- Caption = #44592#53440
- Properties.Alignment.Horz = taRightJustify
- Properties.Alignment.Vert = taVCenter
- Transparent = True
- Height = 21
- Width = 66
- AnchorX = 685
- AnchorY = 661
- end
- object cxLabel51: TcxLabel
- Left = 19
- Top = 681
- AutoSize = False
- Caption = #51068#48152#51452#52264#50836#44552
- Properties.Alignment.Horz = taRightJustify
- Properties.Alignment.Vert = taVCenter
- Transparent = True
- Height = 21
- Width = 114
- AnchorX = 133
- AnchorY = 692
- end
- object cxLabel52: TcxLabel
- Left = 139
- Top = 681
- AutoSize = False
- Caption = #44592#48376#51452#52264#49884#44036'('#48516')/'#50836#44552'('#50896')'
- Properties.Alignment.Horz = taRightJustify
- Properties.Alignment.Vert = taVCenter
- Transparent = True
- Height = 21
- Width = 161
- AnchorX = 300
- AnchorY = 692
- end
- object PARKING_CHRGE_BS_TIME: TcxSpinEdit
- Left = 303
- Top = 679
- Properties.Alignment.Horz = taRightJustify
- Properties.Alignment.Vert = taVCenter
- Properties.AssignedValues.MinValue = True
- Properties.MaxValue = 99999.000000000000000000
- Properties.ReadOnly = False
- Properties.ValueType = vtInt
- Style.BorderStyle = ebsUltraFlat
- Style.LookAndFeel.Kind = lfUltraFlat
- Style.LookAndFeel.NativeStyle = False
- Style.ButtonStyle = btsUltraFlat
- StyleDisabled.LookAndFeel.Kind = lfUltraFlat
- StyleDisabled.LookAndFeel.NativeStyle = False
- StyleFocused.LookAndFeel.Kind = lfUltraFlat
- StyleFocused.LookAndFeel.NativeStyle = False
- StyleHot.LookAndFeel.Kind = lfUltraFlat
- StyleHot.LookAndFeel.NativeStyle = False
- TabOrder = 98
- Width = 70
- end
- object PARKING_CHRGE_BS_CHRGE: TcxSpinEdit
- Left = 375
- Top = 679
- Properties.Alignment.Horz = taRightJustify
- Properties.Alignment.Vert = taVCenter
- Properties.AssignedValues.MinValue = True
- Properties.MaxValue = 99999.000000000000000000
- Properties.ReadOnly = False
- Properties.ValueType = vtInt
- Style.BorderStyle = ebsUltraFlat
- Style.LookAndFeel.Kind = lfUltraFlat
- Style.LookAndFeel.NativeStyle = False
- Style.ButtonStyle = btsUltraFlat
- StyleDisabled.LookAndFeel.Kind = lfUltraFlat
- StyleDisabled.LookAndFeel.NativeStyle = False
- StyleFocused.LookAndFeel.Kind = lfUltraFlat
- StyleFocused.LookAndFeel.NativeStyle = False
- StyleHot.LookAndFeel.Kind = lfUltraFlat
- StyleHot.LookAndFeel.NativeStyle = False
- TabOrder = 99
- Width = 70
- end
- object cxLabel55: TcxLabel
- Left = 451
- Top = 681
- AutoSize = False
- Caption = #52628#44032#45800#50948#49884#44036'('#48516')/'#50836#44552'('#50896')'
- Properties.Alignment.Horz = taRightJustify
- Properties.Alignment.Vert = taVCenter
- Transparent = True
- Height = 21
- Width = 161
- AnchorX = 612
- AnchorY = 692
- end
- object PARKING_CHRGE_ADIT_UNIT_TIME: TcxSpinEdit
- Left = 618
- Top = 679
- Properties.Alignment.Horz = taRightJustify
- Properties.Alignment.Vert = taVCenter
- Properties.AssignedValues.MinValue = True
- Properties.MaxValue = 99999.000000000000000000
- Properties.ReadOnly = False
- Properties.ValueType = vtInt
- Style.BorderStyle = ebsUltraFlat
- Style.LookAndFeel.Kind = lfUltraFlat
- Style.LookAndFeel.NativeStyle = False
- Style.ButtonStyle = btsUltraFlat
- StyleDisabled.LookAndFeel.Kind = lfUltraFlat
- StyleDisabled.LookAndFeel.NativeStyle = False
- StyleFocused.LookAndFeel.Kind = lfUltraFlat
- StyleFocused.LookAndFeel.NativeStyle = False
- StyleHot.LookAndFeel.Kind = lfUltraFlat
- StyleHot.LookAndFeel.NativeStyle = False
- TabOrder = 101
- Width = 70
- end
- object PARKING_CHRGE_ADIT_UNIT_CHRGE: TcxSpinEdit
- Left = 691
- Top = 679
- Properties.Alignment.Horz = taRightJustify
- Properties.Alignment.Vert = taVCenter
- Properties.AssignedValues.MinValue = True
- Properties.MaxValue = 99999.000000000000000000
- Properties.ReadOnly = False
- Properties.ValueType = vtInt
- Style.BorderStyle = ebsUltraFlat
- Style.LookAndFeel.Kind = lfUltraFlat
- Style.LookAndFeel.NativeStyle = False
- Style.ButtonStyle = btsUltraFlat
- StyleDisabled.LookAndFeel.Kind = lfUltraFlat
- StyleDisabled.LookAndFeel.NativeStyle = False
- StyleFocused.LookAndFeel.Kind = lfUltraFlat
- StyleFocused.LookAndFeel.NativeStyle = False
- StyleHot.LookAndFeel.Kind = lfUltraFlat
- StyleHot.LookAndFeel.NativeStyle = False
- TabOrder = 102
- Width = 70
- end
- object cxLabel4: TcxLabel
- Left = 673
- Top = 203
- AutoSize = False
- Caption = '(YYYY-MM-DD)'
- Properties.Alignment.Horz = taLeftJustify
- Properties.Alignment.Vert = taVCenter
- Transparent = True
- Height = 21
- Width = 92
- AnchorY = 214
- end
- object cxLabel7: TcxLabel
- Left = 459
- Top = 294
- AutoSize = False
- Caption = #51452#52264#44396#54925' '#45800#50948#51221#48372' '#49688#51665#51109#52824' '#49444#52824#51068#51088
- Properties.Alignment.Horz = taRightJustify
- Properties.Alignment.Vert = taVCenter
- Transparent = True
- Height = 21
- Width = 246
- AnchorX = 705
- AnchorY = 305
- end
- object COLCT_DEVICE_INSTL_DE: TcxTextEdit
- Left = 708
- Top = 293
- Properties.Alignment.Horz = taCenter
- Properties.Alignment.Vert = taVCenter
- Properties.MaxLength = 8
- Properties.ReadOnly = False
- TabOrder = 105
- Width = 100
- end
- object cxLabel24: TcxLabel
- Left = 392
- Top = 113
- AutoSize = False
- Caption = #51452#52264#51109' '#51077#52636#44396' '#54805#53468
- Properties.Alignment.Horz = taRightJustify
- Properties.Alignment.Vert = taVCenter
- Transparent = True
- Height = 21
- Width = 143
- AnchorX = 535
- AnchorY = 124
- end
- object PRK_PLCE_ENTRC_EXTTY: TcxComboBox
- Left = 545
- Top = 110
- Cursor = crHandPoint
- Properties.Alignment.Vert = taVCenter
- Properties.DropDownListStyle = lsFixedList
- Properties.DropDownSizeable = True
- Properties.ReadOnly = False
- TabOrder = 107
- Width = 290
- end
- object cxLabel23: TcxLabel
- Left = 421
- Top = 84
- AutoSize = False
- Caption = #51452#52264#51109' '#51077#44396#47749
- Properties.Alignment.Horz = taRightJustify
- Properties.Alignment.Vert = taVCenter
- Transparent = True
- Height = 21
- Width = 114
- AnchorX = 535
- AnchorY = 95
- end
- object PRK_PLCE_ENTRC_NM: TcxTextEdit
- Left = 545
- Top = 80
- Properties.Alignment.Vert = taVCenter
- Properties.MaxLength = 32
- Properties.ReadOnly = False
- TabOrder = 109
- Width = 290
- end
- object cxLabel5: TcxLabel
- Left = 333
- Top = 84
- AutoSize = False
- Caption = '(YYYY-MM-DD)'
- Properties.Alignment.Horz = taLeftJustify
- Properties.Alignment.Vert = taVCenter
- Transparent = True
- Height = 21
- Width = 92
- AnchorY = 95
- end
- object PRK_PLCE_ABL_DE: TcxTextEdit
- Left = 229
- Top = 80
- Properties.Alignment.Horz = taCenter
- Properties.Alignment.Vert = taVCenter
- Properties.MaxLength = 8
- Properties.ReadOnly = False
- TabOrder = 111
- Width = 100
- end
- object PRK_PLCE_INSTL_DE: TcxTextEdit
- Left = 128
- Top = 80
- Properties.Alignment.Horz = taCenter
- Properties.Alignment.Vert = taVCenter
- Properties.MaxLength = 8
- Properties.ReadOnly = False
- TabOrder = 112
- Width = 100
- end
- object cxLabel22: TcxLabel
- Left = 19
- Top = 84
- AutoSize = False
- Caption = #49444#52824'/'#54224#51648#51068#51088
- Properties.Alignment.Horz = taRightJustify
- Properties.Alignment.Vert = taVCenter
- Transparent = True
- Height = 21
- Width = 105
- AnchorX = 124
- AnchorY = 95
- end
- object cxLabel21: TcxLabel
- Left = 421
- Top = 24
- AutoSize = False
- Caption = #51452#52264#49884#49444' '#51221#48372#48260#51204
- Properties.Alignment.Horz = taRightJustify
- Properties.Alignment.Vert = taVCenter
- Transparent = True
- Height = 21
- Width = 114
- AnchorX = 535
- AnchorY = 35
- end
- object PRK_PLCE_STTUS_VER: TcxTextEdit
- Left = 641
- Top = 19
- Properties.Alignment.Horz = taCenter
- Properties.Alignment.Vert = taVCenter
- Properties.MaxLength = 10
- Properties.ReadOnly = False
- TabOrder = 115
- Width = 100
- end
- end
- object OPR_INFO: TcxTextEdit
- Left = 128
- Top = 141
- Properties.Alignment.Vert = taVCenter
- Properties.MaxLength = 256
- Properties.ReadOnly = False
- TabOrder = 14
- Width = 625
- end
- object cxLabel9: TcxLabel
- Left = 3
- Top = 145
- AutoSize = False
- Caption = #50868#50689#51221#48372
- Properties.Alignment.Horz = taRightJustify
- Properties.Alignment.Vert = taVCenter
- Transparent = True
- Height = 21
- Width = 115
- AnchorX = 118
- AnchorY = 156
- end
- object cxLabel11: TcxLabel
- Left = 30
- Top = 178
- AutoSize = False
- Caption = #52572#52488' 30'#48516' '#50836#44552
- Properties.Alignment.Horz = taRightJustify
- Properties.Alignment.Vert = taVCenter
- Transparent = True
- Height = 21
- Width = 115
- AnchorX = 145
- AnchorY = 189
- end
- object cxLabel17: TcxLabel
- Left = -37
- Top = 206
- AutoSize = False
- Caption = '30'#48516#52488#44284' '#47588' 10'#48516' '#50836#44552
- Properties.Alignment.Horz = taRightJustify
- Properties.Alignment.Vert = taVCenter
- Transparent = True
- Height = 21
- Width = 182
- AnchorX = 145
- AnchorY = 217
- end
- object cxLabel53: TcxLabel
- Left = 261
- Top = 206
- AutoSize = False
- Caption = #50900' '#51221#44592#44428' '#50836#44552
- Properties.Alignment.Horz = taRightJustify
- Properties.Alignment.Vert = taVCenter
- Transparent = True
- Height = 21
- Width = 105
- AnchorX = 366
- AnchorY = 217
- end
- object cxLabel54: TcxLabel
- Left = 251
- Top = 178
- AutoSize = False
- Caption = '1'#51068' '#51452#52264#50836#44552
- Properties.Alignment.Horz = taRightJustify
- Properties.Alignment.Vert = taVCenter
- Transparent = True
- Height = 21
- Width = 115
- AnchorX = 366
- AnchorY = 189
- end
- object MIN30_FEE: TcxSpinEdit
- Left = 151
- Top = 177
- Properties.Alignment.Horz = taRightJustify
- Properties.Alignment.Vert = taVCenter
- Properties.AssignedValues.MinValue = True
- Properties.MaxValue = 99999.000000000000000000
- Properties.ReadOnly = False
- Properties.ValueType = vtInt
- Style.BorderStyle = ebsUltraFlat
- Style.LookAndFeel.Kind = lfUltraFlat
- Style.LookAndFeel.NativeStyle = False
- Style.ButtonStyle = btsUltraFlat
- StyleDisabled.LookAndFeel.Kind = lfUltraFlat
- StyleDisabled.LookAndFeel.NativeStyle = False
- StyleFocused.LookAndFeel.Kind = lfUltraFlat
- StyleFocused.LookAndFeel.NativeStyle = False
- StyleHot.LookAndFeel.Kind = lfUltraFlat
- StyleHot.LookAndFeel.NativeStyle = False
- TabOrder = 20
- Width = 70
- end
- object MIN10_FEE: TcxSpinEdit
- Left = 151
- Top = 206
- Properties.Alignment.Horz = taRightJustify
- Properties.Alignment.Vert = taVCenter
- Properties.AssignedValues.MinValue = True
- Properties.MaxValue = 99999.000000000000000000
- Properties.ReadOnly = False
- Properties.ValueType = vtInt
- Style.BorderStyle = ebsUltraFlat
- Style.LookAndFeel.Kind = lfUltraFlat
- Style.LookAndFeel.NativeStyle = False
- Style.ButtonStyle = btsUltraFlat
- StyleDisabled.LookAndFeel.Kind = lfUltraFlat
- StyleDisabled.LookAndFeel.NativeStyle = False
- StyleFocused.LookAndFeel.Kind = lfUltraFlat
- StyleFocused.LookAndFeel.NativeStyle = False
- StyleHot.LookAndFeel.Kind = lfUltraFlat
- StyleHot.LookAndFeel.NativeStyle = False
- TabOrder = 21
- Width = 70
- end
- object MON_FEE: TcxSpinEdit
- Left = 372
- Top = 206
- Properties.Alignment.Horz = taRightJustify
- Properties.Alignment.Vert = taVCenter
- Properties.AssignedValues.MinValue = True
- Properties.MaxValue = 9999999999.000000000000000000
- Properties.ReadOnly = False
- Properties.ValueType = vtInt
- Style.BorderStyle = ebsUltraFlat
- Style.LookAndFeel.Kind = lfUltraFlat
- Style.LookAndFeel.NativeStyle = False
- Style.ButtonStyle = btsUltraFlat
- StyleDisabled.LookAndFeel.Kind = lfUltraFlat
- StyleDisabled.LookAndFeel.NativeStyle = False
- StyleFocused.LookAndFeel.Kind = lfUltraFlat
- StyleFocused.LookAndFeel.NativeStyle = False
- StyleHot.LookAndFeel.Kind = lfUltraFlat
- StyleHot.LookAndFeel.NativeStyle = False
- TabOrder = 22
- Width = 95
- end
- object DAY_FEE: TcxSpinEdit
- Left = 372
- Top = 177
- Properties.Alignment.Horz = taRightJustify
- Properties.Alignment.Vert = taVCenter
- Properties.AssignedValues.MinValue = True
- Properties.MaxValue = 9999999999.000000000000000000
- Properties.ReadOnly = False
- Properties.ValueType = vtInt
- Style.BorderStyle = ebsUltraFlat
- Style.LookAndFeel.Kind = lfUltraFlat
- Style.LookAndFeel.NativeStyle = False
- Style.ButtonStyle = btsUltraFlat
- StyleDisabled.LookAndFeel.Kind = lfUltraFlat
- StyleDisabled.LookAndFeel.NativeStyle = False
- StyleFocused.LookAndFeel.Kind = lfUltraFlat
- StyleFocused.LookAndFeel.NativeStyle = False
- StyleHot.LookAndFeel.Kind = lfUltraFlat
- StyleHot.LookAndFeel.NativeStyle = False
- TabOrder = 23
- Width = 95
- end
- object PRK_CMPRT_CO: TcxSpinEdit
- Left = 542
- Top = 53
- Properties.Alignment.Horz = taRightJustify
- Properties.Alignment.Vert = taVCenter
- Properties.AssignedValues.MinValue = True
- Properties.MaxValue = 9999.000000000000000000
- Properties.ReadOnly = False
- Properties.ValueType = vtInt
- Style.BorderStyle = ebsUltraFlat
- Style.LookAndFeel.Kind = lfUltraFlat
- Style.LookAndFeel.NativeStyle = False
- Style.ButtonStyle = btsUltraFlat
- StyleDisabled.LookAndFeel.Kind = lfUltraFlat
- StyleDisabled.LookAndFeel.NativeStyle = False
- StyleFocused.LookAndFeel.Kind = lfUltraFlat
- StyleFocused.LookAndFeel.NativeStyle = False
- StyleHot.LookAndFeel.Kind = lfUltraFlat
- StyleHot.LookAndFeel.NativeStyle = False
- TabOrder = 24
- Width = 70
- end
- object cxLabel56: TcxLabel
- Left = 434
- Top = 54
- AutoSize = False
- Caption = #52509#51452#52264' '#44396#54925#49688' [*]'
- Properties.Alignment.Horz = taRightJustify
- Properties.Alignment.Vert = taVCenter
- Transparent = True
- Height = 21
- Width = 105
- AnchorX = 539
- AnchorY = 65
- end
- end
- end
- end
- end
- end
- object Panel1: TPanel
- Left = 115
- Top = 532
- Width = 369
- Height = 115
- TabOrder = 3
- Visible = False
- object PRK_PLCE_IMAGE_DATA: TImage
- Left = 51
- Top = 25
- Width = 80
- Height = 57
- AutoSize = True
- Center = True
- end
- end
- object TmrShow: TTimer
- Enabled = False
- Interval = 300
- OnTimer = TmrShowTimer
- Left = 876
- Top = 8
- end
- end
|