VMSM700MF.dfm 197 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413
  1. object VMSM700M: TVMSM700M
  2. Left = 0
  3. Top = 0
  4. HorzScrollBar.Visible = False
  5. VertScrollBar.Visible = False
  6. Caption = 'VMS '#44256#51221' '#49828#52992#51460' '#44288#47532
  7. ClientHeight = 833
  8. ClientWidth = 1527
  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. OnCreate = FormCreate
  22. OnShow = FormShow
  23. DesignSize = (
  24. 1527
  25. 833)
  26. PixelsPerInch = 96
  27. TextHeight = 17
  28. object ShpTitle: TShape
  29. Left = 4
  30. Top = 4
  31. Width = 1519
  32. Height = 40
  33. Anchors = [akLeft, akTop, akRight]
  34. Brush.Color = 14671839
  35. Pen.Color = 10849679
  36. Pen.Width = 2
  37. ExplicitWidth = 1269
  38. end
  39. object LblCaption: TLabel
  40. Left = 16
  41. Top = 10
  42. Width = 267
  43. Height = 23
  44. Caption = #53440#51060#53952' '
  45. Font.Charset = DEFAULT_CHARSET
  46. Font.Color = 4740964
  47. Font.Height = -17
  48. Font.Name = #47569#51008' '#44256#46357
  49. Font.Style = [fsBold]
  50. ParentFont = False
  51. ParentShowHint = False
  52. ShowHint = True
  53. end
  54. object ShpList: TShape
  55. Left = 4
  56. Top = 50
  57. Width = 1519
  58. Height = 777
  59. Anchors = [akLeft, akTop, akRight, akBottom]
  60. Pen.Color = 10849679
  61. Pen.Width = 2
  62. ExplicitWidth = 1436
  63. ExplicitHeight = 766
  64. end
  65. object BtnClose: TcxButton
  66. Left = 1433
  67. Top = 11
  68. Width = 80
  69. Height = 25
  70. Cursor = crHandPoint
  71. Hint = #45803#44592
  72. Anchors = [akTop, akRight]
  73. Caption = #45803#44592
  74. Colors.Default = 10737865
  75. TabOrder = 0
  76. Font.Charset = DEFAULT_CHARSET
  77. Font.Color = clBlack
  78. Font.Height = -13
  79. Font.Name = #47569#51008' '#44256#46357
  80. Font.Style = [fsBold]
  81. ParentFont = False
  82. OnClick = BtnCloseClick
  83. end
  84. object EdFocus: TEdit
  85. Left = -10
  86. Top = -10
  87. Width = 2
  88. Height = 25
  89. ImeName = 'Microsoft Office IME 2007'
  90. TabOrder = 1
  91. Text = 'EdFocus'
  92. end
  93. object PanelBack: TPanel
  94. Left = 12
  95. Top = 56
  96. Width = 1501
  97. Height = 764
  98. Anchors = [akLeft, akTop, akRight, akBottom]
  99. BevelOuter = bvNone
  100. ParentBackground = False
  101. ParentColor = True
  102. TabOrder = 2
  103. object PnlLeft: TPanel
  104. Left = 0
  105. Top = 0
  106. Width = 385
  107. Height = 764
  108. Align = alLeft
  109. BevelOuter = bvNone
  110. TabOrder = 0
  111. object GrpList: TcxGroupBox
  112. Left = 0
  113. Top = 0
  114. Align = alClient
  115. Caption = #9654' VMS '#47785#47197
  116. Style.BorderColor = clCaptionText
  117. Style.Shadow = False
  118. Style.TextColor = clWindowText
  119. Style.TextStyle = [fsBold]
  120. TabOrder = 0
  121. Height = 764
  122. Width = 385
  123. object Panel4: TPanel
  124. Left = 3
  125. Top = 19
  126. Width = 379
  127. Height = 39
  128. Align = alTop
  129. BevelOuter = bvNone
  130. TabOrder = 0
  131. object ImgDesc01: TImage
  132. Left = 9
  133. Top = 13
  134. Width = 9
  135. Height = 9
  136. Transparent = True
  137. end
  138. object cxLabel18: TcxLabel
  139. Left = 25
  140. Top = 7
  141. Caption = 'VMS '#53356#44592' '#50976#54805
  142. Properties.Alignment.Horz = taLeftJustify
  143. Properties.Alignment.Vert = taVCenter
  144. Transparent = True
  145. AnchorY = 18
  146. end
  147. object CbSizeType: TcxComboBox
  148. Left = 124
  149. Top = 5
  150. Properties.Alignment.Vert = taVCenter
  151. Properties.DropDownListStyle = lsFixedList
  152. Properties.HideSelection = False
  153. Properties.Items.Strings = (
  154. '')
  155. Properties.OnChange = CbSizeTypePropertiesChange
  156. Style.BorderStyle = ebsUltraFlat
  157. Style.LookAndFeel.Kind = lfUltraFlat
  158. Style.LookAndFeel.NativeStyle = False
  159. Style.ButtonStyle = btsUltraFlat
  160. Style.PopupBorderStyle = epbsFlat
  161. StyleDisabled.LookAndFeel.Kind = lfUltraFlat
  162. StyleDisabled.LookAndFeel.NativeStyle = False
  163. StyleFocused.LookAndFeel.Kind = lfUltraFlat
  164. StyleFocused.LookAndFeel.NativeStyle = False
  165. StyleFocused.TextStyle = [fsBold]
  166. StyleHot.LookAndFeel.Kind = lfUltraFlat
  167. StyleHot.LookAndFeel.NativeStyle = False
  168. TabOrder = 1
  169. Width = 237
  170. end
  171. end
  172. inline FRAMEVmsSchList1: TFRAMEVmsSchList
  173. Left = 3
  174. Top = 58
  175. Width = 379
  176. Height = 696
  177. Align = alClient
  178. TabOrder = 1
  179. ExplicitLeft = 3
  180. ExplicitTop = 58
  181. ExplicitWidth = 379
  182. ExplicitHeight = 696
  183. inherited CxList: TcxGrid
  184. Width = 379
  185. Height = 634
  186. ExplicitWidth = 379
  187. ExplicitHeight = 634
  188. inherited TvList: TcxGridTableView
  189. OnCellDblClick = FRAMEVmsSchList1TvListCellDblClick
  190. OnFocusedRecordChanged = FRAMEVmsSchList1TvListFocusedRecordChanged
  191. end
  192. end
  193. inherited PnlTop: TPanel
  194. Width = 379
  195. ExplicitWidth = 379
  196. end
  197. inherited PnlBottom: TPanel
  198. Top = 665
  199. Width = 379
  200. ExplicitTop = 665
  201. ExplicitWidth = 379
  202. inherited LblRecords: TLabel
  203. Left = 268
  204. Width = 25
  205. Height = 17
  206. ExplicitLeft = 299
  207. ExplicitWidth = 25
  208. ExplicitHeight = 17
  209. end
  210. inherited BtnExlSave: TcxButton
  211. Left = 299
  212. ExplicitLeft = 299
  213. end
  214. end
  215. inherited lblTitle: TcxLabel
  216. ExplicitWidth = 96
  217. ExplicitHeight = 21
  218. end
  219. end
  220. end
  221. end
  222. object cxSplitter1: TcxSplitter
  223. Left = 385
  224. Top = 0
  225. Width = 6
  226. Height = 764
  227. Control = PnlLeft
  228. end
  229. object Panel1: TPanel
  230. Left = 391
  231. Top = 0
  232. Width = 1110
  233. Height = 764
  234. Align = alClient
  235. BevelOuter = bvNone
  236. TabOrder = 2
  237. object Panel3: TPanel
  238. Left = 0
  239. Top = 0
  240. Width = 1110
  241. Height = 764
  242. Align = alClient
  243. BevelOuter = bvNone
  244. TabOrder = 0
  245. object GrpSchedule: TcxGroupBox
  246. Left = 0
  247. Top = 0
  248. Align = alClient
  249. Caption = #9654' '#44256#51221' '#49828#52992#51460' '#49444#51221
  250. Style.BorderColor = clCaptionText
  251. Style.Shadow = False
  252. Style.TextColor = clWindowText
  253. Style.TextStyle = [fsBold]
  254. TabOrder = 0
  255. DesignSize = (
  256. 1110
  257. 757)
  258. Height = 764
  259. Width = 1110
  260. object LblInfo1: TLabel
  261. AlignWithMargins = True
  262. Left = 6
  263. Top = 22
  264. Width = 1081
  265. Height = 17
  266. Margins.Right = 20
  267. Align = alTop
  268. Caption = ' VMS '#44256#51221#49828#52992#51460#51060' '#46321#47197#46104#47732' '#54364#52636#44592#44036' '#46041#50504' '#54644#45817' VMS'#50640#45716' '#51088#46041#49828#52992#51460' '#51221#48372#44032' '#54364#52636#46104#51648' '#50506#49845#45768#45796'.'
  269. Font.Charset = DEFAULT_CHARSET
  270. Font.Color = clBlue
  271. Font.Height = -13
  272. Font.Name = #47569#51008' '#44256#46357
  273. Font.Style = [fsBold]
  274. ParentFont = False
  275. ExplicitWidth = 584
  276. end
  277. object LblInfo: TLabel
  278. AlignWithMargins = True
  279. Left = 6
  280. Top = 45
  281. Width = 1081
  282. Height = 17
  283. Margins.Right = 20
  284. Align = alTop
  285. Caption = ' VMS '#51088#46041#49828#52992#51460' '#51221#48372#50752' '#54632#44760' '#54364#52636#51012' '#50896#54616#45716' '#44221#50864' '#51088#46041#49828#52992#51460#51032' '#54861#48372#49828#52992#51460#50640' '#46321#47197#54616#49901#49884#50836'.'
  286. Font.Charset = DEFAULT_CHARSET
  287. Font.Color = clBlue
  288. Font.Height = -13
  289. Font.Name = #47569#51008' '#44256#46357
  290. Font.Style = [fsBold]
  291. ParentFont = False
  292. ExplicitWidth = 550
  293. end
  294. object PnlMenu: TPanel
  295. Left = 3
  296. Top = 711
  297. Width = 1104
  298. Height = 43
  299. Align = alBottom
  300. BevelOuter = bvNone
  301. TabOrder = 0
  302. DesignSize = (
  303. 1104
  304. 43)
  305. object BtnDelete: TcxButton
  306. Tag = 4
  307. Left = 283
  308. Top = 15
  309. Width = 80
  310. Height = 25
  311. Cursor = crHandPoint
  312. Hint = #45936#51060#53552' '#49325#51228
  313. Anchors = [akLeft, akBottom]
  314. Caption = #49325#51228
  315. Colors.Default = 10737865
  316. TabOrder = 0
  317. Visible = False
  318. Font.Charset = DEFAULT_CHARSET
  319. Font.Color = clBlack
  320. Font.Height = -13
  321. Font.Name = #47569#51008' '#44256#46357
  322. Font.Style = [fsBold]
  323. ParentFont = False
  324. end
  325. object BtnSave: TcxButton
  326. Tag = 5
  327. Left = 5
  328. Top = 15
  329. Width = 130
  330. Height = 25
  331. Cursor = crHandPoint
  332. Hint = #54788#51116' '#49440#53469#54620' VMS'#50640' '#45824#54620' '#49828#52992#51460' '#51089#50629#51012' '#51200#51109
  333. Anchors = [akLeft, akBottom]
  334. Caption = #49828#52992#51460' '#51200#51109
  335. Colors.Default = 10737865
  336. TabOrder = 1
  337. Font.Charset = DEFAULT_CHARSET
  338. Font.Color = clBlack
  339. Font.Height = -13
  340. Font.Name = #47569#51008' '#44256#46357
  341. Font.Style = [fsBold]
  342. ParentFont = False
  343. OnClick = BtnSaveClick
  344. end
  345. object BtnAllEdit: TcxButton
  346. Left = 486
  347. Top = 15
  348. Width = 150
  349. Height = 25
  350. Cursor = crHandPoint
  351. Hint = #49440#53469#54620' '#46321#47197' '#49828#52992#51460#50640' '#45824#54644' '#51204#52404' VMS'#47484' '#45824#49345#51004#47196' '#54200#51665
  352. Anchors = [akLeft, akBottom]
  353. Caption = #51204#52404' VMS '#54200#51665
  354. Colors.Default = 10737865
  355. Glyph.Data = {
  356. B6030000424DB603000000000000360000002800000012000000100000000100
  357. 1800000000008003000012170000121700000000000000000000C0C0C0C0C0C0
  358. C0C0C0C0C0C0C0C0C0C0C0C06868680000009D9D9DC0C0C0C0C0C0C0C0C0C0C0
  359. C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C00000C0C0C0C0C0C0C0C0C0C0C0C0C0C0
  360. C08B8B8B41667291E2FD1A292E000000454545C0C0C0C0C0C0C0C0C0C0C0C0C0
  361. C0C0C0C0C0C0C0C00000C0C0C0C0C0C0C0C0C0C0C0C0C0C0C08B8B8B41667291
  362. E2FD91E2FD91E2FD5C8FA1000000000000AEAEAEC0C0C0C0C0C0C0C0C0C0C0C0
  363. 0000C0C0C0C0C0C0C0C0C0C0C0C0AEAEAE273D4491E2FD91E2FD91E2FD91E2FD
  364. 91E2FD91E2FD91E2FD4F7B8A48717E536970606060AEAEAE0000C0C0C0C0C0C0
  365. C0C0C0C0C0C01E252891E2FD91E2FD617F89686868CCDBE091E2FD91E2FD91E2
  366. FD91E2FD91E2FD4F7B8A7A7A7AC0C0C00000C0C0C0C0C0C0C0C0C0C0C0C01E25
  367. 2891E2FD91E2FD6A88924D4D4D2A2A2A767676AFDCEA91E2FD91E2FD91E2FD4F
  368. 7B8A7A7A7AC0C0C00000C0C0C0C0C0C0C0C0C034343483CDE591E2FD91E2FDBC
  369. D9E33D3D3DE7E7E77878784F7B8991E2FD91E2FD69A4B8575757C0C0C0C0C0C0
  370. 0000C0C0C0C0C0C08B8B8B4E6C758AD7F191E2FD91E2FD91E2FD7BABBB4F4743
  371. AD7151B9785757686B83CDE64E6C768B8B8BC0C0C0C0C0C00000C0C0C0C0C0C0
  372. C0C0C08E8A34827D11C0C0C0C0C0C0C0C0C099DBF176B9CF5C3C2BFFA678FFA6
  373. 7828201CC0C0C0C0C0C0C0C0C0C0C0C00000B3B29D7C7700A19E688E8A34827D
  374. 11ADAC8B7C7700A7A57A99DBF191E2FD5C8FA18A5A41FFA678E7976D343434C0
  375. C0C0C0C0C0C0C0C00000B3B29D7C77007C77007C77007C77007C77007C7700A7
  376. A57A99DBF191E2FD91E2FD416673B97857FFA678B97857575757C0C0C0C0C0C0
  377. 00009E9B60918E3D7C77009491459A98577C77008B872B9E9B6093D4DF91E2FD
  378. 91E2FD69A4B8596468875B44FFA678C5805C6B5B52ACACAC00007C77007C7700
  379. 7C7700ADAC8BB9B9AE7C77007C77007C77008DCECE91E2FD5C8FA1686868C0C0
  380. C0AEAEAE452D20FFA6786747360303030000C0C0C0A7A57A7C77007C77007C77
  381. 007C77009A9857C0C0C099DBF191E2FD5C8FA1686868C0C0C0C0C0C08B8B8B1D
  382. 1D1D6A6A6A2525250000B3B29D7C77007C77007C77007C77007C77007C7700A7
  383. A57A99DBF176B9CF454545C0C0C0C0C0C0C0C0C0C0C0C0686868292929767676
  384. 0000B9B9AE9E9B60B0AF948E8A34827D11B6B6A59E9B60B3B29D5D7E894C6D78
  385. 828282C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C00000}
  386. Spacing = 6
  387. TabOrder = 2
  388. Font.Charset = DEFAULT_CHARSET
  389. Font.Color = clBlack
  390. Font.Height = -13
  391. Font.Name = #47569#51008' '#44256#46357
  392. Font.Style = [fsBold]
  393. ParentFont = False
  394. OnClick = BtnAllEditClick
  395. end
  396. object BtnAllAdd: TcxButton
  397. Tag = 1
  398. Left = 732
  399. Top = 15
  400. Width = 150
  401. Height = 25
  402. Cursor = crHandPoint
  403. Hint = #49440#53469#54620' '#54268' '#51221#48372#47484' '#51204#52404' VMS'#50640' '#46321#47197
  404. Anchors = [akLeft, akBottom]
  405. Caption = #51204#52404' VMS '#46321#47197
  406. Colors.Default = 10737865
  407. Glyph.Data = {
  408. 06030000424D06030000000000003600000028000000100000000F0000000100
  409. 180000000000D0020000120B0000120B00000000000000000000C0C0C0C0C0C0
  410. C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0
  411. C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C078787878
  412. 7878787878787878787878C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0
  413. C0C0C0C0C0C0C0C0C0000000000000000000000000000000787878C0C0C0C0C0
  414. C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C2C2C2C0C0C0C0C0C000000049748C49
  415. 748C49748C000000787878C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0
  416. C0C0C0C0C0C0C0C0C000000049748CADDFFC49748C000000787878C0C0C0C0C0
  417. C0C0C0C0C0C0C0C0C0C0C0C0C0C0BFBE78787878787878787800000049748CAD
  418. DFFC49748C000000787878787878787878787878787878C0C0C0C0C0C0000000
  419. 00000000000000000000000049748CADDFFC49748C0000000000000000000000
  420. 00000000787878C0C0C0C0C0C000000049748C49748C49748C49748C49748CAD
  421. DFFC49748C49748C49748C49748C49748C000000787878C0C0C0C0C0C0000000
  422. 49748CADDFFCADDFFCADDFFCADDFFCADDFFCADDFFCADDFFCADDFFCADDFFC4974
  423. 8C000000787878C0C0C0C0C0C000000049748C49748C49748C49748C49748CAD
  424. DFFC49748C49748C49748C49748C49748C000000C0C0C0C0C0C0C0C0C0000000
  425. 00000000000000000000000049748CADDFFC49748C0000000000000000000000
  426. 00000000C5C5C5C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C000000049748CAD
  427. DFFC49748C000000787878C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0
  428. C0C0C0C1C1C1C0C0C000000049748CADDFFC49748C000000787878C0C0C0C0C0
  429. C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C1C1C1C0C0C000000049748C49
  430. 748C49748C000000787878C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0C0
  431. C0C0C0C0C0C0C0C0C0000000000000000000000000000000C0C0C0C0C0C0C0C0
  432. C0C0C0C0C0C0C0C0C0C0}
  433. Spacing = 6
  434. TabOrder = 3
  435. Font.Charset = DEFAULT_CHARSET
  436. Font.Color = clBlack
  437. Font.Height = -13
  438. Font.Name = #47569#51008' '#44256#46357
  439. Font.Style = [fsBold]
  440. ParentFont = False
  441. OnClick = BtnAllEditClick
  442. end
  443. end
  444. object PgVmsSch: TcxPageControl
  445. Left = 3
  446. Top = 65
  447. Width = 1104
  448. Height = 625
  449. Cursor = crHandPoint
  450. Align = alClient
  451. TabOrder = 1
  452. Properties.ActivePage = TabSheet3
  453. ClientRectBottom = 620
  454. ClientRectLeft = 2
  455. ClientRectRight = 1099
  456. ClientRectTop = 28
  457. object TabSheet0: TcxTabSheet
  458. Caption = ' '#44368#53685#51221#48372' '
  459. ImageIndex = 1
  460. object PnlTraffic: TPanel
  461. Left = 0
  462. Top = 0
  463. Width = 1097
  464. Height = 592
  465. Align = alClient
  466. BevelOuter = bvNone
  467. TabOrder = 0
  468. object cxGroupBox5: TcxGroupBox
  469. Left = 0
  470. Top = 0
  471. Align = alClient
  472. Caption = #44368#53685#51221#48372' '#49828#52992#51460
  473. TabOrder = 0
  474. Height = 592
  475. Width = 632
  476. object CxGrid0: TcxGrid
  477. Left = 3
  478. Top = 19
  479. Width = 626
  480. Height = 563
  481. Align = alClient
  482. TabOrder = 0
  483. object TvGrid0: TcxGridTableView
  484. OnCellDblClick = TvGridCellDblClick
  485. DataController.Summary.DefaultGroupSummaryItems = <>
  486. DataController.Summary.FooterSummaryItems = <>
  487. DataController.Summary.SummaryGroups = <>
  488. OptionsCustomize.ColumnFiltering = False
  489. OptionsData.CancelOnExit = False
  490. OptionsData.Deleting = False
  491. OptionsData.DeletingConfirmation = False
  492. OptionsData.Inserting = False
  493. OptionsSelection.HideFocusRectOnExit = False
  494. OptionsSelection.HideSelection = True
  495. OptionsView.ColumnAutoWidth = True
  496. OptionsView.DataRowHeight = 64
  497. OptionsView.GroupByBox = False
  498. OptionsView.Indicator = True
  499. object cxGridColumn167: TcxGridColumn
  500. Caption = #54268' ID'
  501. PropertiesClassName = 'TcxLabelProperties'
  502. Properties.Alignment.Horz = taCenter
  503. Properties.Alignment.Vert = taVCenter
  504. GroupSummaryAlignment = taCenter
  505. HeaderAlignmentHorz = taCenter
  506. HeaderAlignmentVert = vaCenter
  507. HeaderGlyphAlignmentHorz = taCenter
  508. Width = 55
  509. end
  510. object cxGridColumn168: TcxGridColumn
  511. Caption = #54268' '#47112#51060#50500#50883
  512. DataBinding.ValueType = 'Variant'
  513. PropertiesClassName = 'TcxImageProperties'
  514. Properties.GraphicClassName = 'TdxSmartImage'
  515. GroupSummaryAlignment = taCenter
  516. HeaderAlignmentHorz = taCenter
  517. HeaderAlignmentVert = vaCenter
  518. HeaderGlyphAlignmentHorz = taCenter
  519. Options.Editing = False
  520. Width = 330
  521. end
  522. object cxGridColumn169: TcxGridColumn
  523. Caption = #44396#44036
  524. PropertiesClassName = 'TcxLabelProperties'
  525. Properties.Alignment.Horz = taCenter
  526. Properties.Alignment.Vert = taVCenter
  527. Visible = False
  528. GroupSummaryAlignment = taCenter
  529. HeaderAlignmentHorz = taCenter
  530. HeaderAlignmentVert = vaCenter
  531. HeaderGlyphAlignmentHorz = taCenter
  532. Options.Editing = False
  533. Width = 60
  534. end
  535. object cxGridColumn170: TcxGridColumn
  536. Caption = #54364#52636'('#52488')'
  537. PropertiesClassName = 'TcxComboBoxProperties'
  538. Properties.Alignment.Horz = taCenter
  539. Properties.Alignment.Vert = taVCenter
  540. Properties.DropDownListStyle = lsFixedList
  541. Properties.ImmediatePost = True
  542. Properties.Items.Strings = (
  543. '1'
  544. '2'
  545. '3'
  546. '4'
  547. '5'
  548. '6'
  549. '7'
  550. '8'
  551. '9'
  552. '10'
  553. '11'
  554. '12'
  555. '13'
  556. '14'
  557. '15'
  558. '16'
  559. '17'
  560. '18'
  561. '19'
  562. '20'
  563. '21'
  564. '22'
  565. '23'
  566. '24'
  567. '25'
  568. '26'
  569. '27'
  570. '28'
  571. '29'
  572. '30')
  573. GroupSummaryAlignment = taCenter
  574. HeaderAlignmentHorz = taCenter
  575. HeaderAlignmentVert = vaCenter
  576. HeaderGlyphAlignmentHorz = taCenter
  577. Width = 60
  578. end
  579. object cxGridColumn171: TcxGridColumn
  580. Caption = #49884#51089#49884#44033
  581. PropertiesClassName = 'TcxTextEditProperties'
  582. Properties.Alignment.Horz = taCenter
  583. Properties.Alignment.Vert = taVCenter
  584. GroupSummaryAlignment = taCenter
  585. HeaderAlignmentHorz = taCenter
  586. HeaderAlignmentVert = vaCenter
  587. HeaderGlyphAlignmentHorz = taCenter
  588. Options.Editing = False
  589. Width = 80
  590. end
  591. object cxGridColumn172: TcxGridColumn
  592. Caption = #51333#47308#49884#44033
  593. PropertiesClassName = 'TcxTextEditProperties'
  594. Properties.Alignment.Horz = taCenter
  595. Properties.Alignment.Vert = taVCenter
  596. OnCustomDrawCell = cxGridColumn172CustomDrawCell
  597. GroupSummaryAlignment = taCenter
  598. HeaderAlignmentHorz = taCenter
  599. HeaderAlignmentVert = vaCenter
  600. HeaderGlyphAlignmentHorz = taCenter
  601. Options.Editing = False
  602. Width = 80
  603. end
  604. object cxGridColumn173: TcxGridColumn
  605. Caption = #49324#50857
  606. PropertiesClassName = 'TcxComboBoxProperties'
  607. Properties.Alignment.Horz = taCenter
  608. Properties.Alignment.Vert = taVCenter
  609. Properties.DropDownListStyle = lsFixedList
  610. Properties.ImmediatePost = True
  611. Properties.Items.Strings = (
  612. 'Y'
  613. 'N')
  614. GroupSummaryAlignment = taCenter
  615. HeaderAlignmentHorz = taCenter
  616. HeaderAlignmentVert = vaCenter
  617. HeaderGlyphAlignmentHorz = taCenter
  618. end
  619. object cxGridColumn174: TcxGridColumn
  620. Caption = #49884#51089#49884#44033
  621. PropertiesClassName = 'TcxTextEditProperties'
  622. Visible = False
  623. GroupSummaryAlignment = taCenter
  624. HeaderAlignmentHorz = taCenter
  625. HeaderAlignmentVert = vaCenter
  626. HeaderGlyphAlignmentHorz = taCenter
  627. end
  628. object cxGridColumn175: TcxGridColumn
  629. Caption = #51333#47308#49884#44033
  630. PropertiesClassName = 'TcxTextEditProperties'
  631. Visible = False
  632. GroupSummaryAlignment = taCenter
  633. HeaderAlignmentHorz = taCenter
  634. HeaderAlignmentVert = vaCenter
  635. HeaderGlyphAlignmentHorz = taCenter
  636. end
  637. object cxGridColumn185: TcxGridColumn
  638. PropertiesClassName = 'TcxTextEditProperties'
  639. Properties.Alignment.Horz = taCenter
  640. Properties.Alignment.Vert = taVCenter
  641. Visible = False
  642. end
  643. object cxGridColumn186: TcxGridColumn
  644. PropertiesClassName = 'TcxTextEditProperties'
  645. Properties.Alignment.Horz = taCenter
  646. Properties.Alignment.Vert = taVCenter
  647. Visible = False
  648. end
  649. object cxGridColumn187: TcxGridColumn
  650. PropertiesClassName = 'TcxTextEditProperties'
  651. Properties.Alignment.Horz = taCenter
  652. Properties.Alignment.Vert = taVCenter
  653. Visible = False
  654. end
  655. object cxGridColumn188: TcxGridColumn
  656. PropertiesClassName = 'TcxTextEditProperties'
  657. Properties.Alignment.Horz = taCenter
  658. Properties.Alignment.Vert = taVCenter
  659. Visible = False
  660. end
  661. object cxGridColumn189: TcxGridColumn
  662. Caption = 'VMS'#50976#54805#53076#46300
  663. PropertiesClassName = 'TcxTextEditProperties'
  664. Properties.Alignment.Horz = taCenter
  665. Properties.Alignment.Vert = taVCenter
  666. Visible = False
  667. VisibleForCustomization = False
  668. end
  669. object cxGridColumn190: TcxGridColumn
  670. Caption = #54268#49353#49345
  671. PropertiesClassName = 'TcxTextEditProperties'
  672. Properties.Alignment.Horz = taCenter
  673. Properties.Alignment.Vert = taVCenter
  674. Visible = False
  675. VisibleForCustomization = False
  676. end
  677. object cxGridColumn191: TcxGridColumn
  678. Caption = #54268#50976#54805
  679. PropertiesClassName = 'TcxTextEditProperties'
  680. Properties.Alignment.Horz = taRightJustify
  681. Properties.Alignment.Vert = taVCenter
  682. Visible = False
  683. VisibleForCustomization = False
  684. end
  685. object cxGridColumn192: TcxGridColumn
  686. PropertiesClassName = 'TcxTextEditProperties'
  687. Visible = False
  688. VisibleForCustomization = False
  689. end
  690. object cxGridColumn193: TcxGridColumn
  691. PropertiesClassName = 'TcxTextEditProperties'
  692. Visible = False
  693. VisibleForCustomization = False
  694. end
  695. object cxGridColumn194: TcxGridColumn
  696. PropertiesClassName = 'TcxTextEditProperties'
  697. Visible = False
  698. VisibleForCustomization = False
  699. end
  700. object cxGridColumn195: TcxGridColumn
  701. PropertiesClassName = 'TcxTextEditProperties'
  702. Visible = False
  703. VisibleForCustomization = False
  704. end
  705. object TvGrid0Column1: TcxGridColumn
  706. PropertiesClassName = 'TcxLabelProperties'
  707. Visible = False
  708. VisibleForCustomization = False
  709. end
  710. object TvGrid0Column2: TcxGridColumn
  711. PropertiesClassName = 'TcxLabelProperties'
  712. Visible = False
  713. VisibleForCustomization = False
  714. end
  715. end
  716. object GlGird0: TcxGridLevel
  717. GridView = TvGrid0
  718. end
  719. end
  720. end
  721. object PnlCmd: TPanel
  722. Left = 632
  723. Top = 0
  724. Width = 95
  725. Height = 592
  726. Align = alRight
  727. BevelOuter = bvNone
  728. TabOrder = 1
  729. object BtnListAdd0: TcxButton
  730. Left = 8
  731. Top = 125
  732. Width = 80
  733. Height = 25
  734. Cursor = crHandPoint
  735. Hint = #49828#52992#51460' '#52628#44032
  736. Caption = #9664' '#52628#44032
  737. Colors.Default = 10737865
  738. LookAndFeel.NativeStyle = False
  739. TabOrder = 0
  740. OnClick = BtnListAdd0Click
  741. end
  742. object BtnListDelete0: TcxButton
  743. Left = 8
  744. Top = 161
  745. Width = 80
  746. Height = 25
  747. Cursor = crHandPoint
  748. Hint = #49828#52992#51460' '#49325#51228
  749. Caption = #49325#51228' '#9654
  750. Colors.Default = 10737865
  751. LookAndFeel.NativeStyle = False
  752. TabOrder = 1
  753. OnClick = BtnListDelete0Click
  754. end
  755. end
  756. object cxGroupBox6: TcxGroupBox
  757. Left = 727
  758. Top = 0
  759. Align = alRight
  760. Caption = #44368#53685#51221#48372' '#54268
  761. TabOrder = 2
  762. Height = 592
  763. Width = 370
  764. object CxForm0: TcxGrid
  765. Left = 3
  766. Top = 19
  767. Width = 364
  768. Height = 563
  769. Align = alClient
  770. TabOrder = 0
  771. object TvForm0: TcxGridTableView
  772. OnCellDblClick = TvFormCellDblClick
  773. DataController.Summary.DefaultGroupSummaryItems = <>
  774. DataController.Summary.FooterSummaryItems = <>
  775. DataController.Summary.SummaryGroups = <>
  776. OptionsCustomize.ColumnFiltering = False
  777. OptionsCustomize.ColumnMoving = False
  778. OptionsCustomize.DataRowSizing = True
  779. OptionsSelection.HideFocusRectOnExit = False
  780. OptionsSelection.HideSelection = True
  781. OptionsView.GroupByBox = False
  782. object ColFrm001: TcxGridColumn
  783. Caption = #54268' ID'
  784. PropertiesClassName = 'TcxLabelProperties'
  785. Properties.Alignment.Horz = taCenter
  786. Properties.Alignment.Vert = taVCenter
  787. GroupSummaryAlignment = taCenter
  788. HeaderAlignmentHorz = taCenter
  789. HeaderAlignmentVert = vaCenter
  790. HeaderGlyphAlignmentHorz = taCenter
  791. Options.Editing = False
  792. Width = 40
  793. end
  794. object ColFrm002: TcxGridColumn
  795. Caption = #54268' '#47112#51060#50500#50883
  796. DataBinding.ValueType = 'Variant'
  797. PropertiesClassName = 'TcxImageProperties'
  798. Properties.GraphicClassName = 'TdxSmartImage'
  799. GroupSummaryAlignment = taCenter
  800. HeaderAlignmentHorz = taCenter
  801. HeaderAlignmentVert = vaCenter
  802. HeaderGlyphAlignmentHorz = taCenter
  803. Options.Editing = False
  804. Width = 334
  805. end
  806. object ColFrm003: TcxGridColumn
  807. PropertiesClassName = 'TcxLabelProperties'
  808. Properties.Alignment.Horz = taCenter
  809. Properties.Alignment.Vert = taVCenter
  810. Visible = False
  811. GroupSummaryAlignment = taCenter
  812. HeaderAlignmentHorz = taCenter
  813. HeaderAlignmentVert = vaCenter
  814. HeaderGlyphAlignmentHorz = taCenter
  815. end
  816. object ColFrm004: TcxGridColumn
  817. PropertiesClassName = 'TcxLabelProperties'
  818. Properties.Alignment.Vert = taVCenter
  819. Visible = False
  820. GroupSummaryAlignment = taCenter
  821. HeaderAlignmentHorz = taCenter
  822. HeaderAlignmentVert = vaCenter
  823. HeaderGlyphAlignmentHorz = taCenter
  824. IsCaptionAssigned = True
  825. end
  826. object ColFrm005: TcxGridColumn
  827. PropertiesClassName = 'TcxLabelProperties'
  828. Visible = False
  829. GroupSummaryAlignment = taCenter
  830. HeaderAlignmentHorz = taCenter
  831. HeaderAlignmentVert = vaCenter
  832. HeaderGlyphAlignmentHorz = taCenter
  833. end
  834. object ColFrm006: TcxGridColumn
  835. PropertiesClassName = 'TcxLabelProperties'
  836. Visible = False
  837. GroupSummaryAlignment = taCenter
  838. HeaderAlignmentHorz = taCenter
  839. HeaderAlignmentVert = vaCenter
  840. HeaderGlyphAlignmentHorz = taCenter
  841. end
  842. object ColFrm007: TcxGridColumn
  843. PropertiesClassName = 'TcxLabelProperties'
  844. Visible = False
  845. GroupSummaryAlignment = taCenter
  846. HeaderAlignmentHorz = taCenter
  847. HeaderAlignmentVert = vaCenter
  848. HeaderGlyphAlignmentHorz = taCenter
  849. end
  850. object ColFrm008: TcxGridColumn
  851. PropertiesClassName = 'TcxLabelProperties'
  852. Visible = False
  853. GroupSummaryAlignment = taCenter
  854. HeaderAlignmentHorz = taCenter
  855. HeaderAlignmentVert = vaCenter
  856. HeaderGlyphAlignmentHorz = taCenter
  857. end
  858. object ColFrm009: TcxGridColumn
  859. PropertiesClassName = 'TcxLabelProperties'
  860. Visible = False
  861. GroupSummaryAlignment = taCenter
  862. HeaderAlignmentHorz = taCenter
  863. HeaderAlignmentVert = vaCenter
  864. HeaderGlyphAlignmentHorz = taCenter
  865. end
  866. object TvForm0Column1: TcxGridColumn
  867. Caption = #54268#47749#52845
  868. PropertiesClassName = 'TcxLabelProperties'
  869. Properties.Alignment.Vert = taVCenter
  870. HeaderAlignmentHorz = taCenter
  871. HeaderAlignmentVert = vaCenter
  872. end
  873. end
  874. object GlForm0: TcxGridLevel
  875. GridView = TvForm0
  876. end
  877. end
  878. end
  879. end
  880. end
  881. object TabSheet1: TcxTabSheet
  882. Tag = 1
  883. Caption = ' '#46028#48156' '
  884. ImageIndex = 2
  885. object PnlDolbal: TPanel
  886. Left = 0
  887. Top = 0
  888. Width = 1097
  889. Height = 592
  890. Align = alClient
  891. BevelOuter = bvNone
  892. TabOrder = 0
  893. object cxGroupBox2: TcxGroupBox
  894. Left = 0
  895. Top = 0
  896. Align = alClient
  897. Caption = #46028#48156' '#49828#52992#51460
  898. TabOrder = 0
  899. Height = 592
  900. Width = 632
  901. object CxGrid1: TcxGrid
  902. Left = 3
  903. Top = 19
  904. Width = 626
  905. Height = 563
  906. Align = alClient
  907. TabOrder = 0
  908. object TvGrid1: TcxGridTableView
  909. Tag = 1
  910. OnCellDblClick = TvGridCellDblClick
  911. DataController.Summary.DefaultGroupSummaryItems = <>
  912. DataController.Summary.FooterSummaryItems = <>
  913. DataController.Summary.SummaryGroups = <>
  914. OptionsCustomize.ColumnFiltering = False
  915. OptionsData.CancelOnExit = False
  916. OptionsData.Deleting = False
  917. OptionsData.DeletingConfirmation = False
  918. OptionsData.Inserting = False
  919. OptionsSelection.HideFocusRectOnExit = False
  920. OptionsSelection.HideSelection = True
  921. OptionsView.ColumnAutoWidth = True
  922. OptionsView.DataRowHeight = 64
  923. OptionsView.GroupByBox = False
  924. object cxGridColumn1: TcxGridColumn
  925. Caption = #54268' ID'
  926. PropertiesClassName = 'TcxLabelProperties'
  927. Properties.Alignment.Horz = taCenter
  928. Properties.Alignment.Vert = taVCenter
  929. GroupSummaryAlignment = taCenter
  930. HeaderAlignmentHorz = taCenter
  931. HeaderAlignmentVert = vaCenter
  932. HeaderGlyphAlignmentHorz = taCenter
  933. Width = 55
  934. end
  935. object cxGridColumn2: TcxGridColumn
  936. Caption = #54268' '#47112#51060#50500#50883
  937. DataBinding.ValueType = 'Variant'
  938. PropertiesClassName = 'TcxImageProperties'
  939. Properties.GraphicClassName = 'TdxSmartImage'
  940. GroupSummaryAlignment = taCenter
  941. HeaderAlignmentHorz = taCenter
  942. HeaderAlignmentVert = vaCenter
  943. HeaderGlyphAlignmentHorz = taCenter
  944. Width = 330
  945. end
  946. object cxGridColumn3: TcxGridColumn
  947. Caption = #51228#44277#44396#44036
  948. PropertiesClassName = 'TcxLabelProperties'
  949. Properties.Alignment.Horz = taCenter
  950. Properties.Alignment.Vert = taVCenter
  951. Visible = False
  952. GroupSummaryAlignment = taCenter
  953. HeaderAlignmentHorz = taCenter
  954. HeaderAlignmentVert = vaCenter
  955. HeaderGlyphAlignmentHorz = taCenter
  956. VisibleForCustomization = False
  957. Width = 60
  958. end
  959. object cxGridColumn4: TcxGridColumn
  960. Caption = #54364#52636'('#52488')'
  961. PropertiesClassName = 'TcxComboBoxProperties'
  962. Properties.Alignment.Horz = taCenter
  963. Properties.Alignment.Vert = taVCenter
  964. Properties.DropDownListStyle = lsFixedList
  965. Properties.ImmediatePost = True
  966. Properties.Items.Strings = (
  967. '1'
  968. '2'
  969. '3'
  970. '4'
  971. '5'
  972. '6'
  973. '7'
  974. '8'
  975. '9'
  976. '10'
  977. '11'
  978. '12'
  979. '13'
  980. '14'
  981. '15'
  982. '16'
  983. '17'
  984. '18'
  985. '19'
  986. '20'
  987. '21'
  988. '22'
  989. '23'
  990. '24'
  991. '25'
  992. '26'
  993. '27'
  994. '28'
  995. '29'
  996. '30')
  997. GroupSummaryAlignment = taCenter
  998. HeaderAlignmentHorz = taCenter
  999. HeaderAlignmentVert = vaCenter
  1000. HeaderGlyphAlignmentHorz = taCenter
  1001. Width = 60
  1002. end
  1003. object cxGridColumn5: TcxGridColumn
  1004. Caption = #49884#51089#49884#44033
  1005. PropertiesClassName = 'TcxTextEditProperties'
  1006. Properties.Alignment.Horz = taCenter
  1007. Properties.Alignment.Vert = taVCenter
  1008. GroupSummaryAlignment = taCenter
  1009. HeaderAlignmentHorz = taCenter
  1010. HeaderAlignmentVert = vaCenter
  1011. HeaderGlyphAlignmentHorz = taCenter
  1012. Options.Editing = False
  1013. Width = 80
  1014. end
  1015. object cxGridColumn6: TcxGridColumn
  1016. Caption = #51333#47308#49884#44033
  1017. PropertiesClassName = 'TcxTextEditProperties'
  1018. Properties.Alignment.Horz = taCenter
  1019. Properties.Alignment.Vert = taVCenter
  1020. OnCustomDrawCell = cxGridColumn172CustomDrawCell
  1021. GroupSummaryAlignment = taCenter
  1022. HeaderAlignmentHorz = taCenter
  1023. HeaderAlignmentVert = vaCenter
  1024. HeaderGlyphAlignmentHorz = taCenter
  1025. Options.Editing = False
  1026. Width = 80
  1027. end
  1028. object cxGridColumn7: TcxGridColumn
  1029. Caption = #49324#50857
  1030. PropertiesClassName = 'TcxComboBoxProperties'
  1031. Properties.Alignment.Horz = taCenter
  1032. Properties.Alignment.Vert = taVCenter
  1033. Properties.DropDownListStyle = lsFixedList
  1034. Properties.ImmediatePost = True
  1035. Properties.Items.Strings = (
  1036. 'Y'
  1037. 'N')
  1038. GroupSummaryAlignment = taCenter
  1039. HeaderAlignmentHorz = taCenter
  1040. HeaderAlignmentVert = vaCenter
  1041. HeaderGlyphAlignmentHorz = taCenter
  1042. end
  1043. object cxGridColumn8: TcxGridColumn
  1044. PropertiesClassName = 'TcxTextEditProperties'
  1045. Visible = False
  1046. GroupSummaryAlignment = taCenter
  1047. HeaderAlignmentHorz = taCenter
  1048. HeaderAlignmentVert = vaCenter
  1049. HeaderGlyphAlignmentHorz = taCenter
  1050. end
  1051. object cxGridColumn9: TcxGridColumn
  1052. PropertiesClassName = 'TcxTextEditProperties'
  1053. Visible = False
  1054. GroupSummaryAlignment = taCenter
  1055. HeaderAlignmentHorz = taCenter
  1056. HeaderAlignmentVert = vaCenter
  1057. HeaderGlyphAlignmentHorz = taCenter
  1058. end
  1059. object TvGrid1Column1: TcxGridColumn
  1060. PropertiesClassName = 'TcxTextEditProperties'
  1061. Visible = False
  1062. end
  1063. object TvGrid1Column2: TcxGridColumn
  1064. PropertiesClassName = 'TcxTextEditProperties'
  1065. Visible = False
  1066. end
  1067. object TvGrid1Column3: TcxGridColumn
  1068. PropertiesClassName = 'TcxTextEditProperties'
  1069. Visible = False
  1070. end
  1071. object TvGrid1Column4: TcxGridColumn
  1072. PropertiesClassName = 'TcxTextEditProperties'
  1073. Visible = False
  1074. end
  1075. object TvGrid1Column5: TcxGridColumn
  1076. Caption = 'VMS'#50976#54805#53076#46300
  1077. PropertiesClassName = 'TcxTextEditProperties'
  1078. Properties.Alignment.Horz = taCenter
  1079. Properties.Alignment.Vert = taVCenter
  1080. Visible = False
  1081. VisibleForCustomization = False
  1082. end
  1083. object TvGrid1Column6: TcxGridColumn
  1084. Caption = #54268#49353#49345
  1085. PropertiesClassName = 'TcxTextEditProperties'
  1086. Properties.Alignment.Horz = taCenter
  1087. Properties.Alignment.Vert = taVCenter
  1088. Visible = False
  1089. VisibleForCustomization = False
  1090. end
  1091. object TvGrid1Column7: TcxGridColumn
  1092. Caption = #54268#50976#54805
  1093. PropertiesClassName = 'TcxTextEditProperties'
  1094. Properties.Alignment.Horz = taCenter
  1095. Properties.Alignment.Vert = taVCenter
  1096. Visible = False
  1097. VisibleForCustomization = False
  1098. end
  1099. object TvGrid1Column8: TcxGridColumn
  1100. PropertiesClassName = 'TcxTextEditProperties'
  1101. Visible = False
  1102. VisibleForCustomization = False
  1103. end
  1104. object TvGrid1Column9: TcxGridColumn
  1105. PropertiesClassName = 'TcxTextEditProperties'
  1106. Visible = False
  1107. VisibleForCustomization = False
  1108. end
  1109. object TvGrid1Column10: TcxGridColumn
  1110. PropertiesClassName = 'TcxTextEditProperties'
  1111. Visible = False
  1112. VisibleForCustomization = False
  1113. end
  1114. object TvGrid1Column11: TcxGridColumn
  1115. PropertiesClassName = 'TcxTextEditProperties'
  1116. Visible = False
  1117. VisibleForCustomization = False
  1118. end
  1119. object TvGrid1Column12: TcxGridColumn
  1120. PropertiesClassName = 'TcxLabelProperties'
  1121. Visible = False
  1122. VisibleForCustomization = False
  1123. end
  1124. object TvGrid1Column13: TcxGridColumn
  1125. PropertiesClassName = 'TcxLabelProperties'
  1126. Visible = False
  1127. VisibleForCustomization = False
  1128. end
  1129. end
  1130. object GlGrid1: TcxGridLevel
  1131. GridView = TvGrid1
  1132. end
  1133. end
  1134. end
  1135. object Panel5: TPanel
  1136. Left = 632
  1137. Top = 0
  1138. Width = 95
  1139. Height = 592
  1140. Align = alRight
  1141. BevelOuter = bvNone
  1142. TabOrder = 1
  1143. object BtnListAdd1: TcxButton
  1144. Tag = 1
  1145. Left = 8
  1146. Top = 125
  1147. Width = 80
  1148. Height = 25
  1149. Cursor = crHandPoint
  1150. Hint = #49828#52992#51460' '#52628#44032
  1151. Caption = #9664' '#52628#44032
  1152. Colors.Default = 10737865
  1153. LookAndFeel.NativeStyle = False
  1154. TabOrder = 0
  1155. OnClick = BtnListAdd0Click
  1156. end
  1157. object BtnListDelete1: TcxButton
  1158. Tag = 1
  1159. Left = 8
  1160. Top = 161
  1161. Width = 80
  1162. Height = 25
  1163. Cursor = crHandPoint
  1164. Hint = #49828#52992#51460' '#49325#51228
  1165. Caption = #49325#51228' '#9654
  1166. Colors.Default = 10737865
  1167. LookAndFeel.NativeStyle = False
  1168. TabOrder = 1
  1169. OnClick = BtnListDelete0Click
  1170. end
  1171. end
  1172. object cxGroupBox3: TcxGroupBox
  1173. Left = 727
  1174. Top = 0
  1175. Align = alRight
  1176. Caption = #46028#48156' '#54268
  1177. TabOrder = 2
  1178. Height = 592
  1179. Width = 370
  1180. object CxForm1: TcxGrid
  1181. Left = 3
  1182. Top = 19
  1183. Width = 364
  1184. Height = 563
  1185. Align = alClient
  1186. TabOrder = 0
  1187. object TvForm1: TcxGridTableView
  1188. Tag = 1
  1189. OnCellDblClick = TvFormCellDblClick
  1190. DataController.Summary.DefaultGroupSummaryItems = <>
  1191. DataController.Summary.FooterSummaryItems = <>
  1192. DataController.Summary.SummaryGroups = <>
  1193. OptionsCustomize.ColumnFiltering = False
  1194. OptionsSelection.HideFocusRectOnExit = False
  1195. OptionsSelection.HideSelection = True
  1196. OptionsView.DataRowHeight = 64
  1197. OptionsView.GroupByBox = False
  1198. object cxGridColumn10: TcxGridColumn
  1199. Caption = #54268' ID'
  1200. PropertiesClassName = 'TcxLabelProperties'
  1201. Properties.Alignment.Horz = taCenter
  1202. Properties.Alignment.Vert = taVCenter
  1203. GroupSummaryAlignment = taCenter
  1204. HeaderAlignmentHorz = taCenter
  1205. HeaderAlignmentVert = vaCenter
  1206. HeaderGlyphAlignmentHorz = taCenter
  1207. Options.Editing = False
  1208. Width = 55
  1209. end
  1210. object cxGridColumn11: TcxGridColumn
  1211. Caption = #54268' '#47112#51060#50500#50883
  1212. DataBinding.ValueType = 'Variant'
  1213. PropertiesClassName = 'TcxImageProperties'
  1214. Properties.GraphicClassName = 'TdxSmartImage'
  1215. GroupSummaryAlignment = taCenter
  1216. HeaderAlignmentHorz = taCenter
  1217. HeaderAlignmentVert = vaCenter
  1218. HeaderGlyphAlignmentHorz = taCenter
  1219. Options.Editing = False
  1220. Width = 347
  1221. end
  1222. object cxGridColumn12: TcxGridColumn
  1223. PropertiesClassName = 'TcxLabelProperties'
  1224. Visible = False
  1225. GroupSummaryAlignment = taCenter
  1226. HeaderAlignmentHorz = taCenter
  1227. HeaderAlignmentVert = vaCenter
  1228. HeaderGlyphAlignmentHorz = taCenter
  1229. end
  1230. object cxGridColumn13: TcxGridColumn
  1231. PropertiesClassName = 'TcxLabelProperties'
  1232. Properties.Alignment.Vert = taVCenter
  1233. Visible = False
  1234. GroupSummaryAlignment = taCenter
  1235. HeaderAlignmentHorz = taCenter
  1236. HeaderAlignmentVert = vaCenter
  1237. HeaderGlyphAlignmentHorz = taCenter
  1238. IsCaptionAssigned = True
  1239. end
  1240. object cxGridColumn14: TcxGridColumn
  1241. PropertiesClassName = 'TcxLabelProperties'
  1242. Visible = False
  1243. GroupSummaryAlignment = taCenter
  1244. HeaderAlignmentHorz = taCenter
  1245. HeaderAlignmentVert = vaCenter
  1246. HeaderGlyphAlignmentHorz = taCenter
  1247. end
  1248. object cxGridColumn15: TcxGridColumn
  1249. PropertiesClassName = 'TcxLabelProperties'
  1250. Visible = False
  1251. GroupSummaryAlignment = taCenter
  1252. HeaderAlignmentHorz = taCenter
  1253. HeaderAlignmentVert = vaCenter
  1254. HeaderGlyphAlignmentHorz = taCenter
  1255. end
  1256. object cxGridColumn16: TcxGridColumn
  1257. PropertiesClassName = 'TcxLabelProperties'
  1258. Visible = False
  1259. GroupSummaryAlignment = taCenter
  1260. HeaderAlignmentHorz = taCenter
  1261. HeaderAlignmentVert = vaCenter
  1262. HeaderGlyphAlignmentHorz = taCenter
  1263. end
  1264. object cxGridColumn17: TcxGridColumn
  1265. PropertiesClassName = 'TcxLabelProperties'
  1266. Visible = False
  1267. GroupSummaryAlignment = taCenter
  1268. HeaderAlignmentHorz = taCenter
  1269. HeaderAlignmentVert = vaCenter
  1270. HeaderGlyphAlignmentHorz = taCenter
  1271. end
  1272. object cxGridColumn18: TcxGridColumn
  1273. PropertiesClassName = 'TcxLabelProperties'
  1274. Visible = False
  1275. GroupSummaryAlignment = taCenter
  1276. HeaderAlignmentHorz = taCenter
  1277. HeaderAlignmentVert = vaCenter
  1278. HeaderGlyphAlignmentHorz = taCenter
  1279. end
  1280. object TvForm1Column1: TcxGridColumn
  1281. Caption = #54268#47749#52845
  1282. PropertiesClassName = 'TcxLabelProperties'
  1283. Properties.Alignment.Vert = taVCenter
  1284. HeaderAlignmentHorz = taCenter
  1285. HeaderAlignmentVert = vaCenter
  1286. end
  1287. end
  1288. object GlForm1: TcxGridLevel
  1289. GridView = TvForm1
  1290. end
  1291. end
  1292. end
  1293. end
  1294. end
  1295. object TabSheet2: TcxTabSheet
  1296. Tag = 2
  1297. Caption = ' '#44277#49324'/'#54665#49324' '
  1298. ImageIndex = 3
  1299. object PnlGongsa: TPanel
  1300. Left = 0
  1301. Top = 0
  1302. Width = 1097
  1303. Height = 592
  1304. Align = alClient
  1305. BevelOuter = bvNone
  1306. TabOrder = 0
  1307. object cxGroupBox4: TcxGroupBox
  1308. Left = 0
  1309. Top = 0
  1310. Align = alClient
  1311. Caption = #44277#49324'/'#54665#49324' '#49828#52992#51460
  1312. TabOrder = 0
  1313. Height = 592
  1314. Width = 632
  1315. object CxGrid2: TcxGrid
  1316. Left = 3
  1317. Top = 19
  1318. Width = 626
  1319. Height = 563
  1320. Align = alClient
  1321. TabOrder = 0
  1322. object TvGrid2: TcxGridTableView
  1323. Tag = 2
  1324. OnCellDblClick = TvGridCellDblClick
  1325. DataController.Summary.DefaultGroupSummaryItems = <>
  1326. DataController.Summary.FooterSummaryItems = <>
  1327. DataController.Summary.SummaryGroups = <>
  1328. OptionsCustomize.ColumnFiltering = False
  1329. OptionsData.CancelOnExit = False
  1330. OptionsData.Deleting = False
  1331. OptionsData.DeletingConfirmation = False
  1332. OptionsData.Inserting = False
  1333. OptionsSelection.HideFocusRectOnExit = False
  1334. OptionsSelection.HideSelection = True
  1335. OptionsView.ColumnAutoWidth = True
  1336. OptionsView.DataRowHeight = 64
  1337. OptionsView.GroupByBox = False
  1338. object cxGridColumn19: TcxGridColumn
  1339. Caption = #54268' ID'
  1340. PropertiesClassName = 'TcxLabelProperties'
  1341. Properties.Alignment.Horz = taCenter
  1342. Properties.Alignment.Vert = taVCenter
  1343. GroupSummaryAlignment = taCenter
  1344. HeaderAlignmentHorz = taCenter
  1345. HeaderAlignmentVert = vaCenter
  1346. HeaderGlyphAlignmentHorz = taCenter
  1347. Width = 55
  1348. end
  1349. object cxGridColumn20: TcxGridColumn
  1350. Caption = #54268' '#47112#51060#50500#50883
  1351. DataBinding.ValueType = 'Variant'
  1352. PropertiesClassName = 'TcxImageProperties'
  1353. Properties.GraphicClassName = 'TdxSmartImage'
  1354. GroupSummaryAlignment = taCenter
  1355. HeaderAlignmentHorz = taCenter
  1356. HeaderAlignmentVert = vaCenter
  1357. HeaderGlyphAlignmentHorz = taCenter
  1358. Width = 330
  1359. end
  1360. object cxGridColumn21: TcxGridColumn
  1361. Caption = #51228#44277#44396#44036
  1362. PropertiesClassName = 'TcxLabelProperties'
  1363. Properties.Alignment.Horz = taCenter
  1364. Properties.Alignment.Vert = taVCenter
  1365. Visible = False
  1366. GroupSummaryAlignment = taCenter
  1367. HeaderAlignmentHorz = taCenter
  1368. HeaderAlignmentVert = vaCenter
  1369. HeaderGlyphAlignmentHorz = taCenter
  1370. VisibleForCustomization = False
  1371. Width = 60
  1372. end
  1373. object cxGridColumn22: TcxGridColumn
  1374. Caption = #54364#52636'('#52488')'
  1375. PropertiesClassName = 'TcxComboBoxProperties'
  1376. Properties.Alignment.Horz = taCenter
  1377. Properties.Alignment.Vert = taVCenter
  1378. Properties.DropDownListStyle = lsFixedList
  1379. Properties.ImmediatePost = True
  1380. Properties.Items.Strings = (
  1381. '1'
  1382. '2'
  1383. '3'
  1384. '4'
  1385. '5'
  1386. '6'
  1387. '7'
  1388. '8'
  1389. '9'
  1390. '10'
  1391. '11'
  1392. '12'
  1393. '13'
  1394. '14'
  1395. '15'
  1396. '16'
  1397. '17'
  1398. '18'
  1399. '19'
  1400. '20'
  1401. '21'
  1402. '22'
  1403. '23'
  1404. '24'
  1405. '25'
  1406. '26'
  1407. '27'
  1408. '28'
  1409. '29'
  1410. '30')
  1411. GroupSummaryAlignment = taCenter
  1412. HeaderAlignmentHorz = taCenter
  1413. HeaderAlignmentVert = vaCenter
  1414. HeaderGlyphAlignmentHorz = taCenter
  1415. Width = 60
  1416. end
  1417. object cxGridColumn23: TcxGridColumn
  1418. Caption = #49884#51089#49884#44033
  1419. PropertiesClassName = 'TcxTextEditProperties'
  1420. Properties.Alignment.Horz = taCenter
  1421. Properties.Alignment.Vert = taVCenter
  1422. GroupSummaryAlignment = taCenter
  1423. HeaderAlignmentHorz = taCenter
  1424. HeaderAlignmentVert = vaCenter
  1425. HeaderGlyphAlignmentHorz = taCenter
  1426. Options.Editing = False
  1427. Width = 80
  1428. end
  1429. object cxGridColumn24: TcxGridColumn
  1430. Caption = #51333#47308#49884#44033
  1431. PropertiesClassName = 'TcxTextEditProperties'
  1432. Properties.Alignment.Horz = taCenter
  1433. Properties.Alignment.Vert = taVCenter
  1434. OnCustomDrawCell = cxGridColumn172CustomDrawCell
  1435. GroupSummaryAlignment = taCenter
  1436. HeaderAlignmentHorz = taCenter
  1437. HeaderAlignmentVert = vaCenter
  1438. HeaderGlyphAlignmentHorz = taCenter
  1439. Options.Editing = False
  1440. Width = 80
  1441. end
  1442. object cxGridColumn25: TcxGridColumn
  1443. Caption = #49324#50857
  1444. PropertiesClassName = 'TcxComboBoxProperties'
  1445. Properties.Alignment.Horz = taCenter
  1446. Properties.Alignment.Vert = taVCenter
  1447. Properties.DropDownListStyle = lsFixedList
  1448. Properties.ImmediatePost = True
  1449. Properties.Items.Strings = (
  1450. 'Y'
  1451. 'N')
  1452. GroupSummaryAlignment = taCenter
  1453. HeaderAlignmentHorz = taCenter
  1454. HeaderAlignmentVert = vaCenter
  1455. HeaderGlyphAlignmentHorz = taCenter
  1456. end
  1457. object cxGridColumn26: TcxGridColumn
  1458. PropertiesClassName = 'TcxTextEditProperties'
  1459. Visible = False
  1460. GroupSummaryAlignment = taCenter
  1461. HeaderAlignmentHorz = taCenter
  1462. HeaderAlignmentVert = vaCenter
  1463. HeaderGlyphAlignmentHorz = taCenter
  1464. end
  1465. object cxGridColumn27: TcxGridColumn
  1466. PropertiesClassName = 'TcxTextEditProperties'
  1467. Visible = False
  1468. GroupSummaryAlignment = taCenter
  1469. HeaderAlignmentHorz = taCenter
  1470. HeaderAlignmentVert = vaCenter
  1471. HeaderGlyphAlignmentHorz = taCenter
  1472. end
  1473. object TvGrid2Column1: TcxGridColumn
  1474. PropertiesClassName = 'TcxTextEditProperties'
  1475. Visible = False
  1476. end
  1477. object TvGrid2Column2: TcxGridColumn
  1478. PropertiesClassName = 'TcxTextEditProperties'
  1479. Visible = False
  1480. end
  1481. object TvGrid2Column3: TcxGridColumn
  1482. PropertiesClassName = 'TcxTextEditProperties'
  1483. Visible = False
  1484. end
  1485. object TvGrid2Column4: TcxGridColumn
  1486. PropertiesClassName = 'TcxTextEditProperties'
  1487. Visible = False
  1488. end
  1489. object TvGrid2Column5: TcxGridColumn
  1490. Caption = 'VMS'#50976#54805#53076#46300
  1491. PropertiesClassName = 'TcxTextEditProperties'
  1492. Properties.Alignment.Horz = taCenter
  1493. Properties.Alignment.Vert = taVCenter
  1494. Visible = False
  1495. VisibleForCustomization = False
  1496. end
  1497. object TvGrid2Column6: TcxGridColumn
  1498. Caption = #54268#49353#49345
  1499. PropertiesClassName = 'TcxTextEditProperties'
  1500. Properties.Alignment.Horz = taCenter
  1501. Properties.Alignment.Vert = taVCenter
  1502. Visible = False
  1503. VisibleForCustomization = False
  1504. end
  1505. object TvGrid2Column7: TcxGridColumn
  1506. Caption = #54268#50976#54805
  1507. PropertiesClassName = 'TcxTextEditProperties'
  1508. Properties.Alignment.Horz = taCenter
  1509. Properties.Alignment.Vert = taVCenter
  1510. Visible = False
  1511. VisibleForCustomization = False
  1512. end
  1513. object TvGrid2Column8: TcxGridColumn
  1514. PropertiesClassName = 'TcxTextEditProperties'
  1515. Visible = False
  1516. VisibleForCustomization = False
  1517. end
  1518. object TvGrid2Column9: TcxGridColumn
  1519. PropertiesClassName = 'TcxTextEditProperties'
  1520. Visible = False
  1521. VisibleForCustomization = False
  1522. end
  1523. object TvGrid2Column10: TcxGridColumn
  1524. PropertiesClassName = 'TcxTextEditProperties'
  1525. Visible = False
  1526. VisibleForCustomization = False
  1527. end
  1528. object TvGrid2Column11: TcxGridColumn
  1529. PropertiesClassName = 'TcxTextEditProperties'
  1530. Visible = False
  1531. VisibleForCustomization = False
  1532. end
  1533. object TvGrid2Column12: TcxGridColumn
  1534. PropertiesClassName = 'TcxLabelProperties'
  1535. Visible = False
  1536. VisibleForCustomization = False
  1537. end
  1538. object TvGrid2Column13: TcxGridColumn
  1539. PropertiesClassName = 'TcxLabelProperties'
  1540. Visible = False
  1541. VisibleForCustomization = False
  1542. end
  1543. end
  1544. object GlGrid2: TcxGridLevel
  1545. GridView = TvGrid2
  1546. end
  1547. end
  1548. end
  1549. object Panel6: TPanel
  1550. Left = 632
  1551. Top = 0
  1552. Width = 95
  1553. Height = 592
  1554. Align = alRight
  1555. BevelOuter = bvNone
  1556. TabOrder = 1
  1557. object BtnListAdd2: TcxButton
  1558. Tag = 2
  1559. Left = 8
  1560. Top = 125
  1561. Width = 80
  1562. Height = 25
  1563. Cursor = crHandPoint
  1564. Hint = #49828#52992#51460' '#52628#44032
  1565. Caption = #9664' '#52628#44032
  1566. Colors.Default = 10737865
  1567. LookAndFeel.NativeStyle = False
  1568. TabOrder = 0
  1569. OnClick = BtnListAdd0Click
  1570. end
  1571. object BtnListDelete2: TcxButton
  1572. Tag = 2
  1573. Left = 8
  1574. Top = 161
  1575. Width = 80
  1576. Height = 25
  1577. Cursor = crHandPoint
  1578. Hint = #49828#52992#51460' '#49325#51228
  1579. Caption = #49325#51228' '#9654
  1580. Colors.Default = 10737865
  1581. LookAndFeel.NativeStyle = False
  1582. TabOrder = 1
  1583. OnClick = BtnListDelete0Click
  1584. end
  1585. end
  1586. object cxGroupBox7: TcxGroupBox
  1587. Left = 727
  1588. Top = 0
  1589. Align = alRight
  1590. Caption = #44277#49324'/'#54665#49324' '#54268
  1591. TabOrder = 2
  1592. Height = 592
  1593. Width = 370
  1594. object CxForm2: TcxGrid
  1595. Left = 3
  1596. Top = 19
  1597. Width = 364
  1598. Height = 563
  1599. Align = alClient
  1600. TabOrder = 0
  1601. object TvForm2: TcxGridTableView
  1602. Tag = 2
  1603. OnCellDblClick = TvFormCellDblClick
  1604. DataController.Summary.DefaultGroupSummaryItems = <>
  1605. DataController.Summary.FooterSummaryItems = <>
  1606. DataController.Summary.SummaryGroups = <>
  1607. OptionsCustomize.ColumnFiltering = False
  1608. OptionsSelection.HideFocusRectOnExit = False
  1609. OptionsSelection.HideSelection = True
  1610. OptionsView.DataRowHeight = 64
  1611. OptionsView.GroupByBox = False
  1612. object cxGridColumn28: TcxGridColumn
  1613. Caption = #54268' ID'
  1614. PropertiesClassName = 'TcxLabelProperties'
  1615. Properties.Alignment.Horz = taCenter
  1616. Properties.Alignment.Vert = taVCenter
  1617. GroupSummaryAlignment = taCenter
  1618. HeaderAlignmentHorz = taCenter
  1619. HeaderAlignmentVert = vaCenter
  1620. HeaderGlyphAlignmentHorz = taCenter
  1621. Options.Editing = False
  1622. Width = 55
  1623. end
  1624. object cxGridColumn29: TcxGridColumn
  1625. Caption = #54268' '#47112#51060#50500#50883
  1626. DataBinding.ValueType = 'Variant'
  1627. PropertiesClassName = 'TcxImageProperties'
  1628. Properties.GraphicClassName = 'TdxSmartImage'
  1629. GroupSummaryAlignment = taCenter
  1630. HeaderAlignmentHorz = taCenter
  1631. HeaderAlignmentVert = vaCenter
  1632. HeaderGlyphAlignmentHorz = taCenter
  1633. Options.Editing = False
  1634. Width = 347
  1635. end
  1636. object cxGridColumn30: TcxGridColumn
  1637. PropertiesClassName = 'TcxLabelProperties'
  1638. Visible = False
  1639. GroupSummaryAlignment = taCenter
  1640. HeaderAlignmentHorz = taCenter
  1641. HeaderAlignmentVert = vaCenter
  1642. HeaderGlyphAlignmentHorz = taCenter
  1643. end
  1644. object cxGridColumn31: TcxGridColumn
  1645. PropertiesClassName = 'TcxLabelProperties'
  1646. Properties.Alignment.Vert = taVCenter
  1647. Visible = False
  1648. GroupSummaryAlignment = taCenter
  1649. HeaderAlignmentHorz = taCenter
  1650. HeaderAlignmentVert = vaCenter
  1651. HeaderGlyphAlignmentHorz = taCenter
  1652. IsCaptionAssigned = True
  1653. end
  1654. object cxGridColumn32: TcxGridColumn
  1655. PropertiesClassName = 'TcxLabelProperties'
  1656. Visible = False
  1657. GroupSummaryAlignment = taCenter
  1658. HeaderAlignmentHorz = taCenter
  1659. HeaderAlignmentVert = vaCenter
  1660. HeaderGlyphAlignmentHorz = taCenter
  1661. end
  1662. object cxGridColumn33: TcxGridColumn
  1663. PropertiesClassName = 'TcxLabelProperties'
  1664. Visible = False
  1665. GroupSummaryAlignment = taCenter
  1666. HeaderAlignmentHorz = taCenter
  1667. HeaderAlignmentVert = vaCenter
  1668. HeaderGlyphAlignmentHorz = taCenter
  1669. end
  1670. object cxGridColumn34: TcxGridColumn
  1671. PropertiesClassName = 'TcxLabelProperties'
  1672. Visible = False
  1673. GroupSummaryAlignment = taCenter
  1674. HeaderAlignmentHorz = taCenter
  1675. HeaderAlignmentVert = vaCenter
  1676. HeaderGlyphAlignmentHorz = taCenter
  1677. end
  1678. object cxGridColumn35: TcxGridColumn
  1679. PropertiesClassName = 'TcxLabelProperties'
  1680. Visible = False
  1681. GroupSummaryAlignment = taCenter
  1682. HeaderAlignmentHorz = taCenter
  1683. HeaderAlignmentVert = vaCenter
  1684. HeaderGlyphAlignmentHorz = taCenter
  1685. end
  1686. object cxGridColumn36: TcxGridColumn
  1687. PropertiesClassName = 'TcxLabelProperties'
  1688. Visible = False
  1689. GroupSummaryAlignment = taCenter
  1690. HeaderAlignmentHorz = taCenter
  1691. HeaderAlignmentVert = vaCenter
  1692. HeaderGlyphAlignmentHorz = taCenter
  1693. end
  1694. object TvForm2Column1: TcxGridColumn
  1695. Caption = #54268#47749#52845
  1696. PropertiesClassName = 'TcxLabelProperties'
  1697. Properties.Alignment.Vert = taVCenter
  1698. HeaderAlignmentHorz = taCenter
  1699. HeaderAlignmentVert = vaCenter
  1700. end
  1701. end
  1702. object GlForm2: TcxGridLevel
  1703. GridView = TvForm2
  1704. end
  1705. end
  1706. end
  1707. end
  1708. end
  1709. object TabSheet3: TcxTabSheet
  1710. Tag = 3
  1711. Caption = ' '#54861#48372' '
  1712. ImageIndex = 0
  1713. object PnlHongbo: TPanel
  1714. Left = 0
  1715. Top = 0
  1716. Width = 1097
  1717. Height = 592
  1718. Align = alClient
  1719. BevelOuter = bvNone
  1720. TabOrder = 0
  1721. object cxGroupBox8: TcxGroupBox
  1722. Left = 0
  1723. Top = 0
  1724. Align = alClient
  1725. Caption = #54861#48372' '#49828#52992#51460
  1726. TabOrder = 0
  1727. Height = 592
  1728. Width = 632
  1729. object CxGrid3: TcxGrid
  1730. Left = 3
  1731. Top = 19
  1732. Width = 626
  1733. Height = 563
  1734. Align = alClient
  1735. TabOrder = 0
  1736. object TvGrid3: TcxGridTableView
  1737. Tag = 3
  1738. OnCellDblClick = TvGridCellDblClick
  1739. DataController.Summary.DefaultGroupSummaryItems = <>
  1740. DataController.Summary.FooterSummaryItems = <>
  1741. DataController.Summary.SummaryGroups = <>
  1742. OptionsCustomize.ColumnFiltering = False
  1743. OptionsData.CancelOnExit = False
  1744. OptionsData.Deleting = False
  1745. OptionsData.DeletingConfirmation = False
  1746. OptionsData.Inserting = False
  1747. OptionsSelection.HideFocusRectOnExit = False
  1748. OptionsSelection.HideSelection = True
  1749. OptionsView.ColumnAutoWidth = True
  1750. OptionsView.DataRowHeight = 64
  1751. OptionsView.GroupByBox = False
  1752. object cxGridColumn37: TcxGridColumn
  1753. Caption = #54268' ID'
  1754. PropertiesClassName = 'TcxLabelProperties'
  1755. Properties.Alignment.Horz = taCenter
  1756. Properties.Alignment.Vert = taVCenter
  1757. GroupSummaryAlignment = taCenter
  1758. HeaderAlignmentHorz = taCenter
  1759. HeaderAlignmentVert = vaCenter
  1760. HeaderGlyphAlignmentHorz = taCenter
  1761. Width = 55
  1762. end
  1763. object cxGridColumn38: TcxGridColumn
  1764. Caption = #54268' '#47112#51060#50500#50883
  1765. DataBinding.ValueType = 'Variant'
  1766. PropertiesClassName = 'TcxImageProperties'
  1767. Properties.GraphicClassName = 'TdxSmartImage'
  1768. GroupSummaryAlignment = taCenter
  1769. HeaderAlignmentHorz = taCenter
  1770. HeaderAlignmentVert = vaCenter
  1771. HeaderGlyphAlignmentHorz = taCenter
  1772. Width = 330
  1773. end
  1774. object cxGridColumn39: TcxGridColumn
  1775. Caption = #51228#44277#44396#44036
  1776. PropertiesClassName = 'TcxLabelProperties'
  1777. Properties.Alignment.Horz = taCenter
  1778. Properties.Alignment.Vert = taVCenter
  1779. Visible = False
  1780. GroupSummaryAlignment = taCenter
  1781. HeaderAlignmentHorz = taCenter
  1782. HeaderAlignmentVert = vaCenter
  1783. HeaderGlyphAlignmentHorz = taCenter
  1784. VisibleForCustomization = False
  1785. Width = 60
  1786. end
  1787. object cxGridColumn40: TcxGridColumn
  1788. Caption = #54364#52636'('#52488')'
  1789. PropertiesClassName = 'TcxComboBoxProperties'
  1790. Properties.Alignment.Horz = taCenter
  1791. Properties.Alignment.Vert = taVCenter
  1792. Properties.DropDownListStyle = lsFixedList
  1793. Properties.ImmediatePost = True
  1794. Properties.Items.Strings = (
  1795. '1'
  1796. '2'
  1797. '3'
  1798. '4'
  1799. '5'
  1800. '6'
  1801. '7'
  1802. '8'
  1803. '9'
  1804. '10'
  1805. '11'
  1806. '12'
  1807. '13'
  1808. '14'
  1809. '15'
  1810. '16'
  1811. '17'
  1812. '18'
  1813. '19'
  1814. '20'
  1815. '21'
  1816. '22'
  1817. '23'
  1818. '24'
  1819. '25'
  1820. '26'
  1821. '27'
  1822. '28'
  1823. '29'
  1824. '30')
  1825. GroupSummaryAlignment = taCenter
  1826. HeaderAlignmentHorz = taCenter
  1827. HeaderAlignmentVert = vaCenter
  1828. HeaderGlyphAlignmentHorz = taCenter
  1829. Width = 60
  1830. end
  1831. object cxGridColumn41: TcxGridColumn
  1832. Caption = #49884#51089#49884#44033
  1833. PropertiesClassName = 'TcxTextEditProperties'
  1834. Properties.Alignment.Horz = taCenter
  1835. Properties.Alignment.Vert = taVCenter
  1836. GroupSummaryAlignment = taCenter
  1837. HeaderAlignmentHorz = taCenter
  1838. HeaderAlignmentVert = vaCenter
  1839. HeaderGlyphAlignmentHorz = taCenter
  1840. Options.Editing = False
  1841. Width = 80
  1842. end
  1843. object cxGridColumn42: TcxGridColumn
  1844. Caption = #51333#47308#49884#44033
  1845. PropertiesClassName = 'TcxTextEditProperties'
  1846. Properties.Alignment.Horz = taCenter
  1847. Properties.Alignment.Vert = taVCenter
  1848. OnCustomDrawCell = cxGridColumn172CustomDrawCell
  1849. GroupSummaryAlignment = taCenter
  1850. HeaderAlignmentHorz = taCenter
  1851. HeaderAlignmentVert = vaCenter
  1852. HeaderGlyphAlignmentHorz = taCenter
  1853. Options.Editing = False
  1854. Width = 80
  1855. end
  1856. object cxGridColumn43: TcxGridColumn
  1857. Caption = #49324#50857
  1858. PropertiesClassName = 'TcxComboBoxProperties'
  1859. Properties.Alignment.Horz = taCenter
  1860. Properties.Alignment.Vert = taVCenter
  1861. Properties.DropDownListStyle = lsFixedList
  1862. Properties.ImmediatePost = True
  1863. Properties.Items.Strings = (
  1864. 'Y'
  1865. 'N')
  1866. GroupSummaryAlignment = taCenter
  1867. HeaderAlignmentHorz = taCenter
  1868. HeaderAlignmentVert = vaCenter
  1869. HeaderGlyphAlignmentHorz = taCenter
  1870. end
  1871. object cxGridColumn44: TcxGridColumn
  1872. PropertiesClassName = 'TcxTextEditProperties'
  1873. Visible = False
  1874. GroupSummaryAlignment = taCenter
  1875. HeaderAlignmentHorz = taCenter
  1876. HeaderAlignmentVert = vaCenter
  1877. HeaderGlyphAlignmentHorz = taCenter
  1878. end
  1879. object cxGridColumn45: TcxGridColumn
  1880. PropertiesClassName = 'TcxTextEditProperties'
  1881. Visible = False
  1882. GroupSummaryAlignment = taCenter
  1883. HeaderAlignmentHorz = taCenter
  1884. HeaderAlignmentVert = vaCenter
  1885. HeaderGlyphAlignmentHorz = taCenter
  1886. end
  1887. object TvGrid3Column1: TcxGridColumn
  1888. PropertiesClassName = 'TcxTextEditProperties'
  1889. Visible = False
  1890. end
  1891. object TvGrid3Column2: TcxGridColumn
  1892. PropertiesClassName = 'TcxTextEditProperties'
  1893. Visible = False
  1894. end
  1895. object TvGrid3Column3: TcxGridColumn
  1896. PropertiesClassName = 'TcxTextEditProperties'
  1897. Visible = False
  1898. end
  1899. object TvGrid3Column4: TcxGridColumn
  1900. PropertiesClassName = 'TcxTextEditProperties'
  1901. Visible = False
  1902. end
  1903. object TvGrid3Column5: TcxGridColumn
  1904. Caption = 'VMS'#50976#54805#53076#46300
  1905. PropertiesClassName = 'TcxTextEditProperties'
  1906. Properties.Alignment.Horz = taCenter
  1907. Properties.Alignment.Vert = taVCenter
  1908. Visible = False
  1909. VisibleForCustomization = False
  1910. end
  1911. object TvGrid3Column6: TcxGridColumn
  1912. Caption = #54268#49353#49345
  1913. PropertiesClassName = 'TcxTextEditProperties'
  1914. Properties.Alignment.Horz = taCenter
  1915. Properties.Alignment.Vert = taVCenter
  1916. Visible = False
  1917. VisibleForCustomization = False
  1918. end
  1919. object TvGrid3Column7: TcxGridColumn
  1920. Caption = #54268#50976#54805
  1921. PropertiesClassName = 'TcxTextEditProperties'
  1922. Properties.Alignment.Horz = taCenter
  1923. Properties.Alignment.Vert = taVCenter
  1924. Visible = False
  1925. VisibleForCustomization = False
  1926. end
  1927. object TvGrid3Column8: TcxGridColumn
  1928. PropertiesClassName = 'TcxTextEditProperties'
  1929. Visible = False
  1930. VisibleForCustomization = False
  1931. end
  1932. object TvGrid3Column9: TcxGridColumn
  1933. PropertiesClassName = 'TcxTextEditProperties'
  1934. Visible = False
  1935. VisibleForCustomization = False
  1936. end
  1937. object TvGrid3Column10: TcxGridColumn
  1938. PropertiesClassName = 'TcxTextEditProperties'
  1939. Visible = False
  1940. VisibleForCustomization = False
  1941. end
  1942. object TvGrid3Column11: TcxGridColumn
  1943. PropertiesClassName = 'TcxTextEditProperties'
  1944. Visible = False
  1945. VisibleForCustomization = False
  1946. end
  1947. object TvGrid3Column12: TcxGridColumn
  1948. PropertiesClassName = 'TcxLabelProperties'
  1949. Visible = False
  1950. VisibleForCustomization = False
  1951. end
  1952. object TvGrid3Column13: TcxGridColumn
  1953. PropertiesClassName = 'TcxLabelProperties'
  1954. Visible = False
  1955. VisibleForCustomization = False
  1956. end
  1957. end
  1958. object GlGrid3: TcxGridLevel
  1959. GridView = TvGrid3
  1960. end
  1961. end
  1962. end
  1963. object Panel7: TPanel
  1964. Left = 632
  1965. Top = 0
  1966. Width = 95
  1967. Height = 592
  1968. Align = alRight
  1969. BevelOuter = bvNone
  1970. TabOrder = 1
  1971. object BtnListAdd3: TcxButton
  1972. Tag = 3
  1973. Left = 8
  1974. Top = 125
  1975. Width = 80
  1976. Height = 25
  1977. Cursor = crHandPoint
  1978. Hint = #49828#52992#51460' '#52628#44032
  1979. Caption = #9664' '#52628#44032
  1980. Colors.Default = 10737865
  1981. LookAndFeel.NativeStyle = False
  1982. TabOrder = 0
  1983. OnClick = BtnListAdd0Click
  1984. end
  1985. object BtnListDelete3: TcxButton
  1986. Tag = 3
  1987. Left = 8
  1988. Top = 161
  1989. Width = 80
  1990. Height = 25
  1991. Cursor = crHandPoint
  1992. Hint = #49828#52992#51460' '#49325#51228
  1993. Caption = #49325#51228' '#9654
  1994. Colors.Default = 10737865
  1995. LookAndFeel.NativeStyle = False
  1996. TabOrder = 1
  1997. OnClick = BtnListDelete0Click
  1998. end
  1999. end
  2000. object cxGroupBox9: TcxGroupBox
  2001. Left = 727
  2002. Top = 0
  2003. Align = alRight
  2004. Caption = #54861#48372' '#54268
  2005. TabOrder = 2
  2006. Height = 592
  2007. Width = 370
  2008. object CxForm3: TcxGrid
  2009. Left = 3
  2010. Top = 19
  2011. Width = 364
  2012. Height = 563
  2013. Align = alClient
  2014. TabOrder = 0
  2015. object TvForm3: TcxGridTableView
  2016. Tag = 3
  2017. OnCellDblClick = TvFormCellDblClick
  2018. DataController.Summary.DefaultGroupSummaryItems = <>
  2019. DataController.Summary.FooterSummaryItems = <>
  2020. DataController.Summary.SummaryGroups = <>
  2021. OptionsCustomize.ColumnFiltering = False
  2022. OptionsSelection.HideFocusRectOnExit = False
  2023. OptionsSelection.HideSelection = True
  2024. OptionsView.DataRowHeight = 64
  2025. OptionsView.GroupByBox = False
  2026. object cxGridColumn46: TcxGridColumn
  2027. Caption = #54268' ID'
  2028. PropertiesClassName = 'TcxLabelProperties'
  2029. Properties.Alignment.Horz = taCenter
  2030. Properties.Alignment.Vert = taVCenter
  2031. GroupSummaryAlignment = taCenter
  2032. HeaderAlignmentHorz = taCenter
  2033. HeaderAlignmentVert = vaCenter
  2034. HeaderGlyphAlignmentHorz = taCenter
  2035. Options.Editing = False
  2036. Width = 55
  2037. end
  2038. object cxGridColumn47: TcxGridColumn
  2039. Caption = #54268' '#47112#51060#50500#50883
  2040. DataBinding.ValueType = 'Variant'
  2041. PropertiesClassName = 'TcxImageProperties'
  2042. Properties.GraphicClassName = 'TdxSmartImage'
  2043. GroupSummaryAlignment = taCenter
  2044. HeaderAlignmentHorz = taCenter
  2045. HeaderAlignmentVert = vaCenter
  2046. HeaderGlyphAlignmentHorz = taCenter
  2047. Options.Editing = False
  2048. Width = 347
  2049. end
  2050. object cxGridColumn48: TcxGridColumn
  2051. PropertiesClassName = 'TcxLabelProperties'
  2052. Visible = False
  2053. GroupSummaryAlignment = taCenter
  2054. HeaderAlignmentHorz = taCenter
  2055. HeaderAlignmentVert = vaCenter
  2056. HeaderGlyphAlignmentHorz = taCenter
  2057. end
  2058. object cxGridColumn49: TcxGridColumn
  2059. PropertiesClassName = 'TcxLabelProperties'
  2060. Properties.Alignment.Vert = taVCenter
  2061. Visible = False
  2062. GroupSummaryAlignment = taCenter
  2063. HeaderAlignmentHorz = taCenter
  2064. HeaderAlignmentVert = vaCenter
  2065. HeaderGlyphAlignmentHorz = taCenter
  2066. IsCaptionAssigned = True
  2067. end
  2068. object cxGridColumn50: TcxGridColumn
  2069. PropertiesClassName = 'TcxLabelProperties'
  2070. Visible = False
  2071. GroupSummaryAlignment = taCenter
  2072. HeaderAlignmentHorz = taCenter
  2073. HeaderAlignmentVert = vaCenter
  2074. HeaderGlyphAlignmentHorz = taCenter
  2075. end
  2076. object cxGridColumn51: TcxGridColumn
  2077. PropertiesClassName = 'TcxLabelProperties'
  2078. Visible = False
  2079. GroupSummaryAlignment = taCenter
  2080. HeaderAlignmentHorz = taCenter
  2081. HeaderAlignmentVert = vaCenter
  2082. HeaderGlyphAlignmentHorz = taCenter
  2083. end
  2084. object cxGridColumn52: TcxGridColumn
  2085. PropertiesClassName = 'TcxLabelProperties'
  2086. Visible = False
  2087. GroupSummaryAlignment = taCenter
  2088. HeaderAlignmentHorz = taCenter
  2089. HeaderAlignmentVert = vaCenter
  2090. HeaderGlyphAlignmentHorz = taCenter
  2091. end
  2092. object cxGridColumn53: TcxGridColumn
  2093. PropertiesClassName = 'TcxLabelProperties'
  2094. Visible = False
  2095. GroupSummaryAlignment = taCenter
  2096. HeaderAlignmentHorz = taCenter
  2097. HeaderAlignmentVert = vaCenter
  2098. HeaderGlyphAlignmentHorz = taCenter
  2099. end
  2100. object cxGridColumn54: TcxGridColumn
  2101. PropertiesClassName = 'TcxLabelProperties'
  2102. Visible = False
  2103. GroupSummaryAlignment = taCenter
  2104. HeaderAlignmentHorz = taCenter
  2105. HeaderAlignmentVert = vaCenter
  2106. HeaderGlyphAlignmentHorz = taCenter
  2107. end
  2108. object TvForm3Column1: TcxGridColumn
  2109. Caption = #54268#47749#52845
  2110. PropertiesClassName = 'TcxLabelProperties'
  2111. Properties.Alignment.Vert = taVCenter
  2112. HeaderAlignmentHorz = taCenter
  2113. HeaderAlignmentVert = vaCenter
  2114. end
  2115. end
  2116. object GlForm3: TcxGridLevel
  2117. GridView = TvForm3
  2118. end
  2119. end
  2120. end
  2121. end
  2122. end
  2123. object TabSheet4: TcxTabSheet
  2124. Tag = 4
  2125. Caption = ' '#50864#54924#46020#47196' '
  2126. ImageIndex = 4
  2127. object PnlDeture: TPanel
  2128. Left = 0
  2129. Top = 0
  2130. Width = 1097
  2131. Height = 592
  2132. Align = alClient
  2133. BevelOuter = bvNone
  2134. TabOrder = 0
  2135. object cxGroupBox10: TcxGroupBox
  2136. Left = 0
  2137. Top = 0
  2138. Align = alClient
  2139. Caption = #50864#54924#46020#47196' '#49828#52992#51460
  2140. TabOrder = 0
  2141. Height = 592
  2142. Width = 632
  2143. object CxGrid4: TcxGrid
  2144. Left = 3
  2145. Top = 19
  2146. Width = 626
  2147. Height = 563
  2148. Align = alClient
  2149. TabOrder = 0
  2150. object TvGrid4: TcxGridTableView
  2151. Tag = 4
  2152. OnCellDblClick = TvGridCellDblClick
  2153. DataController.Summary.DefaultGroupSummaryItems = <>
  2154. DataController.Summary.FooterSummaryItems = <>
  2155. DataController.Summary.SummaryGroups = <>
  2156. OptionsCustomize.ColumnFiltering = False
  2157. OptionsData.CancelOnExit = False
  2158. OptionsData.Deleting = False
  2159. OptionsData.DeletingConfirmation = False
  2160. OptionsData.Inserting = False
  2161. OptionsSelection.HideFocusRectOnExit = False
  2162. OptionsSelection.HideSelection = True
  2163. OptionsView.ColumnAutoWidth = True
  2164. OptionsView.DataRowHeight = 64
  2165. OptionsView.GroupByBox = False
  2166. object cxGridColumn55: TcxGridColumn
  2167. Caption = #54268' ID'
  2168. PropertiesClassName = 'TcxLabelProperties'
  2169. Properties.Alignment.Horz = taCenter
  2170. Properties.Alignment.Vert = taVCenter
  2171. GroupSummaryAlignment = taCenter
  2172. HeaderAlignmentHorz = taCenter
  2173. HeaderAlignmentVert = vaCenter
  2174. HeaderGlyphAlignmentHorz = taCenter
  2175. Width = 55
  2176. end
  2177. object cxGridColumn56: TcxGridColumn
  2178. Caption = #54268' '#47112#51060#50500#50883
  2179. DataBinding.ValueType = 'Variant'
  2180. PropertiesClassName = 'TcxImageProperties'
  2181. Properties.GraphicClassName = 'TdxSmartImage'
  2182. GroupSummaryAlignment = taCenter
  2183. HeaderAlignmentHorz = taCenter
  2184. HeaderAlignmentVert = vaCenter
  2185. HeaderGlyphAlignmentHorz = taCenter
  2186. Width = 330
  2187. end
  2188. object cxGridColumn57: TcxGridColumn
  2189. Caption = #51228#44277#44396#44036
  2190. PropertiesClassName = 'TcxLabelProperties'
  2191. Properties.Alignment.Horz = taCenter
  2192. Properties.Alignment.Vert = taVCenter
  2193. Visible = False
  2194. GroupSummaryAlignment = taCenter
  2195. HeaderAlignmentHorz = taCenter
  2196. HeaderAlignmentVert = vaCenter
  2197. HeaderGlyphAlignmentHorz = taCenter
  2198. VisibleForCustomization = False
  2199. Width = 60
  2200. end
  2201. object cxGridColumn58: TcxGridColumn
  2202. Caption = #54364#52636'('#52488')'
  2203. PropertiesClassName = 'TcxComboBoxProperties'
  2204. Properties.Alignment.Horz = taCenter
  2205. Properties.Alignment.Vert = taVCenter
  2206. Properties.DropDownListStyle = lsFixedList
  2207. Properties.ImmediatePost = True
  2208. Properties.Items.Strings = (
  2209. '1'
  2210. '2'
  2211. '3'
  2212. '4'
  2213. '5'
  2214. '6'
  2215. '7'
  2216. '8'
  2217. '9'
  2218. '10'
  2219. '11'
  2220. '12'
  2221. '13'
  2222. '14'
  2223. '15'
  2224. '16'
  2225. '17'
  2226. '18'
  2227. '19'
  2228. '20'
  2229. '21'
  2230. '22'
  2231. '23'
  2232. '24'
  2233. '25'
  2234. '26'
  2235. '27'
  2236. '28'
  2237. '29'
  2238. '30')
  2239. GroupSummaryAlignment = taCenter
  2240. HeaderAlignmentHorz = taCenter
  2241. HeaderAlignmentVert = vaCenter
  2242. HeaderGlyphAlignmentHorz = taCenter
  2243. Width = 60
  2244. end
  2245. object cxGridColumn59: TcxGridColumn
  2246. Caption = #49884#51089#49884#44033
  2247. PropertiesClassName = 'TcxTextEditProperties'
  2248. Properties.Alignment.Horz = taCenter
  2249. Properties.Alignment.Vert = taVCenter
  2250. GroupSummaryAlignment = taCenter
  2251. HeaderAlignmentHorz = taCenter
  2252. HeaderAlignmentVert = vaCenter
  2253. HeaderGlyphAlignmentHorz = taCenter
  2254. Options.Editing = False
  2255. Width = 80
  2256. end
  2257. object cxGridColumn60: TcxGridColumn
  2258. Caption = #51333#47308#49884#44033
  2259. PropertiesClassName = 'TcxTextEditProperties'
  2260. Properties.Alignment.Horz = taCenter
  2261. Properties.Alignment.Vert = taVCenter
  2262. OnCustomDrawCell = cxGridColumn172CustomDrawCell
  2263. GroupSummaryAlignment = taCenter
  2264. HeaderAlignmentHorz = taCenter
  2265. HeaderAlignmentVert = vaCenter
  2266. HeaderGlyphAlignmentHorz = taCenter
  2267. Options.Editing = False
  2268. Width = 80
  2269. end
  2270. object cxGridColumn61: TcxGridColumn
  2271. Caption = #49324#50857
  2272. PropertiesClassName = 'TcxComboBoxProperties'
  2273. Properties.Alignment.Horz = taCenter
  2274. Properties.Alignment.Vert = taVCenter
  2275. Properties.DropDownListStyle = lsFixedList
  2276. Properties.ImmediatePost = True
  2277. Properties.Items.Strings = (
  2278. 'Y'
  2279. 'N')
  2280. GroupSummaryAlignment = taCenter
  2281. HeaderAlignmentHorz = taCenter
  2282. HeaderAlignmentVert = vaCenter
  2283. HeaderGlyphAlignmentHorz = taCenter
  2284. end
  2285. object cxGridColumn62: TcxGridColumn
  2286. PropertiesClassName = 'TcxTextEditProperties'
  2287. Visible = False
  2288. GroupSummaryAlignment = taCenter
  2289. HeaderAlignmentHorz = taCenter
  2290. HeaderAlignmentVert = vaCenter
  2291. HeaderGlyphAlignmentHorz = taCenter
  2292. end
  2293. object cxGridColumn63: TcxGridColumn
  2294. PropertiesClassName = 'TcxTextEditProperties'
  2295. Visible = False
  2296. GroupSummaryAlignment = taCenter
  2297. HeaderAlignmentHorz = taCenter
  2298. HeaderAlignmentVert = vaCenter
  2299. HeaderGlyphAlignmentHorz = taCenter
  2300. end
  2301. object TvGrid4Column1: TcxGridColumn
  2302. PropertiesClassName = 'TcxTextEditProperties'
  2303. Visible = False
  2304. end
  2305. object TvGrid4Column2: TcxGridColumn
  2306. PropertiesClassName = 'TcxTextEditProperties'
  2307. Visible = False
  2308. end
  2309. object TvGrid4Column3: TcxGridColumn
  2310. PropertiesClassName = 'TcxTextEditProperties'
  2311. Visible = False
  2312. end
  2313. object TvGrid4Column4: TcxGridColumn
  2314. PropertiesClassName = 'TcxTextEditProperties'
  2315. Visible = False
  2316. end
  2317. object TvGrid4Column5: TcxGridColumn
  2318. Caption = 'VMS'#50976#54805#53076#46300
  2319. PropertiesClassName = 'TcxTextEditProperties'
  2320. Properties.Alignment.Horz = taCenter
  2321. Properties.Alignment.Vert = taVCenter
  2322. Visible = False
  2323. VisibleForCustomization = False
  2324. end
  2325. object TvGrid4Column6: TcxGridColumn
  2326. Caption = #54268#49353#49345
  2327. PropertiesClassName = 'TcxTextEditProperties'
  2328. Properties.Alignment.Horz = taCenter
  2329. Properties.Alignment.Vert = taVCenter
  2330. Visible = False
  2331. VisibleForCustomization = False
  2332. end
  2333. object TvGrid4Column7: TcxGridColumn
  2334. Caption = #54268#50976#54805
  2335. PropertiesClassName = 'TcxTextEditProperties'
  2336. Properties.Alignment.Horz = taCenter
  2337. Properties.Alignment.Vert = taVCenter
  2338. Visible = False
  2339. VisibleForCustomization = False
  2340. end
  2341. object TvGrid4Column8: TcxGridColumn
  2342. PropertiesClassName = 'TcxTextEditProperties'
  2343. Visible = False
  2344. VisibleForCustomization = False
  2345. end
  2346. object TvGrid4Column9: TcxGridColumn
  2347. PropertiesClassName = 'TcxTextEditProperties'
  2348. Visible = False
  2349. VisibleForCustomization = False
  2350. end
  2351. object TvGrid4Column10: TcxGridColumn
  2352. PropertiesClassName = 'TcxTextEditProperties'
  2353. Visible = False
  2354. VisibleForCustomization = False
  2355. end
  2356. object TvGrid4Column11: TcxGridColumn
  2357. PropertiesClassName = 'TcxTextEditProperties'
  2358. Visible = False
  2359. VisibleForCustomization = False
  2360. end
  2361. object TvGrid4Column12: TcxGridColumn
  2362. PropertiesClassName = 'TcxLabelProperties'
  2363. Visible = False
  2364. VisibleForCustomization = False
  2365. end
  2366. object TvGrid4Column13: TcxGridColumn
  2367. PropertiesClassName = 'TcxLabelProperties'
  2368. Visible = False
  2369. VisibleForCustomization = False
  2370. end
  2371. end
  2372. object GlGrid4: TcxGridLevel
  2373. GridView = TvGrid4
  2374. end
  2375. end
  2376. end
  2377. object Panel8: TPanel
  2378. Left = 632
  2379. Top = 0
  2380. Width = 95
  2381. Height = 592
  2382. Align = alRight
  2383. BevelOuter = bvNone
  2384. TabOrder = 1
  2385. object BtnListAdd4: TcxButton
  2386. Tag = 4
  2387. Left = 8
  2388. Top = 125
  2389. Width = 80
  2390. Height = 25
  2391. Cursor = crHandPoint
  2392. Hint = #49828#52992#51460' '#52628#44032
  2393. Caption = #9664' '#52628#44032
  2394. Colors.Default = 10737865
  2395. LookAndFeel.NativeStyle = False
  2396. TabOrder = 0
  2397. OnClick = BtnListAdd0Click
  2398. end
  2399. object BtnListDelete4: TcxButton
  2400. Tag = 4
  2401. Left = 8
  2402. Top = 161
  2403. Width = 80
  2404. Height = 25
  2405. Cursor = crHandPoint
  2406. Hint = #49828#52992#51460' '#49325#51228
  2407. Caption = #49325#51228' '#9654
  2408. Colors.Default = 10737865
  2409. LookAndFeel.NativeStyle = False
  2410. TabOrder = 1
  2411. OnClick = BtnListDelete0Click
  2412. end
  2413. end
  2414. object cxGroupBox11: TcxGroupBox
  2415. Left = 727
  2416. Top = 0
  2417. Align = alRight
  2418. Caption = #50864#54924#46020#47196' '#54268
  2419. TabOrder = 2
  2420. Height = 592
  2421. Width = 370
  2422. object CxForm4: TcxGrid
  2423. Left = 3
  2424. Top = 19
  2425. Width = 364
  2426. Height = 563
  2427. Align = alClient
  2428. TabOrder = 0
  2429. object TvForm4: TcxGridTableView
  2430. Tag = 4
  2431. OnCellDblClick = TvFormCellDblClick
  2432. DataController.Summary.DefaultGroupSummaryItems = <>
  2433. DataController.Summary.FooterSummaryItems = <>
  2434. DataController.Summary.SummaryGroups = <>
  2435. OptionsCustomize.ColumnFiltering = False
  2436. OptionsSelection.HideFocusRectOnExit = False
  2437. OptionsSelection.HideSelection = True
  2438. OptionsView.DataRowHeight = 64
  2439. OptionsView.GroupByBox = False
  2440. object cxGridColumn64: TcxGridColumn
  2441. Caption = #54268' ID'
  2442. PropertiesClassName = 'TcxLabelProperties'
  2443. Properties.Alignment.Horz = taCenter
  2444. Properties.Alignment.Vert = taVCenter
  2445. GroupSummaryAlignment = taCenter
  2446. HeaderAlignmentHorz = taCenter
  2447. HeaderAlignmentVert = vaCenter
  2448. HeaderGlyphAlignmentHorz = taCenter
  2449. Options.Editing = False
  2450. Width = 55
  2451. end
  2452. object cxGridColumn65: TcxGridColumn
  2453. Caption = #54268' '#47112#51060#50500#50883
  2454. DataBinding.ValueType = 'Variant'
  2455. PropertiesClassName = 'TcxImageProperties'
  2456. Properties.GraphicClassName = 'TdxSmartImage'
  2457. GroupSummaryAlignment = taCenter
  2458. HeaderAlignmentHorz = taCenter
  2459. HeaderAlignmentVert = vaCenter
  2460. HeaderGlyphAlignmentHorz = taCenter
  2461. Options.Editing = False
  2462. Width = 330
  2463. end
  2464. object cxGridColumn66: TcxGridColumn
  2465. PropertiesClassName = 'TcxLabelProperties'
  2466. Visible = False
  2467. GroupSummaryAlignment = taCenter
  2468. HeaderAlignmentHorz = taCenter
  2469. HeaderAlignmentVert = vaCenter
  2470. HeaderGlyphAlignmentHorz = taCenter
  2471. end
  2472. object cxGridColumn67: TcxGridColumn
  2473. PropertiesClassName = 'TcxLabelProperties'
  2474. Properties.Alignment.Vert = taVCenter
  2475. Visible = False
  2476. GroupSummaryAlignment = taCenter
  2477. HeaderAlignmentHorz = taCenter
  2478. HeaderAlignmentVert = vaCenter
  2479. HeaderGlyphAlignmentHorz = taCenter
  2480. IsCaptionAssigned = True
  2481. end
  2482. object cxGridColumn68: TcxGridColumn
  2483. PropertiesClassName = 'TcxLabelProperties'
  2484. Visible = False
  2485. GroupSummaryAlignment = taCenter
  2486. HeaderAlignmentHorz = taCenter
  2487. HeaderAlignmentVert = vaCenter
  2488. HeaderGlyphAlignmentHorz = taCenter
  2489. end
  2490. object cxGridColumn69: TcxGridColumn
  2491. PropertiesClassName = 'TcxLabelProperties'
  2492. Visible = False
  2493. GroupSummaryAlignment = taCenter
  2494. HeaderAlignmentHorz = taCenter
  2495. HeaderAlignmentVert = vaCenter
  2496. HeaderGlyphAlignmentHorz = taCenter
  2497. end
  2498. object cxGridColumn70: TcxGridColumn
  2499. PropertiesClassName = 'TcxLabelProperties'
  2500. Visible = False
  2501. GroupSummaryAlignment = taCenter
  2502. HeaderAlignmentHorz = taCenter
  2503. HeaderAlignmentVert = vaCenter
  2504. HeaderGlyphAlignmentHorz = taCenter
  2505. end
  2506. object cxGridColumn71: TcxGridColumn
  2507. PropertiesClassName = 'TcxLabelProperties'
  2508. Visible = False
  2509. GroupSummaryAlignment = taCenter
  2510. HeaderAlignmentHorz = taCenter
  2511. HeaderAlignmentVert = vaCenter
  2512. HeaderGlyphAlignmentHorz = taCenter
  2513. end
  2514. object cxGridColumn72: TcxGridColumn
  2515. PropertiesClassName = 'TcxLabelProperties'
  2516. Visible = False
  2517. GroupSummaryAlignment = taCenter
  2518. HeaderAlignmentHorz = taCenter
  2519. HeaderAlignmentVert = vaCenter
  2520. HeaderGlyphAlignmentHorz = taCenter
  2521. end
  2522. object TvForm4Column1: TcxGridColumn
  2523. Caption = #54268#47749#52845
  2524. PropertiesClassName = 'TcxLabelProperties'
  2525. Properties.Alignment.Vert = taVCenter
  2526. HeaderAlignmentHorz = taCenter
  2527. HeaderAlignmentVert = vaCenter
  2528. end
  2529. end
  2530. object GlForm4: TcxGridLevel
  2531. GridView = TvForm4
  2532. end
  2533. end
  2534. end
  2535. end
  2536. end
  2537. object TabSheet5: TcxTabSheet
  2538. Tag = 5
  2539. Caption = ' '#51221#52404#51221#48372' '
  2540. ImageIndex = 5
  2541. object PnlCongest: TPanel
  2542. Left = 0
  2543. Top = 0
  2544. Width = 1097
  2545. Height = 592
  2546. Align = alClient
  2547. BevelOuter = bvNone
  2548. TabOrder = 0
  2549. object cxGroupBox1: TcxGroupBox
  2550. Left = 0
  2551. Top = 0
  2552. Align = alClient
  2553. Caption = #51221#52404#49345#54889' '#49828#52992#51460
  2554. TabOrder = 0
  2555. Height = 592
  2556. Width = 632
  2557. object CxGrid5: TcxGrid
  2558. Left = 3
  2559. Top = 19
  2560. Width = 626
  2561. Height = 563
  2562. Align = alClient
  2563. TabOrder = 0
  2564. object TvGrid5: TcxGridTableView
  2565. Tag = 5
  2566. OnCellDblClick = TvGridCellDblClick
  2567. DataController.Summary.DefaultGroupSummaryItems = <>
  2568. DataController.Summary.FooterSummaryItems = <>
  2569. DataController.Summary.SummaryGroups = <>
  2570. OptionsCustomize.ColumnFiltering = False
  2571. OptionsData.CancelOnExit = False
  2572. OptionsData.Deleting = False
  2573. OptionsData.DeletingConfirmation = False
  2574. OptionsData.Inserting = False
  2575. OptionsSelection.HideFocusRectOnExit = False
  2576. OptionsSelection.HideSelection = True
  2577. OptionsView.ColumnAutoWidth = True
  2578. OptionsView.DataRowHeight = 64
  2579. OptionsView.GroupByBox = False
  2580. object cxGridColumn73: TcxGridColumn
  2581. Caption = #54268' ID'
  2582. PropertiesClassName = 'TcxLabelProperties'
  2583. Properties.Alignment.Horz = taCenter
  2584. Properties.Alignment.Vert = taVCenter
  2585. GroupSummaryAlignment = taCenter
  2586. HeaderAlignmentHorz = taCenter
  2587. HeaderAlignmentVert = vaCenter
  2588. HeaderGlyphAlignmentHorz = taCenter
  2589. Width = 55
  2590. end
  2591. object cxGridColumn74: TcxGridColumn
  2592. Caption = #54268' '#47112#51060#50500#50883
  2593. DataBinding.ValueType = 'Variant'
  2594. PropertiesClassName = 'TcxImageProperties'
  2595. Properties.GraphicClassName = 'TdxSmartImage'
  2596. GroupSummaryAlignment = taCenter
  2597. HeaderAlignmentHorz = taCenter
  2598. HeaderAlignmentVert = vaCenter
  2599. HeaderGlyphAlignmentHorz = taCenter
  2600. Width = 330
  2601. end
  2602. object cxGridColumn75: TcxGridColumn
  2603. Caption = #51228#44277#44396#44036
  2604. PropertiesClassName = 'TcxLabelProperties'
  2605. Properties.Alignment.Horz = taCenter
  2606. Properties.Alignment.Vert = taVCenter
  2607. Visible = False
  2608. GroupSummaryAlignment = taCenter
  2609. HeaderAlignmentHorz = taCenter
  2610. HeaderAlignmentVert = vaCenter
  2611. HeaderGlyphAlignmentHorz = taCenter
  2612. VisibleForCustomization = False
  2613. Width = 60
  2614. end
  2615. object cxGridColumn76: TcxGridColumn
  2616. Caption = #54364#52636'('#52488')'
  2617. PropertiesClassName = 'TcxComboBoxProperties'
  2618. Properties.Alignment.Horz = taCenter
  2619. Properties.Alignment.Vert = taVCenter
  2620. Properties.DropDownListStyle = lsFixedList
  2621. Properties.ImmediatePost = True
  2622. Properties.Items.Strings = (
  2623. '1'
  2624. '2'
  2625. '3'
  2626. '4'
  2627. '5'
  2628. '6'
  2629. '7'
  2630. '8'
  2631. '9'
  2632. '10'
  2633. '11'
  2634. '12'
  2635. '13'
  2636. '14'
  2637. '15'
  2638. '16'
  2639. '17'
  2640. '18'
  2641. '19'
  2642. '20'
  2643. '21'
  2644. '22'
  2645. '23'
  2646. '24'
  2647. '25'
  2648. '26'
  2649. '27'
  2650. '28'
  2651. '29'
  2652. '30')
  2653. GroupSummaryAlignment = taCenter
  2654. HeaderAlignmentHorz = taCenter
  2655. HeaderAlignmentVert = vaCenter
  2656. HeaderGlyphAlignmentHorz = taCenter
  2657. Width = 60
  2658. end
  2659. object cxGridColumn77: TcxGridColumn
  2660. Caption = #49884#51089#49884#44033
  2661. PropertiesClassName = 'TcxTextEditProperties'
  2662. Properties.Alignment.Horz = taCenter
  2663. Properties.Alignment.Vert = taVCenter
  2664. GroupSummaryAlignment = taCenter
  2665. HeaderAlignmentHorz = taCenter
  2666. HeaderAlignmentVert = vaCenter
  2667. HeaderGlyphAlignmentHorz = taCenter
  2668. Options.Editing = False
  2669. Width = 80
  2670. end
  2671. object cxGridColumn78: TcxGridColumn
  2672. Caption = #51333#47308#49884#44033
  2673. PropertiesClassName = 'TcxTextEditProperties'
  2674. Properties.Alignment.Horz = taCenter
  2675. Properties.Alignment.Vert = taVCenter
  2676. OnCustomDrawCell = cxGridColumn172CustomDrawCell
  2677. GroupSummaryAlignment = taCenter
  2678. HeaderAlignmentHorz = taCenter
  2679. HeaderAlignmentVert = vaCenter
  2680. HeaderGlyphAlignmentHorz = taCenter
  2681. Options.Editing = False
  2682. Width = 80
  2683. end
  2684. object cxGridColumn79: TcxGridColumn
  2685. Caption = #49324#50857
  2686. PropertiesClassName = 'TcxComboBoxProperties'
  2687. Properties.Alignment.Horz = taCenter
  2688. Properties.Alignment.Vert = taVCenter
  2689. Properties.DropDownListStyle = lsFixedList
  2690. Properties.ImmediatePost = True
  2691. Properties.Items.Strings = (
  2692. 'Y'
  2693. 'N')
  2694. GroupSummaryAlignment = taCenter
  2695. HeaderAlignmentHorz = taCenter
  2696. HeaderAlignmentVert = vaCenter
  2697. HeaderGlyphAlignmentHorz = taCenter
  2698. end
  2699. object cxGridColumn80: TcxGridColumn
  2700. PropertiesClassName = 'TcxTextEditProperties'
  2701. Visible = False
  2702. GroupSummaryAlignment = taCenter
  2703. HeaderAlignmentHorz = taCenter
  2704. HeaderAlignmentVert = vaCenter
  2705. HeaderGlyphAlignmentHorz = taCenter
  2706. end
  2707. object cxGridColumn81: TcxGridColumn
  2708. PropertiesClassName = 'TcxTextEditProperties'
  2709. Visible = False
  2710. GroupSummaryAlignment = taCenter
  2711. HeaderAlignmentHorz = taCenter
  2712. HeaderAlignmentVert = vaCenter
  2713. HeaderGlyphAlignmentHorz = taCenter
  2714. end
  2715. object cxGridColumn82: TcxGridColumn
  2716. PropertiesClassName = 'TcxTextEditProperties'
  2717. Visible = False
  2718. end
  2719. object cxGridColumn83: TcxGridColumn
  2720. PropertiesClassName = 'TcxTextEditProperties'
  2721. Visible = False
  2722. end
  2723. object cxGridColumn84: TcxGridColumn
  2724. PropertiesClassName = 'TcxTextEditProperties'
  2725. Visible = False
  2726. end
  2727. object cxGridColumn85: TcxGridColumn
  2728. PropertiesClassName = 'TcxTextEditProperties'
  2729. Visible = False
  2730. end
  2731. object cxGridColumn86: TcxGridColumn
  2732. Caption = 'VMS'#50976#54805#53076#46300
  2733. PropertiesClassName = 'TcxTextEditProperties'
  2734. Properties.Alignment.Horz = taCenter
  2735. Properties.Alignment.Vert = taVCenter
  2736. Visible = False
  2737. VisibleForCustomization = False
  2738. end
  2739. object cxGridColumn87: TcxGridColumn
  2740. Caption = #54268#49353#49345
  2741. PropertiesClassName = 'TcxTextEditProperties'
  2742. Properties.Alignment.Horz = taCenter
  2743. Properties.Alignment.Vert = taVCenter
  2744. Visible = False
  2745. VisibleForCustomization = False
  2746. end
  2747. object cxGridColumn88: TcxGridColumn
  2748. Caption = #54268#50976#54805
  2749. PropertiesClassName = 'TcxTextEditProperties'
  2750. Properties.Alignment.Horz = taCenter
  2751. Properties.Alignment.Vert = taVCenter
  2752. Visible = False
  2753. VisibleForCustomization = False
  2754. end
  2755. object TvGrid5Column1: TcxGridColumn
  2756. PropertiesClassName = 'TcxTextEditProperties'
  2757. Visible = False
  2758. VisibleForCustomization = False
  2759. end
  2760. object TvGrid5Column2: TcxGridColumn
  2761. PropertiesClassName = 'TcxTextEditProperties'
  2762. Visible = False
  2763. VisibleForCustomization = False
  2764. end
  2765. object TvGrid5Column3: TcxGridColumn
  2766. PropertiesClassName = 'TcxTextEditProperties'
  2767. Visible = False
  2768. VisibleForCustomization = False
  2769. end
  2770. object TvGrid5Column4: TcxGridColumn
  2771. PropertiesClassName = 'TcxTextEditProperties'
  2772. Visible = False
  2773. VisibleForCustomization = False
  2774. end
  2775. object TvGrid5Column5: TcxGridColumn
  2776. PropertiesClassName = 'TcxLabelProperties'
  2777. Visible = False
  2778. VisibleForCustomization = False
  2779. end
  2780. object TvGrid5Column6: TcxGridColumn
  2781. PropertiesClassName = 'TcxLabelProperties'
  2782. Visible = False
  2783. VisibleForCustomization = False
  2784. end
  2785. end
  2786. object GlGrid5: TcxGridLevel
  2787. GridView = TvGrid5
  2788. end
  2789. end
  2790. end
  2791. object Panel9: TPanel
  2792. Left = 632
  2793. Top = 0
  2794. Width = 95
  2795. Height = 592
  2796. Align = alRight
  2797. BevelOuter = bvNone
  2798. TabOrder = 1
  2799. object BtnListAdd5: TcxButton
  2800. Tag = 5
  2801. Left = 8
  2802. Top = 125
  2803. Width = 80
  2804. Height = 25
  2805. Cursor = crHandPoint
  2806. Hint = #49828#52992#51460' '#52628#44032
  2807. Caption = #9664' '#52628#44032
  2808. Colors.Default = 10737865
  2809. LookAndFeel.NativeStyle = False
  2810. TabOrder = 0
  2811. OnClick = BtnListAdd0Click
  2812. end
  2813. object BtnListDelete5: TcxButton
  2814. Tag = 5
  2815. Left = 8
  2816. Top = 161
  2817. Width = 80
  2818. Height = 25
  2819. Cursor = crHandPoint
  2820. Hint = #49828#52992#51460' '#49325#51228
  2821. Caption = #49325#51228' '#9654
  2822. Colors.Default = 10737865
  2823. LookAndFeel.NativeStyle = False
  2824. TabOrder = 1
  2825. OnClick = BtnListDelete0Click
  2826. end
  2827. end
  2828. object cxGroupBox12: TcxGroupBox
  2829. Left = 727
  2830. Top = 0
  2831. Align = alRight
  2832. Caption = #51221#52404#49345#54889' '#54268
  2833. TabOrder = 2
  2834. Height = 592
  2835. Width = 370
  2836. object CxForm5: TcxGrid
  2837. Left = 3
  2838. Top = 19
  2839. Width = 364
  2840. Height = 563
  2841. Align = alClient
  2842. TabOrder = 0
  2843. object TvForm5: TcxGridTableView
  2844. Tag = 5
  2845. OnCellDblClick = TvFormCellDblClick
  2846. DataController.Summary.DefaultGroupSummaryItems = <>
  2847. DataController.Summary.FooterSummaryItems = <>
  2848. DataController.Summary.SummaryGroups = <>
  2849. OptionsCustomize.ColumnFiltering = False
  2850. OptionsSelection.HideFocusRectOnExit = False
  2851. OptionsSelection.HideSelection = True
  2852. OptionsView.DataRowHeight = 64
  2853. OptionsView.GroupByBox = False
  2854. object cxGridColumn89: TcxGridColumn
  2855. Caption = #54268' ID'
  2856. PropertiesClassName = 'TcxLabelProperties'
  2857. Properties.Alignment.Horz = taCenter
  2858. Properties.Alignment.Vert = taVCenter
  2859. GroupSummaryAlignment = taCenter
  2860. HeaderAlignmentHorz = taCenter
  2861. HeaderAlignmentVert = vaCenter
  2862. HeaderGlyphAlignmentHorz = taCenter
  2863. Options.Editing = False
  2864. Width = 55
  2865. end
  2866. object cxGridColumn90: TcxGridColumn
  2867. Caption = #54268' '#47112#51060#50500#50883
  2868. DataBinding.ValueType = 'Variant'
  2869. PropertiesClassName = 'TcxImageProperties'
  2870. Properties.GraphicClassName = 'TdxSmartImage'
  2871. GroupSummaryAlignment = taCenter
  2872. HeaderAlignmentHorz = taCenter
  2873. HeaderAlignmentVert = vaCenter
  2874. HeaderGlyphAlignmentHorz = taCenter
  2875. Options.Editing = False
  2876. Width = 330
  2877. end
  2878. object cxGridColumn91: TcxGridColumn
  2879. PropertiesClassName = 'TcxLabelProperties'
  2880. Visible = False
  2881. GroupSummaryAlignment = taCenter
  2882. HeaderAlignmentHorz = taCenter
  2883. HeaderAlignmentVert = vaCenter
  2884. HeaderGlyphAlignmentHorz = taCenter
  2885. end
  2886. object cxGridColumn92: TcxGridColumn
  2887. PropertiesClassName = 'TcxLabelProperties'
  2888. Properties.Alignment.Vert = taVCenter
  2889. Visible = False
  2890. GroupSummaryAlignment = taCenter
  2891. HeaderAlignmentHorz = taCenter
  2892. HeaderAlignmentVert = vaCenter
  2893. HeaderGlyphAlignmentHorz = taCenter
  2894. IsCaptionAssigned = True
  2895. end
  2896. object cxGridColumn93: TcxGridColumn
  2897. PropertiesClassName = 'TcxLabelProperties'
  2898. Visible = False
  2899. GroupSummaryAlignment = taCenter
  2900. HeaderAlignmentHorz = taCenter
  2901. HeaderAlignmentVert = vaCenter
  2902. HeaderGlyphAlignmentHorz = taCenter
  2903. end
  2904. object cxGridColumn94: TcxGridColumn
  2905. PropertiesClassName = 'TcxLabelProperties'
  2906. Visible = False
  2907. GroupSummaryAlignment = taCenter
  2908. HeaderAlignmentHorz = taCenter
  2909. HeaderAlignmentVert = vaCenter
  2910. HeaderGlyphAlignmentHorz = taCenter
  2911. end
  2912. object cxGridColumn95: TcxGridColumn
  2913. PropertiesClassName = 'TcxLabelProperties'
  2914. Visible = False
  2915. GroupSummaryAlignment = taCenter
  2916. HeaderAlignmentHorz = taCenter
  2917. HeaderAlignmentVert = vaCenter
  2918. HeaderGlyphAlignmentHorz = taCenter
  2919. end
  2920. object cxGridColumn96: TcxGridColumn
  2921. PropertiesClassName = 'TcxLabelProperties'
  2922. Visible = False
  2923. GroupSummaryAlignment = taCenter
  2924. HeaderAlignmentHorz = taCenter
  2925. HeaderAlignmentVert = vaCenter
  2926. HeaderGlyphAlignmentHorz = taCenter
  2927. end
  2928. object cxGridColumn97: TcxGridColumn
  2929. PropertiesClassName = 'TcxLabelProperties'
  2930. Visible = False
  2931. GroupSummaryAlignment = taCenter
  2932. HeaderAlignmentHorz = taCenter
  2933. HeaderAlignmentVert = vaCenter
  2934. HeaderGlyphAlignmentHorz = taCenter
  2935. end
  2936. object TvForm5Column1: TcxGridColumn
  2937. Caption = #54268#47749#52845
  2938. PropertiesClassName = 'TcxLabelProperties'
  2939. Properties.Alignment.Vert = taVCenter
  2940. HeaderAlignmentHorz = taCenter
  2941. HeaderAlignmentVert = vaCenter
  2942. end
  2943. end
  2944. object GlForm5: TcxGridLevel
  2945. GridView = TvForm5
  2946. end
  2947. end
  2948. end
  2949. end
  2950. end
  2951. object TabSheet6: TcxTabSheet
  2952. Tag = 6
  2953. Caption = ' '#51116#45212#50504#51204' '
  2954. ImageIndex = 8
  2955. object PnlSafe: TPanel
  2956. Left = 0
  2957. Top = 0
  2958. Width = 1097
  2959. Height = 592
  2960. Align = alClient
  2961. BevelOuter = bvNone
  2962. TabOrder = 0
  2963. object cxGroupBox13: TcxGroupBox
  2964. Left = 0
  2965. Top = 0
  2966. Align = alClient
  2967. Caption = #51116#45212#50504#51204' '#49828#52992#51460
  2968. TabOrder = 0
  2969. Height = 592
  2970. Width = 632
  2971. object CxGrid6: TcxGrid
  2972. Left = 3
  2973. Top = 19
  2974. Width = 626
  2975. Height = 563
  2976. Align = alClient
  2977. TabOrder = 0
  2978. object TvGrid6: TcxGridTableView
  2979. Tag = 6
  2980. OnCellDblClick = TvGridCellDblClick
  2981. DataController.Summary.DefaultGroupSummaryItems = <>
  2982. DataController.Summary.FooterSummaryItems = <>
  2983. DataController.Summary.SummaryGroups = <>
  2984. OptionsCustomize.ColumnFiltering = False
  2985. OptionsData.CancelOnExit = False
  2986. OptionsData.Deleting = False
  2987. OptionsData.DeletingConfirmation = False
  2988. OptionsData.Inserting = False
  2989. OptionsSelection.HideFocusRectOnExit = False
  2990. OptionsSelection.HideSelection = True
  2991. OptionsView.ColumnAutoWidth = True
  2992. OptionsView.DataRowHeight = 64
  2993. OptionsView.GroupByBox = False
  2994. object cxGridColumn98: TcxGridColumn
  2995. Caption = #54268' ID'
  2996. PropertiesClassName = 'TcxLabelProperties'
  2997. Properties.Alignment.Horz = taCenter
  2998. Properties.Alignment.Vert = taVCenter
  2999. GroupSummaryAlignment = taCenter
  3000. HeaderAlignmentHorz = taCenter
  3001. HeaderAlignmentVert = vaCenter
  3002. HeaderGlyphAlignmentHorz = taCenter
  3003. Width = 55
  3004. end
  3005. object cxGridColumn99: TcxGridColumn
  3006. Caption = #54268' '#47112#51060#50500#50883
  3007. DataBinding.ValueType = 'Variant'
  3008. PropertiesClassName = 'TcxImageProperties'
  3009. Properties.GraphicClassName = 'TdxSmartImage'
  3010. GroupSummaryAlignment = taCenter
  3011. HeaderAlignmentHorz = taCenter
  3012. HeaderAlignmentVert = vaCenter
  3013. HeaderGlyphAlignmentHorz = taCenter
  3014. Width = 330
  3015. end
  3016. object cxGridColumn100: TcxGridColumn
  3017. Caption = #51228#44277#44396#44036
  3018. PropertiesClassName = 'TcxLabelProperties'
  3019. Properties.Alignment.Horz = taCenter
  3020. Properties.Alignment.Vert = taVCenter
  3021. Visible = False
  3022. GroupSummaryAlignment = taCenter
  3023. HeaderAlignmentHorz = taCenter
  3024. HeaderAlignmentVert = vaCenter
  3025. HeaderGlyphAlignmentHorz = taCenter
  3026. VisibleForCustomization = False
  3027. Width = 60
  3028. end
  3029. object cxGridColumn101: TcxGridColumn
  3030. Caption = #54364#52636'('#52488')'
  3031. PropertiesClassName = 'TcxComboBoxProperties'
  3032. Properties.Alignment.Horz = taCenter
  3033. Properties.Alignment.Vert = taVCenter
  3034. Properties.DropDownListStyle = lsFixedList
  3035. Properties.ImmediatePost = True
  3036. Properties.Items.Strings = (
  3037. '1'
  3038. '2'
  3039. '3'
  3040. '4'
  3041. '5'
  3042. '6'
  3043. '7'
  3044. '8'
  3045. '9'
  3046. '10'
  3047. '11'
  3048. '12'
  3049. '13'
  3050. '14'
  3051. '15'
  3052. '16'
  3053. '17'
  3054. '18'
  3055. '19'
  3056. '20'
  3057. '21'
  3058. '22'
  3059. '23'
  3060. '24'
  3061. '25'
  3062. '26'
  3063. '27'
  3064. '28'
  3065. '29'
  3066. '30')
  3067. GroupSummaryAlignment = taCenter
  3068. HeaderAlignmentHorz = taCenter
  3069. HeaderAlignmentVert = vaCenter
  3070. HeaderGlyphAlignmentHorz = taCenter
  3071. Width = 60
  3072. end
  3073. object cxGridColumn102: TcxGridColumn
  3074. Caption = #49884#51089#49884#44033
  3075. PropertiesClassName = 'TcxTextEditProperties'
  3076. Properties.Alignment.Horz = taCenter
  3077. Properties.Alignment.Vert = taVCenter
  3078. GroupSummaryAlignment = taCenter
  3079. HeaderAlignmentHorz = taCenter
  3080. HeaderAlignmentVert = vaCenter
  3081. HeaderGlyphAlignmentHorz = taCenter
  3082. Options.Editing = False
  3083. Width = 80
  3084. end
  3085. object cxGridColumn103: TcxGridColumn
  3086. Caption = #51333#47308#49884#44033
  3087. PropertiesClassName = 'TcxTextEditProperties'
  3088. Properties.Alignment.Horz = taCenter
  3089. Properties.Alignment.Vert = taVCenter
  3090. OnCustomDrawCell = cxGridColumn172CustomDrawCell
  3091. GroupSummaryAlignment = taCenter
  3092. HeaderAlignmentHorz = taCenter
  3093. HeaderAlignmentVert = vaCenter
  3094. HeaderGlyphAlignmentHorz = taCenter
  3095. Options.Editing = False
  3096. Width = 80
  3097. end
  3098. object cxGridColumn104: TcxGridColumn
  3099. Caption = #49324#50857
  3100. PropertiesClassName = 'TcxComboBoxProperties'
  3101. Properties.Alignment.Horz = taCenter
  3102. Properties.Alignment.Vert = taVCenter
  3103. Properties.DropDownListStyle = lsFixedList
  3104. Properties.ImmediatePost = True
  3105. Properties.Items.Strings = (
  3106. 'Y'
  3107. 'N')
  3108. GroupSummaryAlignment = taCenter
  3109. HeaderAlignmentHorz = taCenter
  3110. HeaderAlignmentVert = vaCenter
  3111. HeaderGlyphAlignmentHorz = taCenter
  3112. end
  3113. object cxGridColumn105: TcxGridColumn
  3114. PropertiesClassName = 'TcxTextEditProperties'
  3115. Visible = False
  3116. GroupSummaryAlignment = taCenter
  3117. HeaderAlignmentHorz = taCenter
  3118. HeaderAlignmentVert = vaCenter
  3119. HeaderGlyphAlignmentHorz = taCenter
  3120. end
  3121. object cxGridColumn106: TcxGridColumn
  3122. PropertiesClassName = 'TcxTextEditProperties'
  3123. Visible = False
  3124. GroupSummaryAlignment = taCenter
  3125. HeaderAlignmentHorz = taCenter
  3126. HeaderAlignmentVert = vaCenter
  3127. HeaderGlyphAlignmentHorz = taCenter
  3128. end
  3129. object cxGridColumn107: TcxGridColumn
  3130. PropertiesClassName = 'TcxTextEditProperties'
  3131. Visible = False
  3132. end
  3133. object cxGridColumn108: TcxGridColumn
  3134. PropertiesClassName = 'TcxTextEditProperties'
  3135. Visible = False
  3136. end
  3137. object cxGridColumn109: TcxGridColumn
  3138. PropertiesClassName = 'TcxTextEditProperties'
  3139. Visible = False
  3140. end
  3141. object cxGridColumn110: TcxGridColumn
  3142. PropertiesClassName = 'TcxTextEditProperties'
  3143. Visible = False
  3144. end
  3145. object cxGridColumn111: TcxGridColumn
  3146. Caption = 'VMS'#50976#54805#53076#46300
  3147. PropertiesClassName = 'TcxTextEditProperties'
  3148. Properties.Alignment.Horz = taCenter
  3149. Properties.Alignment.Vert = taVCenter
  3150. Visible = False
  3151. VisibleForCustomization = False
  3152. end
  3153. object cxGridColumn112: TcxGridColumn
  3154. Caption = #54268#49353#49345
  3155. PropertiesClassName = 'TcxTextEditProperties'
  3156. Properties.Alignment.Horz = taCenter
  3157. Properties.Alignment.Vert = taVCenter
  3158. Visible = False
  3159. VisibleForCustomization = False
  3160. end
  3161. object cxGridColumn113: TcxGridColumn
  3162. Caption = #54268#50976#54805
  3163. PropertiesClassName = 'TcxTextEditProperties'
  3164. Properties.Alignment.Horz = taCenter
  3165. Properties.Alignment.Vert = taVCenter
  3166. Visible = False
  3167. VisibleForCustomization = False
  3168. end
  3169. object cxGridColumn114: TcxGridColumn
  3170. PropertiesClassName = 'TcxTextEditProperties'
  3171. Visible = False
  3172. VisibleForCustomization = False
  3173. end
  3174. object cxGridColumn115: TcxGridColumn
  3175. PropertiesClassName = 'TcxTextEditProperties'
  3176. Visible = False
  3177. VisibleForCustomization = False
  3178. end
  3179. object cxGridColumn116: TcxGridColumn
  3180. PropertiesClassName = 'TcxTextEditProperties'
  3181. Visible = False
  3182. VisibleForCustomization = False
  3183. end
  3184. object cxGridColumn117: TcxGridColumn
  3185. PropertiesClassName = 'TcxTextEditProperties'
  3186. Visible = False
  3187. VisibleForCustomization = False
  3188. end
  3189. object TvGrid6Column1: TcxGridColumn
  3190. PropertiesClassName = 'TcxLabelProperties'
  3191. Visible = False
  3192. VisibleForCustomization = False
  3193. end
  3194. object TvGrid6Column2: TcxGridColumn
  3195. PropertiesClassName = 'TcxLabelProperties'
  3196. Visible = False
  3197. VisibleForCustomization = False
  3198. end
  3199. end
  3200. object GlGrid6: TcxGridLevel
  3201. GridView = TvGrid6
  3202. end
  3203. end
  3204. end
  3205. object Panel10: TPanel
  3206. Left = 632
  3207. Top = 0
  3208. Width = 95
  3209. Height = 592
  3210. Align = alRight
  3211. BevelOuter = bvNone
  3212. TabOrder = 1
  3213. object BtnListAdd6: TcxButton
  3214. Tag = 6
  3215. Left = 8
  3216. Top = 125
  3217. Width = 80
  3218. Height = 25
  3219. Cursor = crHandPoint
  3220. Hint = #49828#52992#51460' '#52628#44032
  3221. Caption = #9664' '#52628#44032
  3222. Colors.Default = 10737865
  3223. LookAndFeel.NativeStyle = False
  3224. TabOrder = 0
  3225. Font.Charset = DEFAULT_CHARSET
  3226. Font.Color = clWindowText
  3227. Font.Height = -13
  3228. Font.Name = #47569#51008' '#44256#46357
  3229. Font.Style = [fsBold]
  3230. ParentFont = False
  3231. OnClick = BtnListAdd0Click
  3232. end
  3233. object BtnListDelete6: TcxButton
  3234. Tag = 6
  3235. Left = 8
  3236. Top = 161
  3237. Width = 80
  3238. Height = 25
  3239. Cursor = crHandPoint
  3240. Hint = #49828#52992#51460' '#49325#51228
  3241. Caption = #49325#51228' '#9654
  3242. Colors.Default = 10737865
  3243. LookAndFeel.NativeStyle = False
  3244. TabOrder = 1
  3245. Font.Charset = DEFAULT_CHARSET
  3246. Font.Color = clWindowText
  3247. Font.Height = -13
  3248. Font.Name = #47569#51008' '#44256#46357
  3249. Font.Style = [fsBold]
  3250. ParentFont = False
  3251. OnClick = BtnListDelete0Click
  3252. end
  3253. end
  3254. object cxGroupBox14: TcxGroupBox
  3255. Left = 727
  3256. Top = 0
  3257. Align = alRight
  3258. Caption = #51116#45212#50504#51204' '#54268
  3259. TabOrder = 2
  3260. Height = 592
  3261. Width = 370
  3262. object CxForm6: TcxGrid
  3263. Left = 3
  3264. Top = 19
  3265. Width = 364
  3266. Height = 563
  3267. Align = alClient
  3268. TabOrder = 0
  3269. object TvForm6: TcxGridTableView
  3270. Tag = 6
  3271. OnCellDblClick = TvFormCellDblClick
  3272. DataController.Summary.DefaultGroupSummaryItems = <>
  3273. DataController.Summary.FooterSummaryItems = <>
  3274. DataController.Summary.SummaryGroups = <>
  3275. OptionsCustomize.ColumnFiltering = False
  3276. OptionsSelection.HideFocusRectOnExit = False
  3277. OptionsSelection.HideSelection = True
  3278. OptionsView.DataRowHeight = 64
  3279. OptionsView.GroupByBox = False
  3280. object cxGridColumn118: TcxGridColumn
  3281. Caption = #54268' ID'
  3282. PropertiesClassName = 'TcxLabelProperties'
  3283. Properties.Alignment.Horz = taCenter
  3284. Properties.Alignment.Vert = taVCenter
  3285. GroupSummaryAlignment = taCenter
  3286. HeaderAlignmentHorz = taCenter
  3287. HeaderAlignmentVert = vaCenter
  3288. HeaderGlyphAlignmentHorz = taCenter
  3289. Options.Editing = False
  3290. Width = 55
  3291. end
  3292. object cxGridColumn119: TcxGridColumn
  3293. Caption = #54268' '#47112#51060#50500#50883
  3294. DataBinding.ValueType = 'Variant'
  3295. PropertiesClassName = 'TcxImageProperties'
  3296. Properties.GraphicClassName = 'TdxSmartImage'
  3297. GroupSummaryAlignment = taCenter
  3298. HeaderAlignmentHorz = taCenter
  3299. HeaderAlignmentVert = vaCenter
  3300. HeaderGlyphAlignmentHorz = taCenter
  3301. Options.Editing = False
  3302. Width = 330
  3303. end
  3304. object cxGridColumn120: TcxGridColumn
  3305. PropertiesClassName = 'TcxLabelProperties'
  3306. Visible = False
  3307. GroupSummaryAlignment = taCenter
  3308. HeaderAlignmentHorz = taCenter
  3309. HeaderAlignmentVert = vaCenter
  3310. HeaderGlyphAlignmentHorz = taCenter
  3311. end
  3312. object cxGridColumn121: TcxGridColumn
  3313. PropertiesClassName = 'TcxLabelProperties'
  3314. Properties.Alignment.Vert = taVCenter
  3315. Visible = False
  3316. GroupSummaryAlignment = taCenter
  3317. HeaderAlignmentHorz = taCenter
  3318. HeaderAlignmentVert = vaCenter
  3319. HeaderGlyphAlignmentHorz = taCenter
  3320. IsCaptionAssigned = True
  3321. end
  3322. object cxGridColumn122: TcxGridColumn
  3323. PropertiesClassName = 'TcxLabelProperties'
  3324. Visible = False
  3325. GroupSummaryAlignment = taCenter
  3326. HeaderAlignmentHorz = taCenter
  3327. HeaderAlignmentVert = vaCenter
  3328. HeaderGlyphAlignmentHorz = taCenter
  3329. end
  3330. object cxGridColumn123: TcxGridColumn
  3331. PropertiesClassName = 'TcxLabelProperties'
  3332. Visible = False
  3333. GroupSummaryAlignment = taCenter
  3334. HeaderAlignmentHorz = taCenter
  3335. HeaderAlignmentVert = vaCenter
  3336. HeaderGlyphAlignmentHorz = taCenter
  3337. end
  3338. object cxGridColumn124: TcxGridColumn
  3339. PropertiesClassName = 'TcxLabelProperties'
  3340. Visible = False
  3341. GroupSummaryAlignment = taCenter
  3342. HeaderAlignmentHorz = taCenter
  3343. HeaderAlignmentVert = vaCenter
  3344. HeaderGlyphAlignmentHorz = taCenter
  3345. end
  3346. object cxGridColumn125: TcxGridColumn
  3347. PropertiesClassName = 'TcxLabelProperties'
  3348. Visible = False
  3349. GroupSummaryAlignment = taCenter
  3350. HeaderAlignmentHorz = taCenter
  3351. HeaderAlignmentVert = vaCenter
  3352. HeaderGlyphAlignmentHorz = taCenter
  3353. end
  3354. object cxGridColumn126: TcxGridColumn
  3355. PropertiesClassName = 'TcxLabelProperties'
  3356. Visible = False
  3357. GroupSummaryAlignment = taCenter
  3358. HeaderAlignmentHorz = taCenter
  3359. HeaderAlignmentVert = vaCenter
  3360. HeaderGlyphAlignmentHorz = taCenter
  3361. end
  3362. object TvForm6Column1: TcxGridColumn
  3363. Caption = #54268#47749#52845
  3364. PropertiesClassName = 'TcxLabelProperties'
  3365. Properties.Alignment.Vert = taVCenter
  3366. HeaderAlignmentHorz = taCenter
  3367. HeaderAlignmentVert = vaCenter
  3368. end
  3369. end
  3370. object GlForm6: TcxGridLevel
  3371. GridView = TvForm6
  3372. end
  3373. end
  3374. end
  3375. end
  3376. end
  3377. object TabSheet7: TcxTabSheet
  3378. Tag = 7
  3379. Caption = ' '#46041#50689#49345' '
  3380. ImageIndex = 6
  3381. object PnlVideo: TPanel
  3382. Left = 0
  3383. Top = 0
  3384. Width = 1097
  3385. Height = 592
  3386. Align = alClient
  3387. BevelOuter = bvNone
  3388. TabOrder = 0
  3389. object cxGroupBox15: TcxGroupBox
  3390. Left = 0
  3391. Top = 0
  3392. Align = alClient
  3393. Caption = #46041#50689#49345' '#49828#52992#51460
  3394. TabOrder = 0
  3395. Height = 592
  3396. Width = 632
  3397. object CxGrid7: TcxGrid
  3398. Left = 3
  3399. Top = 19
  3400. Width = 626
  3401. Height = 563
  3402. Align = alClient
  3403. TabOrder = 0
  3404. object TvGrid7: TcxGridTableView
  3405. Tag = 7
  3406. OnCellDblClick = TvGridCellDblClick
  3407. DataController.Summary.DefaultGroupSummaryItems = <>
  3408. DataController.Summary.FooterSummaryItems = <>
  3409. DataController.Summary.SummaryGroups = <>
  3410. OptionsCustomize.ColumnFiltering = False
  3411. OptionsData.CancelOnExit = False
  3412. OptionsData.Deleting = False
  3413. OptionsData.DeletingConfirmation = False
  3414. OptionsData.Inserting = False
  3415. OptionsSelection.HideFocusRectOnExit = False
  3416. OptionsSelection.HideSelection = True
  3417. OptionsView.ColumnAutoWidth = True
  3418. OptionsView.DataRowHeight = 64
  3419. OptionsView.GroupByBox = False
  3420. OptionsView.Indicator = True
  3421. object cxGridColumn127: TcxGridColumn
  3422. Caption = #54268' ID'
  3423. PropertiesClassName = 'TcxLabelProperties'
  3424. Properties.Alignment.Horz = taCenter
  3425. Properties.Alignment.Vert = taVCenter
  3426. GroupSummaryAlignment = taCenter
  3427. HeaderAlignmentHorz = taCenter
  3428. HeaderAlignmentVert = vaCenter
  3429. HeaderGlyphAlignmentHorz = taCenter
  3430. Width = 55
  3431. end
  3432. object cxGridColumn128: TcxGridColumn
  3433. Caption = #54268' '#47112#51060#50500#50883
  3434. DataBinding.ValueType = 'Variant'
  3435. PropertiesClassName = 'TcxImageProperties'
  3436. Properties.GraphicClassName = 'TdxSmartImage'
  3437. GroupSummaryAlignment = taCenter
  3438. HeaderAlignmentHorz = taCenter
  3439. HeaderAlignmentVert = vaCenter
  3440. HeaderGlyphAlignmentHorz = taCenter
  3441. Options.Editing = False
  3442. Width = 330
  3443. end
  3444. object cxGridColumn129: TcxGridColumn
  3445. Caption = #44396#44036
  3446. PropertiesClassName = 'TcxLabelProperties'
  3447. Properties.Alignment.Horz = taCenter
  3448. Properties.Alignment.Vert = taVCenter
  3449. Visible = False
  3450. GroupSummaryAlignment = taCenter
  3451. HeaderAlignmentHorz = taCenter
  3452. HeaderAlignmentVert = vaCenter
  3453. HeaderGlyphAlignmentHorz = taCenter
  3454. Options.Editing = False
  3455. Width = 60
  3456. end
  3457. object cxGridColumn130: TcxGridColumn
  3458. Caption = #54364#52636'('#52488')'
  3459. PropertiesClassName = 'TcxComboBoxProperties'
  3460. Properties.Alignment.Horz = taCenter
  3461. Properties.Alignment.Vert = taVCenter
  3462. Properties.DropDownListStyle = lsFixedList
  3463. Properties.ImmediatePost = True
  3464. Properties.Items.Strings = (
  3465. '1'
  3466. '2'
  3467. '3'
  3468. '4'
  3469. '5'
  3470. '6'
  3471. '7'
  3472. '8'
  3473. '9'
  3474. '10'
  3475. '11'
  3476. '12'
  3477. '13'
  3478. '14'
  3479. '15'
  3480. '16'
  3481. '17'
  3482. '18'
  3483. '19'
  3484. '20'
  3485. '21'
  3486. '22'
  3487. '23'
  3488. '24'
  3489. '25'
  3490. '26'
  3491. '27'
  3492. '28'
  3493. '29'
  3494. '30')
  3495. GroupSummaryAlignment = taCenter
  3496. HeaderAlignmentHorz = taCenter
  3497. HeaderAlignmentVert = vaCenter
  3498. HeaderGlyphAlignmentHorz = taCenter
  3499. Width = 60
  3500. end
  3501. object cxGridColumn131: TcxGridColumn
  3502. Caption = #49884#51089#49884#44033
  3503. PropertiesClassName = 'TcxTextEditProperties'
  3504. Properties.Alignment.Horz = taCenter
  3505. Properties.Alignment.Vert = taVCenter
  3506. GroupSummaryAlignment = taCenter
  3507. HeaderAlignmentHorz = taCenter
  3508. HeaderAlignmentVert = vaCenter
  3509. HeaderGlyphAlignmentHorz = taCenter
  3510. Options.Editing = False
  3511. Width = 80
  3512. end
  3513. object cxGridColumn132: TcxGridColumn
  3514. Caption = #51333#47308#49884#44033
  3515. PropertiesClassName = 'TcxTextEditProperties'
  3516. Properties.Alignment.Horz = taCenter
  3517. Properties.Alignment.Vert = taVCenter
  3518. OnCustomDrawCell = cxGridColumn172CustomDrawCell
  3519. GroupSummaryAlignment = taCenter
  3520. HeaderAlignmentHorz = taCenter
  3521. HeaderAlignmentVert = vaCenter
  3522. HeaderGlyphAlignmentHorz = taCenter
  3523. Options.Editing = False
  3524. Width = 80
  3525. end
  3526. object cxGridColumn133: TcxGridColumn
  3527. Caption = #49324#50857
  3528. PropertiesClassName = 'TcxComboBoxProperties'
  3529. Properties.Alignment.Horz = taCenter
  3530. Properties.Alignment.Vert = taVCenter
  3531. Properties.DropDownListStyle = lsFixedList
  3532. Properties.ImmediatePost = True
  3533. Properties.Items.Strings = (
  3534. 'Y'
  3535. 'N')
  3536. GroupSummaryAlignment = taCenter
  3537. HeaderAlignmentHorz = taCenter
  3538. HeaderAlignmentVert = vaCenter
  3539. HeaderGlyphAlignmentHorz = taCenter
  3540. end
  3541. object cxGridColumn134: TcxGridColumn
  3542. Caption = #49884#51089#49884#44033
  3543. PropertiesClassName = 'TcxTextEditProperties'
  3544. Visible = False
  3545. GroupSummaryAlignment = taCenter
  3546. HeaderAlignmentHorz = taCenter
  3547. HeaderAlignmentVert = vaCenter
  3548. HeaderGlyphAlignmentHorz = taCenter
  3549. end
  3550. object cxGridColumn135: TcxGridColumn
  3551. Caption = #51333#47308#49884#44033
  3552. PropertiesClassName = 'TcxTextEditProperties'
  3553. Visible = False
  3554. GroupSummaryAlignment = taCenter
  3555. HeaderAlignmentHorz = taCenter
  3556. HeaderAlignmentVert = vaCenter
  3557. HeaderGlyphAlignmentHorz = taCenter
  3558. end
  3559. object cxGridColumn136: TcxGridColumn
  3560. PropertiesClassName = 'TcxTextEditProperties'
  3561. Properties.Alignment.Horz = taCenter
  3562. Properties.Alignment.Vert = taVCenter
  3563. Visible = False
  3564. end
  3565. object cxGridColumn137: TcxGridColumn
  3566. PropertiesClassName = 'TcxTextEditProperties'
  3567. Properties.Alignment.Horz = taCenter
  3568. Properties.Alignment.Vert = taVCenter
  3569. Visible = False
  3570. end
  3571. object cxGridColumn138: TcxGridColumn
  3572. PropertiesClassName = 'TcxTextEditProperties'
  3573. Properties.Alignment.Horz = taCenter
  3574. Properties.Alignment.Vert = taVCenter
  3575. Visible = False
  3576. end
  3577. object cxGridColumn139: TcxGridColumn
  3578. PropertiesClassName = 'TcxTextEditProperties'
  3579. Properties.Alignment.Horz = taCenter
  3580. Properties.Alignment.Vert = taVCenter
  3581. Visible = False
  3582. end
  3583. object cxGridColumn140: TcxGridColumn
  3584. Caption = 'VMS'#50976#54805#53076#46300
  3585. PropertiesClassName = 'TcxTextEditProperties'
  3586. Properties.Alignment.Horz = taCenter
  3587. Properties.Alignment.Vert = taVCenter
  3588. Visible = False
  3589. VisibleForCustomization = False
  3590. end
  3591. object cxGridColumn141: TcxGridColumn
  3592. Caption = #54268#49353#49345
  3593. PropertiesClassName = 'TcxTextEditProperties'
  3594. Properties.Alignment.Horz = taCenter
  3595. Properties.Alignment.Vert = taVCenter
  3596. Visible = False
  3597. VisibleForCustomization = False
  3598. end
  3599. object cxGridColumn142: TcxGridColumn
  3600. Caption = #54268#50976#54805
  3601. PropertiesClassName = 'TcxTextEditProperties'
  3602. Properties.Alignment.Horz = taRightJustify
  3603. Properties.Alignment.Vert = taVCenter
  3604. Visible = False
  3605. VisibleForCustomization = False
  3606. end
  3607. object cxGridColumn143: TcxGridColumn
  3608. PropertiesClassName = 'TcxTextEditProperties'
  3609. Visible = False
  3610. VisibleForCustomization = False
  3611. end
  3612. object cxGridColumn144: TcxGridColumn
  3613. PropertiesClassName = 'TcxTextEditProperties'
  3614. Visible = False
  3615. VisibleForCustomization = False
  3616. end
  3617. object cxGridColumn145: TcxGridColumn
  3618. PropertiesClassName = 'TcxTextEditProperties'
  3619. Visible = False
  3620. VisibleForCustomization = False
  3621. end
  3622. object cxGridColumn146: TcxGridColumn
  3623. PropertiesClassName = 'TcxTextEditProperties'
  3624. Visible = False
  3625. VisibleForCustomization = False
  3626. end
  3627. object TvGrid7Column1: TcxGridColumn
  3628. PropertiesClassName = 'TcxLabelProperties'
  3629. Visible = False
  3630. VisibleForCustomization = False
  3631. end
  3632. object TvGrid7Column2: TcxGridColumn
  3633. PropertiesClassName = 'TcxLabelProperties'
  3634. Visible = False
  3635. VisibleForCustomization = False
  3636. end
  3637. end
  3638. object GlGrid7: TcxGridLevel
  3639. GridView = TvGrid7
  3640. end
  3641. end
  3642. end
  3643. object Panel11: TPanel
  3644. Left = 632
  3645. Top = 0
  3646. Width = 95
  3647. Height = 592
  3648. Align = alRight
  3649. BevelOuter = bvNone
  3650. TabOrder = 1
  3651. object BtnListAdd7: TcxButton
  3652. Tag = 7
  3653. Left = 8
  3654. Top = 125
  3655. Width = 80
  3656. Height = 25
  3657. Cursor = crHandPoint
  3658. Hint = #49828#52992#51460' '#52628#44032
  3659. Caption = #9664' '#52628#44032
  3660. Colors.Default = 10737865
  3661. LookAndFeel.NativeStyle = False
  3662. TabOrder = 0
  3663. Font.Charset = DEFAULT_CHARSET
  3664. Font.Color = clWindowText
  3665. Font.Height = -13
  3666. Font.Name = #47569#51008' '#44256#46357
  3667. Font.Style = [fsBold]
  3668. ParentFont = False
  3669. OnClick = BtnListAdd0Click
  3670. end
  3671. object BtnListDelete7: TcxButton
  3672. Tag = 7
  3673. Left = 8
  3674. Top = 161
  3675. Width = 80
  3676. Height = 25
  3677. Cursor = crHandPoint
  3678. Hint = #49828#52992#51460' '#49325#51228
  3679. Caption = #49325#51228' '#9654
  3680. Colors.Default = 10737865
  3681. LookAndFeel.NativeStyle = False
  3682. TabOrder = 1
  3683. Font.Charset = DEFAULT_CHARSET
  3684. Font.Color = clWindowText
  3685. Font.Height = -13
  3686. Font.Name = #47569#51008' '#44256#46357
  3687. Font.Style = [fsBold]
  3688. ParentFont = False
  3689. OnClick = BtnListDelete0Click
  3690. end
  3691. end
  3692. object cxGroupBox16: TcxGroupBox
  3693. Left = 727
  3694. Top = 0
  3695. Align = alRight
  3696. Caption = #46041#50689#49345' '#54268
  3697. TabOrder = 2
  3698. Height = 592
  3699. Width = 370
  3700. object CxForm7: TcxGrid
  3701. Left = 3
  3702. Top = 19
  3703. Width = 364
  3704. Height = 563
  3705. Align = alClient
  3706. TabOrder = 0
  3707. object TvForm7: TcxGridTableView
  3708. Tag = 7
  3709. OnCellDblClick = TvFormCellDblClick
  3710. DataController.Summary.DefaultGroupSummaryItems = <>
  3711. DataController.Summary.FooterSummaryItems = <>
  3712. DataController.Summary.SummaryGroups = <>
  3713. OptionsCustomize.ColumnFiltering = False
  3714. OptionsSelection.HideFocusRectOnExit = False
  3715. OptionsSelection.HideSelection = True
  3716. OptionsView.DataRowHeight = 64
  3717. OptionsView.GroupByBox = False
  3718. object cxGridColumn147: TcxGridColumn
  3719. Caption = #54268' ID'
  3720. PropertiesClassName = 'TcxLabelProperties'
  3721. Properties.Alignment.Horz = taCenter
  3722. Properties.Alignment.Vert = taVCenter
  3723. GroupSummaryAlignment = taCenter
  3724. HeaderAlignmentHorz = taCenter
  3725. HeaderAlignmentVert = vaCenter
  3726. HeaderGlyphAlignmentHorz = taCenter
  3727. Options.Editing = False
  3728. Width = 55
  3729. end
  3730. object cxGridColumn148: TcxGridColumn
  3731. Caption = #54268' '#47112#51060#50500#50883
  3732. DataBinding.ValueType = 'Variant'
  3733. PropertiesClassName = 'TcxImageProperties'
  3734. Properties.GraphicClassName = 'TdxSmartImage'
  3735. GroupSummaryAlignment = taCenter
  3736. HeaderAlignmentHorz = taCenter
  3737. HeaderAlignmentVert = vaCenter
  3738. HeaderGlyphAlignmentHorz = taCenter
  3739. Options.Editing = False
  3740. Width = 330
  3741. end
  3742. object cxGridColumn149: TcxGridColumn
  3743. PropertiesClassName = 'TcxLabelProperties'
  3744. Visible = False
  3745. GroupSummaryAlignment = taCenter
  3746. HeaderAlignmentHorz = taCenter
  3747. HeaderAlignmentVert = vaCenter
  3748. HeaderGlyphAlignmentHorz = taCenter
  3749. end
  3750. object cxGridColumn150: TcxGridColumn
  3751. PropertiesClassName = 'TcxLabelProperties'
  3752. Properties.Alignment.Vert = taVCenter
  3753. Visible = False
  3754. GroupSummaryAlignment = taCenter
  3755. HeaderAlignmentHorz = taCenter
  3756. HeaderAlignmentVert = vaCenter
  3757. HeaderGlyphAlignmentHorz = taCenter
  3758. IsCaptionAssigned = True
  3759. end
  3760. object cxGridColumn151: TcxGridColumn
  3761. PropertiesClassName = 'TcxLabelProperties'
  3762. Visible = False
  3763. GroupSummaryAlignment = taCenter
  3764. HeaderAlignmentHorz = taCenter
  3765. HeaderAlignmentVert = vaCenter
  3766. HeaderGlyphAlignmentHorz = taCenter
  3767. end
  3768. object cxGridColumn152: TcxGridColumn
  3769. PropertiesClassName = 'TcxLabelProperties'
  3770. Visible = False
  3771. GroupSummaryAlignment = taCenter
  3772. HeaderAlignmentHorz = taCenter
  3773. HeaderAlignmentVert = vaCenter
  3774. HeaderGlyphAlignmentHorz = taCenter
  3775. end
  3776. object cxGridColumn153: TcxGridColumn
  3777. PropertiesClassName = 'TcxLabelProperties'
  3778. Visible = False
  3779. GroupSummaryAlignment = taCenter
  3780. HeaderAlignmentHorz = taCenter
  3781. HeaderAlignmentVert = vaCenter
  3782. HeaderGlyphAlignmentHorz = taCenter
  3783. end
  3784. object cxGridColumn154: TcxGridColumn
  3785. PropertiesClassName = 'TcxLabelProperties'
  3786. Visible = False
  3787. GroupSummaryAlignment = taCenter
  3788. HeaderAlignmentHorz = taCenter
  3789. HeaderAlignmentVert = vaCenter
  3790. HeaderGlyphAlignmentHorz = taCenter
  3791. end
  3792. object cxGridColumn155: TcxGridColumn
  3793. PropertiesClassName = 'TcxLabelProperties'
  3794. Visible = False
  3795. GroupSummaryAlignment = taCenter
  3796. HeaderAlignmentHorz = taCenter
  3797. HeaderAlignmentVert = vaCenter
  3798. HeaderGlyphAlignmentHorz = taCenter
  3799. end
  3800. object TvForm7Column1: TcxGridColumn
  3801. Caption = #54268#47749#52845
  3802. PropertiesClassName = 'TcxLabelProperties'
  3803. Properties.Alignment.Vert = taVCenter
  3804. HeaderAlignmentHorz = taCenter
  3805. HeaderAlignmentVert = vaCenter
  3806. end
  3807. end
  3808. object GlForm7: TcxGridLevel
  3809. GridView = TvForm7
  3810. end
  3811. end
  3812. end
  3813. end
  3814. end
  3815. object TabSheet8: TcxTabSheet
  3816. Tag = 8
  3817. Caption = ' '#49828#53944#47532#48141#50689#49345' '
  3818. ImageIndex = 7
  3819. object PnlStream: TPanel
  3820. Left = 0
  3821. Top = 0
  3822. Width = 1097
  3823. Height = 592
  3824. Align = alClient
  3825. BevelOuter = bvNone
  3826. TabOrder = 0
  3827. object cxGroupBox17: TcxGroupBox
  3828. Left = 0
  3829. Top = 0
  3830. Align = alClient
  3831. Caption = #49828#53944#47532#48141#50689#49345' '#49828#52992#51460
  3832. TabOrder = 0
  3833. Height = 592
  3834. Width = 632
  3835. object CxGrid8: TcxGrid
  3836. Left = 3
  3837. Top = 19
  3838. Width = 626
  3839. Height = 563
  3840. Align = alClient
  3841. TabOrder = 0
  3842. object TvGrid8: TcxGridTableView
  3843. Tag = 8
  3844. OnCellDblClick = TvGridCellDblClick
  3845. DataController.Summary.DefaultGroupSummaryItems = <>
  3846. DataController.Summary.FooterSummaryItems = <>
  3847. DataController.Summary.SummaryGroups = <>
  3848. OptionsCustomize.ColumnFiltering = False
  3849. OptionsData.CancelOnExit = False
  3850. OptionsData.Deleting = False
  3851. OptionsData.DeletingConfirmation = False
  3852. OptionsData.Inserting = False
  3853. OptionsSelection.HideFocusRectOnExit = False
  3854. OptionsSelection.HideSelection = True
  3855. OptionsView.ColumnAutoWidth = True
  3856. OptionsView.DataRowHeight = 64
  3857. OptionsView.GroupByBox = False
  3858. OptionsView.Indicator = True
  3859. object ColSch001: TcxGridColumn
  3860. Caption = #54268' ID'
  3861. PropertiesClassName = 'TcxLabelProperties'
  3862. Properties.Alignment.Horz = taCenter
  3863. Properties.Alignment.Vert = taVCenter
  3864. GroupSummaryAlignment = taCenter
  3865. HeaderAlignmentHorz = taCenter
  3866. HeaderAlignmentVert = vaCenter
  3867. HeaderGlyphAlignmentHorz = taCenter
  3868. Width = 55
  3869. end
  3870. object ColSch002: TcxGridColumn
  3871. Caption = #54268' '#47112#51060#50500#50883
  3872. DataBinding.ValueType = 'Variant'
  3873. PropertiesClassName = 'TcxImageProperties'
  3874. Properties.GraphicClassName = 'TdxSmartImage'
  3875. GroupSummaryAlignment = taCenter
  3876. HeaderAlignmentHorz = taCenter
  3877. HeaderAlignmentVert = vaCenter
  3878. HeaderGlyphAlignmentHorz = taCenter
  3879. Options.Editing = False
  3880. Width = 330
  3881. end
  3882. object ColSch003: TcxGridColumn
  3883. Caption = #44396#44036
  3884. PropertiesClassName = 'TcxLabelProperties'
  3885. Properties.Alignment.Horz = taCenter
  3886. Properties.Alignment.Vert = taVCenter
  3887. Visible = False
  3888. GroupSummaryAlignment = taCenter
  3889. HeaderAlignmentHorz = taCenter
  3890. HeaderAlignmentVert = vaCenter
  3891. HeaderGlyphAlignmentHorz = taCenter
  3892. Options.Editing = False
  3893. Width = 60
  3894. end
  3895. object ColSch004: TcxGridColumn
  3896. Caption = #54364#52636'('#52488')'
  3897. PropertiesClassName = 'TcxComboBoxProperties'
  3898. Properties.Alignment.Horz = taCenter
  3899. Properties.Alignment.Vert = taVCenter
  3900. Properties.DropDownListStyle = lsFixedList
  3901. Properties.ImmediatePost = True
  3902. Properties.Items.Strings = (
  3903. '1'
  3904. '2'
  3905. '3'
  3906. '4'
  3907. '5'
  3908. '6'
  3909. '7'
  3910. '8'
  3911. '9'
  3912. '10'
  3913. '11'
  3914. '12'
  3915. '13'
  3916. '14'
  3917. '15'
  3918. '16'
  3919. '17'
  3920. '18'
  3921. '19'
  3922. '20'
  3923. '21'
  3924. '22'
  3925. '23'
  3926. '24'
  3927. '25'
  3928. '26'
  3929. '27'
  3930. '28'
  3931. '29'
  3932. '30')
  3933. GroupSummaryAlignment = taCenter
  3934. HeaderAlignmentHorz = taCenter
  3935. HeaderAlignmentVert = vaCenter
  3936. HeaderGlyphAlignmentHorz = taCenter
  3937. Width = 60
  3938. end
  3939. object ColSch005: TcxGridColumn
  3940. Caption = #49884#51089#49884#44033
  3941. PropertiesClassName = 'TcxTextEditProperties'
  3942. Properties.Alignment.Horz = taCenter
  3943. Properties.Alignment.Vert = taVCenter
  3944. GroupSummaryAlignment = taCenter
  3945. HeaderAlignmentHorz = taCenter
  3946. HeaderAlignmentVert = vaCenter
  3947. HeaderGlyphAlignmentHorz = taCenter
  3948. Options.Editing = False
  3949. Width = 80
  3950. end
  3951. object ColSch006: TcxGridColumn
  3952. Caption = #51333#47308#49884#44033
  3953. PropertiesClassName = 'TcxTextEditProperties'
  3954. Properties.Alignment.Horz = taCenter
  3955. Properties.Alignment.Vert = taVCenter
  3956. OnCustomDrawCell = cxGridColumn172CustomDrawCell
  3957. GroupSummaryAlignment = taCenter
  3958. HeaderAlignmentHorz = taCenter
  3959. HeaderAlignmentVert = vaCenter
  3960. HeaderGlyphAlignmentHorz = taCenter
  3961. Options.Editing = False
  3962. Width = 80
  3963. end
  3964. object ColSch007: TcxGridColumn
  3965. Caption = #49324#50857
  3966. PropertiesClassName = 'TcxComboBoxProperties'
  3967. Properties.Alignment.Horz = taCenter
  3968. Properties.Alignment.Vert = taVCenter
  3969. Properties.DropDownListStyle = lsFixedList
  3970. Properties.ImmediatePost = True
  3971. Properties.Items.Strings = (
  3972. 'Y'
  3973. 'N')
  3974. GroupSummaryAlignment = taCenter
  3975. HeaderAlignmentHorz = taCenter
  3976. HeaderAlignmentVert = vaCenter
  3977. HeaderGlyphAlignmentHorz = taCenter
  3978. end
  3979. object ColSch008: TcxGridColumn
  3980. Caption = #49884#51089#49884#44033
  3981. PropertiesClassName = 'TcxTextEditProperties'
  3982. Visible = False
  3983. GroupSummaryAlignment = taCenter
  3984. HeaderAlignmentHorz = taCenter
  3985. HeaderAlignmentVert = vaCenter
  3986. HeaderGlyphAlignmentHorz = taCenter
  3987. end
  3988. object ColSch009: TcxGridColumn
  3989. Caption = #51333#47308#49884#44033
  3990. PropertiesClassName = 'TcxTextEditProperties'
  3991. Visible = False
  3992. GroupSummaryAlignment = taCenter
  3993. HeaderAlignmentHorz = taCenter
  3994. HeaderAlignmentVert = vaCenter
  3995. HeaderGlyphAlignmentHorz = taCenter
  3996. end
  3997. object cxGridColumn156: TcxGridColumn
  3998. PropertiesClassName = 'TcxTextEditProperties'
  3999. Properties.Alignment.Horz = taCenter
  4000. Properties.Alignment.Vert = taVCenter
  4001. Visible = False
  4002. end
  4003. object cxGridColumn157: TcxGridColumn
  4004. PropertiesClassName = 'TcxTextEditProperties'
  4005. Properties.Alignment.Horz = taCenter
  4006. Properties.Alignment.Vert = taVCenter
  4007. Visible = False
  4008. end
  4009. object cxGridColumn158: TcxGridColumn
  4010. PropertiesClassName = 'TcxTextEditProperties'
  4011. Properties.Alignment.Horz = taCenter
  4012. Properties.Alignment.Vert = taVCenter
  4013. Visible = False
  4014. end
  4015. object cxGridColumn159: TcxGridColumn
  4016. PropertiesClassName = 'TcxTextEditProperties'
  4017. Properties.Alignment.Horz = taCenter
  4018. Properties.Alignment.Vert = taVCenter
  4019. Visible = False
  4020. end
  4021. object cxGridColumn160: TcxGridColumn
  4022. Caption = 'VMS'#50976#54805#53076#46300
  4023. PropertiesClassName = 'TcxTextEditProperties'
  4024. Properties.Alignment.Horz = taCenter
  4025. Properties.Alignment.Vert = taVCenter
  4026. Visible = False
  4027. VisibleForCustomization = False
  4028. end
  4029. object cxGridColumn161: TcxGridColumn
  4030. Caption = #54268#49353#49345
  4031. PropertiesClassName = 'TcxTextEditProperties'
  4032. Properties.Alignment.Horz = taCenter
  4033. Properties.Alignment.Vert = taVCenter
  4034. Visible = False
  4035. VisibleForCustomization = False
  4036. end
  4037. object cxGridColumn162: TcxGridColumn
  4038. Caption = #54268#50976#54805
  4039. PropertiesClassName = 'TcxTextEditProperties'
  4040. Properties.Alignment.Horz = taRightJustify
  4041. Properties.Alignment.Vert = taVCenter
  4042. Visible = False
  4043. VisibleForCustomization = False
  4044. end
  4045. object cxGridColumn163: TcxGridColumn
  4046. PropertiesClassName = 'TcxTextEditProperties'
  4047. Visible = False
  4048. VisibleForCustomization = False
  4049. end
  4050. object cxGridColumn164: TcxGridColumn
  4051. PropertiesClassName = 'TcxTextEditProperties'
  4052. Visible = False
  4053. VisibleForCustomization = False
  4054. end
  4055. object cxGridColumn165: TcxGridColumn
  4056. PropertiesClassName = 'TcxTextEditProperties'
  4057. Visible = False
  4058. VisibleForCustomization = False
  4059. end
  4060. object cxGridColumn166: TcxGridColumn
  4061. PropertiesClassName = 'TcxTextEditProperties'
  4062. Visible = False
  4063. VisibleForCustomization = False
  4064. end
  4065. object TvGrid8Column1: TcxGridColumn
  4066. PropertiesClassName = 'TcxLabelProperties'
  4067. Visible = False
  4068. VisibleForCustomization = False
  4069. end
  4070. object TvGrid8Column2: TcxGridColumn
  4071. PropertiesClassName = 'TcxLabelProperties'
  4072. Visible = False
  4073. VisibleForCustomization = False
  4074. end
  4075. end
  4076. object GlGrid8: TcxGridLevel
  4077. GridView = TvGrid8
  4078. end
  4079. end
  4080. end
  4081. object Panel13: TPanel
  4082. Left = 632
  4083. Top = 0
  4084. Width = 95
  4085. Height = 592
  4086. Align = alRight
  4087. BevelOuter = bvNone
  4088. TabOrder = 1
  4089. object BtnListAdd8: TcxButton
  4090. Tag = 8
  4091. Left = 8
  4092. Top = 125
  4093. Width = 80
  4094. Height = 25
  4095. Cursor = crHandPoint
  4096. Hint = #49828#52992#51460' '#52628#44032
  4097. Caption = #9664' '#52628#44032
  4098. Colors.Default = 10737865
  4099. LookAndFeel.NativeStyle = False
  4100. TabOrder = 0
  4101. Font.Charset = DEFAULT_CHARSET
  4102. Font.Color = clWindowText
  4103. Font.Height = -13
  4104. Font.Name = #47569#51008' '#44256#46357
  4105. Font.Style = [fsBold]
  4106. ParentFont = False
  4107. OnClick = BtnListAdd0Click
  4108. end
  4109. object BtnListDelete8: TcxButton
  4110. Tag = 8
  4111. Left = 8
  4112. Top = 161
  4113. Width = 80
  4114. Height = 25
  4115. Cursor = crHandPoint
  4116. Hint = #49828#52992#51460' '#49325#51228
  4117. Caption = #49325#51228' '#9654
  4118. Colors.Default = 10737865
  4119. LookAndFeel.NativeStyle = False
  4120. TabOrder = 1
  4121. Font.Charset = DEFAULT_CHARSET
  4122. Font.Color = clWindowText
  4123. Font.Height = -13
  4124. Font.Name = #47569#51008' '#44256#46357
  4125. Font.Style = [fsBold]
  4126. ParentFont = False
  4127. OnClick = BtnListDelete0Click
  4128. end
  4129. end
  4130. object cxGroupBox18: TcxGroupBox
  4131. Left = 727
  4132. Top = 0
  4133. Align = alRight
  4134. Caption = #49828#53944#47532#48141#50689#49345' '#54268
  4135. TabOrder = 2
  4136. Height = 592
  4137. Width = 370
  4138. object CxForm8: TcxGrid
  4139. Left = 3
  4140. Top = 19
  4141. Width = 364
  4142. Height = 563
  4143. Align = alClient
  4144. TabOrder = 0
  4145. object TvForm8: TcxGridTableView
  4146. Tag = 8
  4147. OnCellDblClick = TvFormCellDblClick
  4148. DataController.Summary.DefaultGroupSummaryItems = <>
  4149. DataController.Summary.FooterSummaryItems = <>
  4150. DataController.Summary.SummaryGroups = <>
  4151. OptionsCustomize.ColumnFiltering = False
  4152. OptionsSelection.HideFocusRectOnExit = False
  4153. OptionsSelection.HideSelection = True
  4154. OptionsView.DataRowHeight = 64
  4155. OptionsView.GroupByBox = False
  4156. object cxGridColumn176: TcxGridColumn
  4157. Caption = #54268' ID'
  4158. PropertiesClassName = 'TcxLabelProperties'
  4159. Properties.Alignment.Horz = taCenter
  4160. Properties.Alignment.Vert = taVCenter
  4161. GroupSummaryAlignment = taCenter
  4162. HeaderAlignmentHorz = taCenter
  4163. HeaderAlignmentVert = vaCenter
  4164. HeaderGlyphAlignmentHorz = taCenter
  4165. Options.Editing = False
  4166. Width = 55
  4167. end
  4168. object cxGridColumn177: TcxGridColumn
  4169. Caption = #54268' '#47112#51060#50500#50883
  4170. DataBinding.ValueType = 'Variant'
  4171. PropertiesClassName = 'TcxImageProperties'
  4172. Properties.GraphicClassName = 'TdxSmartImage'
  4173. GroupSummaryAlignment = taCenter
  4174. HeaderAlignmentHorz = taCenter
  4175. HeaderAlignmentVert = vaCenter
  4176. HeaderGlyphAlignmentHorz = taCenter
  4177. Options.Editing = False
  4178. Width = 330
  4179. end
  4180. object cxGridColumn178: TcxGridColumn
  4181. PropertiesClassName = 'TcxLabelProperties'
  4182. Visible = False
  4183. GroupSummaryAlignment = taCenter
  4184. HeaderAlignmentHorz = taCenter
  4185. HeaderAlignmentVert = vaCenter
  4186. HeaderGlyphAlignmentHorz = taCenter
  4187. end
  4188. object cxGridColumn179: TcxGridColumn
  4189. PropertiesClassName = 'TcxLabelProperties'
  4190. Properties.Alignment.Vert = taVCenter
  4191. Visible = False
  4192. GroupSummaryAlignment = taCenter
  4193. HeaderAlignmentHorz = taCenter
  4194. HeaderAlignmentVert = vaCenter
  4195. HeaderGlyphAlignmentHorz = taCenter
  4196. IsCaptionAssigned = True
  4197. end
  4198. object cxGridColumn180: TcxGridColumn
  4199. PropertiesClassName = 'TcxLabelProperties'
  4200. Visible = False
  4201. GroupSummaryAlignment = taCenter
  4202. HeaderAlignmentHorz = taCenter
  4203. HeaderAlignmentVert = vaCenter
  4204. HeaderGlyphAlignmentHorz = taCenter
  4205. end
  4206. object cxGridColumn181: TcxGridColumn
  4207. PropertiesClassName = 'TcxLabelProperties'
  4208. Visible = False
  4209. GroupSummaryAlignment = taCenter
  4210. HeaderAlignmentHorz = taCenter
  4211. HeaderAlignmentVert = vaCenter
  4212. HeaderGlyphAlignmentHorz = taCenter
  4213. end
  4214. object cxGridColumn182: TcxGridColumn
  4215. PropertiesClassName = 'TcxLabelProperties'
  4216. Visible = False
  4217. GroupSummaryAlignment = taCenter
  4218. HeaderAlignmentHorz = taCenter
  4219. HeaderAlignmentVert = vaCenter
  4220. HeaderGlyphAlignmentHorz = taCenter
  4221. end
  4222. object cxGridColumn183: TcxGridColumn
  4223. PropertiesClassName = 'TcxLabelProperties'
  4224. Visible = False
  4225. GroupSummaryAlignment = taCenter
  4226. HeaderAlignmentHorz = taCenter
  4227. HeaderAlignmentVert = vaCenter
  4228. HeaderGlyphAlignmentHorz = taCenter
  4229. end
  4230. object cxGridColumn184: TcxGridColumn
  4231. PropertiesClassName = 'TcxLabelProperties'
  4232. Visible = False
  4233. GroupSummaryAlignment = taCenter
  4234. HeaderAlignmentHorz = taCenter
  4235. HeaderAlignmentVert = vaCenter
  4236. HeaderGlyphAlignmentHorz = taCenter
  4237. end
  4238. object TvForm8Column1: TcxGridColumn
  4239. Caption = #54268#47749#52845
  4240. PropertiesClassName = 'TcxLabelProperties'
  4241. Properties.Alignment.Vert = taVCenter
  4242. HeaderAlignmentHorz = taCenter
  4243. HeaderAlignmentVert = vaCenter
  4244. end
  4245. end
  4246. object GlForm8: TcxGridLevel
  4247. GridView = TvForm8
  4248. end
  4249. end
  4250. end
  4251. end
  4252. end
  4253. end
  4254. object cxLabel1: TcxLabel
  4255. Left = 3
  4256. Top = 690
  4257. Align = alBottom
  4258. Caption = ' '#49828#52992#51460' '#47785#47197#51012' '#45908#48660#53364#47533#54616#47732' '#49464#48512#54637#47785#51012' '#49688#51221#54616#49892' '#49688' '#51080#49845#45768#45796'.'
  4259. ParentColor = False
  4260. ParentFont = False
  4261. Style.Color = clBtnFace
  4262. Style.Font.Charset = DEFAULT_CHARSET
  4263. Style.Font.Color = clBlue
  4264. Style.Font.Height = -13
  4265. Style.Font.Name = #47569#51008' '#44256#46357
  4266. Style.Font.Style = [fsBold]
  4267. Style.LookAndFeel.NativeStyle = True
  4268. Style.TextStyle = [fsBold]
  4269. Style.IsFontAssigned = True
  4270. StyleDisabled.LookAndFeel.NativeStyle = True
  4271. StyleFocused.LookAndFeel.NativeStyle = True
  4272. StyleHot.LookAndFeel.NativeStyle = True
  4273. Properties.Alignment.Horz = taLeftJustify
  4274. Properties.Alignment.Vert = taVCenter
  4275. Transparent = True
  4276. AnchorY = 701
  4277. end
  4278. object ChkAutoWidth: TcxCheckBox
  4279. Left = 640
  4280. Top = 650
  4281. Cursor = crHandPoint
  4282. Hint = #52972#47100#45331#51060' '#51088#46041#51221#47148
  4283. Anchors = [akRight, akBottom]
  4284. Caption = #51204#52404#48372#44592
  4285. State = cbsChecked
  4286. TabOrder = 3
  4287. Transparent = True
  4288. Visible = False
  4289. Width = 86
  4290. end
  4291. end
  4292. end
  4293. end
  4294. end
  4295. object BtnSearch: TcxButton
  4296. Left = 1345
  4297. Top = 11
  4298. Width = 80
  4299. Height = 25
  4300. Cursor = crHandPoint
  4301. Hint = #51312#54924
  4302. Anchors = [akTop, akRight]
  4303. Caption = #51312#54924
  4304. Colors.Default = 10737865
  4305. LookAndFeel.NativeStyle = False
  4306. TabOrder = 3
  4307. Visible = False
  4308. Font.Charset = DEFAULT_CHARSET
  4309. Font.Color = clBlack
  4310. Font.Height = -13
  4311. Font.Name = #47569#51008' '#44256#46357
  4312. Font.Style = [fsBold]
  4313. ParentFont = False
  4314. OnClick = BtnSearchClick
  4315. end
  4316. object EdVmsNmbr: TcxTextEdit
  4317. Left = 545
  4318. Top = 8
  4319. ImeMode = imSAlpha
  4320. Properties.Alignment.Horz = taCenter
  4321. Properties.Alignment.Vert = taVCenter
  4322. Properties.ImeMode = imSAlpha
  4323. Properties.MaxLength = 0
  4324. Properties.ReadOnly = True
  4325. Style.LookAndFeel.Kind = lfUltraFlat
  4326. Style.LookAndFeel.NativeStyle = False
  4327. Style.Shadow = False
  4328. StyleDisabled.LookAndFeel.Kind = lfUltraFlat
  4329. StyleDisabled.LookAndFeel.NativeStyle = False
  4330. StyleFocused.LookAndFeel.Kind = lfUltraFlat
  4331. StyleFocused.LookAndFeel.NativeStyle = False
  4332. StyleHot.LookAndFeel.Kind = lfUltraFlat
  4333. StyleHot.LookAndFeel.NativeStyle = False
  4334. TabOrder = 4
  4335. Visible = False
  4336. Width = 83
  4337. end
  4338. object PnlTemp: TPanel
  4339. Left = 575
  4340. Top = 354
  4341. Width = 449
  4342. Height = 223
  4343. TabOrder = 5
  4344. Visible = False
  4345. object ImgForm: TImage
  4346. Left = 64
  4347. Top = 152
  4348. Width = 80
  4349. Height = 57
  4350. Visible = False
  4351. end
  4352. object PnlEdtBack: TPanel
  4353. Left = 3
  4354. Top = 2
  4355. Width = 271
  4356. Height = 73
  4357. BevelInner = bvLowered
  4358. Color = clSilver
  4359. ParentBackground = False
  4360. TabOrder = 0
  4361. object PnlEditForm: TPanel
  4362. Left = 2
  4363. Top = 2
  4364. Width = 267
  4365. Height = 69
  4366. Align = alClient
  4367. BevelOuter = bvNone
  4368. Color = clBlack
  4369. ParentBackground = False
  4370. TabOrder = 0
  4371. end
  4372. end
  4373. end
  4374. object lblTitle: TcxLabel
  4375. Left = 27
  4376. Top = 295
  4377. Caption = #9654' '#44256#51221' '#49828#52992#51460' '#49444#51221
  4378. Transparent = True
  4379. Visible = False
  4380. end
  4381. object lblErr2: TcxLabel
  4382. Left = 29
  4383. Top = 391
  4384. Caption = 'VMS '#44256#51221' '#49828#52992#51460' '#44288#47532#13#10'VMS '#47785#47197#50640#49436' VMS'#47484' '#47676#51200' '#49440#53469#54620' '#54980' '#51089#50629#51012' '#51652#54665#54616#49464#50836'.'
  4385. Transparent = True
  4386. Visible = False
  4387. end
  4388. object lblErr3: TcxLabel
  4389. Left = 29
  4390. Top = 435
  4391. Caption = #49440#53469#54620' VMS'#51032' '#44256#51221' '#49828#52992#51460' '#51221#48372#47484' '#51200#51109#54616#49884#44192#49845#45768#44620'?'
  4392. Transparent = True
  4393. Visible = False
  4394. end
  4395. object lblErr4: TcxLabel
  4396. Left = 29
  4397. Top = 506
  4398. Caption = 'VMS '#44256#51221' '#49828#52992#51460' '#44288#47532#13#10'VMS '#44256#51221' '#49828#52992#51460' '#51221#48372#47484' '#51200#51109' '#54616#50688#49845#45768#45796'.'
  4399. Transparent = True
  4400. Visible = False
  4401. end
  4402. object TmrShow: TTimer
  4403. Enabled = False
  4404. Interval = 300
  4405. OnTimer = TmrShowTimer
  4406. Left = 876
  4407. Top = 8
  4408. end
  4409. object VmsDesigner1: VmsDesigner
  4410. Left = 688
  4411. Top = 8
  4412. end
  4413. end