1198d986a7fbea423460934b38be9b6619de841d.svn-base 294 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490
  1. namespace FPER
  2. {
  3. partial class frmControlMode_BigReceiver
  4. {
  5. /// <summary>
  6. /// 필수 디자이너 변수입니다.
  7. /// </summary>
  8. private System.ComponentModel.IContainer components = null;
  9. /// <summary>
  10. /// 사용 중인 모든 리소스를 정리합니다.
  11. /// </summary>
  12. /// <param name="disposing">관리되는 리소스를 삭제해야 하면 true이고, 그렇지 않으면 false입니다.</param>
  13. protected override void Dispose(bool disposing)
  14. {
  15. if (disposing && (components != null))
  16. {
  17. components.Dispose();
  18. }
  19. base.Dispose(disposing);
  20. }
  21. #region Windows Form 디자이너에서 생성한 코드
  22. /// <summary>
  23. /// 디자이너 지원에 필요한 메서드입니다.
  24. /// 이 메서드의 내용을 코드 편집기로 수정하지 마십시오.
  25. /// </summary>
  26. private void InitializeComponent()
  27. {
  28. this.components = new System.ComponentModel.Container();
  29. System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmControlMode_BigReceiver));
  30. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle();
  31. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle2 = new System.Windows.Forms.DataGridViewCellStyle();
  32. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle3 = new System.Windows.Forms.DataGridViewCellStyle();
  33. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle4 = new System.Windows.Forms.DataGridViewCellStyle();
  34. this.lblDir = new System.Windows.Forms.Label();
  35. this.panel1 = new System.Windows.Forms.Panel();
  36. this.btnWinClose = new System.Windows.Forms.Button();
  37. this.tabControl_Main = new System.Windows.Forms.TabControl();
  38. this.tabPage_Board = new System.Windows.Forms.TabPage();
  39. this.checkBox_All_4 = new System.Windows.Forms.CheckBox();
  40. this.groupBox2 = new System.Windows.Forms.GroupBox();
  41. this.cb_COMM1_CH3Use = new System.Windows.Forms.CheckBox();
  42. this.cb_COMM3_CH3Use = new System.Windows.Forms.CheckBox();
  43. this.cb_COMM1_CH4Use = new System.Windows.Forms.CheckBox();
  44. this.cb_COMM6_CH4Use = new System.Windows.Forms.CheckBox();
  45. this.cb_COMM3_CH4Use = new System.Windows.Forms.CheckBox();
  46. this.cb_COMM4_CH3Use = new System.Windows.Forms.CheckBox();
  47. this.cb_COMM2_CH3Use = new System.Windows.Forms.CheckBox();
  48. this.cb_COMM7_CH3Use = new System.Windows.Forms.CheckBox();
  49. this.cb_COMM2_CH4Use = new System.Windows.Forms.CheckBox();
  50. this.cb_COMM4_CH4Use = new System.Windows.Forms.CheckBox();
  51. this.cb_COMM6_CH3Use = new System.Windows.Forms.CheckBox();
  52. this.cb_COMM7_CH4Use = new System.Windows.Forms.CheckBox();
  53. this.cb_COMM8_CH3Use = new System.Windows.Forms.CheckBox();
  54. this.cb_COMM5_CH4Use = new System.Windows.Forms.CheckBox();
  55. this.cb_COMM8_CH4Use = new System.Windows.Forms.CheckBox();
  56. this.cb_COMM5_CH3Use = new System.Windows.Forms.CheckBox();
  57. this.label1 = new System.Windows.Forms.Label();
  58. this.label2 = new System.Windows.Forms.Label();
  59. this.checkBox_All_3 = new System.Windows.Forms.CheckBox();
  60. this.checkBox_All_2 = new System.Windows.Forms.CheckBox();
  61. this.cb_COMM1_CH1Use = new System.Windows.Forms.CheckBox();
  62. this.label9 = new System.Windows.Forms.Label();
  63. this.cb_COMM3_CH1Use = new System.Windows.Forms.CheckBox();
  64. this.label10 = new System.Windows.Forms.Label();
  65. this.cb_COMM1_CH2Use = new System.Windows.Forms.CheckBox();
  66. this.lbl_COMM6 = new System.Windows.Forms.Label();
  67. this.cb_COMM6_CH2Use = new System.Windows.Forms.CheckBox();
  68. this.lbl_COMM1 = new System.Windows.Forms.Label();
  69. this.cb_COMM3_CH2Use = new System.Windows.Forms.CheckBox();
  70. this.checkBox_All_1 = new System.Windows.Forms.CheckBox();
  71. this.lbl_COMM3 = new System.Windows.Forms.Label();
  72. this.cb_COMM4_CH1Use = new System.Windows.Forms.CheckBox();
  73. this.cb_COMM2_CH1Use = new System.Windows.Forms.CheckBox();
  74. this.lbl_COMM55 = new System.Windows.Forms.Label();
  75. this.cb_COMM7_CH1Use = new System.Windows.Forms.CheckBox();
  76. this.cb_COMM2_CH2Use = new System.Windows.Forms.CheckBox();
  77. this.cb_COMM4_CH2Use = new System.Windows.Forms.CheckBox();
  78. this.lbl_COMM2 = new System.Windows.Forms.Label();
  79. this.lbl_COMM35 = new System.Windows.Forms.Label();
  80. this.lbl_COMM15 = new System.Windows.Forms.Label();
  81. this.lbl_COMM4 = new System.Windows.Forms.Label();
  82. this.cb_COMM6_CH1Use = new System.Windows.Forms.CheckBox();
  83. this.cb_COMM55_CH4Use = new System.Windows.Forms.CheckBox();
  84. this.lbl_COMM5 = new System.Windows.Forms.Label();
  85. this.cb_COMM35_CH4Use = new System.Windows.Forms.CheckBox();
  86. this.cb_COMM7_CH2Use = new System.Windows.Forms.CheckBox();
  87. this.cb_COMM15_CH4Use = new System.Windows.Forms.CheckBox();
  88. this.lbl_COMM7 = new System.Windows.Forms.Label();
  89. this.cb_COMM55_CH2Use = new System.Windows.Forms.CheckBox();
  90. this.cb_COMM35_CH2Use = new System.Windows.Forms.CheckBox();
  91. this.cb_COMM8_CH1Use = new System.Windows.Forms.CheckBox();
  92. this.cb_COMM15_CH2Use = new System.Windows.Forms.CheckBox();
  93. this.cb_COMM5_CH2Use = new System.Windows.Forms.CheckBox();
  94. this.cb_COMM55_CH3Use = new System.Windows.Forms.CheckBox();
  95. this.cb_COMM8_CH2Use = new System.Windows.Forms.CheckBox();
  96. this.cb_COMM5_CH1Use = new System.Windows.Forms.CheckBox();
  97. this.cb_COMM35_CH3Use = new System.Windows.Forms.CheckBox();
  98. this.cb_COMM15_CH3Use = new System.Windows.Forms.CheckBox();
  99. this.lbl_COMM8 = new System.Windows.Forms.Label();
  100. this.cb_COMM55_CH1Use = new System.Windows.Forms.CheckBox();
  101. this.cb_COMM35_CH1Use = new System.Windows.Forms.CheckBox();
  102. this.cb_COMM15_CH1Use = new System.Windows.Forms.CheckBox();
  103. this.lbl_COMM59 = new System.Windows.Forms.Label();
  104. this.lbl_COMM39 = new System.Windows.Forms.Label();
  105. this.lbl_COMM19 = new System.Windows.Forms.Label();
  106. this.lbl_COMM54 = new System.Windows.Forms.Label();
  107. this.lbl_COMM34 = new System.Windows.Forms.Label();
  108. this.lbl_COMM14 = new System.Windows.Forms.Label();
  109. this.cb_COMM59_CH4Use = new System.Windows.Forms.CheckBox();
  110. this.cb_COMM39_CH4Use = new System.Windows.Forms.CheckBox();
  111. this.cb_COMM19_CH4Use = new System.Windows.Forms.CheckBox();
  112. this.cb_COMM59_CH2Use = new System.Windows.Forms.CheckBox();
  113. this.cb_COMM39_CH2Use = new System.Windows.Forms.CheckBox();
  114. this.cb_COMM19_CH2Use = new System.Windows.Forms.CheckBox();
  115. this.cb_COMM54_CH4Use = new System.Windows.Forms.CheckBox();
  116. this.cb_COMM34_CH4Use = new System.Windows.Forms.CheckBox();
  117. this.cb_COMM14_CH4Use = new System.Windows.Forms.CheckBox();
  118. this.cb_COMM54_CH2Use = new System.Windows.Forms.CheckBox();
  119. this.cb_COMM34_CH2Use = new System.Windows.Forms.CheckBox();
  120. this.cb_COMM14_CH2Use = new System.Windows.Forms.CheckBox();
  121. this.cb_COMM59_CH3Use = new System.Windows.Forms.CheckBox();
  122. this.cb_COMM39_CH3Use = new System.Windows.Forms.CheckBox();
  123. this.cb_COMM19_CH3Use = new System.Windows.Forms.CheckBox();
  124. this.cb_COMM59_CH1Use = new System.Windows.Forms.CheckBox();
  125. this.cb_COMM39_CH1Use = new System.Windows.Forms.CheckBox();
  126. this.cb_COMM19_CH1Use = new System.Windows.Forms.CheckBox();
  127. this.cb_COMM54_CH3Use = new System.Windows.Forms.CheckBox();
  128. this.cb_COMM34_CH3Use = new System.Windows.Forms.CheckBox();
  129. this.cb_COMM14_CH3Use = new System.Windows.Forms.CheckBox();
  130. this.cb_COMM54_CH1Use = new System.Windows.Forms.CheckBox();
  131. this.cb_COMM34_CH1Use = new System.Windows.Forms.CheckBox();
  132. this.cb_COMM14_CH1Use = new System.Windows.Forms.CheckBox();
  133. this.lbl_COMM58 = new System.Windows.Forms.Label();
  134. this.lbl_COMM38 = new System.Windows.Forms.Label();
  135. this.lbl_COMM18 = new System.Windows.Forms.Label();
  136. this.lbl_COMM53 = new System.Windows.Forms.Label();
  137. this.lbl_COMM33 = new System.Windows.Forms.Label();
  138. this.lbl_COMM13 = new System.Windows.Forms.Label();
  139. this.cb_COMM58_CH4Use = new System.Windows.Forms.CheckBox();
  140. this.cb_COMM38_CH4Use = new System.Windows.Forms.CheckBox();
  141. this.cb_COMM18_CH4Use = new System.Windows.Forms.CheckBox();
  142. this.cb_COMM58_CH2Use = new System.Windows.Forms.CheckBox();
  143. this.cb_COMM38_CH2Use = new System.Windows.Forms.CheckBox();
  144. this.cb_COMM18_CH2Use = new System.Windows.Forms.CheckBox();
  145. this.cb_COMM53_CH4Use = new System.Windows.Forms.CheckBox();
  146. this.cb_COMM33_CH4Use = new System.Windows.Forms.CheckBox();
  147. this.cb_COMM13_CH4Use = new System.Windows.Forms.CheckBox();
  148. this.cb_COMM53_CH2Use = new System.Windows.Forms.CheckBox();
  149. this.cb_COMM33_CH2Use = new System.Windows.Forms.CheckBox();
  150. this.cb_COMM13_CH2Use = new System.Windows.Forms.CheckBox();
  151. this.cb_COMM58_CH3Use = new System.Windows.Forms.CheckBox();
  152. this.cb_COMM38_CH3Use = new System.Windows.Forms.CheckBox();
  153. this.cb_COMM18_CH3Use = new System.Windows.Forms.CheckBox();
  154. this.cb_COMM58_CH1Use = new System.Windows.Forms.CheckBox();
  155. this.cb_COMM38_CH1Use = new System.Windows.Forms.CheckBox();
  156. this.cb_COMM18_CH1Use = new System.Windows.Forms.CheckBox();
  157. this.cb_COMM53_CH3Use = new System.Windows.Forms.CheckBox();
  158. this.cb_COMM33_CH3Use = new System.Windows.Forms.CheckBox();
  159. this.cb_COMM13_CH3Use = new System.Windows.Forms.CheckBox();
  160. this.cb_COMM53_CH1Use = new System.Windows.Forms.CheckBox();
  161. this.cb_COMM33_CH1Use = new System.Windows.Forms.CheckBox();
  162. this.cb_COMM13_CH1Use = new System.Windows.Forms.CheckBox();
  163. this.lbl_COMM57 = new System.Windows.Forms.Label();
  164. this.lbl_COMM37 = new System.Windows.Forms.Label();
  165. this.lbl_COMM17 = new System.Windows.Forms.Label();
  166. this.lbl_COMM52 = new System.Windows.Forms.Label();
  167. this.lbl_COMM32 = new System.Windows.Forms.Label();
  168. this.lbl_COMM12 = new System.Windows.Forms.Label();
  169. this.cb_COMM57_CH4Use = new System.Windows.Forms.CheckBox();
  170. this.cb_COMM37_CH4Use = new System.Windows.Forms.CheckBox();
  171. this.cb_COMM17_CH4Use = new System.Windows.Forms.CheckBox();
  172. this.cb_COMM57_CH2Use = new System.Windows.Forms.CheckBox();
  173. this.cb_COMM37_CH2Use = new System.Windows.Forms.CheckBox();
  174. this.cb_COMM17_CH2Use = new System.Windows.Forms.CheckBox();
  175. this.cb_COMM52_CH4Use = new System.Windows.Forms.CheckBox();
  176. this.cb_COMM32_CH4Use = new System.Windows.Forms.CheckBox();
  177. this.cb_COMM12_CH4Use = new System.Windows.Forms.CheckBox();
  178. this.cb_COMM52_CH2Use = new System.Windows.Forms.CheckBox();
  179. this.cb_COMM32_CH2Use = new System.Windows.Forms.CheckBox();
  180. this.cb_COMM12_CH2Use = new System.Windows.Forms.CheckBox();
  181. this.cb_COMM57_CH3Use = new System.Windows.Forms.CheckBox();
  182. this.cb_COMM37_CH3Use = new System.Windows.Forms.CheckBox();
  183. this.cb_COMM17_CH3Use = new System.Windows.Forms.CheckBox();
  184. this.cb_COMM57_CH1Use = new System.Windows.Forms.CheckBox();
  185. this.cb_COMM37_CH1Use = new System.Windows.Forms.CheckBox();
  186. this.cb_COMM17_CH1Use = new System.Windows.Forms.CheckBox();
  187. this.cb_COMM52_CH3Use = new System.Windows.Forms.CheckBox();
  188. this.cb_COMM32_CH3Use = new System.Windows.Forms.CheckBox();
  189. this.cb_COMM12_CH3Use = new System.Windows.Forms.CheckBox();
  190. this.cb_COMM52_CH1Use = new System.Windows.Forms.CheckBox();
  191. this.cb_COMM32_CH1Use = new System.Windows.Forms.CheckBox();
  192. this.cb_COMM12_CH1Use = new System.Windows.Forms.CheckBox();
  193. this.label80 = new System.Windows.Forms.Label();
  194. this.label55 = new System.Windows.Forms.Label();
  195. this.label33 = new System.Windows.Forms.Label();
  196. this.label79 = new System.Windows.Forms.Label();
  197. this.label54 = new System.Windows.Forms.Label();
  198. this.label8 = new System.Windows.Forms.Label();
  199. this.label78 = new System.Windows.Forms.Label();
  200. this.label52 = new System.Windows.Forms.Label();
  201. this.label32 = new System.Windows.Forms.Label();
  202. this.label77 = new System.Windows.Forms.Label();
  203. this.label51 = new System.Windows.Forms.Label();
  204. this.label5 = new System.Windows.Forms.Label();
  205. this.lbl_COMM56 = new System.Windows.Forms.Label();
  206. this.lbl_COMM36 = new System.Windows.Forms.Label();
  207. this.lbl_COMM16 = new System.Windows.Forms.Label();
  208. this.cb_COMM56_CH4Use = new System.Windows.Forms.CheckBox();
  209. this.cb_COMM36_CH4Use = new System.Windows.Forms.CheckBox();
  210. this.cb_COMM16_CH4Use = new System.Windows.Forms.CheckBox();
  211. this.lbl_COMM51 = new System.Windows.Forms.Label();
  212. this.lbl_COMM31 = new System.Windows.Forms.Label();
  213. this.lbl_COMM11 = new System.Windows.Forms.Label();
  214. this.cb_COMM56_CH2Use = new System.Windows.Forms.CheckBox();
  215. this.cb_COMM36_CH2Use = new System.Windows.Forms.CheckBox();
  216. this.cb_COMM16_CH2Use = new System.Windows.Forms.CheckBox();
  217. this.cb_COMM51_CH4Use = new System.Windows.Forms.CheckBox();
  218. this.cb_COMM31_CH4Use = new System.Windows.Forms.CheckBox();
  219. this.cb_COMM11_CH4Use = new System.Windows.Forms.CheckBox();
  220. this.cb_COMM56_CH3Use = new System.Windows.Forms.CheckBox();
  221. this.cb_COMM36_CH3Use = new System.Windows.Forms.CheckBox();
  222. this.cb_COMM16_CH3Use = new System.Windows.Forms.CheckBox();
  223. this.cb_COMM51_CH2Use = new System.Windows.Forms.CheckBox();
  224. this.cb_COMM31_CH2Use = new System.Windows.Forms.CheckBox();
  225. this.cb_COMM11_CH2Use = new System.Windows.Forms.CheckBox();
  226. this.cb_COMM56_CH1Use = new System.Windows.Forms.CheckBox();
  227. this.cb_COMM36_CH1Use = new System.Windows.Forms.CheckBox();
  228. this.cb_COMM16_CH1Use = new System.Windows.Forms.CheckBox();
  229. this.cb_COMM51_CH3Use = new System.Windows.Forms.CheckBox();
  230. this.cb_COMM31_CH3Use = new System.Windows.Forms.CheckBox();
  231. this.cb_COMM11_CH3Use = new System.Windows.Forms.CheckBox();
  232. this.cb_COMM51_CH1Use = new System.Windows.Forms.CheckBox();
  233. this.cb_COMM31_CH1Use = new System.Windows.Forms.CheckBox();
  234. this.cb_COMM11_CH1Use = new System.Windows.Forms.CheckBox();
  235. this.lbl_COMM50 = new System.Windows.Forms.Label();
  236. this.lbl_COMM30 = new System.Windows.Forms.Label();
  237. this.lbl_COMM10 = new System.Windows.Forms.Label();
  238. this.cb_COMM50_CH4Use = new System.Windows.Forms.CheckBox();
  239. this.cb_COMM30_CH4Use = new System.Windows.Forms.CheckBox();
  240. this.cb_COMM10_CH4Use = new System.Windows.Forms.CheckBox();
  241. this.cb_COMM50_CH2Use = new System.Windows.Forms.CheckBox();
  242. this.cb_COMM30_CH2Use = new System.Windows.Forms.CheckBox();
  243. this.cb_COMM10_CH2Use = new System.Windows.Forms.CheckBox();
  244. this.cb_COMM50_CH3Use = new System.Windows.Forms.CheckBox();
  245. this.cb_COMM30_CH3Use = new System.Windows.Forms.CheckBox();
  246. this.cb_COMM10_CH3Use = new System.Windows.Forms.CheckBox();
  247. this.cb_COMM50_CH1Use = new System.Windows.Forms.CheckBox();
  248. this.cb_COMM30_CH1Use = new System.Windows.Forms.CheckBox();
  249. this.cb_COMM10_CH1Use = new System.Windows.Forms.CheckBox();
  250. this.lbl_COMM64 = new System.Windows.Forms.Label();
  251. this.lbl_COMM44 = new System.Windows.Forms.Label();
  252. this.lbl_COMM24 = new System.Windows.Forms.Label();
  253. this.lbl_COMM49 = new System.Windows.Forms.Label();
  254. this.lbl_COMM29 = new System.Windows.Forms.Label();
  255. this.lbl_COMM9 = new System.Windows.Forms.Label();
  256. this.cb_COMM64_CH4Use = new System.Windows.Forms.CheckBox();
  257. this.cb_COMM44_CH4Use = new System.Windows.Forms.CheckBox();
  258. this.cb_COMM24_CH4Use = new System.Windows.Forms.CheckBox();
  259. this.cb_COMM49_CH4Use = new System.Windows.Forms.CheckBox();
  260. this.cb_COMM29_CH4Use = new System.Windows.Forms.CheckBox();
  261. this.cb_COMM9_CH4Use = new System.Windows.Forms.CheckBox();
  262. this.cb_COMM64_CH2Use = new System.Windows.Forms.CheckBox();
  263. this.cb_COMM44_CH2Use = new System.Windows.Forms.CheckBox();
  264. this.cb_COMM24_CH2Use = new System.Windows.Forms.CheckBox();
  265. this.cb_COMM49_CH2Use = new System.Windows.Forms.CheckBox();
  266. this.cb_COMM29_CH2Use = new System.Windows.Forms.CheckBox();
  267. this.cb_COMM9_CH2Use = new System.Windows.Forms.CheckBox();
  268. this.cb_COMM64_CH3Use = new System.Windows.Forms.CheckBox();
  269. this.cb_COMM44_CH3Use = new System.Windows.Forms.CheckBox();
  270. this.cb_COMM24_CH3Use = new System.Windows.Forms.CheckBox();
  271. this.cb_COMM49_CH3Use = new System.Windows.Forms.CheckBox();
  272. this.cb_COMM29_CH3Use = new System.Windows.Forms.CheckBox();
  273. this.cb_COMM9_CH3Use = new System.Windows.Forms.CheckBox();
  274. this.cb_COMM64_CH1Use = new System.Windows.Forms.CheckBox();
  275. this.cb_COMM44_CH1Use = new System.Windows.Forms.CheckBox();
  276. this.cb_COMM24_CH1Use = new System.Windows.Forms.CheckBox();
  277. this.cb_COMM49_CH1Use = new System.Windows.Forms.CheckBox();
  278. this.cb_COMM29_CH1Use = new System.Windows.Forms.CheckBox();
  279. this.cb_COMM9_CH1Use = new System.Windows.Forms.CheckBox();
  280. this.lbl_COMM63 = new System.Windows.Forms.Label();
  281. this.lbl_COMM43 = new System.Windows.Forms.Label();
  282. this.lbl_COMM23 = new System.Windows.Forms.Label();
  283. this.lbl_COMM48 = new System.Windows.Forms.Label();
  284. this.lbl_COMM28 = new System.Windows.Forms.Label();
  285. this.cb_COMM63_CH4Use = new System.Windows.Forms.CheckBox();
  286. this.cb_COMM43_CH4Use = new System.Windows.Forms.CheckBox();
  287. this.cb_COMM23_CH4Use = new System.Windows.Forms.CheckBox();
  288. this.cb_COMM48_CH4Use = new System.Windows.Forms.CheckBox();
  289. this.cb_COMM28_CH4Use = new System.Windows.Forms.CheckBox();
  290. this.cb_COMM60_CH3Use = new System.Windows.Forms.CheckBox();
  291. this.cb_COMM40_CH3Use = new System.Windows.Forms.CheckBox();
  292. this.cb_COMM20_CH3Use = new System.Windows.Forms.CheckBox();
  293. this.cb_COMM45_CH3Use = new System.Windows.Forms.CheckBox();
  294. this.cb_COMM25_CH3Use = new System.Windows.Forms.CheckBox();
  295. this.cb_COMM63_CH2Use = new System.Windows.Forms.CheckBox();
  296. this.cb_COMM43_CH2Use = new System.Windows.Forms.CheckBox();
  297. this.cb_COMM23_CH2Use = new System.Windows.Forms.CheckBox();
  298. this.cb_COMM48_CH2Use = new System.Windows.Forms.CheckBox();
  299. this.cb_COMM28_CH2Use = new System.Windows.Forms.CheckBox();
  300. this.cb_COMM63_CH3Use = new System.Windows.Forms.CheckBox();
  301. this.cb_COMM43_CH3Use = new System.Windows.Forms.CheckBox();
  302. this.cb_COMM23_CH3Use = new System.Windows.Forms.CheckBox();
  303. this.cb_COMM48_CH3Use = new System.Windows.Forms.CheckBox();
  304. this.cb_COMM28_CH3Use = new System.Windows.Forms.CheckBox();
  305. this.cb_COMM60_CH1Use = new System.Windows.Forms.CheckBox();
  306. this.cb_COMM40_CH1Use = new System.Windows.Forms.CheckBox();
  307. this.cb_COMM20_CH1Use = new System.Windows.Forms.CheckBox();
  308. this.cb_COMM45_CH1Use = new System.Windows.Forms.CheckBox();
  309. this.cb_COMM25_CH1Use = new System.Windows.Forms.CheckBox();
  310. this.cb_COMM60_CH4Use = new System.Windows.Forms.CheckBox();
  311. this.cb_COMM40_CH4Use = new System.Windows.Forms.CheckBox();
  312. this.cb_COMM20_CH4Use = new System.Windows.Forms.CheckBox();
  313. this.cb_COMM45_CH4Use = new System.Windows.Forms.CheckBox();
  314. this.cb_COMM25_CH4Use = new System.Windows.Forms.CheckBox();
  315. this.cb_COMM63_CH1Use = new System.Windows.Forms.CheckBox();
  316. this.cb_COMM43_CH1Use = new System.Windows.Forms.CheckBox();
  317. this.cb_COMM23_CH1Use = new System.Windows.Forms.CheckBox();
  318. this.cb_COMM48_CH1Use = new System.Windows.Forms.CheckBox();
  319. this.cb_COMM28_CH1Use = new System.Windows.Forms.CheckBox();
  320. this.cb_COMM60_CH2Use = new System.Windows.Forms.CheckBox();
  321. this.cb_COMM40_CH2Use = new System.Windows.Forms.CheckBox();
  322. this.cb_COMM20_CH2Use = new System.Windows.Forms.CheckBox();
  323. this.cb_COMM45_CH2Use = new System.Windows.Forms.CheckBox();
  324. this.cb_COMM25_CH2Use = new System.Windows.Forms.CheckBox();
  325. this.lbl_COMM60 = new System.Windows.Forms.Label();
  326. this.lbl_COMM40 = new System.Windows.Forms.Label();
  327. this.lbl_COMM20 = new System.Windows.Forms.Label();
  328. this.lbl_COMM62 = new System.Windows.Forms.Label();
  329. this.lbl_COMM42 = new System.Windows.Forms.Label();
  330. this.lbl_COMM22 = new System.Windows.Forms.Label();
  331. this.lbl_COMM45 = new System.Windows.Forms.Label();
  332. this.cb_COMM62_CH4Use = new System.Windows.Forms.CheckBox();
  333. this.lbl_COMM25 = new System.Windows.Forms.Label();
  334. this.cb_COMM42_CH4Use = new System.Windows.Forms.CheckBox();
  335. this.lbl_COMM47 = new System.Windows.Forms.Label();
  336. this.lbl_COMM27 = new System.Windows.Forms.Label();
  337. this.cb_COMM22_CH4Use = new System.Windows.Forms.CheckBox();
  338. this.cb_COMM47_CH4Use = new System.Windows.Forms.CheckBox();
  339. this.cb_COMM27_CH4Use = new System.Windows.Forms.CheckBox();
  340. this.cb_COMM61_CH3Use = new System.Windows.Forms.CheckBox();
  341. this.cb_COMM41_CH3Use = new System.Windows.Forms.CheckBox();
  342. this.cb_COMM62_CH2Use = new System.Windows.Forms.CheckBox();
  343. this.cb_COMM21_CH3Use = new System.Windows.Forms.CheckBox();
  344. this.cb_COMM42_CH2Use = new System.Windows.Forms.CheckBox();
  345. this.cb_COMM46_CH3Use = new System.Windows.Forms.CheckBox();
  346. this.cb_COMM26_CH3Use = new System.Windows.Forms.CheckBox();
  347. this.cb_COMM62_CH3Use = new System.Windows.Forms.CheckBox();
  348. this.cb_COMM22_CH2Use = new System.Windows.Forms.CheckBox();
  349. this.cb_COMM42_CH3Use = new System.Windows.Forms.CheckBox();
  350. this.cb_COMM47_CH2Use = new System.Windows.Forms.CheckBox();
  351. this.cb_COMM27_CH2Use = new System.Windows.Forms.CheckBox();
  352. this.cb_COMM61_CH1Use = new System.Windows.Forms.CheckBox();
  353. this.cb_COMM22_CH3Use = new System.Windows.Forms.CheckBox();
  354. this.cb_COMM41_CH1Use = new System.Windows.Forms.CheckBox();
  355. this.cb_COMM47_CH3Use = new System.Windows.Forms.CheckBox();
  356. this.cb_COMM27_CH3Use = new System.Windows.Forms.CheckBox();
  357. this.cb_COMM61_CH4Use = new System.Windows.Forms.CheckBox();
  358. this.cb_COMM21_CH1Use = new System.Windows.Forms.CheckBox();
  359. this.cb_COMM41_CH4Use = new System.Windows.Forms.CheckBox();
  360. this.cb_COMM46_CH1Use = new System.Windows.Forms.CheckBox();
  361. this.cb_COMM26_CH1Use = new System.Windows.Forms.CheckBox();
  362. this.cb_COMM62_CH1Use = new System.Windows.Forms.CheckBox();
  363. this.cb_COMM21_CH4Use = new System.Windows.Forms.CheckBox();
  364. this.cb_COMM42_CH1Use = new System.Windows.Forms.CheckBox();
  365. this.cb_COMM46_CH4Use = new System.Windows.Forms.CheckBox();
  366. this.cb_COMM26_CH4Use = new System.Windows.Forms.CheckBox();
  367. this.cb_COMM61_CH2Use = new System.Windows.Forms.CheckBox();
  368. this.cb_COMM22_CH1Use = new System.Windows.Forms.CheckBox();
  369. this.cb_COMM41_CH2Use = new System.Windows.Forms.CheckBox();
  370. this.cb_COMM47_CH1Use = new System.Windows.Forms.CheckBox();
  371. this.cb_COMM27_CH1Use = new System.Windows.Forms.CheckBox();
  372. this.cb_COMM21_CH2Use = new System.Windows.Forms.CheckBox();
  373. this.cb_COMM46_CH2Use = new System.Windows.Forms.CheckBox();
  374. this.cb_COMM26_CH2Use = new System.Windows.Forms.CheckBox();
  375. this.lbl_COMM61 = new System.Windows.Forms.Label();
  376. this.lbl_COMM41 = new System.Windows.Forms.Label();
  377. this.lbl_COMM46 = new System.Windows.Forms.Label();
  378. this.lbl_COMM21 = new System.Windows.Forms.Label();
  379. this.lbl_COMM26 = new System.Windows.Forms.Label();
  380. this.label_InfoApplyComment = new System.Windows.Forms.Label();
  381. this.button1 = new System.Windows.Forms.Button();
  382. this.txtThisReceiverID = new System.Windows.Forms.TextBox();
  383. this.btnBoardSave = new System.Windows.Forms.Button();
  384. this.tabPage_Repeater = new System.Windows.Forms.TabPage();
  385. this.label_UI_CircuitCut = new System.Windows.Forms.Label();
  386. this.label_UI_CircuitCut_Color = new System.Windows.Forms.Label();
  387. this.label_UI_RepeaterCut = new System.Windows.Forms.Label();
  388. this.label_UI_RepeaterCut_Color = new System.Windows.Forms.Label();
  389. this.label_UI_Unuse = new System.Windows.Forms.Label();
  390. this.label_UI_Unuse_Color = new System.Windows.Forms.Label();
  391. this.label_UI_Use = new System.Windows.Forms.Label();
  392. this.label_UI_Comment = new System.Windows.Forms.Label();
  393. this.label_UI_Use_Color = new System.Windows.Forms.Label();
  394. this.label_Comment = new System.Windows.Forms.Label();
  395. this.label20 = new System.Windows.Forms.Label();
  396. this.btnOK = new System.Windows.Forms.Button();
  397. this.btnRepeaterAllInfo = new System.Windows.Forms.Button();
  398. this.btnInputOpen = new System.Windows.Forms.Button();
  399. this.label18 = new System.Windows.Forms.Label();
  400. this.txtLoopNo = new System.Windows.Forms.TextBox();
  401. this.txtBoardID = new System.Windows.Forms.TextBox();
  402. this.txtThisReceiverID2 = new System.Windows.Forms.TextBox();
  403. this.groupRepeater = new System.Windows.Forms.GroupBox();
  404. this.label21 = new System.Windows.Forms.Label();
  405. this.btnOutWrite = new System.Windows.Forms.Button();
  406. this.btnInWrite = new System.Windows.Forms.Button();
  407. this.panelRepeaterSize = new System.Windows.Forms.Panel();
  408. this.dataGridView1 = new System.Windows.Forms.DataGridView();
  409. this.Column1 = new System.Windows.Forms.DataGridViewComboBoxColumn();
  410. this.Column2 = new System.Windows.Forms.DataGridViewComboBoxColumn();
  411. this.Column3 = new System.Windows.Forms.DataGridViewComboBoxColumn();
  412. this.Column4 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  413. this.Column5 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  414. this.Column6 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  415. this.Column7 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  416. this.Column8 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  417. this.Column9 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  418. this.Column10 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  419. this.dataGridView2 = new System.Windows.Forms.DataGridView();
  420. this.Column11 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  421. this.Column12 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  422. this.Column13 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  423. this.Column14 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  424. this.label4 = new System.Windows.Forms.Label();
  425. this.label22 = new System.Windows.Forms.Label();
  426. this.chkDeviceCutFlag = new System.Windows.Forms.CheckBox();
  427. this.txtDeviceMemo = new System.Windows.Forms.TextBox();
  428. this.txtPositionName = new System.Windows.Forms.TextBox();
  429. this.txtDeviceTypeName = new System.Windows.Forms.TextBox();
  430. this.label70 = new System.Windows.Forms.Label();
  431. this.panel2 = new System.Windows.Forms.Panel();
  432. this.chkRepeaterCut = new System.Windows.Forms.CheckBox();
  433. this.lblRepeaterName = new System.Windows.Forms.Label();
  434. this.lblRepeaterID = new System.Windows.Forms.Label();
  435. this.label74 = new System.Windows.Forms.Label();
  436. this.label73 = new System.Windows.Forms.Label();
  437. this.ImgLstBoardUseFlag = new System.Windows.Forms.ImageList(this.components);
  438. this.panel_Menu = new System.Windows.Forms.Panel();
  439. this.button_Menu_RepeaterCut = new System.Windows.Forms.Button();
  440. this.button_LoopCut = new System.Windows.Forms.Button();
  441. this.imageList_BoardUseFlag = new System.Windows.Forms.ImageList(this.components);
  442. this.panel1.SuspendLayout();
  443. this.tabControl_Main.SuspendLayout();
  444. this.tabPage_Board.SuspendLayout();
  445. this.groupBox2.SuspendLayout();
  446. this.tabPage_Repeater.SuspendLayout();
  447. this.groupRepeater.SuspendLayout();
  448. this.panelRepeaterSize.SuspendLayout();
  449. ((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).BeginInit();
  450. ((System.ComponentModel.ISupportInitialize)(this.dataGridView2)).BeginInit();
  451. this.panel2.SuspendLayout();
  452. this.panel_Menu.SuspendLayout();
  453. this.SuspendLayout();
  454. //
  455. // lblDir
  456. //
  457. this.lblDir.AutoSize = true;
  458. this.lblDir.BackColor = System.Drawing.Color.Transparent;
  459. this.lblDir.Font = new System.Drawing.Font("굴림", 15.75F, System.Drawing.FontStyle.Bold);
  460. this.lblDir.ForeColor = System.Drawing.Color.Black;
  461. this.lblDir.Location = new System.Drawing.Point(12, 9);
  462. this.lblDir.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  463. this.lblDir.Name = "lblDir";
  464. this.lblDir.Size = new System.Drawing.Size(129, 21);
  465. this.lblDir.TabIndex = 10;
  466. this.lblDir.Text = "시작 > 차단";
  467. //
  468. // panel1
  469. //
  470. this.panel1.BackColor = System.Drawing.Color.Black;
  471. this.panel1.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("panel1.BackgroundImage")));
  472. this.panel1.Controls.Add(this.btnWinClose);
  473. this.panel1.Controls.Add(this.lblDir);
  474. this.panel1.Dock = System.Windows.Forms.DockStyle.Top;
  475. this.panel1.Location = new System.Drawing.Point(0, 0);
  476. this.panel1.Margin = new System.Windows.Forms.Padding(4);
  477. this.panel1.Name = "panel1";
  478. this.panel1.Size = new System.Drawing.Size(1080, 36);
  479. this.panel1.TabIndex = 11;
  480. //
  481. // btnWinClose
  482. //
  483. this.btnWinClose.BackgroundImage = global::FPER.Properties.Resources.버튼_폼닫기_63_31;
  484. this.btnWinClose.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;
  485. this.btnWinClose.FlatAppearance.BorderSize = 0;
  486. this.btnWinClose.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  487. this.btnWinClose.Font = new System.Drawing.Font("굴림", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(129)));
  488. this.btnWinClose.Location = new System.Drawing.Point(1003, 1);
  489. this.btnWinClose.Name = "btnWinClose";
  490. this.btnWinClose.Size = new System.Drawing.Size(63, 31);
  491. this.btnWinClose.TabIndex = 171;
  492. this.btnWinClose.UseVisualStyleBackColor = false;
  493. this.btnWinClose.Click += new System.EventHandler(this.btnWinClose_Click);
  494. //
  495. // tabControl_Main
  496. //
  497. this.tabControl_Main.Controls.Add(this.tabPage_Board);
  498. this.tabControl_Main.Controls.Add(this.tabPage_Repeater);
  499. this.tabControl_Main.Dock = System.Windows.Forms.DockStyle.Bottom;
  500. this.tabControl_Main.Location = new System.Drawing.Point(0, 66);
  501. this.tabControl_Main.Name = "tabControl_Main";
  502. this.tabControl_Main.SelectedIndex = 0;
  503. this.tabControl_Main.Size = new System.Drawing.Size(1080, 758);
  504. this.tabControl_Main.TabIndex = 22;
  505. this.tabControl_Main.SelectedIndexChanged += new System.EventHandler(this.tabControl1_SelectedIndexChanged);
  506. //
  507. // tabPage_Board
  508. //
  509. this.tabPage_Board.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(185)))), ((int)(((byte)(211)))), ((int)(((byte)(228)))));
  510. this.tabPage_Board.Controls.Add(this.checkBox_All_4);
  511. this.tabPage_Board.Controls.Add(this.groupBox2);
  512. this.tabPage_Board.Controls.Add(this.label_InfoApplyComment);
  513. this.tabPage_Board.Controls.Add(this.button1);
  514. this.tabPage_Board.Controls.Add(this.txtThisReceiverID);
  515. this.tabPage_Board.Controls.Add(this.btnBoardSave);
  516. this.tabPage_Board.Location = new System.Drawing.Point(4, 26);
  517. this.tabPage_Board.Margin = new System.Windows.Forms.Padding(0);
  518. this.tabPage_Board.Name = "tabPage_Board";
  519. this.tabPage_Board.Size = new System.Drawing.Size(1072, 728);
  520. this.tabPage_Board.TabIndex = 0;
  521. this.tabPage_Board.Text = "계통차단";
  522. //
  523. // checkBox_All_4
  524. //
  525. this.checkBox_All_4.AutoSize = true;
  526. this.checkBox_All_4.Font = new System.Drawing.Font("굴림", 10F);
  527. this.checkBox_All_4.Location = new System.Drawing.Point(28, 58);
  528. this.checkBox_All_4.Name = "checkBox_All_4";
  529. this.checkBox_All_4.Size = new System.Drawing.Size(87, 18);
  530. this.checkBox_All_4.TabIndex = 127;
  531. this.checkBox_All_4.Text = "전부 체크";
  532. this.checkBox_All_4.UseVisualStyleBackColor = true;
  533. this.checkBox_All_4.Visible = false;
  534. //
  535. // groupBox2
  536. //
  537. this.groupBox2.Controls.Add(this.cb_COMM1_CH3Use);
  538. this.groupBox2.Controls.Add(this.cb_COMM3_CH3Use);
  539. this.groupBox2.Controls.Add(this.cb_COMM1_CH4Use);
  540. this.groupBox2.Controls.Add(this.cb_COMM6_CH4Use);
  541. this.groupBox2.Controls.Add(this.cb_COMM3_CH4Use);
  542. this.groupBox2.Controls.Add(this.cb_COMM4_CH3Use);
  543. this.groupBox2.Controls.Add(this.cb_COMM2_CH3Use);
  544. this.groupBox2.Controls.Add(this.cb_COMM7_CH3Use);
  545. this.groupBox2.Controls.Add(this.cb_COMM2_CH4Use);
  546. this.groupBox2.Controls.Add(this.cb_COMM4_CH4Use);
  547. this.groupBox2.Controls.Add(this.cb_COMM6_CH3Use);
  548. this.groupBox2.Controls.Add(this.cb_COMM7_CH4Use);
  549. this.groupBox2.Controls.Add(this.cb_COMM8_CH3Use);
  550. this.groupBox2.Controls.Add(this.cb_COMM5_CH4Use);
  551. this.groupBox2.Controls.Add(this.cb_COMM8_CH4Use);
  552. this.groupBox2.Controls.Add(this.cb_COMM5_CH3Use);
  553. this.groupBox2.Controls.Add(this.label1);
  554. this.groupBox2.Controls.Add(this.label2);
  555. this.groupBox2.Controls.Add(this.checkBox_All_3);
  556. this.groupBox2.Controls.Add(this.checkBox_All_2);
  557. this.groupBox2.Controls.Add(this.cb_COMM1_CH1Use);
  558. this.groupBox2.Controls.Add(this.label9);
  559. this.groupBox2.Controls.Add(this.cb_COMM3_CH1Use);
  560. this.groupBox2.Controls.Add(this.label10);
  561. this.groupBox2.Controls.Add(this.cb_COMM1_CH2Use);
  562. this.groupBox2.Controls.Add(this.lbl_COMM6);
  563. this.groupBox2.Controls.Add(this.cb_COMM6_CH2Use);
  564. this.groupBox2.Controls.Add(this.lbl_COMM1);
  565. this.groupBox2.Controls.Add(this.cb_COMM3_CH2Use);
  566. this.groupBox2.Controls.Add(this.checkBox_All_1);
  567. this.groupBox2.Controls.Add(this.lbl_COMM3);
  568. this.groupBox2.Controls.Add(this.cb_COMM4_CH1Use);
  569. this.groupBox2.Controls.Add(this.cb_COMM2_CH1Use);
  570. this.groupBox2.Controls.Add(this.lbl_COMM55);
  571. this.groupBox2.Controls.Add(this.cb_COMM7_CH1Use);
  572. this.groupBox2.Controls.Add(this.cb_COMM2_CH2Use);
  573. this.groupBox2.Controls.Add(this.cb_COMM4_CH2Use);
  574. this.groupBox2.Controls.Add(this.lbl_COMM2);
  575. this.groupBox2.Controls.Add(this.lbl_COMM35);
  576. this.groupBox2.Controls.Add(this.lbl_COMM15);
  577. this.groupBox2.Controls.Add(this.lbl_COMM4);
  578. this.groupBox2.Controls.Add(this.cb_COMM6_CH1Use);
  579. this.groupBox2.Controls.Add(this.cb_COMM55_CH4Use);
  580. this.groupBox2.Controls.Add(this.lbl_COMM5);
  581. this.groupBox2.Controls.Add(this.cb_COMM35_CH4Use);
  582. this.groupBox2.Controls.Add(this.cb_COMM7_CH2Use);
  583. this.groupBox2.Controls.Add(this.cb_COMM15_CH4Use);
  584. this.groupBox2.Controls.Add(this.lbl_COMM7);
  585. this.groupBox2.Controls.Add(this.cb_COMM55_CH2Use);
  586. this.groupBox2.Controls.Add(this.cb_COMM35_CH2Use);
  587. this.groupBox2.Controls.Add(this.cb_COMM8_CH1Use);
  588. this.groupBox2.Controls.Add(this.cb_COMM15_CH2Use);
  589. this.groupBox2.Controls.Add(this.cb_COMM5_CH2Use);
  590. this.groupBox2.Controls.Add(this.cb_COMM55_CH3Use);
  591. this.groupBox2.Controls.Add(this.cb_COMM8_CH2Use);
  592. this.groupBox2.Controls.Add(this.cb_COMM5_CH1Use);
  593. this.groupBox2.Controls.Add(this.cb_COMM35_CH3Use);
  594. this.groupBox2.Controls.Add(this.cb_COMM15_CH3Use);
  595. this.groupBox2.Controls.Add(this.lbl_COMM8);
  596. this.groupBox2.Controls.Add(this.cb_COMM55_CH1Use);
  597. this.groupBox2.Controls.Add(this.cb_COMM35_CH1Use);
  598. this.groupBox2.Controls.Add(this.cb_COMM15_CH1Use);
  599. this.groupBox2.Controls.Add(this.lbl_COMM59);
  600. this.groupBox2.Controls.Add(this.lbl_COMM39);
  601. this.groupBox2.Controls.Add(this.lbl_COMM19);
  602. this.groupBox2.Controls.Add(this.lbl_COMM54);
  603. this.groupBox2.Controls.Add(this.lbl_COMM34);
  604. this.groupBox2.Controls.Add(this.lbl_COMM14);
  605. this.groupBox2.Controls.Add(this.cb_COMM59_CH4Use);
  606. this.groupBox2.Controls.Add(this.cb_COMM39_CH4Use);
  607. this.groupBox2.Controls.Add(this.cb_COMM19_CH4Use);
  608. this.groupBox2.Controls.Add(this.cb_COMM59_CH2Use);
  609. this.groupBox2.Controls.Add(this.cb_COMM39_CH2Use);
  610. this.groupBox2.Controls.Add(this.cb_COMM19_CH2Use);
  611. this.groupBox2.Controls.Add(this.cb_COMM54_CH4Use);
  612. this.groupBox2.Controls.Add(this.cb_COMM34_CH4Use);
  613. this.groupBox2.Controls.Add(this.cb_COMM14_CH4Use);
  614. this.groupBox2.Controls.Add(this.cb_COMM54_CH2Use);
  615. this.groupBox2.Controls.Add(this.cb_COMM34_CH2Use);
  616. this.groupBox2.Controls.Add(this.cb_COMM14_CH2Use);
  617. this.groupBox2.Controls.Add(this.cb_COMM59_CH3Use);
  618. this.groupBox2.Controls.Add(this.cb_COMM39_CH3Use);
  619. this.groupBox2.Controls.Add(this.cb_COMM19_CH3Use);
  620. this.groupBox2.Controls.Add(this.cb_COMM59_CH1Use);
  621. this.groupBox2.Controls.Add(this.cb_COMM39_CH1Use);
  622. this.groupBox2.Controls.Add(this.cb_COMM19_CH1Use);
  623. this.groupBox2.Controls.Add(this.cb_COMM54_CH3Use);
  624. this.groupBox2.Controls.Add(this.cb_COMM34_CH3Use);
  625. this.groupBox2.Controls.Add(this.cb_COMM14_CH3Use);
  626. this.groupBox2.Controls.Add(this.cb_COMM54_CH1Use);
  627. this.groupBox2.Controls.Add(this.cb_COMM34_CH1Use);
  628. this.groupBox2.Controls.Add(this.cb_COMM14_CH1Use);
  629. this.groupBox2.Controls.Add(this.lbl_COMM58);
  630. this.groupBox2.Controls.Add(this.lbl_COMM38);
  631. this.groupBox2.Controls.Add(this.lbl_COMM18);
  632. this.groupBox2.Controls.Add(this.lbl_COMM53);
  633. this.groupBox2.Controls.Add(this.lbl_COMM33);
  634. this.groupBox2.Controls.Add(this.lbl_COMM13);
  635. this.groupBox2.Controls.Add(this.cb_COMM58_CH4Use);
  636. this.groupBox2.Controls.Add(this.cb_COMM38_CH4Use);
  637. this.groupBox2.Controls.Add(this.cb_COMM18_CH4Use);
  638. this.groupBox2.Controls.Add(this.cb_COMM58_CH2Use);
  639. this.groupBox2.Controls.Add(this.cb_COMM38_CH2Use);
  640. this.groupBox2.Controls.Add(this.cb_COMM18_CH2Use);
  641. this.groupBox2.Controls.Add(this.cb_COMM53_CH4Use);
  642. this.groupBox2.Controls.Add(this.cb_COMM33_CH4Use);
  643. this.groupBox2.Controls.Add(this.cb_COMM13_CH4Use);
  644. this.groupBox2.Controls.Add(this.cb_COMM53_CH2Use);
  645. this.groupBox2.Controls.Add(this.cb_COMM33_CH2Use);
  646. this.groupBox2.Controls.Add(this.cb_COMM13_CH2Use);
  647. this.groupBox2.Controls.Add(this.cb_COMM58_CH3Use);
  648. this.groupBox2.Controls.Add(this.cb_COMM38_CH3Use);
  649. this.groupBox2.Controls.Add(this.cb_COMM18_CH3Use);
  650. this.groupBox2.Controls.Add(this.cb_COMM58_CH1Use);
  651. this.groupBox2.Controls.Add(this.cb_COMM38_CH1Use);
  652. this.groupBox2.Controls.Add(this.cb_COMM18_CH1Use);
  653. this.groupBox2.Controls.Add(this.cb_COMM53_CH3Use);
  654. this.groupBox2.Controls.Add(this.cb_COMM33_CH3Use);
  655. this.groupBox2.Controls.Add(this.cb_COMM13_CH3Use);
  656. this.groupBox2.Controls.Add(this.cb_COMM53_CH1Use);
  657. this.groupBox2.Controls.Add(this.cb_COMM33_CH1Use);
  658. this.groupBox2.Controls.Add(this.cb_COMM13_CH1Use);
  659. this.groupBox2.Controls.Add(this.lbl_COMM57);
  660. this.groupBox2.Controls.Add(this.lbl_COMM37);
  661. this.groupBox2.Controls.Add(this.lbl_COMM17);
  662. this.groupBox2.Controls.Add(this.lbl_COMM52);
  663. this.groupBox2.Controls.Add(this.lbl_COMM32);
  664. this.groupBox2.Controls.Add(this.lbl_COMM12);
  665. this.groupBox2.Controls.Add(this.cb_COMM57_CH4Use);
  666. this.groupBox2.Controls.Add(this.cb_COMM37_CH4Use);
  667. this.groupBox2.Controls.Add(this.cb_COMM17_CH4Use);
  668. this.groupBox2.Controls.Add(this.cb_COMM57_CH2Use);
  669. this.groupBox2.Controls.Add(this.cb_COMM37_CH2Use);
  670. this.groupBox2.Controls.Add(this.cb_COMM17_CH2Use);
  671. this.groupBox2.Controls.Add(this.cb_COMM52_CH4Use);
  672. this.groupBox2.Controls.Add(this.cb_COMM32_CH4Use);
  673. this.groupBox2.Controls.Add(this.cb_COMM12_CH4Use);
  674. this.groupBox2.Controls.Add(this.cb_COMM52_CH2Use);
  675. this.groupBox2.Controls.Add(this.cb_COMM32_CH2Use);
  676. this.groupBox2.Controls.Add(this.cb_COMM12_CH2Use);
  677. this.groupBox2.Controls.Add(this.cb_COMM57_CH3Use);
  678. this.groupBox2.Controls.Add(this.cb_COMM37_CH3Use);
  679. this.groupBox2.Controls.Add(this.cb_COMM17_CH3Use);
  680. this.groupBox2.Controls.Add(this.cb_COMM57_CH1Use);
  681. this.groupBox2.Controls.Add(this.cb_COMM37_CH1Use);
  682. this.groupBox2.Controls.Add(this.cb_COMM17_CH1Use);
  683. this.groupBox2.Controls.Add(this.cb_COMM52_CH3Use);
  684. this.groupBox2.Controls.Add(this.cb_COMM32_CH3Use);
  685. this.groupBox2.Controls.Add(this.cb_COMM12_CH3Use);
  686. this.groupBox2.Controls.Add(this.cb_COMM52_CH1Use);
  687. this.groupBox2.Controls.Add(this.cb_COMM32_CH1Use);
  688. this.groupBox2.Controls.Add(this.cb_COMM12_CH1Use);
  689. this.groupBox2.Controls.Add(this.label80);
  690. this.groupBox2.Controls.Add(this.label55);
  691. this.groupBox2.Controls.Add(this.label33);
  692. this.groupBox2.Controls.Add(this.label79);
  693. this.groupBox2.Controls.Add(this.label54);
  694. this.groupBox2.Controls.Add(this.label8);
  695. this.groupBox2.Controls.Add(this.label78);
  696. this.groupBox2.Controls.Add(this.label52);
  697. this.groupBox2.Controls.Add(this.label32);
  698. this.groupBox2.Controls.Add(this.label77);
  699. this.groupBox2.Controls.Add(this.label51);
  700. this.groupBox2.Controls.Add(this.label5);
  701. this.groupBox2.Controls.Add(this.lbl_COMM56);
  702. this.groupBox2.Controls.Add(this.lbl_COMM36);
  703. this.groupBox2.Controls.Add(this.lbl_COMM16);
  704. this.groupBox2.Controls.Add(this.cb_COMM56_CH4Use);
  705. this.groupBox2.Controls.Add(this.cb_COMM36_CH4Use);
  706. this.groupBox2.Controls.Add(this.cb_COMM16_CH4Use);
  707. this.groupBox2.Controls.Add(this.lbl_COMM51);
  708. this.groupBox2.Controls.Add(this.lbl_COMM31);
  709. this.groupBox2.Controls.Add(this.lbl_COMM11);
  710. this.groupBox2.Controls.Add(this.cb_COMM56_CH2Use);
  711. this.groupBox2.Controls.Add(this.cb_COMM36_CH2Use);
  712. this.groupBox2.Controls.Add(this.cb_COMM16_CH2Use);
  713. this.groupBox2.Controls.Add(this.cb_COMM51_CH4Use);
  714. this.groupBox2.Controls.Add(this.cb_COMM31_CH4Use);
  715. this.groupBox2.Controls.Add(this.cb_COMM11_CH4Use);
  716. this.groupBox2.Controls.Add(this.cb_COMM56_CH3Use);
  717. this.groupBox2.Controls.Add(this.cb_COMM36_CH3Use);
  718. this.groupBox2.Controls.Add(this.cb_COMM16_CH3Use);
  719. this.groupBox2.Controls.Add(this.cb_COMM51_CH2Use);
  720. this.groupBox2.Controls.Add(this.cb_COMM31_CH2Use);
  721. this.groupBox2.Controls.Add(this.cb_COMM11_CH2Use);
  722. this.groupBox2.Controls.Add(this.cb_COMM56_CH1Use);
  723. this.groupBox2.Controls.Add(this.cb_COMM36_CH1Use);
  724. this.groupBox2.Controls.Add(this.cb_COMM16_CH1Use);
  725. this.groupBox2.Controls.Add(this.cb_COMM51_CH3Use);
  726. this.groupBox2.Controls.Add(this.cb_COMM31_CH3Use);
  727. this.groupBox2.Controls.Add(this.cb_COMM11_CH3Use);
  728. this.groupBox2.Controls.Add(this.cb_COMM51_CH1Use);
  729. this.groupBox2.Controls.Add(this.cb_COMM31_CH1Use);
  730. this.groupBox2.Controls.Add(this.cb_COMM11_CH1Use);
  731. this.groupBox2.Controls.Add(this.lbl_COMM50);
  732. this.groupBox2.Controls.Add(this.lbl_COMM30);
  733. this.groupBox2.Controls.Add(this.lbl_COMM10);
  734. this.groupBox2.Controls.Add(this.cb_COMM50_CH4Use);
  735. this.groupBox2.Controls.Add(this.cb_COMM30_CH4Use);
  736. this.groupBox2.Controls.Add(this.cb_COMM10_CH4Use);
  737. this.groupBox2.Controls.Add(this.cb_COMM50_CH2Use);
  738. this.groupBox2.Controls.Add(this.cb_COMM30_CH2Use);
  739. this.groupBox2.Controls.Add(this.cb_COMM10_CH2Use);
  740. this.groupBox2.Controls.Add(this.cb_COMM50_CH3Use);
  741. this.groupBox2.Controls.Add(this.cb_COMM30_CH3Use);
  742. this.groupBox2.Controls.Add(this.cb_COMM10_CH3Use);
  743. this.groupBox2.Controls.Add(this.cb_COMM50_CH1Use);
  744. this.groupBox2.Controls.Add(this.cb_COMM30_CH1Use);
  745. this.groupBox2.Controls.Add(this.cb_COMM10_CH1Use);
  746. this.groupBox2.Controls.Add(this.lbl_COMM64);
  747. this.groupBox2.Controls.Add(this.lbl_COMM44);
  748. this.groupBox2.Controls.Add(this.lbl_COMM24);
  749. this.groupBox2.Controls.Add(this.lbl_COMM49);
  750. this.groupBox2.Controls.Add(this.lbl_COMM29);
  751. this.groupBox2.Controls.Add(this.lbl_COMM9);
  752. this.groupBox2.Controls.Add(this.cb_COMM64_CH4Use);
  753. this.groupBox2.Controls.Add(this.cb_COMM44_CH4Use);
  754. this.groupBox2.Controls.Add(this.cb_COMM24_CH4Use);
  755. this.groupBox2.Controls.Add(this.cb_COMM49_CH4Use);
  756. this.groupBox2.Controls.Add(this.cb_COMM29_CH4Use);
  757. this.groupBox2.Controls.Add(this.cb_COMM9_CH4Use);
  758. this.groupBox2.Controls.Add(this.cb_COMM64_CH2Use);
  759. this.groupBox2.Controls.Add(this.cb_COMM44_CH2Use);
  760. this.groupBox2.Controls.Add(this.cb_COMM24_CH2Use);
  761. this.groupBox2.Controls.Add(this.cb_COMM49_CH2Use);
  762. this.groupBox2.Controls.Add(this.cb_COMM29_CH2Use);
  763. this.groupBox2.Controls.Add(this.cb_COMM9_CH2Use);
  764. this.groupBox2.Controls.Add(this.cb_COMM64_CH3Use);
  765. this.groupBox2.Controls.Add(this.cb_COMM44_CH3Use);
  766. this.groupBox2.Controls.Add(this.cb_COMM24_CH3Use);
  767. this.groupBox2.Controls.Add(this.cb_COMM49_CH3Use);
  768. this.groupBox2.Controls.Add(this.cb_COMM29_CH3Use);
  769. this.groupBox2.Controls.Add(this.cb_COMM9_CH3Use);
  770. this.groupBox2.Controls.Add(this.cb_COMM64_CH1Use);
  771. this.groupBox2.Controls.Add(this.cb_COMM44_CH1Use);
  772. this.groupBox2.Controls.Add(this.cb_COMM24_CH1Use);
  773. this.groupBox2.Controls.Add(this.cb_COMM49_CH1Use);
  774. this.groupBox2.Controls.Add(this.cb_COMM29_CH1Use);
  775. this.groupBox2.Controls.Add(this.cb_COMM9_CH1Use);
  776. this.groupBox2.Controls.Add(this.lbl_COMM63);
  777. this.groupBox2.Controls.Add(this.lbl_COMM43);
  778. this.groupBox2.Controls.Add(this.lbl_COMM23);
  779. this.groupBox2.Controls.Add(this.lbl_COMM48);
  780. this.groupBox2.Controls.Add(this.lbl_COMM28);
  781. this.groupBox2.Controls.Add(this.cb_COMM63_CH4Use);
  782. this.groupBox2.Controls.Add(this.cb_COMM43_CH4Use);
  783. this.groupBox2.Controls.Add(this.cb_COMM23_CH4Use);
  784. this.groupBox2.Controls.Add(this.cb_COMM48_CH4Use);
  785. this.groupBox2.Controls.Add(this.cb_COMM28_CH4Use);
  786. this.groupBox2.Controls.Add(this.cb_COMM60_CH3Use);
  787. this.groupBox2.Controls.Add(this.cb_COMM40_CH3Use);
  788. this.groupBox2.Controls.Add(this.cb_COMM20_CH3Use);
  789. this.groupBox2.Controls.Add(this.cb_COMM45_CH3Use);
  790. this.groupBox2.Controls.Add(this.cb_COMM25_CH3Use);
  791. this.groupBox2.Controls.Add(this.cb_COMM63_CH2Use);
  792. this.groupBox2.Controls.Add(this.cb_COMM43_CH2Use);
  793. this.groupBox2.Controls.Add(this.cb_COMM23_CH2Use);
  794. this.groupBox2.Controls.Add(this.cb_COMM48_CH2Use);
  795. this.groupBox2.Controls.Add(this.cb_COMM28_CH2Use);
  796. this.groupBox2.Controls.Add(this.cb_COMM63_CH3Use);
  797. this.groupBox2.Controls.Add(this.cb_COMM43_CH3Use);
  798. this.groupBox2.Controls.Add(this.cb_COMM23_CH3Use);
  799. this.groupBox2.Controls.Add(this.cb_COMM48_CH3Use);
  800. this.groupBox2.Controls.Add(this.cb_COMM28_CH3Use);
  801. this.groupBox2.Controls.Add(this.cb_COMM60_CH1Use);
  802. this.groupBox2.Controls.Add(this.cb_COMM40_CH1Use);
  803. this.groupBox2.Controls.Add(this.cb_COMM20_CH1Use);
  804. this.groupBox2.Controls.Add(this.cb_COMM45_CH1Use);
  805. this.groupBox2.Controls.Add(this.cb_COMM25_CH1Use);
  806. this.groupBox2.Controls.Add(this.cb_COMM60_CH4Use);
  807. this.groupBox2.Controls.Add(this.cb_COMM40_CH4Use);
  808. this.groupBox2.Controls.Add(this.cb_COMM20_CH4Use);
  809. this.groupBox2.Controls.Add(this.cb_COMM45_CH4Use);
  810. this.groupBox2.Controls.Add(this.cb_COMM25_CH4Use);
  811. this.groupBox2.Controls.Add(this.cb_COMM63_CH1Use);
  812. this.groupBox2.Controls.Add(this.cb_COMM43_CH1Use);
  813. this.groupBox2.Controls.Add(this.cb_COMM23_CH1Use);
  814. this.groupBox2.Controls.Add(this.cb_COMM48_CH1Use);
  815. this.groupBox2.Controls.Add(this.cb_COMM28_CH1Use);
  816. this.groupBox2.Controls.Add(this.cb_COMM60_CH2Use);
  817. this.groupBox2.Controls.Add(this.cb_COMM40_CH2Use);
  818. this.groupBox2.Controls.Add(this.cb_COMM20_CH2Use);
  819. this.groupBox2.Controls.Add(this.cb_COMM45_CH2Use);
  820. this.groupBox2.Controls.Add(this.cb_COMM25_CH2Use);
  821. this.groupBox2.Controls.Add(this.lbl_COMM60);
  822. this.groupBox2.Controls.Add(this.lbl_COMM40);
  823. this.groupBox2.Controls.Add(this.lbl_COMM20);
  824. this.groupBox2.Controls.Add(this.lbl_COMM62);
  825. this.groupBox2.Controls.Add(this.lbl_COMM42);
  826. this.groupBox2.Controls.Add(this.lbl_COMM22);
  827. this.groupBox2.Controls.Add(this.lbl_COMM45);
  828. this.groupBox2.Controls.Add(this.cb_COMM62_CH4Use);
  829. this.groupBox2.Controls.Add(this.lbl_COMM25);
  830. this.groupBox2.Controls.Add(this.cb_COMM42_CH4Use);
  831. this.groupBox2.Controls.Add(this.lbl_COMM47);
  832. this.groupBox2.Controls.Add(this.lbl_COMM27);
  833. this.groupBox2.Controls.Add(this.cb_COMM22_CH4Use);
  834. this.groupBox2.Controls.Add(this.cb_COMM47_CH4Use);
  835. this.groupBox2.Controls.Add(this.cb_COMM27_CH4Use);
  836. this.groupBox2.Controls.Add(this.cb_COMM61_CH3Use);
  837. this.groupBox2.Controls.Add(this.cb_COMM41_CH3Use);
  838. this.groupBox2.Controls.Add(this.cb_COMM62_CH2Use);
  839. this.groupBox2.Controls.Add(this.cb_COMM21_CH3Use);
  840. this.groupBox2.Controls.Add(this.cb_COMM42_CH2Use);
  841. this.groupBox2.Controls.Add(this.cb_COMM46_CH3Use);
  842. this.groupBox2.Controls.Add(this.cb_COMM26_CH3Use);
  843. this.groupBox2.Controls.Add(this.cb_COMM62_CH3Use);
  844. this.groupBox2.Controls.Add(this.cb_COMM22_CH2Use);
  845. this.groupBox2.Controls.Add(this.cb_COMM42_CH3Use);
  846. this.groupBox2.Controls.Add(this.cb_COMM47_CH2Use);
  847. this.groupBox2.Controls.Add(this.cb_COMM27_CH2Use);
  848. this.groupBox2.Controls.Add(this.cb_COMM61_CH1Use);
  849. this.groupBox2.Controls.Add(this.cb_COMM22_CH3Use);
  850. this.groupBox2.Controls.Add(this.cb_COMM41_CH1Use);
  851. this.groupBox2.Controls.Add(this.cb_COMM47_CH3Use);
  852. this.groupBox2.Controls.Add(this.cb_COMM27_CH3Use);
  853. this.groupBox2.Controls.Add(this.cb_COMM61_CH4Use);
  854. this.groupBox2.Controls.Add(this.cb_COMM21_CH1Use);
  855. this.groupBox2.Controls.Add(this.cb_COMM41_CH4Use);
  856. this.groupBox2.Controls.Add(this.cb_COMM46_CH1Use);
  857. this.groupBox2.Controls.Add(this.cb_COMM26_CH1Use);
  858. this.groupBox2.Controls.Add(this.cb_COMM62_CH1Use);
  859. this.groupBox2.Controls.Add(this.cb_COMM21_CH4Use);
  860. this.groupBox2.Controls.Add(this.cb_COMM42_CH1Use);
  861. this.groupBox2.Controls.Add(this.cb_COMM46_CH4Use);
  862. this.groupBox2.Controls.Add(this.cb_COMM26_CH4Use);
  863. this.groupBox2.Controls.Add(this.cb_COMM61_CH2Use);
  864. this.groupBox2.Controls.Add(this.cb_COMM22_CH1Use);
  865. this.groupBox2.Controls.Add(this.cb_COMM41_CH2Use);
  866. this.groupBox2.Controls.Add(this.cb_COMM47_CH1Use);
  867. this.groupBox2.Controls.Add(this.cb_COMM27_CH1Use);
  868. this.groupBox2.Controls.Add(this.cb_COMM21_CH2Use);
  869. this.groupBox2.Controls.Add(this.cb_COMM46_CH2Use);
  870. this.groupBox2.Controls.Add(this.cb_COMM26_CH2Use);
  871. this.groupBox2.Controls.Add(this.lbl_COMM61);
  872. this.groupBox2.Controls.Add(this.lbl_COMM41);
  873. this.groupBox2.Controls.Add(this.lbl_COMM46);
  874. this.groupBox2.Controls.Add(this.lbl_COMM21);
  875. this.groupBox2.Controls.Add(this.lbl_COMM26);
  876. this.groupBox2.Location = new System.Drawing.Point(12, 76);
  877. this.groupBox2.Name = "groupBox2";
  878. this.groupBox2.Size = new System.Drawing.Size(1049, 644);
  879. this.groupBox2.TabIndex = 155;
  880. this.groupBox2.TabStop = false;
  881. this.groupBox2.Text = "중계반";
  882. //
  883. // cb_COMM1_CH3Use
  884. //
  885. this.cb_COMM1_CH3Use.AutoSize = true;
  886. this.cb_COMM1_CH3Use.Font = new System.Drawing.Font("굴림", 10F);
  887. this.cb_COMM1_CH3Use.Location = new System.Drawing.Point(193, 71);
  888. this.cb_COMM1_CH3Use.Name = "cb_COMM1_CH3Use";
  889. this.cb_COMM1_CH3Use.Size = new System.Drawing.Size(15, 14);
  890. this.cb_COMM1_CH3Use.TabIndex = 554;
  891. this.cb_COMM1_CH3Use.UseVisualStyleBackColor = true;
  892. //
  893. // cb_COMM3_CH3Use
  894. //
  895. this.cb_COMM3_CH3Use.AutoSize = true;
  896. this.cb_COMM3_CH3Use.Font = new System.Drawing.Font("굴림", 10F);
  897. this.cb_COMM3_CH3Use.Location = new System.Drawing.Point(193, 121);
  898. this.cb_COMM3_CH3Use.Name = "cb_COMM3_CH3Use";
  899. this.cb_COMM3_CH3Use.Size = new System.Drawing.Size(15, 14);
  900. this.cb_COMM3_CH3Use.TabIndex = 558;
  901. this.cb_COMM3_CH3Use.UseVisualStyleBackColor = true;
  902. //
  903. // cb_COMM1_CH4Use
  904. //
  905. this.cb_COMM1_CH4Use.AutoSize = true;
  906. this.cb_COMM1_CH4Use.Font = new System.Drawing.Font("굴림", 10F);
  907. this.cb_COMM1_CH4Use.Location = new System.Drawing.Point(226, 71);
  908. this.cb_COMM1_CH4Use.Name = "cb_COMM1_CH4Use";
  909. this.cb_COMM1_CH4Use.Size = new System.Drawing.Size(15, 14);
  910. this.cb_COMM1_CH4Use.TabIndex = 555;
  911. this.cb_COMM1_CH4Use.UseVisualStyleBackColor = true;
  912. //
  913. // cb_COMM6_CH4Use
  914. //
  915. this.cb_COMM6_CH4Use.AutoSize = true;
  916. this.cb_COMM6_CH4Use.Font = new System.Drawing.Font("굴림", 10F);
  917. this.cb_COMM6_CH4Use.Location = new System.Drawing.Point(226, 198);
  918. this.cb_COMM6_CH4Use.Name = "cb_COMM6_CH4Use";
  919. this.cb_COMM6_CH4Use.Size = new System.Drawing.Size(15, 14);
  920. this.cb_COMM6_CH4Use.TabIndex = 565;
  921. this.cb_COMM6_CH4Use.UseVisualStyleBackColor = true;
  922. //
  923. // cb_COMM3_CH4Use
  924. //
  925. this.cb_COMM3_CH4Use.AutoSize = true;
  926. this.cb_COMM3_CH4Use.Font = new System.Drawing.Font("굴림", 10F);
  927. this.cb_COMM3_CH4Use.Location = new System.Drawing.Point(226, 121);
  928. this.cb_COMM3_CH4Use.Name = "cb_COMM3_CH4Use";
  929. this.cb_COMM3_CH4Use.Size = new System.Drawing.Size(15, 14);
  930. this.cb_COMM3_CH4Use.TabIndex = 559;
  931. this.cb_COMM3_CH4Use.UseVisualStyleBackColor = true;
  932. //
  933. // cb_COMM4_CH3Use
  934. //
  935. this.cb_COMM4_CH3Use.AutoSize = true;
  936. this.cb_COMM4_CH3Use.Font = new System.Drawing.Font("굴림", 10F);
  937. this.cb_COMM4_CH3Use.Location = new System.Drawing.Point(193, 147);
  938. this.cb_COMM4_CH3Use.Name = "cb_COMM4_CH3Use";
  939. this.cb_COMM4_CH3Use.Size = new System.Drawing.Size(15, 14);
  940. this.cb_COMM4_CH3Use.TabIndex = 560;
  941. this.cb_COMM4_CH3Use.UseVisualStyleBackColor = true;
  942. //
  943. // cb_COMM2_CH3Use
  944. //
  945. this.cb_COMM2_CH3Use.AutoSize = true;
  946. this.cb_COMM2_CH3Use.Font = new System.Drawing.Font("굴림", 10F);
  947. this.cb_COMM2_CH3Use.Location = new System.Drawing.Point(193, 96);
  948. this.cb_COMM2_CH3Use.Name = "cb_COMM2_CH3Use";
  949. this.cb_COMM2_CH3Use.Size = new System.Drawing.Size(15, 14);
  950. this.cb_COMM2_CH3Use.TabIndex = 556;
  951. this.cb_COMM2_CH3Use.UseVisualStyleBackColor = true;
  952. //
  953. // cb_COMM7_CH3Use
  954. //
  955. this.cb_COMM7_CH3Use.AutoSize = true;
  956. this.cb_COMM7_CH3Use.Font = new System.Drawing.Font("굴림", 10F);
  957. this.cb_COMM7_CH3Use.Location = new System.Drawing.Point(193, 226);
  958. this.cb_COMM7_CH3Use.Name = "cb_COMM7_CH3Use";
  959. this.cb_COMM7_CH3Use.Size = new System.Drawing.Size(15, 14);
  960. this.cb_COMM7_CH3Use.TabIndex = 566;
  961. this.cb_COMM7_CH3Use.UseVisualStyleBackColor = true;
  962. //
  963. // cb_COMM2_CH4Use
  964. //
  965. this.cb_COMM2_CH4Use.AutoSize = true;
  966. this.cb_COMM2_CH4Use.Font = new System.Drawing.Font("굴림", 10F);
  967. this.cb_COMM2_CH4Use.Location = new System.Drawing.Point(226, 96);
  968. this.cb_COMM2_CH4Use.Name = "cb_COMM2_CH4Use";
  969. this.cb_COMM2_CH4Use.Size = new System.Drawing.Size(15, 14);
  970. this.cb_COMM2_CH4Use.TabIndex = 557;
  971. this.cb_COMM2_CH4Use.UseVisualStyleBackColor = true;
  972. //
  973. // cb_COMM4_CH4Use
  974. //
  975. this.cb_COMM4_CH4Use.AutoSize = true;
  976. this.cb_COMM4_CH4Use.Font = new System.Drawing.Font("굴림", 10F);
  977. this.cb_COMM4_CH4Use.Location = new System.Drawing.Point(226, 147);
  978. this.cb_COMM4_CH4Use.Name = "cb_COMM4_CH4Use";
  979. this.cb_COMM4_CH4Use.Size = new System.Drawing.Size(15, 14);
  980. this.cb_COMM4_CH4Use.TabIndex = 561;
  981. this.cb_COMM4_CH4Use.UseVisualStyleBackColor = true;
  982. //
  983. // cb_COMM6_CH3Use
  984. //
  985. this.cb_COMM6_CH3Use.AutoSize = true;
  986. this.cb_COMM6_CH3Use.Font = new System.Drawing.Font("굴림", 10F);
  987. this.cb_COMM6_CH3Use.Location = new System.Drawing.Point(193, 198);
  988. this.cb_COMM6_CH3Use.Name = "cb_COMM6_CH3Use";
  989. this.cb_COMM6_CH3Use.Size = new System.Drawing.Size(15, 14);
  990. this.cb_COMM6_CH3Use.TabIndex = 564;
  991. this.cb_COMM6_CH3Use.UseVisualStyleBackColor = true;
  992. //
  993. // cb_COMM7_CH4Use
  994. //
  995. this.cb_COMM7_CH4Use.AutoSize = true;
  996. this.cb_COMM7_CH4Use.Font = new System.Drawing.Font("굴림", 10F);
  997. this.cb_COMM7_CH4Use.Location = new System.Drawing.Point(226, 226);
  998. this.cb_COMM7_CH4Use.Name = "cb_COMM7_CH4Use";
  999. this.cb_COMM7_CH4Use.Size = new System.Drawing.Size(15, 14);
  1000. this.cb_COMM7_CH4Use.TabIndex = 567;
  1001. this.cb_COMM7_CH4Use.UseVisualStyleBackColor = true;
  1002. //
  1003. // cb_COMM8_CH3Use
  1004. //
  1005. this.cb_COMM8_CH3Use.AutoSize = true;
  1006. this.cb_COMM8_CH3Use.Font = new System.Drawing.Font("굴림", 10F);
  1007. this.cb_COMM8_CH3Use.Location = new System.Drawing.Point(193, 252);
  1008. this.cb_COMM8_CH3Use.Name = "cb_COMM8_CH3Use";
  1009. this.cb_COMM8_CH3Use.Size = new System.Drawing.Size(15, 14);
  1010. this.cb_COMM8_CH3Use.TabIndex = 568;
  1011. this.cb_COMM8_CH3Use.UseVisualStyleBackColor = true;
  1012. //
  1013. // cb_COMM5_CH4Use
  1014. //
  1015. this.cb_COMM5_CH4Use.AutoSize = true;
  1016. this.cb_COMM5_CH4Use.Font = new System.Drawing.Font("굴림", 10F);
  1017. this.cb_COMM5_CH4Use.Location = new System.Drawing.Point(226, 172);
  1018. this.cb_COMM5_CH4Use.Name = "cb_COMM5_CH4Use";
  1019. this.cb_COMM5_CH4Use.Size = new System.Drawing.Size(15, 14);
  1020. this.cb_COMM5_CH4Use.TabIndex = 563;
  1021. this.cb_COMM5_CH4Use.UseVisualStyleBackColor = true;
  1022. //
  1023. // cb_COMM8_CH4Use
  1024. //
  1025. this.cb_COMM8_CH4Use.AutoSize = true;
  1026. this.cb_COMM8_CH4Use.Font = new System.Drawing.Font("굴림", 10F);
  1027. this.cb_COMM8_CH4Use.Location = new System.Drawing.Point(226, 252);
  1028. this.cb_COMM8_CH4Use.Name = "cb_COMM8_CH4Use";
  1029. this.cb_COMM8_CH4Use.Size = new System.Drawing.Size(15, 14);
  1030. this.cb_COMM8_CH4Use.TabIndex = 569;
  1031. this.cb_COMM8_CH4Use.UseVisualStyleBackColor = true;
  1032. //
  1033. // cb_COMM5_CH3Use
  1034. //
  1035. this.cb_COMM5_CH3Use.AutoSize = true;
  1036. this.cb_COMM5_CH3Use.Font = new System.Drawing.Font("굴림", 10F);
  1037. this.cb_COMM5_CH3Use.Location = new System.Drawing.Point(193, 172);
  1038. this.cb_COMM5_CH3Use.Name = "cb_COMM5_CH3Use";
  1039. this.cb_COMM5_CH3Use.Size = new System.Drawing.Size(15, 14);
  1040. this.cb_COMM5_CH3Use.TabIndex = 562;
  1041. this.cb_COMM5_CH3Use.UseVisualStyleBackColor = true;
  1042. //
  1043. // label1
  1044. //
  1045. this.label1.AutoSize = true;
  1046. this.label1.Font = new System.Drawing.Font("굴림", 10F);
  1047. this.label1.Location = new System.Drawing.Point(973, 39);
  1048. this.label1.Name = "label1";
  1049. this.label1.Size = new System.Drawing.Size(23, 14);
  1050. this.label1.TabIndex = 552;
  1051. this.label1.Text = "L2";
  1052. //
  1053. // label2
  1054. //
  1055. this.label2.AutoSize = true;
  1056. this.label2.Font = new System.Drawing.Font("굴림", 10F);
  1057. this.label2.Location = new System.Drawing.Point(1006, 39);
  1058. this.label2.Name = "label2";
  1059. this.label2.Size = new System.Drawing.Size(23, 14);
  1060. this.label2.TabIndex = 553;
  1061. this.label2.Text = "L3";
  1062. //
  1063. // checkBox_All_3
  1064. //
  1065. this.checkBox_All_3.AutoSize = true;
  1066. this.checkBox_All_3.Font = new System.Drawing.Font("굴림", 10F);
  1067. this.checkBox_All_3.Location = new System.Drawing.Point(956, 620);
  1068. this.checkBox_All_3.Name = "checkBox_All_3";
  1069. this.checkBox_All_3.Size = new System.Drawing.Size(87, 18);
  1070. this.checkBox_All_3.TabIndex = 176;
  1071. this.checkBox_All_3.Text = "전부 체크";
  1072. this.checkBox_All_3.UseVisualStyleBackColor = true;
  1073. this.checkBox_All_3.Visible = false;
  1074. //
  1075. // checkBox_All_2
  1076. //
  1077. this.checkBox_All_2.AutoSize = true;
  1078. this.checkBox_All_2.Font = new System.Drawing.Font("굴림", 10F);
  1079. this.checkBox_All_2.Location = new System.Drawing.Point(866, 620);
  1080. this.checkBox_All_2.Name = "checkBox_All_2";
  1081. this.checkBox_All_2.Size = new System.Drawing.Size(87, 18);
  1082. this.checkBox_All_2.TabIndex = 175;
  1083. this.checkBox_All_2.Text = "전부 체크";
  1084. this.checkBox_All_2.UseVisualStyleBackColor = true;
  1085. this.checkBox_All_2.Visible = false;
  1086. //
  1087. // cb_COMM1_CH1Use
  1088. //
  1089. this.cb_COMM1_CH1Use.AutoSize = true;
  1090. this.cb_COMM1_CH1Use.Font = new System.Drawing.Font("굴림", 10F);
  1091. this.cb_COMM1_CH1Use.Location = new System.Drawing.Point(126, 71);
  1092. this.cb_COMM1_CH1Use.Name = "cb_COMM1_CH1Use";
  1093. this.cb_COMM1_CH1Use.Size = new System.Drawing.Size(15, 14);
  1094. this.cb_COMM1_CH1Use.TabIndex = 109;
  1095. this.cb_COMM1_CH1Use.UseVisualStyleBackColor = true;
  1096. //
  1097. // label9
  1098. //
  1099. this.label9.AutoSize = true;
  1100. this.label9.Font = new System.Drawing.Font("굴림", 10F);
  1101. this.label9.Location = new System.Drawing.Point(906, 39);
  1102. this.label9.Name = "label9";
  1103. this.label9.Size = new System.Drawing.Size(23, 14);
  1104. this.label9.TabIndex = 113;
  1105. this.label9.Text = "L0";
  1106. //
  1107. // cb_COMM3_CH1Use
  1108. //
  1109. this.cb_COMM3_CH1Use.AutoSize = true;
  1110. this.cb_COMM3_CH1Use.Font = new System.Drawing.Font("굴림", 10F);
  1111. this.cb_COMM3_CH1Use.Location = new System.Drawing.Point(126, 121);
  1112. this.cb_COMM3_CH1Use.Name = "cb_COMM3_CH1Use";
  1113. this.cb_COMM3_CH1Use.Size = new System.Drawing.Size(15, 14);
  1114. this.cb_COMM3_CH1Use.TabIndex = 120;
  1115. this.cb_COMM3_CH1Use.UseVisualStyleBackColor = true;
  1116. //
  1117. // label10
  1118. //
  1119. this.label10.AutoSize = true;
  1120. this.label10.Font = new System.Drawing.Font("굴림", 10F);
  1121. this.label10.Location = new System.Drawing.Point(939, 39);
  1122. this.label10.Name = "label10";
  1123. this.label10.Size = new System.Drawing.Size(23, 14);
  1124. this.label10.TabIndex = 114;
  1125. this.label10.Text = "L1";
  1126. //
  1127. // cb_COMM1_CH2Use
  1128. //
  1129. this.cb_COMM1_CH2Use.AutoSize = true;
  1130. this.cb_COMM1_CH2Use.Font = new System.Drawing.Font("굴림", 10F);
  1131. this.cb_COMM1_CH2Use.Location = new System.Drawing.Point(159, 71);
  1132. this.cb_COMM1_CH2Use.Name = "cb_COMM1_CH2Use";
  1133. this.cb_COMM1_CH2Use.Size = new System.Drawing.Size(15, 14);
  1134. this.cb_COMM1_CH2Use.TabIndex = 110;
  1135. this.cb_COMM1_CH2Use.UseVisualStyleBackColor = true;
  1136. //
  1137. // lbl_COMM6
  1138. //
  1139. this.lbl_COMM6.AutoSize = true;
  1140. this.lbl_COMM6.Font = new System.Drawing.Font("굴림", 10F);
  1141. this.lbl_COMM6.Location = new System.Drawing.Point(33, 200);
  1142. this.lbl_COMM6.Name = "lbl_COMM6";
  1143. this.lbl_COMM6.Size = new System.Drawing.Size(70, 14);
  1144. this.lbl_COMM6.TabIndex = 135;
  1145. this.lbl_COMM6.Text = "중계반 06";
  1146. //
  1147. // cb_COMM6_CH2Use
  1148. //
  1149. this.cb_COMM6_CH2Use.AutoSize = true;
  1150. this.cb_COMM6_CH2Use.Font = new System.Drawing.Font("굴림", 10F);
  1151. this.cb_COMM6_CH2Use.Location = new System.Drawing.Point(159, 198);
  1152. this.cb_COMM6_CH2Use.Name = "cb_COMM6_CH2Use";
  1153. this.cb_COMM6_CH2Use.Size = new System.Drawing.Size(15, 14);
  1154. this.cb_COMM6_CH2Use.TabIndex = 134;
  1155. this.cb_COMM6_CH2Use.UseVisualStyleBackColor = true;
  1156. //
  1157. // lbl_COMM1
  1158. //
  1159. this.lbl_COMM1.AutoSize = true;
  1160. this.lbl_COMM1.Font = new System.Drawing.Font("굴림", 10F);
  1161. this.lbl_COMM1.Location = new System.Drawing.Point(33, 71);
  1162. this.lbl_COMM1.Name = "lbl_COMM1";
  1163. this.lbl_COMM1.Size = new System.Drawing.Size(70, 14);
  1164. this.lbl_COMM1.TabIndex = 111;
  1165. this.lbl_COMM1.Text = "중계반 01";
  1166. //
  1167. // cb_COMM3_CH2Use
  1168. //
  1169. this.cb_COMM3_CH2Use.AutoSize = true;
  1170. this.cb_COMM3_CH2Use.Font = new System.Drawing.Font("굴림", 10F);
  1171. this.cb_COMM3_CH2Use.Location = new System.Drawing.Point(159, 121);
  1172. this.cb_COMM3_CH2Use.Name = "cb_COMM3_CH2Use";
  1173. this.cb_COMM3_CH2Use.Size = new System.Drawing.Size(15, 14);
  1174. this.cb_COMM3_CH2Use.TabIndex = 121;
  1175. this.cb_COMM3_CH2Use.UseVisualStyleBackColor = true;
  1176. //
  1177. // checkBox_All_1
  1178. //
  1179. this.checkBox_All_1.AutoSize = true;
  1180. this.checkBox_All_1.Font = new System.Drawing.Font("굴림", 10F);
  1181. this.checkBox_All_1.Location = new System.Drawing.Point(773, 620);
  1182. this.checkBox_All_1.Name = "checkBox_All_1";
  1183. this.checkBox_All_1.Size = new System.Drawing.Size(87, 18);
  1184. this.checkBox_All_1.TabIndex = 174;
  1185. this.checkBox_All_1.Text = "전부 체크";
  1186. this.checkBox_All_1.UseVisualStyleBackColor = true;
  1187. this.checkBox_All_1.Visible = false;
  1188. //
  1189. // lbl_COMM3
  1190. //
  1191. this.lbl_COMM3.AutoSize = true;
  1192. this.lbl_COMM3.Font = new System.Drawing.Font("굴림", 10F);
  1193. this.lbl_COMM3.Location = new System.Drawing.Point(33, 123);
  1194. this.lbl_COMM3.Name = "lbl_COMM3";
  1195. this.lbl_COMM3.Size = new System.Drawing.Size(70, 14);
  1196. this.lbl_COMM3.TabIndex = 122;
  1197. this.lbl_COMM3.Text = "중계반 03";
  1198. //
  1199. // cb_COMM4_CH1Use
  1200. //
  1201. this.cb_COMM4_CH1Use.AutoSize = true;
  1202. this.cb_COMM4_CH1Use.Font = new System.Drawing.Font("굴림", 10F);
  1203. this.cb_COMM4_CH1Use.Location = new System.Drawing.Point(126, 147);
  1204. this.cb_COMM4_CH1Use.Name = "cb_COMM4_CH1Use";
  1205. this.cb_COMM4_CH1Use.Size = new System.Drawing.Size(15, 14);
  1206. this.cb_COMM4_CH1Use.TabIndex = 124;
  1207. this.cb_COMM4_CH1Use.UseVisualStyleBackColor = true;
  1208. //
  1209. // cb_COMM2_CH1Use
  1210. //
  1211. this.cb_COMM2_CH1Use.AutoSize = true;
  1212. this.cb_COMM2_CH1Use.Font = new System.Drawing.Font("굴림", 10F);
  1213. this.cb_COMM2_CH1Use.Location = new System.Drawing.Point(126, 96);
  1214. this.cb_COMM2_CH1Use.Name = "cb_COMM2_CH1Use";
  1215. this.cb_COMM2_CH1Use.Size = new System.Drawing.Size(15, 14);
  1216. this.cb_COMM2_CH1Use.TabIndex = 116;
  1217. this.cb_COMM2_CH1Use.UseVisualStyleBackColor = true;
  1218. //
  1219. // lbl_COMM55
  1220. //
  1221. this.lbl_COMM55.AutoSize = true;
  1222. this.lbl_COMM55.Font = new System.Drawing.Font("굴림", 10F);
  1223. this.lbl_COMM55.Location = new System.Drawing.Point(542, 435);
  1224. this.lbl_COMM55.Name = "lbl_COMM55";
  1225. this.lbl_COMM55.Size = new System.Drawing.Size(70, 14);
  1226. this.lbl_COMM55.TabIndex = 550;
  1227. this.lbl_COMM55.Text = "중계반 55";
  1228. //
  1229. // cb_COMM7_CH1Use
  1230. //
  1231. this.cb_COMM7_CH1Use.AutoSize = true;
  1232. this.cb_COMM7_CH1Use.Font = new System.Drawing.Font("굴림", 10F);
  1233. this.cb_COMM7_CH1Use.Location = new System.Drawing.Point(126, 226);
  1234. this.cb_COMM7_CH1Use.Name = "cb_COMM7_CH1Use";
  1235. this.cb_COMM7_CH1Use.Size = new System.Drawing.Size(15, 14);
  1236. this.cb_COMM7_CH1Use.TabIndex = 137;
  1237. this.cb_COMM7_CH1Use.UseVisualStyleBackColor = true;
  1238. //
  1239. // cb_COMM2_CH2Use
  1240. //
  1241. this.cb_COMM2_CH2Use.AutoSize = true;
  1242. this.cb_COMM2_CH2Use.Font = new System.Drawing.Font("굴림", 10F);
  1243. this.cb_COMM2_CH2Use.Location = new System.Drawing.Point(159, 96);
  1244. this.cb_COMM2_CH2Use.Name = "cb_COMM2_CH2Use";
  1245. this.cb_COMM2_CH2Use.Size = new System.Drawing.Size(15, 14);
  1246. this.cb_COMM2_CH2Use.TabIndex = 117;
  1247. this.cb_COMM2_CH2Use.UseVisualStyleBackColor = true;
  1248. //
  1249. // cb_COMM4_CH2Use
  1250. //
  1251. this.cb_COMM4_CH2Use.AutoSize = true;
  1252. this.cb_COMM4_CH2Use.Font = new System.Drawing.Font("굴림", 10F);
  1253. this.cb_COMM4_CH2Use.Location = new System.Drawing.Point(159, 147);
  1254. this.cb_COMM4_CH2Use.Name = "cb_COMM4_CH2Use";
  1255. this.cb_COMM4_CH2Use.Size = new System.Drawing.Size(15, 14);
  1256. this.cb_COMM4_CH2Use.TabIndex = 125;
  1257. this.cb_COMM4_CH2Use.UseVisualStyleBackColor = true;
  1258. //
  1259. // lbl_COMM2
  1260. //
  1261. this.lbl_COMM2.AutoSize = true;
  1262. this.lbl_COMM2.Font = new System.Drawing.Font("굴림", 10F);
  1263. this.lbl_COMM2.Location = new System.Drawing.Point(33, 97);
  1264. this.lbl_COMM2.Name = "lbl_COMM2";
  1265. this.lbl_COMM2.Size = new System.Drawing.Size(70, 14);
  1266. this.lbl_COMM2.TabIndex = 118;
  1267. this.lbl_COMM2.Text = "중계반 02";
  1268. //
  1269. // lbl_COMM35
  1270. //
  1271. this.lbl_COMM35.AutoSize = true;
  1272. this.lbl_COMM35.Font = new System.Drawing.Font("굴림", 10F);
  1273. this.lbl_COMM35.Location = new System.Drawing.Point(286, 435);
  1274. this.lbl_COMM35.Name = "lbl_COMM35";
  1275. this.lbl_COMM35.Size = new System.Drawing.Size(70, 14);
  1276. this.lbl_COMM35.TabIndex = 551;
  1277. this.lbl_COMM35.Text = "중계반 35";
  1278. //
  1279. // lbl_COMM15
  1280. //
  1281. this.lbl_COMM15.AutoSize = true;
  1282. this.lbl_COMM15.Font = new System.Drawing.Font("굴림", 10F);
  1283. this.lbl_COMM15.Location = new System.Drawing.Point(33, 434);
  1284. this.lbl_COMM15.Name = "lbl_COMM15";
  1285. this.lbl_COMM15.Size = new System.Drawing.Size(70, 14);
  1286. this.lbl_COMM15.TabIndex = 549;
  1287. this.lbl_COMM15.Text = "중계반 15";
  1288. //
  1289. // lbl_COMM4
  1290. //
  1291. this.lbl_COMM4.AutoSize = true;
  1292. this.lbl_COMM4.Font = new System.Drawing.Font("굴림", 10F);
  1293. this.lbl_COMM4.Location = new System.Drawing.Point(33, 149);
  1294. this.lbl_COMM4.Name = "lbl_COMM4";
  1295. this.lbl_COMM4.Size = new System.Drawing.Size(70, 14);
  1296. this.lbl_COMM4.TabIndex = 126;
  1297. this.lbl_COMM4.Text = "중계반 04";
  1298. //
  1299. // cb_COMM6_CH1Use
  1300. //
  1301. this.cb_COMM6_CH1Use.AutoSize = true;
  1302. this.cb_COMM6_CH1Use.Font = new System.Drawing.Font("굴림", 10F);
  1303. this.cb_COMM6_CH1Use.Location = new System.Drawing.Point(126, 198);
  1304. this.cb_COMM6_CH1Use.Name = "cb_COMM6_CH1Use";
  1305. this.cb_COMM6_CH1Use.Size = new System.Drawing.Size(15, 14);
  1306. this.cb_COMM6_CH1Use.TabIndex = 133;
  1307. this.cb_COMM6_CH1Use.UseVisualStyleBackColor = true;
  1308. //
  1309. // cb_COMM55_CH4Use
  1310. //
  1311. this.cb_COMM55_CH4Use.AutoSize = true;
  1312. this.cb_COMM55_CH4Use.Font = new System.Drawing.Font("굴림", 10F);
  1313. this.cb_COMM55_CH4Use.Location = new System.Drawing.Point(743, 435);
  1314. this.cb_COMM55_CH4Use.Name = "cb_COMM55_CH4Use";
  1315. this.cb_COMM55_CH4Use.Size = new System.Drawing.Size(15, 14);
  1316. this.cb_COMM55_CH4Use.TabIndex = 543;
  1317. this.cb_COMM55_CH4Use.UseVisualStyleBackColor = true;
  1318. //
  1319. // lbl_COMM5
  1320. //
  1321. this.lbl_COMM5.AutoSize = true;
  1322. this.lbl_COMM5.Font = new System.Drawing.Font("굴림", 10F);
  1323. this.lbl_COMM5.Location = new System.Drawing.Point(33, 174);
  1324. this.lbl_COMM5.Name = "lbl_COMM5";
  1325. this.lbl_COMM5.Size = new System.Drawing.Size(70, 14);
  1326. this.lbl_COMM5.TabIndex = 131;
  1327. this.lbl_COMM5.Text = "중계반 05";
  1328. //
  1329. // cb_COMM35_CH4Use
  1330. //
  1331. this.cb_COMM35_CH4Use.AutoSize = true;
  1332. this.cb_COMM35_CH4Use.Font = new System.Drawing.Font("굴림", 10F);
  1333. this.cb_COMM35_CH4Use.Location = new System.Drawing.Point(482, 435);
  1334. this.cb_COMM35_CH4Use.Name = "cb_COMM35_CH4Use";
  1335. this.cb_COMM35_CH4Use.Size = new System.Drawing.Size(15, 14);
  1336. this.cb_COMM35_CH4Use.TabIndex = 545;
  1337. this.cb_COMM35_CH4Use.UseVisualStyleBackColor = true;
  1338. //
  1339. // cb_COMM7_CH2Use
  1340. //
  1341. this.cb_COMM7_CH2Use.AutoSize = true;
  1342. this.cb_COMM7_CH2Use.Font = new System.Drawing.Font("굴림", 10F);
  1343. this.cb_COMM7_CH2Use.Location = new System.Drawing.Point(159, 226);
  1344. this.cb_COMM7_CH2Use.Name = "cb_COMM7_CH2Use";
  1345. this.cb_COMM7_CH2Use.Size = new System.Drawing.Size(15, 14);
  1346. this.cb_COMM7_CH2Use.TabIndex = 138;
  1347. this.cb_COMM7_CH2Use.UseVisualStyleBackColor = true;
  1348. //
  1349. // cb_COMM15_CH4Use
  1350. //
  1351. this.cb_COMM15_CH4Use.AutoSize = true;
  1352. this.cb_COMM15_CH4Use.Font = new System.Drawing.Font("굴림", 10F);
  1353. this.cb_COMM15_CH4Use.Location = new System.Drawing.Point(226, 434);
  1354. this.cb_COMM15_CH4Use.Name = "cb_COMM15_CH4Use";
  1355. this.cb_COMM15_CH4Use.Size = new System.Drawing.Size(15, 14);
  1356. this.cb_COMM15_CH4Use.TabIndex = 544;
  1357. this.cb_COMM15_CH4Use.UseVisualStyleBackColor = true;
  1358. //
  1359. // lbl_COMM7
  1360. //
  1361. this.lbl_COMM7.AutoSize = true;
  1362. this.lbl_COMM7.Font = new System.Drawing.Font("굴림", 10F);
  1363. this.lbl_COMM7.Location = new System.Drawing.Point(33, 227);
  1364. this.lbl_COMM7.Name = "lbl_COMM7";
  1365. this.lbl_COMM7.Size = new System.Drawing.Size(70, 14);
  1366. this.lbl_COMM7.TabIndex = 139;
  1367. this.lbl_COMM7.Text = "중계반 07";
  1368. //
  1369. // cb_COMM55_CH2Use
  1370. //
  1371. this.cb_COMM55_CH2Use.AutoSize = true;
  1372. this.cb_COMM55_CH2Use.Font = new System.Drawing.Font("굴림", 10F);
  1373. this.cb_COMM55_CH2Use.Location = new System.Drawing.Point(676, 435);
  1374. this.cb_COMM55_CH2Use.Name = "cb_COMM55_CH2Use";
  1375. this.cb_COMM55_CH2Use.Size = new System.Drawing.Size(15, 14);
  1376. this.cb_COMM55_CH2Use.TabIndex = 548;
  1377. this.cb_COMM55_CH2Use.UseVisualStyleBackColor = true;
  1378. //
  1379. // cb_COMM35_CH2Use
  1380. //
  1381. this.cb_COMM35_CH2Use.AutoSize = true;
  1382. this.cb_COMM35_CH2Use.Font = new System.Drawing.Font("굴림", 10F);
  1383. this.cb_COMM35_CH2Use.Location = new System.Drawing.Point(415, 435);
  1384. this.cb_COMM35_CH2Use.Name = "cb_COMM35_CH2Use";
  1385. this.cb_COMM35_CH2Use.Size = new System.Drawing.Size(15, 14);
  1386. this.cb_COMM35_CH2Use.TabIndex = 546;
  1387. this.cb_COMM35_CH2Use.UseVisualStyleBackColor = true;
  1388. //
  1389. // cb_COMM8_CH1Use
  1390. //
  1391. this.cb_COMM8_CH1Use.AutoSize = true;
  1392. this.cb_COMM8_CH1Use.Font = new System.Drawing.Font("굴림", 10F);
  1393. this.cb_COMM8_CH1Use.Location = new System.Drawing.Point(126, 252);
  1394. this.cb_COMM8_CH1Use.Name = "cb_COMM8_CH1Use";
  1395. this.cb_COMM8_CH1Use.Size = new System.Drawing.Size(15, 14);
  1396. this.cb_COMM8_CH1Use.TabIndex = 141;
  1397. this.cb_COMM8_CH1Use.UseVisualStyleBackColor = true;
  1398. //
  1399. // cb_COMM15_CH2Use
  1400. //
  1401. this.cb_COMM15_CH2Use.AutoSize = true;
  1402. this.cb_COMM15_CH2Use.Font = new System.Drawing.Font("굴림", 10F);
  1403. this.cb_COMM15_CH2Use.Location = new System.Drawing.Point(159, 434);
  1404. this.cb_COMM15_CH2Use.Name = "cb_COMM15_CH2Use";
  1405. this.cb_COMM15_CH2Use.Size = new System.Drawing.Size(15, 14);
  1406. this.cb_COMM15_CH2Use.TabIndex = 547;
  1407. this.cb_COMM15_CH2Use.UseVisualStyleBackColor = true;
  1408. //
  1409. // cb_COMM5_CH2Use
  1410. //
  1411. this.cb_COMM5_CH2Use.AutoSize = true;
  1412. this.cb_COMM5_CH2Use.Font = new System.Drawing.Font("굴림", 10F);
  1413. this.cb_COMM5_CH2Use.Location = new System.Drawing.Point(159, 172);
  1414. this.cb_COMM5_CH2Use.Name = "cb_COMM5_CH2Use";
  1415. this.cb_COMM5_CH2Use.Size = new System.Drawing.Size(15, 14);
  1416. this.cb_COMM5_CH2Use.TabIndex = 130;
  1417. this.cb_COMM5_CH2Use.UseVisualStyleBackColor = true;
  1418. //
  1419. // cb_COMM55_CH3Use
  1420. //
  1421. this.cb_COMM55_CH3Use.AutoSize = true;
  1422. this.cb_COMM55_CH3Use.Font = new System.Drawing.Font("굴림", 10F);
  1423. this.cb_COMM55_CH3Use.Location = new System.Drawing.Point(710, 435);
  1424. this.cb_COMM55_CH3Use.Name = "cb_COMM55_CH3Use";
  1425. this.cb_COMM55_CH3Use.Size = new System.Drawing.Size(15, 14);
  1426. this.cb_COMM55_CH3Use.TabIndex = 539;
  1427. this.cb_COMM55_CH3Use.UseVisualStyleBackColor = true;
  1428. //
  1429. // cb_COMM8_CH2Use
  1430. //
  1431. this.cb_COMM8_CH2Use.AutoSize = true;
  1432. this.cb_COMM8_CH2Use.Font = new System.Drawing.Font("굴림", 10F);
  1433. this.cb_COMM8_CH2Use.Location = new System.Drawing.Point(159, 252);
  1434. this.cb_COMM8_CH2Use.Name = "cb_COMM8_CH2Use";
  1435. this.cb_COMM8_CH2Use.Size = new System.Drawing.Size(15, 14);
  1436. this.cb_COMM8_CH2Use.TabIndex = 142;
  1437. this.cb_COMM8_CH2Use.UseVisualStyleBackColor = true;
  1438. //
  1439. // cb_COMM5_CH1Use
  1440. //
  1441. this.cb_COMM5_CH1Use.AutoSize = true;
  1442. this.cb_COMM5_CH1Use.Font = new System.Drawing.Font("굴림", 10F);
  1443. this.cb_COMM5_CH1Use.Location = new System.Drawing.Point(126, 172);
  1444. this.cb_COMM5_CH1Use.Name = "cb_COMM5_CH1Use";
  1445. this.cb_COMM5_CH1Use.Size = new System.Drawing.Size(15, 14);
  1446. this.cb_COMM5_CH1Use.TabIndex = 129;
  1447. this.cb_COMM5_CH1Use.UseVisualStyleBackColor = true;
  1448. //
  1449. // cb_COMM35_CH3Use
  1450. //
  1451. this.cb_COMM35_CH3Use.AutoSize = true;
  1452. this.cb_COMM35_CH3Use.Font = new System.Drawing.Font("굴림", 10F);
  1453. this.cb_COMM35_CH3Use.Location = new System.Drawing.Point(449, 435);
  1454. this.cb_COMM35_CH3Use.Name = "cb_COMM35_CH3Use";
  1455. this.cb_COMM35_CH3Use.Size = new System.Drawing.Size(15, 14);
  1456. this.cb_COMM35_CH3Use.TabIndex = 537;
  1457. this.cb_COMM35_CH3Use.UseVisualStyleBackColor = true;
  1458. //
  1459. // cb_COMM15_CH3Use
  1460. //
  1461. this.cb_COMM15_CH3Use.AutoSize = true;
  1462. this.cb_COMM15_CH3Use.Font = new System.Drawing.Font("굴림", 10F);
  1463. this.cb_COMM15_CH3Use.Location = new System.Drawing.Point(193, 434);
  1464. this.cb_COMM15_CH3Use.Name = "cb_COMM15_CH3Use";
  1465. this.cb_COMM15_CH3Use.Size = new System.Drawing.Size(15, 14);
  1466. this.cb_COMM15_CH3Use.TabIndex = 538;
  1467. this.cb_COMM15_CH3Use.UseVisualStyleBackColor = true;
  1468. //
  1469. // lbl_COMM8
  1470. //
  1471. this.lbl_COMM8.AutoSize = true;
  1472. this.lbl_COMM8.Font = new System.Drawing.Font("굴림", 10F);
  1473. this.lbl_COMM8.Location = new System.Drawing.Point(33, 253);
  1474. this.lbl_COMM8.Name = "lbl_COMM8";
  1475. this.lbl_COMM8.Size = new System.Drawing.Size(70, 14);
  1476. this.lbl_COMM8.TabIndex = 143;
  1477. this.lbl_COMM8.Text = "중계반 08";
  1478. //
  1479. // cb_COMM55_CH1Use
  1480. //
  1481. this.cb_COMM55_CH1Use.AutoSize = true;
  1482. this.cb_COMM55_CH1Use.Font = new System.Drawing.Font("굴림", 10F);
  1483. this.cb_COMM55_CH1Use.Location = new System.Drawing.Point(643, 435);
  1484. this.cb_COMM55_CH1Use.Name = "cb_COMM55_CH1Use";
  1485. this.cb_COMM55_CH1Use.Size = new System.Drawing.Size(15, 14);
  1486. this.cb_COMM55_CH1Use.TabIndex = 542;
  1487. this.cb_COMM55_CH1Use.UseVisualStyleBackColor = true;
  1488. //
  1489. // cb_COMM35_CH1Use
  1490. //
  1491. this.cb_COMM35_CH1Use.AutoSize = true;
  1492. this.cb_COMM35_CH1Use.Font = new System.Drawing.Font("굴림", 10F);
  1493. this.cb_COMM35_CH1Use.Location = new System.Drawing.Point(382, 435);
  1494. this.cb_COMM35_CH1Use.Name = "cb_COMM35_CH1Use";
  1495. this.cb_COMM35_CH1Use.Size = new System.Drawing.Size(15, 14);
  1496. this.cb_COMM35_CH1Use.TabIndex = 540;
  1497. this.cb_COMM35_CH1Use.UseVisualStyleBackColor = true;
  1498. //
  1499. // cb_COMM15_CH1Use
  1500. //
  1501. this.cb_COMM15_CH1Use.AutoSize = true;
  1502. this.cb_COMM15_CH1Use.Font = new System.Drawing.Font("굴림", 10F);
  1503. this.cb_COMM15_CH1Use.Location = new System.Drawing.Point(126, 434);
  1504. this.cb_COMM15_CH1Use.Name = "cb_COMM15_CH1Use";
  1505. this.cb_COMM15_CH1Use.Size = new System.Drawing.Size(15, 14);
  1506. this.cb_COMM15_CH1Use.TabIndex = 541;
  1507. this.cb_COMM15_CH1Use.UseVisualStyleBackColor = true;
  1508. //
  1509. // lbl_COMM59
  1510. //
  1511. this.lbl_COMM59.AutoSize = true;
  1512. this.lbl_COMM59.Font = new System.Drawing.Font("굴림", 10F);
  1513. this.lbl_COMM59.Location = new System.Drawing.Point(542, 539);
  1514. this.lbl_COMM59.Name = "lbl_COMM59";
  1515. this.lbl_COMM59.Size = new System.Drawing.Size(70, 14);
  1516. this.lbl_COMM59.TabIndex = 530;
  1517. this.lbl_COMM59.Text = "중계반 59";
  1518. //
  1519. // lbl_COMM39
  1520. //
  1521. this.lbl_COMM39.AutoSize = true;
  1522. this.lbl_COMM39.Font = new System.Drawing.Font("굴림", 10F);
  1523. this.lbl_COMM39.Location = new System.Drawing.Point(286, 539);
  1524. this.lbl_COMM39.Name = "lbl_COMM39";
  1525. this.lbl_COMM39.Size = new System.Drawing.Size(70, 14);
  1526. this.lbl_COMM39.TabIndex = 529;
  1527. this.lbl_COMM39.Text = "중계반 39";
  1528. //
  1529. // lbl_COMM19
  1530. //
  1531. this.lbl_COMM19.AutoSize = true;
  1532. this.lbl_COMM19.Font = new System.Drawing.Font("굴림", 10F);
  1533. this.lbl_COMM19.Location = new System.Drawing.Point(33, 538);
  1534. this.lbl_COMM19.Name = "lbl_COMM19";
  1535. this.lbl_COMM19.Size = new System.Drawing.Size(70, 14);
  1536. this.lbl_COMM19.TabIndex = 528;
  1537. this.lbl_COMM19.Text = "중계반 19";
  1538. //
  1539. // lbl_COMM54
  1540. //
  1541. this.lbl_COMM54.AutoSize = true;
  1542. this.lbl_COMM54.Font = new System.Drawing.Font("굴림", 10F);
  1543. this.lbl_COMM54.Location = new System.Drawing.Point(542, 409);
  1544. this.lbl_COMM54.Name = "lbl_COMM54";
  1545. this.lbl_COMM54.Size = new System.Drawing.Size(70, 14);
  1546. this.lbl_COMM54.TabIndex = 533;
  1547. this.lbl_COMM54.Text = "중계반 54";
  1548. //
  1549. // lbl_COMM34
  1550. //
  1551. this.lbl_COMM34.AutoSize = true;
  1552. this.lbl_COMM34.Font = new System.Drawing.Font("굴림", 10F);
  1553. this.lbl_COMM34.Location = new System.Drawing.Point(286, 409);
  1554. this.lbl_COMM34.Name = "lbl_COMM34";
  1555. this.lbl_COMM34.Size = new System.Drawing.Size(70, 14);
  1556. this.lbl_COMM34.TabIndex = 531;
  1557. this.lbl_COMM34.Text = "중계반 34";
  1558. //
  1559. // lbl_COMM14
  1560. //
  1561. this.lbl_COMM14.AutoSize = true;
  1562. this.lbl_COMM14.Font = new System.Drawing.Font("굴림", 10F);
  1563. this.lbl_COMM14.Location = new System.Drawing.Point(33, 408);
  1564. this.lbl_COMM14.Name = "lbl_COMM14";
  1565. this.lbl_COMM14.Size = new System.Drawing.Size(70, 14);
  1566. this.lbl_COMM14.TabIndex = 532;
  1567. this.lbl_COMM14.Text = "중계반 14";
  1568. //
  1569. // cb_COMM59_CH4Use
  1570. //
  1571. this.cb_COMM59_CH4Use.AutoSize = true;
  1572. this.cb_COMM59_CH4Use.Font = new System.Drawing.Font("굴림", 10F);
  1573. this.cb_COMM59_CH4Use.Location = new System.Drawing.Point(743, 539);
  1574. this.cb_COMM59_CH4Use.Name = "cb_COMM59_CH4Use";
  1575. this.cb_COMM59_CH4Use.Size = new System.Drawing.Size(15, 14);
  1576. this.cb_COMM59_CH4Use.TabIndex = 522;
  1577. this.cb_COMM59_CH4Use.UseVisualStyleBackColor = true;
  1578. //
  1579. // cb_COMM39_CH4Use
  1580. //
  1581. this.cb_COMM39_CH4Use.AutoSize = true;
  1582. this.cb_COMM39_CH4Use.Font = new System.Drawing.Font("굴림", 10F);
  1583. this.cb_COMM39_CH4Use.Location = new System.Drawing.Point(482, 539);
  1584. this.cb_COMM39_CH4Use.Name = "cb_COMM39_CH4Use";
  1585. this.cb_COMM39_CH4Use.Size = new System.Drawing.Size(15, 14);
  1586. this.cb_COMM39_CH4Use.TabIndex = 523;
  1587. this.cb_COMM39_CH4Use.UseVisualStyleBackColor = true;
  1588. //
  1589. // cb_COMM19_CH4Use
  1590. //
  1591. this.cb_COMM19_CH4Use.AutoSize = true;
  1592. this.cb_COMM19_CH4Use.Font = new System.Drawing.Font("굴림", 10F);
  1593. this.cb_COMM19_CH4Use.Location = new System.Drawing.Point(226, 538);
  1594. this.cb_COMM19_CH4Use.Name = "cb_COMM19_CH4Use";
  1595. this.cb_COMM19_CH4Use.Size = new System.Drawing.Size(15, 14);
  1596. this.cb_COMM19_CH4Use.TabIndex = 524;
  1597. this.cb_COMM19_CH4Use.UseVisualStyleBackColor = true;
  1598. //
  1599. // cb_COMM59_CH2Use
  1600. //
  1601. this.cb_COMM59_CH2Use.AutoSize = true;
  1602. this.cb_COMM59_CH2Use.Font = new System.Drawing.Font("굴림", 10F);
  1603. this.cb_COMM59_CH2Use.Location = new System.Drawing.Point(676, 539);
  1604. this.cb_COMM59_CH2Use.Name = "cb_COMM59_CH2Use";
  1605. this.cb_COMM59_CH2Use.Size = new System.Drawing.Size(15, 14);
  1606. this.cb_COMM59_CH2Use.TabIndex = 521;
  1607. this.cb_COMM59_CH2Use.UseVisualStyleBackColor = true;
  1608. //
  1609. // cb_COMM39_CH2Use
  1610. //
  1611. this.cb_COMM39_CH2Use.AutoSize = true;
  1612. this.cb_COMM39_CH2Use.Font = new System.Drawing.Font("굴림", 10F);
  1613. this.cb_COMM39_CH2Use.Location = new System.Drawing.Point(415, 539);
  1614. this.cb_COMM39_CH2Use.Name = "cb_COMM39_CH2Use";
  1615. this.cb_COMM39_CH2Use.Size = new System.Drawing.Size(15, 14);
  1616. this.cb_COMM39_CH2Use.TabIndex = 520;
  1617. this.cb_COMM39_CH2Use.UseVisualStyleBackColor = true;
  1618. //
  1619. // cb_COMM19_CH2Use
  1620. //
  1621. this.cb_COMM19_CH2Use.AutoSize = true;
  1622. this.cb_COMM19_CH2Use.Font = new System.Drawing.Font("굴림", 10F);
  1623. this.cb_COMM19_CH2Use.Location = new System.Drawing.Point(159, 538);
  1624. this.cb_COMM19_CH2Use.Name = "cb_COMM19_CH2Use";
  1625. this.cb_COMM19_CH2Use.Size = new System.Drawing.Size(15, 14);
  1626. this.cb_COMM19_CH2Use.TabIndex = 519;
  1627. this.cb_COMM19_CH2Use.UseVisualStyleBackColor = true;
  1628. //
  1629. // cb_COMM54_CH4Use
  1630. //
  1631. this.cb_COMM54_CH4Use.AutoSize = true;
  1632. this.cb_COMM54_CH4Use.Font = new System.Drawing.Font("굴림", 10F);
  1633. this.cb_COMM54_CH4Use.Location = new System.Drawing.Point(743, 409);
  1634. this.cb_COMM54_CH4Use.Name = "cb_COMM54_CH4Use";
  1635. this.cb_COMM54_CH4Use.Size = new System.Drawing.Size(15, 14);
  1636. this.cb_COMM54_CH4Use.TabIndex = 518;
  1637. this.cb_COMM54_CH4Use.UseVisualStyleBackColor = true;
  1638. //
  1639. // cb_COMM34_CH4Use
  1640. //
  1641. this.cb_COMM34_CH4Use.AutoSize = true;
  1642. this.cb_COMM34_CH4Use.Font = new System.Drawing.Font("굴림", 10F);
  1643. this.cb_COMM34_CH4Use.Location = new System.Drawing.Point(482, 409);
  1644. this.cb_COMM34_CH4Use.Name = "cb_COMM34_CH4Use";
  1645. this.cb_COMM34_CH4Use.Size = new System.Drawing.Size(15, 14);
  1646. this.cb_COMM34_CH4Use.TabIndex = 517;
  1647. this.cb_COMM34_CH4Use.UseVisualStyleBackColor = true;
  1648. //
  1649. // cb_COMM14_CH4Use
  1650. //
  1651. this.cb_COMM14_CH4Use.AutoSize = true;
  1652. this.cb_COMM14_CH4Use.Font = new System.Drawing.Font("굴림", 10F);
  1653. this.cb_COMM14_CH4Use.Location = new System.Drawing.Point(226, 408);
  1654. this.cb_COMM14_CH4Use.Name = "cb_COMM14_CH4Use";
  1655. this.cb_COMM14_CH4Use.Size = new System.Drawing.Size(15, 14);
  1656. this.cb_COMM14_CH4Use.TabIndex = 516;
  1657. this.cb_COMM14_CH4Use.UseVisualStyleBackColor = true;
  1658. //
  1659. // cb_COMM54_CH2Use
  1660. //
  1661. this.cb_COMM54_CH2Use.AutoSize = true;
  1662. this.cb_COMM54_CH2Use.Font = new System.Drawing.Font("굴림", 10F);
  1663. this.cb_COMM54_CH2Use.Location = new System.Drawing.Point(676, 409);
  1664. this.cb_COMM54_CH2Use.Name = "cb_COMM54_CH2Use";
  1665. this.cb_COMM54_CH2Use.Size = new System.Drawing.Size(15, 14);
  1666. this.cb_COMM54_CH2Use.TabIndex = 526;
  1667. this.cb_COMM54_CH2Use.UseVisualStyleBackColor = true;
  1668. //
  1669. // cb_COMM34_CH2Use
  1670. //
  1671. this.cb_COMM34_CH2Use.AutoSize = true;
  1672. this.cb_COMM34_CH2Use.Font = new System.Drawing.Font("굴림", 10F);
  1673. this.cb_COMM34_CH2Use.Location = new System.Drawing.Point(415, 409);
  1674. this.cb_COMM34_CH2Use.Name = "cb_COMM34_CH2Use";
  1675. this.cb_COMM34_CH2Use.Size = new System.Drawing.Size(15, 14);
  1676. this.cb_COMM34_CH2Use.TabIndex = 527;
  1677. this.cb_COMM34_CH2Use.UseVisualStyleBackColor = true;
  1678. //
  1679. // cb_COMM14_CH2Use
  1680. //
  1681. this.cb_COMM14_CH2Use.AutoSize = true;
  1682. this.cb_COMM14_CH2Use.Font = new System.Drawing.Font("굴림", 10F);
  1683. this.cb_COMM14_CH2Use.Location = new System.Drawing.Point(159, 408);
  1684. this.cb_COMM14_CH2Use.Name = "cb_COMM14_CH2Use";
  1685. this.cb_COMM14_CH2Use.Size = new System.Drawing.Size(15, 14);
  1686. this.cb_COMM14_CH2Use.TabIndex = 525;
  1687. this.cb_COMM14_CH2Use.UseVisualStyleBackColor = true;
  1688. //
  1689. // cb_COMM59_CH3Use
  1690. //
  1691. this.cb_COMM59_CH3Use.AutoSize = true;
  1692. this.cb_COMM59_CH3Use.Font = new System.Drawing.Font("굴림", 10F);
  1693. this.cb_COMM59_CH3Use.Location = new System.Drawing.Point(710, 539);
  1694. this.cb_COMM59_CH3Use.Name = "cb_COMM59_CH3Use";
  1695. this.cb_COMM59_CH3Use.Size = new System.Drawing.Size(15, 14);
  1696. this.cb_COMM59_CH3Use.TabIndex = 505;
  1697. this.cb_COMM59_CH3Use.UseVisualStyleBackColor = true;
  1698. //
  1699. // cb_COMM39_CH3Use
  1700. //
  1701. this.cb_COMM39_CH3Use.AutoSize = true;
  1702. this.cb_COMM39_CH3Use.Font = new System.Drawing.Font("굴림", 10F);
  1703. this.cb_COMM39_CH3Use.Location = new System.Drawing.Point(449, 539);
  1704. this.cb_COMM39_CH3Use.Name = "cb_COMM39_CH3Use";
  1705. this.cb_COMM39_CH3Use.Size = new System.Drawing.Size(15, 14);
  1706. this.cb_COMM39_CH3Use.TabIndex = 504;
  1707. this.cb_COMM39_CH3Use.UseVisualStyleBackColor = true;
  1708. //
  1709. // cb_COMM19_CH3Use
  1710. //
  1711. this.cb_COMM19_CH3Use.AutoSize = true;
  1712. this.cb_COMM19_CH3Use.Font = new System.Drawing.Font("굴림", 10F);
  1713. this.cb_COMM19_CH3Use.Location = new System.Drawing.Point(193, 538);
  1714. this.cb_COMM19_CH3Use.Name = "cb_COMM19_CH3Use";
  1715. this.cb_COMM19_CH3Use.Size = new System.Drawing.Size(15, 14);
  1716. this.cb_COMM19_CH3Use.TabIndex = 506;
  1717. this.cb_COMM19_CH3Use.UseVisualStyleBackColor = true;
  1718. //
  1719. // cb_COMM59_CH1Use
  1720. //
  1721. this.cb_COMM59_CH1Use.AutoSize = true;
  1722. this.cb_COMM59_CH1Use.Font = new System.Drawing.Font("굴림", 10F);
  1723. this.cb_COMM59_CH1Use.Location = new System.Drawing.Point(643, 539);
  1724. this.cb_COMM59_CH1Use.Name = "cb_COMM59_CH1Use";
  1725. this.cb_COMM59_CH1Use.Size = new System.Drawing.Size(15, 14);
  1726. this.cb_COMM59_CH1Use.TabIndex = 507;
  1727. this.cb_COMM59_CH1Use.UseVisualStyleBackColor = true;
  1728. //
  1729. // cb_COMM39_CH1Use
  1730. //
  1731. this.cb_COMM39_CH1Use.AutoSize = true;
  1732. this.cb_COMM39_CH1Use.Font = new System.Drawing.Font("굴림", 10F);
  1733. this.cb_COMM39_CH1Use.Location = new System.Drawing.Point(382, 539);
  1734. this.cb_COMM39_CH1Use.Name = "cb_COMM39_CH1Use";
  1735. this.cb_COMM39_CH1Use.Size = new System.Drawing.Size(15, 14);
  1736. this.cb_COMM39_CH1Use.TabIndex = 508;
  1737. this.cb_COMM39_CH1Use.UseVisualStyleBackColor = true;
  1738. //
  1739. // cb_COMM19_CH1Use
  1740. //
  1741. this.cb_COMM19_CH1Use.AutoSize = true;
  1742. this.cb_COMM19_CH1Use.Font = new System.Drawing.Font("굴림", 10F);
  1743. this.cb_COMM19_CH1Use.Location = new System.Drawing.Point(126, 538);
  1744. this.cb_COMM19_CH1Use.Name = "cb_COMM19_CH1Use";
  1745. this.cb_COMM19_CH1Use.Size = new System.Drawing.Size(15, 14);
  1746. this.cb_COMM19_CH1Use.TabIndex = 509;
  1747. this.cb_COMM19_CH1Use.UseVisualStyleBackColor = true;
  1748. //
  1749. // cb_COMM54_CH3Use
  1750. //
  1751. this.cb_COMM54_CH3Use.AutoSize = true;
  1752. this.cb_COMM54_CH3Use.Font = new System.Drawing.Font("굴림", 10F);
  1753. this.cb_COMM54_CH3Use.Location = new System.Drawing.Point(710, 409);
  1754. this.cb_COMM54_CH3Use.Name = "cb_COMM54_CH3Use";
  1755. this.cb_COMM54_CH3Use.Size = new System.Drawing.Size(15, 14);
  1756. this.cb_COMM54_CH3Use.TabIndex = 510;
  1757. this.cb_COMM54_CH3Use.UseVisualStyleBackColor = true;
  1758. //
  1759. // cb_COMM34_CH3Use
  1760. //
  1761. this.cb_COMM34_CH3Use.AutoSize = true;
  1762. this.cb_COMM34_CH3Use.Font = new System.Drawing.Font("굴림", 10F);
  1763. this.cb_COMM34_CH3Use.Location = new System.Drawing.Point(449, 409);
  1764. this.cb_COMM34_CH3Use.Name = "cb_COMM34_CH3Use";
  1765. this.cb_COMM34_CH3Use.Size = new System.Drawing.Size(15, 14);
  1766. this.cb_COMM34_CH3Use.TabIndex = 512;
  1767. this.cb_COMM34_CH3Use.UseVisualStyleBackColor = true;
  1768. //
  1769. // cb_COMM14_CH3Use
  1770. //
  1771. this.cb_COMM14_CH3Use.AutoSize = true;
  1772. this.cb_COMM14_CH3Use.Font = new System.Drawing.Font("굴림", 10F);
  1773. this.cb_COMM14_CH3Use.Location = new System.Drawing.Point(193, 408);
  1774. this.cb_COMM14_CH3Use.Name = "cb_COMM14_CH3Use";
  1775. this.cb_COMM14_CH3Use.Size = new System.Drawing.Size(15, 14);
  1776. this.cb_COMM14_CH3Use.TabIndex = 511;
  1777. this.cb_COMM14_CH3Use.UseVisualStyleBackColor = true;
  1778. //
  1779. // cb_COMM54_CH1Use
  1780. //
  1781. this.cb_COMM54_CH1Use.AutoSize = true;
  1782. this.cb_COMM54_CH1Use.Font = new System.Drawing.Font("굴림", 10F);
  1783. this.cb_COMM54_CH1Use.Location = new System.Drawing.Point(643, 409);
  1784. this.cb_COMM54_CH1Use.Name = "cb_COMM54_CH1Use";
  1785. this.cb_COMM54_CH1Use.Size = new System.Drawing.Size(15, 14);
  1786. this.cb_COMM54_CH1Use.TabIndex = 515;
  1787. this.cb_COMM54_CH1Use.UseVisualStyleBackColor = true;
  1788. //
  1789. // cb_COMM34_CH1Use
  1790. //
  1791. this.cb_COMM34_CH1Use.AutoSize = true;
  1792. this.cb_COMM34_CH1Use.Font = new System.Drawing.Font("굴림", 10F);
  1793. this.cb_COMM34_CH1Use.Location = new System.Drawing.Point(382, 409);
  1794. this.cb_COMM34_CH1Use.Name = "cb_COMM34_CH1Use";
  1795. this.cb_COMM34_CH1Use.Size = new System.Drawing.Size(15, 14);
  1796. this.cb_COMM34_CH1Use.TabIndex = 514;
  1797. this.cb_COMM34_CH1Use.UseVisualStyleBackColor = true;
  1798. //
  1799. // cb_COMM14_CH1Use
  1800. //
  1801. this.cb_COMM14_CH1Use.AutoSize = true;
  1802. this.cb_COMM14_CH1Use.Font = new System.Drawing.Font("굴림", 10F);
  1803. this.cb_COMM14_CH1Use.Location = new System.Drawing.Point(126, 408);
  1804. this.cb_COMM14_CH1Use.Name = "cb_COMM14_CH1Use";
  1805. this.cb_COMM14_CH1Use.Size = new System.Drawing.Size(15, 14);
  1806. this.cb_COMM14_CH1Use.TabIndex = 513;
  1807. this.cb_COMM14_CH1Use.UseVisualStyleBackColor = true;
  1808. //
  1809. // lbl_COMM58
  1810. //
  1811. this.lbl_COMM58.AutoSize = true;
  1812. this.lbl_COMM58.Font = new System.Drawing.Font("굴림", 10F);
  1813. this.lbl_COMM58.Location = new System.Drawing.Point(542, 513);
  1814. this.lbl_COMM58.Name = "lbl_COMM58";
  1815. this.lbl_COMM58.Size = new System.Drawing.Size(70, 14);
  1816. this.lbl_COMM58.TabIndex = 497;
  1817. this.lbl_COMM58.Text = "중계반 58";
  1818. //
  1819. // lbl_COMM38
  1820. //
  1821. this.lbl_COMM38.AutoSize = true;
  1822. this.lbl_COMM38.Font = new System.Drawing.Font("굴림", 10F);
  1823. this.lbl_COMM38.Location = new System.Drawing.Point(286, 513);
  1824. this.lbl_COMM38.Name = "lbl_COMM38";
  1825. this.lbl_COMM38.Size = new System.Drawing.Size(70, 14);
  1826. this.lbl_COMM38.TabIndex = 495;
  1827. this.lbl_COMM38.Text = "중계반 38";
  1828. //
  1829. // lbl_COMM18
  1830. //
  1831. this.lbl_COMM18.AutoSize = true;
  1832. this.lbl_COMM18.Font = new System.Drawing.Font("굴림", 10F);
  1833. this.lbl_COMM18.Location = new System.Drawing.Point(33, 512);
  1834. this.lbl_COMM18.Name = "lbl_COMM18";
  1835. this.lbl_COMM18.Size = new System.Drawing.Size(70, 14);
  1836. this.lbl_COMM18.TabIndex = 496;
  1837. this.lbl_COMM18.Text = "중계반 18";
  1838. //
  1839. // lbl_COMM53
  1840. //
  1841. this.lbl_COMM53.AutoSize = true;
  1842. this.lbl_COMM53.Font = new System.Drawing.Font("굴림", 10F);
  1843. this.lbl_COMM53.Location = new System.Drawing.Point(542, 383);
  1844. this.lbl_COMM53.Name = "lbl_COMM53";
  1845. this.lbl_COMM53.Size = new System.Drawing.Size(70, 14);
  1846. this.lbl_COMM53.TabIndex = 492;
  1847. this.lbl_COMM53.Text = "중계반 53";
  1848. //
  1849. // lbl_COMM33
  1850. //
  1851. this.lbl_COMM33.AutoSize = true;
  1852. this.lbl_COMM33.Font = new System.Drawing.Font("굴림", 10F);
  1853. this.lbl_COMM33.Location = new System.Drawing.Point(286, 383);
  1854. this.lbl_COMM33.Name = "lbl_COMM33";
  1855. this.lbl_COMM33.Size = new System.Drawing.Size(70, 14);
  1856. this.lbl_COMM33.TabIndex = 493;
  1857. this.lbl_COMM33.Text = "중계반 33";
  1858. //
  1859. // lbl_COMM13
  1860. //
  1861. this.lbl_COMM13.AutoSize = true;
  1862. this.lbl_COMM13.Font = new System.Drawing.Font("굴림", 10F);
  1863. this.lbl_COMM13.Location = new System.Drawing.Point(33, 382);
  1864. this.lbl_COMM13.Name = "lbl_COMM13";
  1865. this.lbl_COMM13.Size = new System.Drawing.Size(70, 14);
  1866. this.lbl_COMM13.TabIndex = 494;
  1867. this.lbl_COMM13.Text = "중계반 13";
  1868. //
  1869. // cb_COMM58_CH4Use
  1870. //
  1871. this.cb_COMM58_CH4Use.AutoSize = true;
  1872. this.cb_COMM58_CH4Use.Font = new System.Drawing.Font("굴림", 10F);
  1873. this.cb_COMM58_CH4Use.Location = new System.Drawing.Point(743, 513);
  1874. this.cb_COMM58_CH4Use.Name = "cb_COMM58_CH4Use";
  1875. this.cb_COMM58_CH4Use.Size = new System.Drawing.Size(15, 14);
  1876. this.cb_COMM58_CH4Use.TabIndex = 482;
  1877. this.cb_COMM58_CH4Use.UseVisualStyleBackColor = true;
  1878. //
  1879. // cb_COMM38_CH4Use
  1880. //
  1881. this.cb_COMM38_CH4Use.AutoSize = true;
  1882. this.cb_COMM38_CH4Use.Font = new System.Drawing.Font("굴림", 10F);
  1883. this.cb_COMM38_CH4Use.Location = new System.Drawing.Point(482, 513);
  1884. this.cb_COMM38_CH4Use.Name = "cb_COMM38_CH4Use";
  1885. this.cb_COMM38_CH4Use.Size = new System.Drawing.Size(15, 14);
  1886. this.cb_COMM38_CH4Use.TabIndex = 480;
  1887. this.cb_COMM38_CH4Use.UseVisualStyleBackColor = true;
  1888. //
  1889. // cb_COMM18_CH4Use
  1890. //
  1891. this.cb_COMM18_CH4Use.AutoSize = true;
  1892. this.cb_COMM18_CH4Use.Font = new System.Drawing.Font("굴림", 10F);
  1893. this.cb_COMM18_CH4Use.Location = new System.Drawing.Point(226, 512);
  1894. this.cb_COMM18_CH4Use.Name = "cb_COMM18_CH4Use";
  1895. this.cb_COMM18_CH4Use.Size = new System.Drawing.Size(15, 14);
  1896. this.cb_COMM18_CH4Use.TabIndex = 481;
  1897. this.cb_COMM18_CH4Use.UseVisualStyleBackColor = true;
  1898. //
  1899. // cb_COMM58_CH2Use
  1900. //
  1901. this.cb_COMM58_CH2Use.AutoSize = true;
  1902. this.cb_COMM58_CH2Use.Font = new System.Drawing.Font("굴림", 10F);
  1903. this.cb_COMM58_CH2Use.Location = new System.Drawing.Point(676, 513);
  1904. this.cb_COMM58_CH2Use.Name = "cb_COMM58_CH2Use";
  1905. this.cb_COMM58_CH2Use.Size = new System.Drawing.Size(15, 14);
  1906. this.cb_COMM58_CH2Use.TabIndex = 489;
  1907. this.cb_COMM58_CH2Use.UseVisualStyleBackColor = true;
  1908. //
  1909. // cb_COMM38_CH2Use
  1910. //
  1911. this.cb_COMM38_CH2Use.AutoSize = true;
  1912. this.cb_COMM38_CH2Use.Font = new System.Drawing.Font("굴림", 10F);
  1913. this.cb_COMM38_CH2Use.Location = new System.Drawing.Point(415, 513);
  1914. this.cb_COMM38_CH2Use.Name = "cb_COMM38_CH2Use";
  1915. this.cb_COMM38_CH2Use.Size = new System.Drawing.Size(15, 14);
  1916. this.cb_COMM38_CH2Use.TabIndex = 491;
  1917. this.cb_COMM38_CH2Use.UseVisualStyleBackColor = true;
  1918. //
  1919. // cb_COMM18_CH2Use
  1920. //
  1921. this.cb_COMM18_CH2Use.AutoSize = true;
  1922. this.cb_COMM18_CH2Use.Font = new System.Drawing.Font("굴림", 10F);
  1923. this.cb_COMM18_CH2Use.Location = new System.Drawing.Point(159, 512);
  1924. this.cb_COMM18_CH2Use.Name = "cb_COMM18_CH2Use";
  1925. this.cb_COMM18_CH2Use.Size = new System.Drawing.Size(15, 14);
  1926. this.cb_COMM18_CH2Use.TabIndex = 490;
  1927. this.cb_COMM18_CH2Use.UseVisualStyleBackColor = true;
  1928. //
  1929. // cb_COMM53_CH4Use
  1930. //
  1931. this.cb_COMM53_CH4Use.AutoSize = true;
  1932. this.cb_COMM53_CH4Use.Font = new System.Drawing.Font("굴림", 10F);
  1933. this.cb_COMM53_CH4Use.Location = new System.Drawing.Point(743, 383);
  1934. this.cb_COMM53_CH4Use.Name = "cb_COMM53_CH4Use";
  1935. this.cb_COMM53_CH4Use.Size = new System.Drawing.Size(15, 14);
  1936. this.cb_COMM53_CH4Use.TabIndex = 488;
  1937. this.cb_COMM53_CH4Use.UseVisualStyleBackColor = true;
  1938. //
  1939. // cb_COMM33_CH4Use
  1940. //
  1941. this.cb_COMM33_CH4Use.AutoSize = true;
  1942. this.cb_COMM33_CH4Use.Font = new System.Drawing.Font("굴림", 10F);
  1943. this.cb_COMM33_CH4Use.Location = new System.Drawing.Point(482, 383);
  1944. this.cb_COMM33_CH4Use.Name = "cb_COMM33_CH4Use";
  1945. this.cb_COMM33_CH4Use.Size = new System.Drawing.Size(15, 14);
  1946. this.cb_COMM33_CH4Use.TabIndex = 486;
  1947. this.cb_COMM33_CH4Use.UseVisualStyleBackColor = true;
  1948. //
  1949. // cb_COMM13_CH4Use
  1950. //
  1951. this.cb_COMM13_CH4Use.AutoSize = true;
  1952. this.cb_COMM13_CH4Use.Font = new System.Drawing.Font("굴림", 10F);
  1953. this.cb_COMM13_CH4Use.Location = new System.Drawing.Point(226, 382);
  1954. this.cb_COMM13_CH4Use.Name = "cb_COMM13_CH4Use";
  1955. this.cb_COMM13_CH4Use.Size = new System.Drawing.Size(15, 14);
  1956. this.cb_COMM13_CH4Use.TabIndex = 487;
  1957. this.cb_COMM13_CH4Use.UseVisualStyleBackColor = true;
  1958. //
  1959. // cb_COMM53_CH2Use
  1960. //
  1961. this.cb_COMM53_CH2Use.AutoSize = true;
  1962. this.cb_COMM53_CH2Use.Font = new System.Drawing.Font("굴림", 10F);
  1963. this.cb_COMM53_CH2Use.Location = new System.Drawing.Point(676, 383);
  1964. this.cb_COMM53_CH2Use.Name = "cb_COMM53_CH2Use";
  1965. this.cb_COMM53_CH2Use.Size = new System.Drawing.Size(15, 14);
  1966. this.cb_COMM53_CH2Use.TabIndex = 483;
  1967. this.cb_COMM53_CH2Use.UseVisualStyleBackColor = true;
  1968. //
  1969. // cb_COMM33_CH2Use
  1970. //
  1971. this.cb_COMM33_CH2Use.AutoSize = true;
  1972. this.cb_COMM33_CH2Use.Font = new System.Drawing.Font("굴림", 10F);
  1973. this.cb_COMM33_CH2Use.Location = new System.Drawing.Point(415, 383);
  1974. this.cb_COMM33_CH2Use.Name = "cb_COMM33_CH2Use";
  1975. this.cb_COMM33_CH2Use.Size = new System.Drawing.Size(15, 14);
  1976. this.cb_COMM33_CH2Use.TabIndex = 484;
  1977. this.cb_COMM33_CH2Use.UseVisualStyleBackColor = true;
  1978. //
  1979. // cb_COMM13_CH2Use
  1980. //
  1981. this.cb_COMM13_CH2Use.AutoSize = true;
  1982. this.cb_COMM13_CH2Use.Font = new System.Drawing.Font("굴림", 10F);
  1983. this.cb_COMM13_CH2Use.Location = new System.Drawing.Point(159, 382);
  1984. this.cb_COMM13_CH2Use.Name = "cb_COMM13_CH2Use";
  1985. this.cb_COMM13_CH2Use.Size = new System.Drawing.Size(15, 14);
  1986. this.cb_COMM13_CH2Use.TabIndex = 485;
  1987. this.cb_COMM13_CH2Use.UseVisualStyleBackColor = true;
  1988. //
  1989. // cb_COMM58_CH3Use
  1990. //
  1991. this.cb_COMM58_CH3Use.AutoSize = true;
  1992. this.cb_COMM58_CH3Use.Font = new System.Drawing.Font("굴림", 10F);
  1993. this.cb_COMM58_CH3Use.Location = new System.Drawing.Point(710, 513);
  1994. this.cb_COMM58_CH3Use.Name = "cb_COMM58_CH3Use";
  1995. this.cb_COMM58_CH3Use.Size = new System.Drawing.Size(15, 14);
  1996. this.cb_COMM58_CH3Use.TabIndex = 470;
  1997. this.cb_COMM58_CH3Use.UseVisualStyleBackColor = true;
  1998. //
  1999. // cb_COMM38_CH3Use
  2000. //
  2001. this.cb_COMM38_CH3Use.AutoSize = true;
  2002. this.cb_COMM38_CH3Use.Font = new System.Drawing.Font("굴림", 10F);
  2003. this.cb_COMM38_CH3Use.Location = new System.Drawing.Point(449, 513);
  2004. this.cb_COMM38_CH3Use.Name = "cb_COMM38_CH3Use";
  2005. this.cb_COMM38_CH3Use.Size = new System.Drawing.Size(15, 14);
  2006. this.cb_COMM38_CH3Use.TabIndex = 468;
  2007. this.cb_COMM38_CH3Use.UseVisualStyleBackColor = true;
  2008. //
  2009. // cb_COMM18_CH3Use
  2010. //
  2011. this.cb_COMM18_CH3Use.AutoSize = true;
  2012. this.cb_COMM18_CH3Use.Font = new System.Drawing.Font("굴림", 10F);
  2013. this.cb_COMM18_CH3Use.Location = new System.Drawing.Point(193, 512);
  2014. this.cb_COMM18_CH3Use.Name = "cb_COMM18_CH3Use";
  2015. this.cb_COMM18_CH3Use.Size = new System.Drawing.Size(15, 14);
  2016. this.cb_COMM18_CH3Use.TabIndex = 469;
  2017. this.cb_COMM18_CH3Use.UseVisualStyleBackColor = true;
  2018. //
  2019. // cb_COMM58_CH1Use
  2020. //
  2021. this.cb_COMM58_CH1Use.AutoSize = true;
  2022. this.cb_COMM58_CH1Use.Font = new System.Drawing.Font("굴림", 10F);
  2023. this.cb_COMM58_CH1Use.Location = new System.Drawing.Point(643, 513);
  2024. this.cb_COMM58_CH1Use.Name = "cb_COMM58_CH1Use";
  2025. this.cb_COMM58_CH1Use.Size = new System.Drawing.Size(15, 14);
  2026. this.cb_COMM58_CH1Use.TabIndex = 479;
  2027. this.cb_COMM58_CH1Use.UseVisualStyleBackColor = true;
  2028. //
  2029. // cb_COMM38_CH1Use
  2030. //
  2031. this.cb_COMM38_CH1Use.AutoSize = true;
  2032. this.cb_COMM38_CH1Use.Font = new System.Drawing.Font("굴림", 10F);
  2033. this.cb_COMM38_CH1Use.Location = new System.Drawing.Point(382, 513);
  2034. this.cb_COMM38_CH1Use.Name = "cb_COMM38_CH1Use";
  2035. this.cb_COMM38_CH1Use.Size = new System.Drawing.Size(15, 14);
  2036. this.cb_COMM38_CH1Use.TabIndex = 478;
  2037. this.cb_COMM38_CH1Use.UseVisualStyleBackColor = true;
  2038. //
  2039. // cb_COMM18_CH1Use
  2040. //
  2041. this.cb_COMM18_CH1Use.AutoSize = true;
  2042. this.cb_COMM18_CH1Use.Font = new System.Drawing.Font("굴림", 10F);
  2043. this.cb_COMM18_CH1Use.Location = new System.Drawing.Point(126, 512);
  2044. this.cb_COMM18_CH1Use.Name = "cb_COMM18_CH1Use";
  2045. this.cb_COMM18_CH1Use.Size = new System.Drawing.Size(15, 14);
  2046. this.cb_COMM18_CH1Use.TabIndex = 477;
  2047. this.cb_COMM18_CH1Use.UseVisualStyleBackColor = true;
  2048. //
  2049. // cb_COMM53_CH3Use
  2050. //
  2051. this.cb_COMM53_CH3Use.AutoSize = true;
  2052. this.cb_COMM53_CH3Use.Font = new System.Drawing.Font("굴림", 10F);
  2053. this.cb_COMM53_CH3Use.Location = new System.Drawing.Point(710, 383);
  2054. this.cb_COMM53_CH3Use.Name = "cb_COMM53_CH3Use";
  2055. this.cb_COMM53_CH3Use.Size = new System.Drawing.Size(15, 14);
  2056. this.cb_COMM53_CH3Use.TabIndex = 472;
  2057. this.cb_COMM53_CH3Use.UseVisualStyleBackColor = true;
  2058. //
  2059. // cb_COMM33_CH3Use
  2060. //
  2061. this.cb_COMM33_CH3Use.AutoSize = true;
  2062. this.cb_COMM33_CH3Use.Font = new System.Drawing.Font("굴림", 10F);
  2063. this.cb_COMM33_CH3Use.Location = new System.Drawing.Point(449, 383);
  2064. this.cb_COMM33_CH3Use.Name = "cb_COMM33_CH3Use";
  2065. this.cb_COMM33_CH3Use.Size = new System.Drawing.Size(15, 14);
  2066. this.cb_COMM33_CH3Use.TabIndex = 473;
  2067. this.cb_COMM33_CH3Use.UseVisualStyleBackColor = true;
  2068. //
  2069. // cb_COMM13_CH3Use
  2070. //
  2071. this.cb_COMM13_CH3Use.AutoSize = true;
  2072. this.cb_COMM13_CH3Use.Font = new System.Drawing.Font("굴림", 10F);
  2073. this.cb_COMM13_CH3Use.Location = new System.Drawing.Point(193, 382);
  2074. this.cb_COMM13_CH3Use.Name = "cb_COMM13_CH3Use";
  2075. this.cb_COMM13_CH3Use.Size = new System.Drawing.Size(15, 14);
  2076. this.cb_COMM13_CH3Use.TabIndex = 471;
  2077. this.cb_COMM13_CH3Use.UseVisualStyleBackColor = true;
  2078. //
  2079. // cb_COMM53_CH1Use
  2080. //
  2081. this.cb_COMM53_CH1Use.AutoSize = true;
  2082. this.cb_COMM53_CH1Use.Font = new System.Drawing.Font("굴림", 10F);
  2083. this.cb_COMM53_CH1Use.Location = new System.Drawing.Point(643, 383);
  2084. this.cb_COMM53_CH1Use.Name = "cb_COMM53_CH1Use";
  2085. this.cb_COMM53_CH1Use.Size = new System.Drawing.Size(15, 14);
  2086. this.cb_COMM53_CH1Use.TabIndex = 475;
  2087. this.cb_COMM53_CH1Use.UseVisualStyleBackColor = true;
  2088. //
  2089. // cb_COMM33_CH1Use
  2090. //
  2091. this.cb_COMM33_CH1Use.AutoSize = true;
  2092. this.cb_COMM33_CH1Use.Font = new System.Drawing.Font("굴림", 10F);
  2093. this.cb_COMM33_CH1Use.Location = new System.Drawing.Point(382, 383);
  2094. this.cb_COMM33_CH1Use.Name = "cb_COMM33_CH1Use";
  2095. this.cb_COMM33_CH1Use.Size = new System.Drawing.Size(15, 14);
  2096. this.cb_COMM33_CH1Use.TabIndex = 476;
  2097. this.cb_COMM33_CH1Use.UseVisualStyleBackColor = true;
  2098. //
  2099. // cb_COMM13_CH1Use
  2100. //
  2101. this.cb_COMM13_CH1Use.AutoSize = true;
  2102. this.cb_COMM13_CH1Use.Font = new System.Drawing.Font("굴림", 10F);
  2103. this.cb_COMM13_CH1Use.Location = new System.Drawing.Point(126, 382);
  2104. this.cb_COMM13_CH1Use.Name = "cb_COMM13_CH1Use";
  2105. this.cb_COMM13_CH1Use.Size = new System.Drawing.Size(15, 14);
  2106. this.cb_COMM13_CH1Use.TabIndex = 474;
  2107. this.cb_COMM13_CH1Use.UseVisualStyleBackColor = true;
  2108. //
  2109. // lbl_COMM57
  2110. //
  2111. this.lbl_COMM57.AutoSize = true;
  2112. this.lbl_COMM57.Font = new System.Drawing.Font("굴림", 10F);
  2113. this.lbl_COMM57.Location = new System.Drawing.Point(542, 487);
  2114. this.lbl_COMM57.Name = "lbl_COMM57";
  2115. this.lbl_COMM57.Size = new System.Drawing.Size(70, 14);
  2116. this.lbl_COMM57.TabIndex = 458;
  2117. this.lbl_COMM57.Text = "중계반 57";
  2118. //
  2119. // lbl_COMM37
  2120. //
  2121. this.lbl_COMM37.AutoSize = true;
  2122. this.lbl_COMM37.Font = new System.Drawing.Font("굴림", 10F);
  2123. this.lbl_COMM37.Location = new System.Drawing.Point(286, 487);
  2124. this.lbl_COMM37.Name = "lbl_COMM37";
  2125. this.lbl_COMM37.Size = new System.Drawing.Size(70, 14);
  2126. this.lbl_COMM37.TabIndex = 457;
  2127. this.lbl_COMM37.Text = "중계반 37";
  2128. //
  2129. // lbl_COMM17
  2130. //
  2131. this.lbl_COMM17.AutoSize = true;
  2132. this.lbl_COMM17.Font = new System.Drawing.Font("굴림", 10F);
  2133. this.lbl_COMM17.Location = new System.Drawing.Point(33, 486);
  2134. this.lbl_COMM17.Name = "lbl_COMM17";
  2135. this.lbl_COMM17.Size = new System.Drawing.Size(70, 14);
  2136. this.lbl_COMM17.TabIndex = 456;
  2137. this.lbl_COMM17.Text = "중계반 17";
  2138. //
  2139. // lbl_COMM52
  2140. //
  2141. this.lbl_COMM52.AutoSize = true;
  2142. this.lbl_COMM52.Font = new System.Drawing.Font("굴림", 10F);
  2143. this.lbl_COMM52.Location = new System.Drawing.Point(542, 357);
  2144. this.lbl_COMM52.Name = "lbl_COMM52";
  2145. this.lbl_COMM52.Size = new System.Drawing.Size(70, 14);
  2146. this.lbl_COMM52.TabIndex = 461;
  2147. this.lbl_COMM52.Text = "중계반 52";
  2148. //
  2149. // lbl_COMM32
  2150. //
  2151. this.lbl_COMM32.AutoSize = true;
  2152. this.lbl_COMM32.Font = new System.Drawing.Font("굴림", 10F);
  2153. this.lbl_COMM32.Location = new System.Drawing.Point(286, 357);
  2154. this.lbl_COMM32.Name = "lbl_COMM32";
  2155. this.lbl_COMM32.Size = new System.Drawing.Size(70, 14);
  2156. this.lbl_COMM32.TabIndex = 459;
  2157. this.lbl_COMM32.Text = "중계반 32";
  2158. //
  2159. // lbl_COMM12
  2160. //
  2161. this.lbl_COMM12.AutoSize = true;
  2162. this.lbl_COMM12.Font = new System.Drawing.Font("굴림", 10F);
  2163. this.lbl_COMM12.Location = new System.Drawing.Point(33, 356);
  2164. this.lbl_COMM12.Name = "lbl_COMM12";
  2165. this.lbl_COMM12.Size = new System.Drawing.Size(70, 14);
  2166. this.lbl_COMM12.TabIndex = 460;
  2167. this.lbl_COMM12.Text = "중계반 12";
  2168. //
  2169. // cb_COMM57_CH4Use
  2170. //
  2171. this.cb_COMM57_CH4Use.AutoSize = true;
  2172. this.cb_COMM57_CH4Use.Font = new System.Drawing.Font("굴림", 10F);
  2173. this.cb_COMM57_CH4Use.Location = new System.Drawing.Point(743, 487);
  2174. this.cb_COMM57_CH4Use.Name = "cb_COMM57_CH4Use";
  2175. this.cb_COMM57_CH4Use.Size = new System.Drawing.Size(15, 14);
  2176. this.cb_COMM57_CH4Use.TabIndex = 447;
  2177. this.cb_COMM57_CH4Use.UseVisualStyleBackColor = true;
  2178. //
  2179. // cb_COMM37_CH4Use
  2180. //
  2181. this.cb_COMM37_CH4Use.AutoSize = true;
  2182. this.cb_COMM37_CH4Use.Font = new System.Drawing.Font("굴림", 10F);
  2183. this.cb_COMM37_CH4Use.Location = new System.Drawing.Point(482, 487);
  2184. this.cb_COMM37_CH4Use.Name = "cb_COMM37_CH4Use";
  2185. this.cb_COMM37_CH4Use.Size = new System.Drawing.Size(15, 14);
  2186. this.cb_COMM37_CH4Use.TabIndex = 448;
  2187. this.cb_COMM37_CH4Use.UseVisualStyleBackColor = true;
  2188. //
  2189. // cb_COMM17_CH4Use
  2190. //
  2191. this.cb_COMM17_CH4Use.AutoSize = true;
  2192. this.cb_COMM17_CH4Use.Font = new System.Drawing.Font("굴림", 10F);
  2193. this.cb_COMM17_CH4Use.Location = new System.Drawing.Point(226, 486);
  2194. this.cb_COMM17_CH4Use.Name = "cb_COMM17_CH4Use";
  2195. this.cb_COMM17_CH4Use.Size = new System.Drawing.Size(15, 14);
  2196. this.cb_COMM17_CH4Use.TabIndex = 449;
  2197. this.cb_COMM17_CH4Use.UseVisualStyleBackColor = true;
  2198. //
  2199. // cb_COMM57_CH2Use
  2200. //
  2201. this.cb_COMM57_CH2Use.AutoSize = true;
  2202. this.cb_COMM57_CH2Use.Font = new System.Drawing.Font("굴림", 10F);
  2203. this.cb_COMM57_CH2Use.Location = new System.Drawing.Point(676, 487);
  2204. this.cb_COMM57_CH2Use.Name = "cb_COMM57_CH2Use";
  2205. this.cb_COMM57_CH2Use.Size = new System.Drawing.Size(15, 14);
  2206. this.cb_COMM57_CH2Use.TabIndex = 446;
  2207. this.cb_COMM57_CH2Use.UseVisualStyleBackColor = true;
  2208. //
  2209. // cb_COMM37_CH2Use
  2210. //
  2211. this.cb_COMM37_CH2Use.AutoSize = true;
  2212. this.cb_COMM37_CH2Use.Font = new System.Drawing.Font("굴림", 10F);
  2213. this.cb_COMM37_CH2Use.Location = new System.Drawing.Point(415, 487);
  2214. this.cb_COMM37_CH2Use.Name = "cb_COMM37_CH2Use";
  2215. this.cb_COMM37_CH2Use.Size = new System.Drawing.Size(15, 14);
  2216. this.cb_COMM37_CH2Use.TabIndex = 445;
  2217. this.cb_COMM37_CH2Use.UseVisualStyleBackColor = true;
  2218. //
  2219. // cb_COMM17_CH2Use
  2220. //
  2221. this.cb_COMM17_CH2Use.AutoSize = true;
  2222. this.cb_COMM17_CH2Use.Font = new System.Drawing.Font("굴림", 10F);
  2223. this.cb_COMM17_CH2Use.Location = new System.Drawing.Point(159, 486);
  2224. this.cb_COMM17_CH2Use.Name = "cb_COMM17_CH2Use";
  2225. this.cb_COMM17_CH2Use.Size = new System.Drawing.Size(15, 14);
  2226. this.cb_COMM17_CH2Use.TabIndex = 444;
  2227. this.cb_COMM17_CH2Use.UseVisualStyleBackColor = true;
  2228. //
  2229. // cb_COMM52_CH4Use
  2230. //
  2231. this.cb_COMM52_CH4Use.AutoSize = true;
  2232. this.cb_COMM52_CH4Use.Font = new System.Drawing.Font("굴림", 10F);
  2233. this.cb_COMM52_CH4Use.Location = new System.Drawing.Point(743, 357);
  2234. this.cb_COMM52_CH4Use.Name = "cb_COMM52_CH4Use";
  2235. this.cb_COMM52_CH4Use.Size = new System.Drawing.Size(15, 14);
  2236. this.cb_COMM52_CH4Use.TabIndex = 454;
  2237. this.cb_COMM52_CH4Use.UseVisualStyleBackColor = true;
  2238. //
  2239. // cb_COMM32_CH4Use
  2240. //
  2241. this.cb_COMM32_CH4Use.AutoSize = true;
  2242. this.cb_COMM32_CH4Use.Font = new System.Drawing.Font("굴림", 10F);
  2243. this.cb_COMM32_CH4Use.Location = new System.Drawing.Point(482, 357);
  2244. this.cb_COMM32_CH4Use.Name = "cb_COMM32_CH4Use";
  2245. this.cb_COMM32_CH4Use.Size = new System.Drawing.Size(15, 14);
  2246. this.cb_COMM32_CH4Use.TabIndex = 455;
  2247. this.cb_COMM32_CH4Use.UseVisualStyleBackColor = true;
  2248. //
  2249. // cb_COMM12_CH4Use
  2250. //
  2251. this.cb_COMM12_CH4Use.AutoSize = true;
  2252. this.cb_COMM12_CH4Use.Font = new System.Drawing.Font("굴림", 10F);
  2253. this.cb_COMM12_CH4Use.Location = new System.Drawing.Point(226, 356);
  2254. this.cb_COMM12_CH4Use.Name = "cb_COMM12_CH4Use";
  2255. this.cb_COMM12_CH4Use.Size = new System.Drawing.Size(15, 14);
  2256. this.cb_COMM12_CH4Use.TabIndex = 453;
  2257. this.cb_COMM12_CH4Use.UseVisualStyleBackColor = true;
  2258. //
  2259. // cb_COMM52_CH2Use
  2260. //
  2261. this.cb_COMM52_CH2Use.AutoSize = true;
  2262. this.cb_COMM52_CH2Use.Font = new System.Drawing.Font("굴림", 10F);
  2263. this.cb_COMM52_CH2Use.Location = new System.Drawing.Point(676, 357);
  2264. this.cb_COMM52_CH2Use.Name = "cb_COMM52_CH2Use";
  2265. this.cb_COMM52_CH2Use.Size = new System.Drawing.Size(15, 14);
  2266. this.cb_COMM52_CH2Use.TabIndex = 452;
  2267. this.cb_COMM52_CH2Use.UseVisualStyleBackColor = true;
  2268. //
  2269. // cb_COMM32_CH2Use
  2270. //
  2271. this.cb_COMM32_CH2Use.AutoSize = true;
  2272. this.cb_COMM32_CH2Use.Font = new System.Drawing.Font("굴림", 10F);
  2273. this.cb_COMM32_CH2Use.Location = new System.Drawing.Point(415, 357);
  2274. this.cb_COMM32_CH2Use.Name = "cb_COMM32_CH2Use";
  2275. this.cb_COMM32_CH2Use.Size = new System.Drawing.Size(15, 14);
  2276. this.cb_COMM32_CH2Use.TabIndex = 451;
  2277. this.cb_COMM32_CH2Use.UseVisualStyleBackColor = true;
  2278. //
  2279. // cb_COMM12_CH2Use
  2280. //
  2281. this.cb_COMM12_CH2Use.AutoSize = true;
  2282. this.cb_COMM12_CH2Use.Font = new System.Drawing.Font("굴림", 10F);
  2283. this.cb_COMM12_CH2Use.Location = new System.Drawing.Point(159, 356);
  2284. this.cb_COMM12_CH2Use.Name = "cb_COMM12_CH2Use";
  2285. this.cb_COMM12_CH2Use.Size = new System.Drawing.Size(15, 14);
  2286. this.cb_COMM12_CH2Use.TabIndex = 450;
  2287. this.cb_COMM12_CH2Use.UseVisualStyleBackColor = true;
  2288. //
  2289. // cb_COMM57_CH3Use
  2290. //
  2291. this.cb_COMM57_CH3Use.AutoSize = true;
  2292. this.cb_COMM57_CH3Use.Font = new System.Drawing.Font("굴림", 10F);
  2293. this.cb_COMM57_CH3Use.Location = new System.Drawing.Point(710, 487);
  2294. this.cb_COMM57_CH3Use.Name = "cb_COMM57_CH3Use";
  2295. this.cb_COMM57_CH3Use.Size = new System.Drawing.Size(15, 14);
  2296. this.cb_COMM57_CH3Use.TabIndex = 432;
  2297. this.cb_COMM57_CH3Use.UseVisualStyleBackColor = true;
  2298. //
  2299. // cb_COMM37_CH3Use
  2300. //
  2301. this.cb_COMM37_CH3Use.AutoSize = true;
  2302. this.cb_COMM37_CH3Use.Font = new System.Drawing.Font("굴림", 10F);
  2303. this.cb_COMM37_CH3Use.Location = new System.Drawing.Point(449, 487);
  2304. this.cb_COMM37_CH3Use.Name = "cb_COMM37_CH3Use";
  2305. this.cb_COMM37_CH3Use.Size = new System.Drawing.Size(15, 14);
  2306. this.cb_COMM37_CH3Use.TabIndex = 433;
  2307. this.cb_COMM37_CH3Use.UseVisualStyleBackColor = true;
  2308. //
  2309. // cb_COMM17_CH3Use
  2310. //
  2311. this.cb_COMM17_CH3Use.AutoSize = true;
  2312. this.cb_COMM17_CH3Use.Font = new System.Drawing.Font("굴림", 10F);
  2313. this.cb_COMM17_CH3Use.Location = new System.Drawing.Point(193, 486);
  2314. this.cb_COMM17_CH3Use.Name = "cb_COMM17_CH3Use";
  2315. this.cb_COMM17_CH3Use.Size = new System.Drawing.Size(15, 14);
  2316. this.cb_COMM17_CH3Use.TabIndex = 434;
  2317. this.cb_COMM17_CH3Use.UseVisualStyleBackColor = true;
  2318. //
  2319. // cb_COMM57_CH1Use
  2320. //
  2321. this.cb_COMM57_CH1Use.AutoSize = true;
  2322. this.cb_COMM57_CH1Use.Font = new System.Drawing.Font("굴림", 10F);
  2323. this.cb_COMM57_CH1Use.Location = new System.Drawing.Point(643, 487);
  2324. this.cb_COMM57_CH1Use.Name = "cb_COMM57_CH1Use";
  2325. this.cb_COMM57_CH1Use.Size = new System.Drawing.Size(15, 14);
  2326. this.cb_COMM57_CH1Use.TabIndex = 441;
  2327. this.cb_COMM57_CH1Use.UseVisualStyleBackColor = true;
  2328. //
  2329. // cb_COMM37_CH1Use
  2330. //
  2331. this.cb_COMM37_CH1Use.AutoSize = true;
  2332. this.cb_COMM37_CH1Use.Font = new System.Drawing.Font("굴림", 10F);
  2333. this.cb_COMM37_CH1Use.Location = new System.Drawing.Point(382, 487);
  2334. this.cb_COMM37_CH1Use.Name = "cb_COMM37_CH1Use";
  2335. this.cb_COMM37_CH1Use.Size = new System.Drawing.Size(15, 14);
  2336. this.cb_COMM37_CH1Use.TabIndex = 442;
  2337. this.cb_COMM37_CH1Use.UseVisualStyleBackColor = true;
  2338. //
  2339. // cb_COMM17_CH1Use
  2340. //
  2341. this.cb_COMM17_CH1Use.AutoSize = true;
  2342. this.cb_COMM17_CH1Use.Font = new System.Drawing.Font("굴림", 10F);
  2343. this.cb_COMM17_CH1Use.Location = new System.Drawing.Point(126, 486);
  2344. this.cb_COMM17_CH1Use.Name = "cb_COMM17_CH1Use";
  2345. this.cb_COMM17_CH1Use.Size = new System.Drawing.Size(15, 14);
  2346. this.cb_COMM17_CH1Use.TabIndex = 443;
  2347. this.cb_COMM17_CH1Use.UseVisualStyleBackColor = true;
  2348. //
  2349. // cb_COMM52_CH3Use
  2350. //
  2351. this.cb_COMM52_CH3Use.AutoSize = true;
  2352. this.cb_COMM52_CH3Use.Font = new System.Drawing.Font("굴림", 10F);
  2353. this.cb_COMM52_CH3Use.Location = new System.Drawing.Point(710, 357);
  2354. this.cb_COMM52_CH3Use.Name = "cb_COMM52_CH3Use";
  2355. this.cb_COMM52_CH3Use.Size = new System.Drawing.Size(15, 14);
  2356. this.cb_COMM52_CH3Use.TabIndex = 439;
  2357. this.cb_COMM52_CH3Use.UseVisualStyleBackColor = true;
  2358. //
  2359. // cb_COMM32_CH3Use
  2360. //
  2361. this.cb_COMM32_CH3Use.AutoSize = true;
  2362. this.cb_COMM32_CH3Use.Font = new System.Drawing.Font("굴림", 10F);
  2363. this.cb_COMM32_CH3Use.Location = new System.Drawing.Point(449, 357);
  2364. this.cb_COMM32_CH3Use.Name = "cb_COMM32_CH3Use";
  2365. this.cb_COMM32_CH3Use.Size = new System.Drawing.Size(15, 14);
  2366. this.cb_COMM32_CH3Use.TabIndex = 440;
  2367. this.cb_COMM32_CH3Use.UseVisualStyleBackColor = true;
  2368. //
  2369. // cb_COMM12_CH3Use
  2370. //
  2371. this.cb_COMM12_CH3Use.AutoSize = true;
  2372. this.cb_COMM12_CH3Use.Font = new System.Drawing.Font("굴림", 10F);
  2373. this.cb_COMM12_CH3Use.Location = new System.Drawing.Point(193, 356);
  2374. this.cb_COMM12_CH3Use.Name = "cb_COMM12_CH3Use";
  2375. this.cb_COMM12_CH3Use.Size = new System.Drawing.Size(15, 14);
  2376. this.cb_COMM12_CH3Use.TabIndex = 438;
  2377. this.cb_COMM12_CH3Use.UseVisualStyleBackColor = true;
  2378. //
  2379. // cb_COMM52_CH1Use
  2380. //
  2381. this.cb_COMM52_CH1Use.AutoSize = true;
  2382. this.cb_COMM52_CH1Use.Font = new System.Drawing.Font("굴림", 10F);
  2383. this.cb_COMM52_CH1Use.Location = new System.Drawing.Point(643, 357);
  2384. this.cb_COMM52_CH1Use.Name = "cb_COMM52_CH1Use";
  2385. this.cb_COMM52_CH1Use.Size = new System.Drawing.Size(15, 14);
  2386. this.cb_COMM52_CH1Use.TabIndex = 437;
  2387. this.cb_COMM52_CH1Use.UseVisualStyleBackColor = true;
  2388. //
  2389. // cb_COMM32_CH1Use
  2390. //
  2391. this.cb_COMM32_CH1Use.AutoSize = true;
  2392. this.cb_COMM32_CH1Use.Font = new System.Drawing.Font("굴림", 10F);
  2393. this.cb_COMM32_CH1Use.Location = new System.Drawing.Point(382, 357);
  2394. this.cb_COMM32_CH1Use.Name = "cb_COMM32_CH1Use";
  2395. this.cb_COMM32_CH1Use.Size = new System.Drawing.Size(15, 14);
  2396. this.cb_COMM32_CH1Use.TabIndex = 435;
  2397. this.cb_COMM32_CH1Use.UseVisualStyleBackColor = true;
  2398. //
  2399. // cb_COMM12_CH1Use
  2400. //
  2401. this.cb_COMM12_CH1Use.AutoSize = true;
  2402. this.cb_COMM12_CH1Use.Font = new System.Drawing.Font("굴림", 10F);
  2403. this.cb_COMM12_CH1Use.Location = new System.Drawing.Point(126, 356);
  2404. this.cb_COMM12_CH1Use.Name = "cb_COMM12_CH1Use";
  2405. this.cb_COMM12_CH1Use.Size = new System.Drawing.Size(15, 14);
  2406. this.cb_COMM12_CH1Use.TabIndex = 436;
  2407. this.cb_COMM12_CH1Use.UseVisualStyleBackColor = true;
  2408. //
  2409. // label80
  2410. //
  2411. this.label80.AutoSize = true;
  2412. this.label80.Font = new System.Drawing.Font("굴림", 10F);
  2413. this.label80.Location = new System.Drawing.Point(707, 37);
  2414. this.label80.Name = "label80";
  2415. this.label80.Size = new System.Drawing.Size(23, 14);
  2416. this.label80.TabIndex = 184;
  2417. this.label80.Text = "L2";
  2418. //
  2419. // label55
  2420. //
  2421. this.label55.AutoSize = true;
  2422. this.label55.Font = new System.Drawing.Font("굴림", 10F);
  2423. this.label55.Location = new System.Drawing.Point(446, 37);
  2424. this.label55.Name = "label55";
  2425. this.label55.Size = new System.Drawing.Size(23, 14);
  2426. this.label55.TabIndex = 183;
  2427. this.label55.Text = "L2";
  2428. //
  2429. // label33
  2430. //
  2431. this.label33.AutoSize = true;
  2432. this.label33.Font = new System.Drawing.Font("굴림", 10F);
  2433. this.label33.Location = new System.Drawing.Point(190, 39);
  2434. this.label33.Name = "label33";
  2435. this.label33.Size = new System.Drawing.Size(23, 14);
  2436. this.label33.TabIndex = 185;
  2437. this.label33.Text = "L2";
  2438. //
  2439. // label79
  2440. //
  2441. this.label79.AutoSize = true;
  2442. this.label79.Font = new System.Drawing.Font("굴림", 10F);
  2443. this.label79.Location = new System.Drawing.Point(640, 37);
  2444. this.label79.Name = "label79";
  2445. this.label79.Size = new System.Drawing.Size(23, 14);
  2446. this.label79.TabIndex = 180;
  2447. this.label79.Text = "L0";
  2448. //
  2449. // label54
  2450. //
  2451. this.label54.AutoSize = true;
  2452. this.label54.Font = new System.Drawing.Font("굴림", 10F);
  2453. this.label54.Location = new System.Drawing.Point(379, 37);
  2454. this.label54.Name = "label54";
  2455. this.label54.Size = new System.Drawing.Size(23, 14);
  2456. this.label54.TabIndex = 181;
  2457. this.label54.Text = "L0";
  2458. //
  2459. // label8
  2460. //
  2461. this.label8.AutoSize = true;
  2462. this.label8.Font = new System.Drawing.Font("굴림", 10F);
  2463. this.label8.Location = new System.Drawing.Point(123, 39);
  2464. this.label8.Name = "label8";
  2465. this.label8.Size = new System.Drawing.Size(23, 14);
  2466. this.label8.TabIndex = 182;
  2467. this.label8.Text = "L0";
  2468. //
  2469. // label78
  2470. //
  2471. this.label78.AutoSize = true;
  2472. this.label78.Font = new System.Drawing.Font("굴림", 10F);
  2473. this.label78.Location = new System.Drawing.Point(739, 37);
  2474. this.label78.Name = "label78";
  2475. this.label78.Size = new System.Drawing.Size(23, 14);
  2476. this.label78.TabIndex = 191;
  2477. this.label78.Text = "L3";
  2478. //
  2479. // label52
  2480. //
  2481. this.label52.AutoSize = true;
  2482. this.label52.Font = new System.Drawing.Font("굴림", 10F);
  2483. this.label52.Location = new System.Drawing.Point(478, 37);
  2484. this.label52.Name = "label52";
  2485. this.label52.Size = new System.Drawing.Size(23, 14);
  2486. this.label52.TabIndex = 190;
  2487. this.label52.Text = "L3";
  2488. //
  2489. // label32
  2490. //
  2491. this.label32.AutoSize = true;
  2492. this.label32.Font = new System.Drawing.Font("굴림", 10F);
  2493. this.label32.Location = new System.Drawing.Point(223, 39);
  2494. this.label32.Name = "label32";
  2495. this.label32.Size = new System.Drawing.Size(23, 14);
  2496. this.label32.TabIndex = 189;
  2497. this.label32.Text = "L3";
  2498. //
  2499. // label77
  2500. //
  2501. this.label77.AutoSize = true;
  2502. this.label77.Font = new System.Drawing.Font("굴림", 10F);
  2503. this.label77.Location = new System.Drawing.Point(673, 37);
  2504. this.label77.Name = "label77";
  2505. this.label77.Size = new System.Drawing.Size(23, 14);
  2506. this.label77.TabIndex = 186;
  2507. this.label77.Text = "L1";
  2508. //
  2509. // label51
  2510. //
  2511. this.label51.AutoSize = true;
  2512. this.label51.Font = new System.Drawing.Font("굴림", 10F);
  2513. this.label51.Location = new System.Drawing.Point(412, 37);
  2514. this.label51.Name = "label51";
  2515. this.label51.Size = new System.Drawing.Size(23, 14);
  2516. this.label51.TabIndex = 187;
  2517. this.label51.Text = "L1";
  2518. //
  2519. // label5
  2520. //
  2521. this.label5.AutoSize = true;
  2522. this.label5.Font = new System.Drawing.Font("굴림", 10F);
  2523. this.label5.Location = new System.Drawing.Point(156, 39);
  2524. this.label5.Name = "label5";
  2525. this.label5.Size = new System.Drawing.Size(23, 14);
  2526. this.label5.TabIndex = 188;
  2527. this.label5.Text = "L1";
  2528. //
  2529. // lbl_COMM56
  2530. //
  2531. this.lbl_COMM56.AutoSize = true;
  2532. this.lbl_COMM56.Font = new System.Drawing.Font("굴림", 10F);
  2533. this.lbl_COMM56.Location = new System.Drawing.Point(542, 461);
  2534. this.lbl_COMM56.Name = "lbl_COMM56";
  2535. this.lbl_COMM56.Size = new System.Drawing.Size(70, 14);
  2536. this.lbl_COMM56.TabIndex = 425;
  2537. this.lbl_COMM56.Text = "중계반 56";
  2538. //
  2539. // lbl_COMM36
  2540. //
  2541. this.lbl_COMM36.AutoSize = true;
  2542. this.lbl_COMM36.Font = new System.Drawing.Font("굴림", 10F);
  2543. this.lbl_COMM36.Location = new System.Drawing.Point(286, 461);
  2544. this.lbl_COMM36.Name = "lbl_COMM36";
  2545. this.lbl_COMM36.Size = new System.Drawing.Size(70, 14);
  2546. this.lbl_COMM36.TabIndex = 423;
  2547. this.lbl_COMM36.Text = "중계반 36";
  2548. //
  2549. // lbl_COMM16
  2550. //
  2551. this.lbl_COMM16.AutoSize = true;
  2552. this.lbl_COMM16.Font = new System.Drawing.Font("굴림", 10F);
  2553. this.lbl_COMM16.Location = new System.Drawing.Point(33, 460);
  2554. this.lbl_COMM16.Name = "lbl_COMM16";
  2555. this.lbl_COMM16.Size = new System.Drawing.Size(70, 14);
  2556. this.lbl_COMM16.TabIndex = 424;
  2557. this.lbl_COMM16.Text = "중계반 16";
  2558. //
  2559. // cb_COMM56_CH4Use
  2560. //
  2561. this.cb_COMM56_CH4Use.AutoSize = true;
  2562. this.cb_COMM56_CH4Use.Font = new System.Drawing.Font("굴림", 10F);
  2563. this.cb_COMM56_CH4Use.Location = new System.Drawing.Point(743, 461);
  2564. this.cb_COMM56_CH4Use.Name = "cb_COMM56_CH4Use";
  2565. this.cb_COMM56_CH4Use.Size = new System.Drawing.Size(15, 14);
  2566. this.cb_COMM56_CH4Use.TabIndex = 419;
  2567. this.cb_COMM56_CH4Use.UseVisualStyleBackColor = true;
  2568. //
  2569. // cb_COMM36_CH4Use
  2570. //
  2571. this.cb_COMM36_CH4Use.AutoSize = true;
  2572. this.cb_COMM36_CH4Use.Font = new System.Drawing.Font("굴림", 10F);
  2573. this.cb_COMM36_CH4Use.Location = new System.Drawing.Point(482, 461);
  2574. this.cb_COMM36_CH4Use.Name = "cb_COMM36_CH4Use";
  2575. this.cb_COMM36_CH4Use.Size = new System.Drawing.Size(15, 14);
  2576. this.cb_COMM36_CH4Use.TabIndex = 418;
  2577. this.cb_COMM36_CH4Use.UseVisualStyleBackColor = true;
  2578. //
  2579. // cb_COMM16_CH4Use
  2580. //
  2581. this.cb_COMM16_CH4Use.AutoSize = true;
  2582. this.cb_COMM16_CH4Use.Font = new System.Drawing.Font("굴림", 10F);
  2583. this.cb_COMM16_CH4Use.Location = new System.Drawing.Point(226, 460);
  2584. this.cb_COMM16_CH4Use.Name = "cb_COMM16_CH4Use";
  2585. this.cb_COMM16_CH4Use.Size = new System.Drawing.Size(15, 14);
  2586. this.cb_COMM16_CH4Use.TabIndex = 417;
  2587. this.cb_COMM16_CH4Use.UseVisualStyleBackColor = true;
  2588. //
  2589. // lbl_COMM51
  2590. //
  2591. this.lbl_COMM51.AutoSize = true;
  2592. this.lbl_COMM51.Font = new System.Drawing.Font("굴림", 10F);
  2593. this.lbl_COMM51.Location = new System.Drawing.Point(542, 331);
  2594. this.lbl_COMM51.Name = "lbl_COMM51";
  2595. this.lbl_COMM51.Size = new System.Drawing.Size(70, 14);
  2596. this.lbl_COMM51.TabIndex = 422;
  2597. this.lbl_COMM51.Text = "중계반 51";
  2598. //
  2599. // lbl_COMM31
  2600. //
  2601. this.lbl_COMM31.AutoSize = true;
  2602. this.lbl_COMM31.Font = new System.Drawing.Font("굴림", 10F);
  2603. this.lbl_COMM31.Location = new System.Drawing.Point(286, 331);
  2604. this.lbl_COMM31.Name = "lbl_COMM31";
  2605. this.lbl_COMM31.Size = new System.Drawing.Size(70, 14);
  2606. this.lbl_COMM31.TabIndex = 421;
  2607. this.lbl_COMM31.Text = "중계반 31";
  2608. //
  2609. // lbl_COMM11
  2610. //
  2611. this.lbl_COMM11.AutoSize = true;
  2612. this.lbl_COMM11.Font = new System.Drawing.Font("굴림", 10F);
  2613. this.lbl_COMM11.Location = new System.Drawing.Point(33, 330);
  2614. this.lbl_COMM11.Name = "lbl_COMM11";
  2615. this.lbl_COMM11.Size = new System.Drawing.Size(70, 14);
  2616. this.lbl_COMM11.TabIndex = 420;
  2617. this.lbl_COMM11.Text = "중계반 11";
  2618. //
  2619. // cb_COMM56_CH2Use
  2620. //
  2621. this.cb_COMM56_CH2Use.AutoSize = true;
  2622. this.cb_COMM56_CH2Use.Font = new System.Drawing.Font("굴림", 10F);
  2623. this.cb_COMM56_CH2Use.Location = new System.Drawing.Point(676, 461);
  2624. this.cb_COMM56_CH2Use.Name = "cb_COMM56_CH2Use";
  2625. this.cb_COMM56_CH2Use.Size = new System.Drawing.Size(15, 14);
  2626. this.cb_COMM56_CH2Use.TabIndex = 409;
  2627. this.cb_COMM56_CH2Use.UseVisualStyleBackColor = true;
  2628. //
  2629. // cb_COMM36_CH2Use
  2630. //
  2631. this.cb_COMM36_CH2Use.AutoSize = true;
  2632. this.cb_COMM36_CH2Use.Font = new System.Drawing.Font("굴림", 10F);
  2633. this.cb_COMM36_CH2Use.Location = new System.Drawing.Point(415, 461);
  2634. this.cb_COMM36_CH2Use.Name = "cb_COMM36_CH2Use";
  2635. this.cb_COMM36_CH2Use.Size = new System.Drawing.Size(15, 14);
  2636. this.cb_COMM36_CH2Use.TabIndex = 410;
  2637. this.cb_COMM36_CH2Use.UseVisualStyleBackColor = true;
  2638. //
  2639. // cb_COMM16_CH2Use
  2640. //
  2641. this.cb_COMM16_CH2Use.AutoSize = true;
  2642. this.cb_COMM16_CH2Use.Font = new System.Drawing.Font("굴림", 10F);
  2643. this.cb_COMM16_CH2Use.Location = new System.Drawing.Point(159, 460);
  2644. this.cb_COMM16_CH2Use.Name = "cb_COMM16_CH2Use";
  2645. this.cb_COMM16_CH2Use.Size = new System.Drawing.Size(15, 14);
  2646. this.cb_COMM16_CH2Use.TabIndex = 408;
  2647. this.cb_COMM16_CH2Use.UseVisualStyleBackColor = true;
  2648. //
  2649. // cb_COMM51_CH4Use
  2650. //
  2651. this.cb_COMM51_CH4Use.AutoSize = true;
  2652. this.cb_COMM51_CH4Use.Font = new System.Drawing.Font("굴림", 10F);
  2653. this.cb_COMM51_CH4Use.Location = new System.Drawing.Point(743, 331);
  2654. this.cb_COMM51_CH4Use.Name = "cb_COMM51_CH4Use";
  2655. this.cb_COMM51_CH4Use.Size = new System.Drawing.Size(15, 14);
  2656. this.cb_COMM51_CH4Use.TabIndex = 412;
  2657. this.cb_COMM51_CH4Use.UseVisualStyleBackColor = true;
  2658. //
  2659. // cb_COMM31_CH4Use
  2660. //
  2661. this.cb_COMM31_CH4Use.AutoSize = true;
  2662. this.cb_COMM31_CH4Use.Font = new System.Drawing.Font("굴림", 10F);
  2663. this.cb_COMM31_CH4Use.Location = new System.Drawing.Point(482, 331);
  2664. this.cb_COMM31_CH4Use.Name = "cb_COMM31_CH4Use";
  2665. this.cb_COMM31_CH4Use.Size = new System.Drawing.Size(15, 14);
  2666. this.cb_COMM31_CH4Use.TabIndex = 411;
  2667. this.cb_COMM31_CH4Use.UseVisualStyleBackColor = true;
  2668. //
  2669. // cb_COMM11_CH4Use
  2670. //
  2671. this.cb_COMM11_CH4Use.AutoSize = true;
  2672. this.cb_COMM11_CH4Use.Font = new System.Drawing.Font("굴림", 10F);
  2673. this.cb_COMM11_CH4Use.Location = new System.Drawing.Point(226, 330);
  2674. this.cb_COMM11_CH4Use.Name = "cb_COMM11_CH4Use";
  2675. this.cb_COMM11_CH4Use.Size = new System.Drawing.Size(15, 14);
  2676. this.cb_COMM11_CH4Use.TabIndex = 413;
  2677. this.cb_COMM11_CH4Use.UseVisualStyleBackColor = true;
  2678. //
  2679. // cb_COMM56_CH3Use
  2680. //
  2681. this.cb_COMM56_CH3Use.AutoSize = true;
  2682. this.cb_COMM56_CH3Use.Font = new System.Drawing.Font("굴림", 10F);
  2683. this.cb_COMM56_CH3Use.Location = new System.Drawing.Point(710, 461);
  2684. this.cb_COMM56_CH3Use.Name = "cb_COMM56_CH3Use";
  2685. this.cb_COMM56_CH3Use.Size = new System.Drawing.Size(15, 14);
  2686. this.cb_COMM56_CH3Use.TabIndex = 404;
  2687. this.cb_COMM56_CH3Use.UseVisualStyleBackColor = true;
  2688. //
  2689. // cb_COMM36_CH3Use
  2690. //
  2691. this.cb_COMM36_CH3Use.AutoSize = true;
  2692. this.cb_COMM36_CH3Use.Font = new System.Drawing.Font("굴림", 10F);
  2693. this.cb_COMM36_CH3Use.Location = new System.Drawing.Point(449, 461);
  2694. this.cb_COMM36_CH3Use.Name = "cb_COMM36_CH3Use";
  2695. this.cb_COMM36_CH3Use.Size = new System.Drawing.Size(15, 14);
  2696. this.cb_COMM36_CH3Use.TabIndex = 403;
  2697. this.cb_COMM36_CH3Use.UseVisualStyleBackColor = true;
  2698. //
  2699. // cb_COMM16_CH3Use
  2700. //
  2701. this.cb_COMM16_CH3Use.AutoSize = true;
  2702. this.cb_COMM16_CH3Use.Font = new System.Drawing.Font("굴림", 10F);
  2703. this.cb_COMM16_CH3Use.Location = new System.Drawing.Point(193, 460);
  2704. this.cb_COMM16_CH3Use.Name = "cb_COMM16_CH3Use";
  2705. this.cb_COMM16_CH3Use.Size = new System.Drawing.Size(15, 14);
  2706. this.cb_COMM16_CH3Use.TabIndex = 402;
  2707. this.cb_COMM16_CH3Use.UseVisualStyleBackColor = true;
  2708. //
  2709. // cb_COMM51_CH2Use
  2710. //
  2711. this.cb_COMM51_CH2Use.AutoSize = true;
  2712. this.cb_COMM51_CH2Use.Font = new System.Drawing.Font("굴림", 10F);
  2713. this.cb_COMM51_CH2Use.Location = new System.Drawing.Point(676, 331);
  2714. this.cb_COMM51_CH2Use.Name = "cb_COMM51_CH2Use";
  2715. this.cb_COMM51_CH2Use.Size = new System.Drawing.Size(15, 14);
  2716. this.cb_COMM51_CH2Use.TabIndex = 416;
  2717. this.cb_COMM51_CH2Use.UseVisualStyleBackColor = true;
  2718. //
  2719. // cb_COMM31_CH2Use
  2720. //
  2721. this.cb_COMM31_CH2Use.AutoSize = true;
  2722. this.cb_COMM31_CH2Use.Font = new System.Drawing.Font("굴림", 10F);
  2723. this.cb_COMM31_CH2Use.Location = new System.Drawing.Point(415, 331);
  2724. this.cb_COMM31_CH2Use.Name = "cb_COMM31_CH2Use";
  2725. this.cb_COMM31_CH2Use.Size = new System.Drawing.Size(15, 14);
  2726. this.cb_COMM31_CH2Use.TabIndex = 414;
  2727. this.cb_COMM31_CH2Use.UseVisualStyleBackColor = true;
  2728. //
  2729. // cb_COMM11_CH2Use
  2730. //
  2731. this.cb_COMM11_CH2Use.AutoSize = true;
  2732. this.cb_COMM11_CH2Use.Font = new System.Drawing.Font("굴림", 10F);
  2733. this.cb_COMM11_CH2Use.Location = new System.Drawing.Point(159, 330);
  2734. this.cb_COMM11_CH2Use.Name = "cb_COMM11_CH2Use";
  2735. this.cb_COMM11_CH2Use.Size = new System.Drawing.Size(15, 14);
  2736. this.cb_COMM11_CH2Use.TabIndex = 415;
  2737. this.cb_COMM11_CH2Use.UseVisualStyleBackColor = true;
  2738. //
  2739. // cb_COMM56_CH1Use
  2740. //
  2741. this.cb_COMM56_CH1Use.AutoSize = true;
  2742. this.cb_COMM56_CH1Use.Font = new System.Drawing.Font("굴림", 10F);
  2743. this.cb_COMM56_CH1Use.Location = new System.Drawing.Point(643, 461);
  2744. this.cb_COMM56_CH1Use.Name = "cb_COMM56_CH1Use";
  2745. this.cb_COMM56_CH1Use.Size = new System.Drawing.Size(15, 14);
  2746. this.cb_COMM56_CH1Use.TabIndex = 399;
  2747. this.cb_COMM56_CH1Use.UseVisualStyleBackColor = true;
  2748. //
  2749. // cb_COMM36_CH1Use
  2750. //
  2751. this.cb_COMM36_CH1Use.AutoSize = true;
  2752. this.cb_COMM36_CH1Use.Font = new System.Drawing.Font("굴림", 10F);
  2753. this.cb_COMM36_CH1Use.Location = new System.Drawing.Point(382, 461);
  2754. this.cb_COMM36_CH1Use.Name = "cb_COMM36_CH1Use";
  2755. this.cb_COMM36_CH1Use.Size = new System.Drawing.Size(15, 14);
  2756. this.cb_COMM36_CH1Use.TabIndex = 401;
  2757. this.cb_COMM36_CH1Use.UseVisualStyleBackColor = true;
  2758. //
  2759. // cb_COMM16_CH1Use
  2760. //
  2761. this.cb_COMM16_CH1Use.AutoSize = true;
  2762. this.cb_COMM16_CH1Use.Font = new System.Drawing.Font("굴림", 10F);
  2763. this.cb_COMM16_CH1Use.Location = new System.Drawing.Point(126, 460);
  2764. this.cb_COMM16_CH1Use.Name = "cb_COMM16_CH1Use";
  2765. this.cb_COMM16_CH1Use.Size = new System.Drawing.Size(15, 14);
  2766. this.cb_COMM16_CH1Use.TabIndex = 400;
  2767. this.cb_COMM16_CH1Use.UseVisualStyleBackColor = true;
  2768. //
  2769. // cb_COMM51_CH3Use
  2770. //
  2771. this.cb_COMM51_CH3Use.AutoSize = true;
  2772. this.cb_COMM51_CH3Use.Font = new System.Drawing.Font("굴림", 10F);
  2773. this.cb_COMM51_CH3Use.Location = new System.Drawing.Point(710, 331);
  2774. this.cb_COMM51_CH3Use.Name = "cb_COMM51_CH3Use";
  2775. this.cb_COMM51_CH3Use.Size = new System.Drawing.Size(15, 14);
  2776. this.cb_COMM51_CH3Use.TabIndex = 407;
  2777. this.cb_COMM51_CH3Use.UseVisualStyleBackColor = true;
  2778. //
  2779. // cb_COMM31_CH3Use
  2780. //
  2781. this.cb_COMM31_CH3Use.AutoSize = true;
  2782. this.cb_COMM31_CH3Use.Font = new System.Drawing.Font("굴림", 10F);
  2783. this.cb_COMM31_CH3Use.Location = new System.Drawing.Point(449, 331);
  2784. this.cb_COMM31_CH3Use.Name = "cb_COMM31_CH3Use";
  2785. this.cb_COMM31_CH3Use.Size = new System.Drawing.Size(15, 14);
  2786. this.cb_COMM31_CH3Use.TabIndex = 405;
  2787. this.cb_COMM31_CH3Use.UseVisualStyleBackColor = true;
  2788. //
  2789. // cb_COMM11_CH3Use
  2790. //
  2791. this.cb_COMM11_CH3Use.AutoSize = true;
  2792. this.cb_COMM11_CH3Use.Font = new System.Drawing.Font("굴림", 10F);
  2793. this.cb_COMM11_CH3Use.Location = new System.Drawing.Point(193, 330);
  2794. this.cb_COMM11_CH3Use.Name = "cb_COMM11_CH3Use";
  2795. this.cb_COMM11_CH3Use.Size = new System.Drawing.Size(15, 14);
  2796. this.cb_COMM11_CH3Use.TabIndex = 406;
  2797. this.cb_COMM11_CH3Use.UseVisualStyleBackColor = true;
  2798. //
  2799. // cb_COMM51_CH1Use
  2800. //
  2801. this.cb_COMM51_CH1Use.AutoSize = true;
  2802. this.cb_COMM51_CH1Use.Font = new System.Drawing.Font("굴림", 10F);
  2803. this.cb_COMM51_CH1Use.Location = new System.Drawing.Point(643, 331);
  2804. this.cb_COMM51_CH1Use.Name = "cb_COMM51_CH1Use";
  2805. this.cb_COMM51_CH1Use.Size = new System.Drawing.Size(15, 14);
  2806. this.cb_COMM51_CH1Use.TabIndex = 397;
  2807. this.cb_COMM51_CH1Use.UseVisualStyleBackColor = true;
  2808. //
  2809. // cb_COMM31_CH1Use
  2810. //
  2811. this.cb_COMM31_CH1Use.AutoSize = true;
  2812. this.cb_COMM31_CH1Use.Font = new System.Drawing.Font("굴림", 10F);
  2813. this.cb_COMM31_CH1Use.Location = new System.Drawing.Point(382, 331);
  2814. this.cb_COMM31_CH1Use.Name = "cb_COMM31_CH1Use";
  2815. this.cb_COMM31_CH1Use.Size = new System.Drawing.Size(15, 14);
  2816. this.cb_COMM31_CH1Use.TabIndex = 396;
  2817. this.cb_COMM31_CH1Use.UseVisualStyleBackColor = true;
  2818. //
  2819. // cb_COMM11_CH1Use
  2820. //
  2821. this.cb_COMM11_CH1Use.AutoSize = true;
  2822. this.cb_COMM11_CH1Use.Font = new System.Drawing.Font("굴림", 10F);
  2823. this.cb_COMM11_CH1Use.Location = new System.Drawing.Point(126, 330);
  2824. this.cb_COMM11_CH1Use.Name = "cb_COMM11_CH1Use";
  2825. this.cb_COMM11_CH1Use.Size = new System.Drawing.Size(15, 14);
  2826. this.cb_COMM11_CH1Use.TabIndex = 398;
  2827. this.cb_COMM11_CH1Use.UseVisualStyleBackColor = true;
  2828. //
  2829. // lbl_COMM50
  2830. //
  2831. this.lbl_COMM50.AutoSize = true;
  2832. this.lbl_COMM50.Font = new System.Drawing.Font("굴림", 10F);
  2833. this.lbl_COMM50.Location = new System.Drawing.Point(542, 305);
  2834. this.lbl_COMM50.Name = "lbl_COMM50";
  2835. this.lbl_COMM50.Size = new System.Drawing.Size(70, 14);
  2836. this.lbl_COMM50.TabIndex = 389;
  2837. this.lbl_COMM50.Text = "중계반 50";
  2838. //
  2839. // lbl_COMM30
  2840. //
  2841. this.lbl_COMM30.AutoSize = true;
  2842. this.lbl_COMM30.Font = new System.Drawing.Font("굴림", 10F);
  2843. this.lbl_COMM30.Location = new System.Drawing.Point(286, 305);
  2844. this.lbl_COMM30.Name = "lbl_COMM30";
  2845. this.lbl_COMM30.Size = new System.Drawing.Size(70, 14);
  2846. this.lbl_COMM30.TabIndex = 387;
  2847. this.lbl_COMM30.Text = "중계반 30";
  2848. //
  2849. // lbl_COMM10
  2850. //
  2851. this.lbl_COMM10.AutoSize = true;
  2852. this.lbl_COMM10.Font = new System.Drawing.Font("굴림", 10F);
  2853. this.lbl_COMM10.Location = new System.Drawing.Point(33, 304);
  2854. this.lbl_COMM10.Name = "lbl_COMM10";
  2855. this.lbl_COMM10.Size = new System.Drawing.Size(70, 14);
  2856. this.lbl_COMM10.TabIndex = 388;
  2857. this.lbl_COMM10.Text = "중계반 10";
  2858. //
  2859. // cb_COMM50_CH4Use
  2860. //
  2861. this.cb_COMM50_CH4Use.AutoSize = true;
  2862. this.cb_COMM50_CH4Use.Font = new System.Drawing.Font("굴림", 10F);
  2863. this.cb_COMM50_CH4Use.Location = new System.Drawing.Point(743, 305);
  2864. this.cb_COMM50_CH4Use.Name = "cb_COMM50_CH4Use";
  2865. this.cb_COMM50_CH4Use.Size = new System.Drawing.Size(15, 14);
  2866. this.cb_COMM50_CH4Use.TabIndex = 384;
  2867. this.cb_COMM50_CH4Use.UseVisualStyleBackColor = true;
  2868. //
  2869. // cb_COMM30_CH4Use
  2870. //
  2871. this.cb_COMM30_CH4Use.AutoSize = true;
  2872. this.cb_COMM30_CH4Use.Font = new System.Drawing.Font("굴림", 10F);
  2873. this.cb_COMM30_CH4Use.Location = new System.Drawing.Point(482, 305);
  2874. this.cb_COMM30_CH4Use.Name = "cb_COMM30_CH4Use";
  2875. this.cb_COMM30_CH4Use.Size = new System.Drawing.Size(15, 14);
  2876. this.cb_COMM30_CH4Use.TabIndex = 386;
  2877. this.cb_COMM30_CH4Use.UseVisualStyleBackColor = true;
  2878. //
  2879. // cb_COMM10_CH4Use
  2880. //
  2881. this.cb_COMM10_CH4Use.AutoSize = true;
  2882. this.cb_COMM10_CH4Use.Font = new System.Drawing.Font("굴림", 10F);
  2883. this.cb_COMM10_CH4Use.Location = new System.Drawing.Point(226, 304);
  2884. this.cb_COMM10_CH4Use.Name = "cb_COMM10_CH4Use";
  2885. this.cb_COMM10_CH4Use.Size = new System.Drawing.Size(15, 14);
  2886. this.cb_COMM10_CH4Use.TabIndex = 385;
  2887. this.cb_COMM10_CH4Use.UseVisualStyleBackColor = true;
  2888. //
  2889. // cb_COMM50_CH2Use
  2890. //
  2891. this.cb_COMM50_CH2Use.AutoSize = true;
  2892. this.cb_COMM50_CH2Use.Font = new System.Drawing.Font("굴림", 10F);
  2893. this.cb_COMM50_CH2Use.Location = new System.Drawing.Point(676, 305);
  2894. this.cb_COMM50_CH2Use.Name = "cb_COMM50_CH2Use";
  2895. this.cb_COMM50_CH2Use.Size = new System.Drawing.Size(15, 14);
  2896. this.cb_COMM50_CH2Use.TabIndex = 383;
  2897. this.cb_COMM50_CH2Use.UseVisualStyleBackColor = true;
  2898. //
  2899. // cb_COMM30_CH2Use
  2900. //
  2901. this.cb_COMM30_CH2Use.AutoSize = true;
  2902. this.cb_COMM30_CH2Use.Font = new System.Drawing.Font("굴림", 10F);
  2903. this.cb_COMM30_CH2Use.Location = new System.Drawing.Point(415, 305);
  2904. this.cb_COMM30_CH2Use.Name = "cb_COMM30_CH2Use";
  2905. this.cb_COMM30_CH2Use.Size = new System.Drawing.Size(15, 14);
  2906. this.cb_COMM30_CH2Use.TabIndex = 382;
  2907. this.cb_COMM30_CH2Use.UseVisualStyleBackColor = true;
  2908. //
  2909. // cb_COMM10_CH2Use
  2910. //
  2911. this.cb_COMM10_CH2Use.AutoSize = true;
  2912. this.cb_COMM10_CH2Use.Font = new System.Drawing.Font("굴림", 10F);
  2913. this.cb_COMM10_CH2Use.Location = new System.Drawing.Point(159, 304);
  2914. this.cb_COMM10_CH2Use.Name = "cb_COMM10_CH2Use";
  2915. this.cb_COMM10_CH2Use.Size = new System.Drawing.Size(15, 14);
  2916. this.cb_COMM10_CH2Use.TabIndex = 381;
  2917. this.cb_COMM10_CH2Use.UseVisualStyleBackColor = true;
  2918. //
  2919. // cb_COMM50_CH3Use
  2920. //
  2921. this.cb_COMM50_CH3Use.AutoSize = true;
  2922. this.cb_COMM50_CH3Use.Font = new System.Drawing.Font("굴림", 10F);
  2923. this.cb_COMM50_CH3Use.Location = new System.Drawing.Point(710, 305);
  2924. this.cb_COMM50_CH3Use.Name = "cb_COMM50_CH3Use";
  2925. this.cb_COMM50_CH3Use.Size = new System.Drawing.Size(15, 14);
  2926. this.cb_COMM50_CH3Use.TabIndex = 377;
  2927. this.cb_COMM50_CH3Use.UseVisualStyleBackColor = true;
  2928. //
  2929. // cb_COMM30_CH3Use
  2930. //
  2931. this.cb_COMM30_CH3Use.AutoSize = true;
  2932. this.cb_COMM30_CH3Use.Font = new System.Drawing.Font("굴림", 10F);
  2933. this.cb_COMM30_CH3Use.Location = new System.Drawing.Point(449, 305);
  2934. this.cb_COMM30_CH3Use.Name = "cb_COMM30_CH3Use";
  2935. this.cb_COMM30_CH3Use.Size = new System.Drawing.Size(15, 14);
  2936. this.cb_COMM30_CH3Use.TabIndex = 376;
  2937. this.cb_COMM30_CH3Use.UseVisualStyleBackColor = true;
  2938. //
  2939. // cb_COMM10_CH3Use
  2940. //
  2941. this.cb_COMM10_CH3Use.AutoSize = true;
  2942. this.cb_COMM10_CH3Use.Font = new System.Drawing.Font("굴림", 10F);
  2943. this.cb_COMM10_CH3Use.Location = new System.Drawing.Point(193, 304);
  2944. this.cb_COMM10_CH3Use.Name = "cb_COMM10_CH3Use";
  2945. this.cb_COMM10_CH3Use.Size = new System.Drawing.Size(15, 14);
  2946. this.cb_COMM10_CH3Use.TabIndex = 375;
  2947. this.cb_COMM10_CH3Use.UseVisualStyleBackColor = true;
  2948. //
  2949. // cb_COMM50_CH1Use
  2950. //
  2951. this.cb_COMM50_CH1Use.AutoSize = true;
  2952. this.cb_COMM50_CH1Use.Font = new System.Drawing.Font("굴림", 10F);
  2953. this.cb_COMM50_CH1Use.Location = new System.Drawing.Point(643, 305);
  2954. this.cb_COMM50_CH1Use.Name = "cb_COMM50_CH1Use";
  2955. this.cb_COMM50_CH1Use.Size = new System.Drawing.Size(15, 14);
  2956. this.cb_COMM50_CH1Use.TabIndex = 380;
  2957. this.cb_COMM50_CH1Use.UseVisualStyleBackColor = true;
  2958. //
  2959. // cb_COMM30_CH1Use
  2960. //
  2961. this.cb_COMM30_CH1Use.AutoSize = true;
  2962. this.cb_COMM30_CH1Use.Font = new System.Drawing.Font("굴림", 10F);
  2963. this.cb_COMM30_CH1Use.Location = new System.Drawing.Point(382, 305);
  2964. this.cb_COMM30_CH1Use.Name = "cb_COMM30_CH1Use";
  2965. this.cb_COMM30_CH1Use.Size = new System.Drawing.Size(15, 14);
  2966. this.cb_COMM30_CH1Use.TabIndex = 378;
  2967. this.cb_COMM30_CH1Use.UseVisualStyleBackColor = true;
  2968. //
  2969. // cb_COMM10_CH1Use
  2970. //
  2971. this.cb_COMM10_CH1Use.AutoSize = true;
  2972. this.cb_COMM10_CH1Use.Font = new System.Drawing.Font("굴림", 10F);
  2973. this.cb_COMM10_CH1Use.Location = new System.Drawing.Point(126, 304);
  2974. this.cb_COMM10_CH1Use.Name = "cb_COMM10_CH1Use";
  2975. this.cb_COMM10_CH1Use.Size = new System.Drawing.Size(15, 14);
  2976. this.cb_COMM10_CH1Use.TabIndex = 379;
  2977. this.cb_COMM10_CH1Use.UseVisualStyleBackColor = true;
  2978. //
  2979. // lbl_COMM64
  2980. //
  2981. this.lbl_COMM64.AutoSize = true;
  2982. this.lbl_COMM64.Font = new System.Drawing.Font("굴림", 10F);
  2983. this.lbl_COMM64.Location = new System.Drawing.Point(808, 149);
  2984. this.lbl_COMM64.Name = "lbl_COMM64";
  2985. this.lbl_COMM64.Size = new System.Drawing.Size(70, 14);
  2986. this.lbl_COMM64.TabIndex = 366;
  2987. this.lbl_COMM64.Text = "중계반 64";
  2988. //
  2989. // lbl_COMM44
  2990. //
  2991. this.lbl_COMM44.AutoSize = true;
  2992. this.lbl_COMM44.Font = new System.Drawing.Font("굴림", 10F);
  2993. this.lbl_COMM44.Location = new System.Drawing.Point(542, 149);
  2994. this.lbl_COMM44.Name = "lbl_COMM44";
  2995. this.lbl_COMM44.Size = new System.Drawing.Size(70, 14);
  2996. this.lbl_COMM44.TabIndex = 365;
  2997. this.lbl_COMM44.Text = "중계반 44";
  2998. //
  2999. // lbl_COMM24
  3000. //
  3001. this.lbl_COMM24.AutoSize = true;
  3002. this.lbl_COMM24.Font = new System.Drawing.Font("굴림", 10F);
  3003. this.lbl_COMM24.Location = new System.Drawing.Point(286, 149);
  3004. this.lbl_COMM24.Name = "lbl_COMM24";
  3005. this.lbl_COMM24.Size = new System.Drawing.Size(70, 14);
  3006. this.lbl_COMM24.TabIndex = 368;
  3007. this.lbl_COMM24.Text = "중계반 24";
  3008. //
  3009. // lbl_COMM49
  3010. //
  3011. this.lbl_COMM49.AutoSize = true;
  3012. this.lbl_COMM49.Font = new System.Drawing.Font("굴림", 10F);
  3013. this.lbl_COMM49.Location = new System.Drawing.Point(542, 279);
  3014. this.lbl_COMM49.Name = "lbl_COMM49";
  3015. this.lbl_COMM49.Size = new System.Drawing.Size(70, 14);
  3016. this.lbl_COMM49.TabIndex = 371;
  3017. this.lbl_COMM49.Text = "중계반 49";
  3018. //
  3019. // lbl_COMM29
  3020. //
  3021. this.lbl_COMM29.AutoSize = true;
  3022. this.lbl_COMM29.Font = new System.Drawing.Font("굴림", 10F);
  3023. this.lbl_COMM29.Location = new System.Drawing.Point(286, 279);
  3024. this.lbl_COMM29.Name = "lbl_COMM29";
  3025. this.lbl_COMM29.Size = new System.Drawing.Size(70, 14);
  3026. this.lbl_COMM29.TabIndex = 370;
  3027. this.lbl_COMM29.Text = "중계반 29";
  3028. //
  3029. // lbl_COMM9
  3030. //
  3031. this.lbl_COMM9.AutoSize = true;
  3032. this.lbl_COMM9.Font = new System.Drawing.Font("굴림", 10F);
  3033. this.lbl_COMM9.Location = new System.Drawing.Point(33, 278);
  3034. this.lbl_COMM9.Name = "lbl_COMM9";
  3035. this.lbl_COMM9.Size = new System.Drawing.Size(70, 14);
  3036. this.lbl_COMM9.TabIndex = 369;
  3037. this.lbl_COMM9.Text = "중계반 09";
  3038. //
  3039. // cb_COMM64_CH4Use
  3040. //
  3041. this.cb_COMM64_CH4Use.AutoSize = true;
  3042. this.cb_COMM64_CH4Use.Font = new System.Drawing.Font("굴림", 10F);
  3043. this.cb_COMM64_CH4Use.Location = new System.Drawing.Point(1009, 149);
  3044. this.cb_COMM64_CH4Use.Name = "cb_COMM64_CH4Use";
  3045. this.cb_COMM64_CH4Use.Size = new System.Drawing.Size(15, 14);
  3046. this.cb_COMM64_CH4Use.TabIndex = 355;
  3047. this.cb_COMM64_CH4Use.UseVisualStyleBackColor = true;
  3048. //
  3049. // cb_COMM44_CH4Use
  3050. //
  3051. this.cb_COMM44_CH4Use.AutoSize = true;
  3052. this.cb_COMM44_CH4Use.Font = new System.Drawing.Font("굴림", 10F);
  3053. this.cb_COMM44_CH4Use.Location = new System.Drawing.Point(743, 149);
  3054. this.cb_COMM44_CH4Use.Name = "cb_COMM44_CH4Use";
  3055. this.cb_COMM44_CH4Use.Size = new System.Drawing.Size(15, 14);
  3056. this.cb_COMM44_CH4Use.TabIndex = 357;
  3057. this.cb_COMM44_CH4Use.UseVisualStyleBackColor = true;
  3058. //
  3059. // cb_COMM24_CH4Use
  3060. //
  3061. this.cb_COMM24_CH4Use.AutoSize = true;
  3062. this.cb_COMM24_CH4Use.Font = new System.Drawing.Font("굴림", 10F);
  3063. this.cb_COMM24_CH4Use.Location = new System.Drawing.Point(482, 148);
  3064. this.cb_COMM24_CH4Use.Name = "cb_COMM24_CH4Use";
  3065. this.cb_COMM24_CH4Use.Size = new System.Drawing.Size(15, 14);
  3066. this.cb_COMM24_CH4Use.TabIndex = 354;
  3067. this.cb_COMM24_CH4Use.UseVisualStyleBackColor = true;
  3068. //
  3069. // cb_COMM49_CH4Use
  3070. //
  3071. this.cb_COMM49_CH4Use.AutoSize = true;
  3072. this.cb_COMM49_CH4Use.Font = new System.Drawing.Font("굴림", 10F);
  3073. this.cb_COMM49_CH4Use.Location = new System.Drawing.Point(743, 279);
  3074. this.cb_COMM49_CH4Use.Name = "cb_COMM49_CH4Use";
  3075. this.cb_COMM49_CH4Use.Size = new System.Drawing.Size(15, 14);
  3076. this.cb_COMM49_CH4Use.TabIndex = 351;
  3077. this.cb_COMM49_CH4Use.UseVisualStyleBackColor = true;
  3078. //
  3079. // cb_COMM29_CH4Use
  3080. //
  3081. this.cb_COMM29_CH4Use.AutoSize = true;
  3082. this.cb_COMM29_CH4Use.Font = new System.Drawing.Font("굴림", 10F);
  3083. this.cb_COMM29_CH4Use.Location = new System.Drawing.Point(482, 279);
  3084. this.cb_COMM29_CH4Use.Name = "cb_COMM29_CH4Use";
  3085. this.cb_COMM29_CH4Use.Size = new System.Drawing.Size(15, 14);
  3086. this.cb_COMM29_CH4Use.TabIndex = 352;
  3087. this.cb_COMM29_CH4Use.UseVisualStyleBackColor = true;
  3088. //
  3089. // cb_COMM9_CH4Use
  3090. //
  3091. this.cb_COMM9_CH4Use.AutoSize = true;
  3092. this.cb_COMM9_CH4Use.Font = new System.Drawing.Font("굴림", 10F);
  3093. this.cb_COMM9_CH4Use.Location = new System.Drawing.Point(226, 278);
  3094. this.cb_COMM9_CH4Use.Name = "cb_COMM9_CH4Use";
  3095. this.cb_COMM9_CH4Use.Size = new System.Drawing.Size(15, 14);
  3096. this.cb_COMM9_CH4Use.TabIndex = 353;
  3097. this.cb_COMM9_CH4Use.UseVisualStyleBackColor = true;
  3098. //
  3099. // cb_COMM64_CH2Use
  3100. //
  3101. this.cb_COMM64_CH2Use.AutoSize = true;
  3102. this.cb_COMM64_CH2Use.Font = new System.Drawing.Font("굴림", 10F);
  3103. this.cb_COMM64_CH2Use.Location = new System.Drawing.Point(942, 149);
  3104. this.cb_COMM64_CH2Use.Name = "cb_COMM64_CH2Use";
  3105. this.cb_COMM64_CH2Use.Size = new System.Drawing.Size(15, 14);
  3106. this.cb_COMM64_CH2Use.TabIndex = 363;
  3107. this.cb_COMM64_CH2Use.UseVisualStyleBackColor = true;
  3108. //
  3109. // cb_COMM44_CH2Use
  3110. //
  3111. this.cb_COMM44_CH2Use.AutoSize = true;
  3112. this.cb_COMM44_CH2Use.Font = new System.Drawing.Font("굴림", 10F);
  3113. this.cb_COMM44_CH2Use.Location = new System.Drawing.Point(676, 149);
  3114. this.cb_COMM44_CH2Use.Name = "cb_COMM44_CH2Use";
  3115. this.cb_COMM44_CH2Use.Size = new System.Drawing.Size(15, 14);
  3116. this.cb_COMM44_CH2Use.TabIndex = 364;
  3117. this.cb_COMM44_CH2Use.UseVisualStyleBackColor = true;
  3118. //
  3119. // cb_COMM24_CH2Use
  3120. //
  3121. this.cb_COMM24_CH2Use.AutoSize = true;
  3122. this.cb_COMM24_CH2Use.Font = new System.Drawing.Font("굴림", 10F);
  3123. this.cb_COMM24_CH2Use.Location = new System.Drawing.Point(415, 148);
  3124. this.cb_COMM24_CH2Use.Name = "cb_COMM24_CH2Use";
  3125. this.cb_COMM24_CH2Use.Size = new System.Drawing.Size(15, 14);
  3126. this.cb_COMM24_CH2Use.TabIndex = 361;
  3127. this.cb_COMM24_CH2Use.UseVisualStyleBackColor = true;
  3128. //
  3129. // cb_COMM49_CH2Use
  3130. //
  3131. this.cb_COMM49_CH2Use.AutoSize = true;
  3132. this.cb_COMM49_CH2Use.Font = new System.Drawing.Font("굴림", 10F);
  3133. this.cb_COMM49_CH2Use.Location = new System.Drawing.Point(676, 279);
  3134. this.cb_COMM49_CH2Use.Name = "cb_COMM49_CH2Use";
  3135. this.cb_COMM49_CH2Use.Size = new System.Drawing.Size(15, 14);
  3136. this.cb_COMM49_CH2Use.TabIndex = 358;
  3137. this.cb_COMM49_CH2Use.UseVisualStyleBackColor = true;
  3138. //
  3139. // cb_COMM29_CH2Use
  3140. //
  3141. this.cb_COMM29_CH2Use.AutoSize = true;
  3142. this.cb_COMM29_CH2Use.Font = new System.Drawing.Font("굴림", 10F);
  3143. this.cb_COMM29_CH2Use.Location = new System.Drawing.Point(415, 279);
  3144. this.cb_COMM29_CH2Use.Name = "cb_COMM29_CH2Use";
  3145. this.cb_COMM29_CH2Use.Size = new System.Drawing.Size(15, 14);
  3146. this.cb_COMM29_CH2Use.TabIndex = 359;
  3147. this.cb_COMM29_CH2Use.UseVisualStyleBackColor = true;
  3148. //
  3149. // cb_COMM9_CH2Use
  3150. //
  3151. this.cb_COMM9_CH2Use.AutoSize = true;
  3152. this.cb_COMM9_CH2Use.Font = new System.Drawing.Font("굴림", 10F);
  3153. this.cb_COMM9_CH2Use.Location = new System.Drawing.Point(159, 278);
  3154. this.cb_COMM9_CH2Use.Name = "cb_COMM9_CH2Use";
  3155. this.cb_COMM9_CH2Use.Size = new System.Drawing.Size(15, 14);
  3156. this.cb_COMM9_CH2Use.TabIndex = 360;
  3157. this.cb_COMM9_CH2Use.UseVisualStyleBackColor = true;
  3158. //
  3159. // cb_COMM64_CH3Use
  3160. //
  3161. this.cb_COMM64_CH3Use.AutoSize = true;
  3162. this.cb_COMM64_CH3Use.Font = new System.Drawing.Font("굴림", 10F);
  3163. this.cb_COMM64_CH3Use.Location = new System.Drawing.Point(976, 149);
  3164. this.cb_COMM64_CH3Use.Name = "cb_COMM64_CH3Use";
  3165. this.cb_COMM64_CH3Use.Size = new System.Drawing.Size(15, 14);
  3166. this.cb_COMM64_CH3Use.TabIndex = 342;
  3167. this.cb_COMM64_CH3Use.UseVisualStyleBackColor = true;
  3168. //
  3169. // cb_COMM44_CH3Use
  3170. //
  3171. this.cb_COMM44_CH3Use.AutoSize = true;
  3172. this.cb_COMM44_CH3Use.Font = new System.Drawing.Font("굴림", 10F);
  3173. this.cb_COMM44_CH3Use.Location = new System.Drawing.Point(710, 149);
  3174. this.cb_COMM44_CH3Use.Name = "cb_COMM44_CH3Use";
  3175. this.cb_COMM44_CH3Use.Size = new System.Drawing.Size(15, 14);
  3176. this.cb_COMM44_CH3Use.TabIndex = 343;
  3177. this.cb_COMM44_CH3Use.UseVisualStyleBackColor = true;
  3178. //
  3179. // cb_COMM24_CH3Use
  3180. //
  3181. this.cb_COMM24_CH3Use.AutoSize = true;
  3182. this.cb_COMM24_CH3Use.Font = new System.Drawing.Font("굴림", 10F);
  3183. this.cb_COMM24_CH3Use.Location = new System.Drawing.Point(449, 148);
  3184. this.cb_COMM24_CH3Use.Name = "cb_COMM24_CH3Use";
  3185. this.cb_COMM24_CH3Use.Size = new System.Drawing.Size(15, 14);
  3186. this.cb_COMM24_CH3Use.TabIndex = 340;
  3187. this.cb_COMM24_CH3Use.UseVisualStyleBackColor = true;
  3188. //
  3189. // cb_COMM49_CH3Use
  3190. //
  3191. this.cb_COMM49_CH3Use.AutoSize = true;
  3192. this.cb_COMM49_CH3Use.Font = new System.Drawing.Font("굴림", 10F);
  3193. this.cb_COMM49_CH3Use.Location = new System.Drawing.Point(710, 279);
  3194. this.cb_COMM49_CH3Use.Name = "cb_COMM49_CH3Use";
  3195. this.cb_COMM49_CH3Use.Size = new System.Drawing.Size(15, 14);
  3196. this.cb_COMM49_CH3Use.TabIndex = 337;
  3197. this.cb_COMM49_CH3Use.UseVisualStyleBackColor = true;
  3198. //
  3199. // cb_COMM29_CH3Use
  3200. //
  3201. this.cb_COMM29_CH3Use.AutoSize = true;
  3202. this.cb_COMM29_CH3Use.Font = new System.Drawing.Font("굴림", 10F);
  3203. this.cb_COMM29_CH3Use.Location = new System.Drawing.Point(449, 279);
  3204. this.cb_COMM29_CH3Use.Name = "cb_COMM29_CH3Use";
  3205. this.cb_COMM29_CH3Use.Size = new System.Drawing.Size(15, 14);
  3206. this.cb_COMM29_CH3Use.TabIndex = 338;
  3207. this.cb_COMM29_CH3Use.UseVisualStyleBackColor = true;
  3208. //
  3209. // cb_COMM9_CH3Use
  3210. //
  3211. this.cb_COMM9_CH3Use.AutoSize = true;
  3212. this.cb_COMM9_CH3Use.Font = new System.Drawing.Font("굴림", 10F);
  3213. this.cb_COMM9_CH3Use.Location = new System.Drawing.Point(193, 278);
  3214. this.cb_COMM9_CH3Use.Name = "cb_COMM9_CH3Use";
  3215. this.cb_COMM9_CH3Use.Size = new System.Drawing.Size(15, 14);
  3216. this.cb_COMM9_CH3Use.TabIndex = 339;
  3217. this.cb_COMM9_CH3Use.UseVisualStyleBackColor = true;
  3218. //
  3219. // cb_COMM64_CH1Use
  3220. //
  3221. this.cb_COMM64_CH1Use.AutoSize = true;
  3222. this.cb_COMM64_CH1Use.Font = new System.Drawing.Font("굴림", 10F);
  3223. this.cb_COMM64_CH1Use.Location = new System.Drawing.Point(909, 149);
  3224. this.cb_COMM64_CH1Use.Name = "cb_COMM64_CH1Use";
  3225. this.cb_COMM64_CH1Use.Size = new System.Drawing.Size(15, 14);
  3226. this.cb_COMM64_CH1Use.TabIndex = 348;
  3227. this.cb_COMM64_CH1Use.UseVisualStyleBackColor = true;
  3228. //
  3229. // cb_COMM44_CH1Use
  3230. //
  3231. this.cb_COMM44_CH1Use.AutoSize = true;
  3232. this.cb_COMM44_CH1Use.Font = new System.Drawing.Font("굴림", 10F);
  3233. this.cb_COMM44_CH1Use.Location = new System.Drawing.Point(643, 149);
  3234. this.cb_COMM44_CH1Use.Name = "cb_COMM44_CH1Use";
  3235. this.cb_COMM44_CH1Use.Size = new System.Drawing.Size(15, 14);
  3236. this.cb_COMM44_CH1Use.TabIndex = 350;
  3237. this.cb_COMM44_CH1Use.UseVisualStyleBackColor = true;
  3238. //
  3239. // cb_COMM24_CH1Use
  3240. //
  3241. this.cb_COMM24_CH1Use.AutoSize = true;
  3242. this.cb_COMM24_CH1Use.Font = new System.Drawing.Font("굴림", 10F);
  3243. this.cb_COMM24_CH1Use.Location = new System.Drawing.Point(382, 148);
  3244. this.cb_COMM24_CH1Use.Name = "cb_COMM24_CH1Use";
  3245. this.cb_COMM24_CH1Use.Size = new System.Drawing.Size(15, 14);
  3246. this.cb_COMM24_CH1Use.TabIndex = 349;
  3247. this.cb_COMM24_CH1Use.UseVisualStyleBackColor = true;
  3248. //
  3249. // cb_COMM49_CH1Use
  3250. //
  3251. this.cb_COMM49_CH1Use.AutoSize = true;
  3252. this.cb_COMM49_CH1Use.Font = new System.Drawing.Font("굴림", 10F);
  3253. this.cb_COMM49_CH1Use.Location = new System.Drawing.Point(643, 279);
  3254. this.cb_COMM49_CH1Use.Name = "cb_COMM49_CH1Use";
  3255. this.cb_COMM49_CH1Use.Size = new System.Drawing.Size(15, 14);
  3256. this.cb_COMM49_CH1Use.TabIndex = 347;
  3257. this.cb_COMM49_CH1Use.UseVisualStyleBackColor = true;
  3258. //
  3259. // cb_COMM29_CH1Use
  3260. //
  3261. this.cb_COMM29_CH1Use.AutoSize = true;
  3262. this.cb_COMM29_CH1Use.Font = new System.Drawing.Font("굴림", 10F);
  3263. this.cb_COMM29_CH1Use.Location = new System.Drawing.Point(382, 279);
  3264. this.cb_COMM29_CH1Use.Name = "cb_COMM29_CH1Use";
  3265. this.cb_COMM29_CH1Use.Size = new System.Drawing.Size(15, 14);
  3266. this.cb_COMM29_CH1Use.TabIndex = 345;
  3267. this.cb_COMM29_CH1Use.UseVisualStyleBackColor = true;
  3268. //
  3269. // cb_COMM9_CH1Use
  3270. //
  3271. this.cb_COMM9_CH1Use.AutoSize = true;
  3272. this.cb_COMM9_CH1Use.Font = new System.Drawing.Font("굴림", 10F);
  3273. this.cb_COMM9_CH1Use.Location = new System.Drawing.Point(126, 278);
  3274. this.cb_COMM9_CH1Use.Name = "cb_COMM9_CH1Use";
  3275. this.cb_COMM9_CH1Use.Size = new System.Drawing.Size(15, 14);
  3276. this.cb_COMM9_CH1Use.TabIndex = 346;
  3277. this.cb_COMM9_CH1Use.UseVisualStyleBackColor = true;
  3278. //
  3279. // lbl_COMM63
  3280. //
  3281. this.lbl_COMM63.AutoSize = true;
  3282. this.lbl_COMM63.Font = new System.Drawing.Font("굴림", 10F);
  3283. this.lbl_COMM63.Location = new System.Drawing.Point(808, 123);
  3284. this.lbl_COMM63.Name = "lbl_COMM63";
  3285. this.lbl_COMM63.Size = new System.Drawing.Size(70, 14);
  3286. this.lbl_COMM63.TabIndex = 325;
  3287. this.lbl_COMM63.Text = "중계반 63";
  3288. //
  3289. // lbl_COMM43
  3290. //
  3291. this.lbl_COMM43.AutoSize = true;
  3292. this.lbl_COMM43.Font = new System.Drawing.Font("굴림", 10F);
  3293. this.lbl_COMM43.Location = new System.Drawing.Point(542, 123);
  3294. this.lbl_COMM43.Name = "lbl_COMM43";
  3295. this.lbl_COMM43.Size = new System.Drawing.Size(70, 14);
  3296. this.lbl_COMM43.TabIndex = 324;
  3297. this.lbl_COMM43.Text = "중계반 43";
  3298. //
  3299. // lbl_COMM23
  3300. //
  3301. this.lbl_COMM23.AutoSize = true;
  3302. this.lbl_COMM23.Font = new System.Drawing.Font("굴림", 10F);
  3303. this.lbl_COMM23.Location = new System.Drawing.Point(286, 123);
  3304. this.lbl_COMM23.Name = "lbl_COMM23";
  3305. this.lbl_COMM23.Size = new System.Drawing.Size(70, 14);
  3306. this.lbl_COMM23.TabIndex = 327;
  3307. this.lbl_COMM23.Text = "중계반 23";
  3308. //
  3309. // lbl_COMM48
  3310. //
  3311. this.lbl_COMM48.AutoSize = true;
  3312. this.lbl_COMM48.Font = new System.Drawing.Font("굴림", 10F);
  3313. this.lbl_COMM48.Location = new System.Drawing.Point(542, 253);
  3314. this.lbl_COMM48.Name = "lbl_COMM48";
  3315. this.lbl_COMM48.Size = new System.Drawing.Size(70, 14);
  3316. this.lbl_COMM48.TabIndex = 329;
  3317. this.lbl_COMM48.Text = "중계반 48";
  3318. //
  3319. // lbl_COMM28
  3320. //
  3321. this.lbl_COMM28.AutoSize = true;
  3322. this.lbl_COMM28.Font = new System.Drawing.Font("굴림", 10F);
  3323. this.lbl_COMM28.Location = new System.Drawing.Point(286, 253);
  3324. this.lbl_COMM28.Name = "lbl_COMM28";
  3325. this.lbl_COMM28.Size = new System.Drawing.Size(70, 14);
  3326. this.lbl_COMM28.TabIndex = 328;
  3327. this.lbl_COMM28.Text = "중계반 28";
  3328. //
  3329. // cb_COMM63_CH4Use
  3330. //
  3331. this.cb_COMM63_CH4Use.AutoSize = true;
  3332. this.cb_COMM63_CH4Use.Font = new System.Drawing.Font("굴림", 10F);
  3333. this.cb_COMM63_CH4Use.Location = new System.Drawing.Point(1009, 123);
  3334. this.cb_COMM63_CH4Use.Name = "cb_COMM63_CH4Use";
  3335. this.cb_COMM63_CH4Use.Size = new System.Drawing.Size(15, 14);
  3336. this.cb_COMM63_CH4Use.TabIndex = 319;
  3337. this.cb_COMM63_CH4Use.UseVisualStyleBackColor = true;
  3338. //
  3339. // cb_COMM43_CH4Use
  3340. //
  3341. this.cb_COMM43_CH4Use.AutoSize = true;
  3342. this.cb_COMM43_CH4Use.Font = new System.Drawing.Font("굴림", 10F);
  3343. this.cb_COMM43_CH4Use.Location = new System.Drawing.Point(743, 123);
  3344. this.cb_COMM43_CH4Use.Name = "cb_COMM43_CH4Use";
  3345. this.cb_COMM43_CH4Use.Size = new System.Drawing.Size(15, 14);
  3346. this.cb_COMM43_CH4Use.TabIndex = 318;
  3347. this.cb_COMM43_CH4Use.UseVisualStyleBackColor = true;
  3348. //
  3349. // cb_COMM23_CH4Use
  3350. //
  3351. this.cb_COMM23_CH4Use.AutoSize = true;
  3352. this.cb_COMM23_CH4Use.Font = new System.Drawing.Font("굴림", 10F);
  3353. this.cb_COMM23_CH4Use.Location = new System.Drawing.Point(482, 122);
  3354. this.cb_COMM23_CH4Use.Name = "cb_COMM23_CH4Use";
  3355. this.cb_COMM23_CH4Use.Size = new System.Drawing.Size(15, 14);
  3356. this.cb_COMM23_CH4Use.TabIndex = 321;
  3357. this.cb_COMM23_CH4Use.UseVisualStyleBackColor = true;
  3358. //
  3359. // cb_COMM48_CH4Use
  3360. //
  3361. this.cb_COMM48_CH4Use.AutoSize = true;
  3362. this.cb_COMM48_CH4Use.Font = new System.Drawing.Font("굴림", 10F);
  3363. this.cb_COMM48_CH4Use.Location = new System.Drawing.Point(743, 253);
  3364. this.cb_COMM48_CH4Use.Name = "cb_COMM48_CH4Use";
  3365. this.cb_COMM48_CH4Use.Size = new System.Drawing.Size(15, 14);
  3366. this.cb_COMM48_CH4Use.TabIndex = 323;
  3367. this.cb_COMM48_CH4Use.UseVisualStyleBackColor = true;
  3368. //
  3369. // cb_COMM28_CH4Use
  3370. //
  3371. this.cb_COMM28_CH4Use.AutoSize = true;
  3372. this.cb_COMM28_CH4Use.Font = new System.Drawing.Font("굴림", 10F);
  3373. this.cb_COMM28_CH4Use.Location = new System.Drawing.Point(482, 252);
  3374. this.cb_COMM28_CH4Use.Name = "cb_COMM28_CH4Use";
  3375. this.cb_COMM28_CH4Use.Size = new System.Drawing.Size(15, 14);
  3376. this.cb_COMM28_CH4Use.TabIndex = 322;
  3377. this.cb_COMM28_CH4Use.UseVisualStyleBackColor = true;
  3378. //
  3379. // cb_COMM60_CH3Use
  3380. //
  3381. this.cb_COMM60_CH3Use.AutoSize = true;
  3382. this.cb_COMM60_CH3Use.Font = new System.Drawing.Font("굴림", 10F);
  3383. this.cb_COMM60_CH3Use.Location = new System.Drawing.Point(710, 565);
  3384. this.cb_COMM60_CH3Use.Name = "cb_COMM60_CH3Use";
  3385. this.cb_COMM60_CH3Use.Size = new System.Drawing.Size(15, 14);
  3386. this.cb_COMM60_CH3Use.TabIndex = 200;
  3387. this.cb_COMM60_CH3Use.UseVisualStyleBackColor = true;
  3388. //
  3389. // cb_COMM40_CH3Use
  3390. //
  3391. this.cb_COMM40_CH3Use.AutoSize = true;
  3392. this.cb_COMM40_CH3Use.Font = new System.Drawing.Font("굴림", 10F);
  3393. this.cb_COMM40_CH3Use.Location = new System.Drawing.Point(449, 565);
  3394. this.cb_COMM40_CH3Use.Name = "cb_COMM40_CH3Use";
  3395. this.cb_COMM40_CH3Use.Size = new System.Drawing.Size(15, 14);
  3396. this.cb_COMM40_CH3Use.TabIndex = 201;
  3397. this.cb_COMM40_CH3Use.UseVisualStyleBackColor = true;
  3398. //
  3399. // cb_COMM20_CH3Use
  3400. //
  3401. this.cb_COMM20_CH3Use.AutoSize = true;
  3402. this.cb_COMM20_CH3Use.Font = new System.Drawing.Font("굴림", 10F);
  3403. this.cb_COMM20_CH3Use.Location = new System.Drawing.Point(193, 564);
  3404. this.cb_COMM20_CH3Use.Name = "cb_COMM20_CH3Use";
  3405. this.cb_COMM20_CH3Use.Size = new System.Drawing.Size(15, 14);
  3406. this.cb_COMM20_CH3Use.TabIndex = 197;
  3407. this.cb_COMM20_CH3Use.UseVisualStyleBackColor = true;
  3408. //
  3409. // cb_COMM45_CH3Use
  3410. //
  3411. this.cb_COMM45_CH3Use.AutoSize = true;
  3412. this.cb_COMM45_CH3Use.Font = new System.Drawing.Font("굴림", 10F);
  3413. this.cb_COMM45_CH3Use.Location = new System.Drawing.Point(709, 175);
  3414. this.cb_COMM45_CH3Use.Name = "cb_COMM45_CH3Use";
  3415. this.cb_COMM45_CH3Use.Size = new System.Drawing.Size(15, 14);
  3416. this.cb_COMM45_CH3Use.TabIndex = 198;
  3417. this.cb_COMM45_CH3Use.UseVisualStyleBackColor = true;
  3418. //
  3419. // cb_COMM25_CH3Use
  3420. //
  3421. this.cb_COMM25_CH3Use.AutoSize = true;
  3422. this.cb_COMM25_CH3Use.Font = new System.Drawing.Font("굴림", 10F);
  3423. this.cb_COMM25_CH3Use.Location = new System.Drawing.Point(448, 174);
  3424. this.cb_COMM25_CH3Use.Name = "cb_COMM25_CH3Use";
  3425. this.cb_COMM25_CH3Use.Size = new System.Drawing.Size(15, 14);
  3426. this.cb_COMM25_CH3Use.TabIndex = 199;
  3427. this.cb_COMM25_CH3Use.UseVisualStyleBackColor = true;
  3428. //
  3429. // cb_COMM63_CH2Use
  3430. //
  3431. this.cb_COMM63_CH2Use.AutoSize = true;
  3432. this.cb_COMM63_CH2Use.Font = new System.Drawing.Font("굴림", 10F);
  3433. this.cb_COMM63_CH2Use.Location = new System.Drawing.Point(942, 123);
  3434. this.cb_COMM63_CH2Use.Name = "cb_COMM63_CH2Use";
  3435. this.cb_COMM63_CH2Use.Size = new System.Drawing.Size(15, 14);
  3436. this.cb_COMM63_CH2Use.TabIndex = 313;
  3437. this.cb_COMM63_CH2Use.UseVisualStyleBackColor = true;
  3438. //
  3439. // cb_COMM43_CH2Use
  3440. //
  3441. this.cb_COMM43_CH2Use.AutoSize = true;
  3442. this.cb_COMM43_CH2Use.Font = new System.Drawing.Font("굴림", 10F);
  3443. this.cb_COMM43_CH2Use.Location = new System.Drawing.Point(676, 123);
  3444. this.cb_COMM43_CH2Use.Name = "cb_COMM43_CH2Use";
  3445. this.cb_COMM43_CH2Use.Size = new System.Drawing.Size(15, 14);
  3446. this.cb_COMM43_CH2Use.TabIndex = 312;
  3447. this.cb_COMM43_CH2Use.UseVisualStyleBackColor = true;
  3448. //
  3449. // cb_COMM23_CH2Use
  3450. //
  3451. this.cb_COMM23_CH2Use.AutoSize = true;
  3452. this.cb_COMM23_CH2Use.Font = new System.Drawing.Font("굴림", 10F);
  3453. this.cb_COMM23_CH2Use.Location = new System.Drawing.Point(415, 122);
  3454. this.cb_COMM23_CH2Use.Name = "cb_COMM23_CH2Use";
  3455. this.cb_COMM23_CH2Use.Size = new System.Drawing.Size(15, 14);
  3456. this.cb_COMM23_CH2Use.TabIndex = 315;
  3457. this.cb_COMM23_CH2Use.UseVisualStyleBackColor = true;
  3458. //
  3459. // cb_COMM48_CH2Use
  3460. //
  3461. this.cb_COMM48_CH2Use.AutoSize = true;
  3462. this.cb_COMM48_CH2Use.Font = new System.Drawing.Font("굴림", 10F);
  3463. this.cb_COMM48_CH2Use.Location = new System.Drawing.Point(676, 253);
  3464. this.cb_COMM48_CH2Use.Name = "cb_COMM48_CH2Use";
  3465. this.cb_COMM48_CH2Use.Size = new System.Drawing.Size(15, 14);
  3466. this.cb_COMM48_CH2Use.TabIndex = 317;
  3467. this.cb_COMM48_CH2Use.UseVisualStyleBackColor = true;
  3468. //
  3469. // cb_COMM28_CH2Use
  3470. //
  3471. this.cb_COMM28_CH2Use.AutoSize = true;
  3472. this.cb_COMM28_CH2Use.Font = new System.Drawing.Font("굴림", 10F);
  3473. this.cb_COMM28_CH2Use.Location = new System.Drawing.Point(415, 252);
  3474. this.cb_COMM28_CH2Use.Name = "cb_COMM28_CH2Use";
  3475. this.cb_COMM28_CH2Use.Size = new System.Drawing.Size(15, 14);
  3476. this.cb_COMM28_CH2Use.TabIndex = 316;
  3477. this.cb_COMM28_CH2Use.UseVisualStyleBackColor = true;
  3478. //
  3479. // cb_COMM63_CH3Use
  3480. //
  3481. this.cb_COMM63_CH3Use.AutoSize = true;
  3482. this.cb_COMM63_CH3Use.Font = new System.Drawing.Font("굴림", 10F);
  3483. this.cb_COMM63_CH3Use.Location = new System.Drawing.Point(976, 123);
  3484. this.cb_COMM63_CH3Use.Name = "cb_COMM63_CH3Use";
  3485. this.cb_COMM63_CH3Use.Size = new System.Drawing.Size(15, 14);
  3486. this.cb_COMM63_CH3Use.TabIndex = 307;
  3487. this.cb_COMM63_CH3Use.UseVisualStyleBackColor = true;
  3488. //
  3489. // cb_COMM43_CH3Use
  3490. //
  3491. this.cb_COMM43_CH3Use.AutoSize = true;
  3492. this.cb_COMM43_CH3Use.Font = new System.Drawing.Font("굴림", 10F);
  3493. this.cb_COMM43_CH3Use.Location = new System.Drawing.Point(710, 123);
  3494. this.cb_COMM43_CH3Use.Name = "cb_COMM43_CH3Use";
  3495. this.cb_COMM43_CH3Use.Size = new System.Drawing.Size(15, 14);
  3496. this.cb_COMM43_CH3Use.TabIndex = 306;
  3497. this.cb_COMM43_CH3Use.UseVisualStyleBackColor = true;
  3498. //
  3499. // cb_COMM23_CH3Use
  3500. //
  3501. this.cb_COMM23_CH3Use.AutoSize = true;
  3502. this.cb_COMM23_CH3Use.Font = new System.Drawing.Font("굴림", 10F);
  3503. this.cb_COMM23_CH3Use.Location = new System.Drawing.Point(449, 122);
  3504. this.cb_COMM23_CH3Use.Name = "cb_COMM23_CH3Use";
  3505. this.cb_COMM23_CH3Use.Size = new System.Drawing.Size(15, 14);
  3506. this.cb_COMM23_CH3Use.TabIndex = 309;
  3507. this.cb_COMM23_CH3Use.UseVisualStyleBackColor = true;
  3508. //
  3509. // cb_COMM48_CH3Use
  3510. //
  3511. this.cb_COMM48_CH3Use.AutoSize = true;
  3512. this.cb_COMM48_CH3Use.Font = new System.Drawing.Font("굴림", 10F);
  3513. this.cb_COMM48_CH3Use.Location = new System.Drawing.Point(710, 253);
  3514. this.cb_COMM48_CH3Use.Name = "cb_COMM48_CH3Use";
  3515. this.cb_COMM48_CH3Use.Size = new System.Drawing.Size(15, 14);
  3516. this.cb_COMM48_CH3Use.TabIndex = 311;
  3517. this.cb_COMM48_CH3Use.UseVisualStyleBackColor = true;
  3518. //
  3519. // cb_COMM28_CH3Use
  3520. //
  3521. this.cb_COMM28_CH3Use.AutoSize = true;
  3522. this.cb_COMM28_CH3Use.Font = new System.Drawing.Font("굴림", 10F);
  3523. this.cb_COMM28_CH3Use.Location = new System.Drawing.Point(449, 252);
  3524. this.cb_COMM28_CH3Use.Name = "cb_COMM28_CH3Use";
  3525. this.cb_COMM28_CH3Use.Size = new System.Drawing.Size(15, 14);
  3526. this.cb_COMM28_CH3Use.TabIndex = 310;
  3527. this.cb_COMM28_CH3Use.UseVisualStyleBackColor = true;
  3528. //
  3529. // cb_COMM60_CH1Use
  3530. //
  3531. this.cb_COMM60_CH1Use.AutoSize = true;
  3532. this.cb_COMM60_CH1Use.Font = new System.Drawing.Font("굴림", 10F);
  3533. this.cb_COMM60_CH1Use.Location = new System.Drawing.Point(643, 565);
  3534. this.cb_COMM60_CH1Use.Name = "cb_COMM60_CH1Use";
  3535. this.cb_COMM60_CH1Use.Size = new System.Drawing.Size(15, 14);
  3536. this.cb_COMM60_CH1Use.TabIndex = 205;
  3537. this.cb_COMM60_CH1Use.UseVisualStyleBackColor = true;
  3538. //
  3539. // cb_COMM40_CH1Use
  3540. //
  3541. this.cb_COMM40_CH1Use.AutoSize = true;
  3542. this.cb_COMM40_CH1Use.Font = new System.Drawing.Font("굴림", 10F);
  3543. this.cb_COMM40_CH1Use.Location = new System.Drawing.Point(382, 565);
  3544. this.cb_COMM40_CH1Use.Name = "cb_COMM40_CH1Use";
  3545. this.cb_COMM40_CH1Use.Size = new System.Drawing.Size(15, 14);
  3546. this.cb_COMM40_CH1Use.TabIndex = 206;
  3547. this.cb_COMM40_CH1Use.UseVisualStyleBackColor = true;
  3548. //
  3549. // cb_COMM20_CH1Use
  3550. //
  3551. this.cb_COMM20_CH1Use.AutoSize = true;
  3552. this.cb_COMM20_CH1Use.Font = new System.Drawing.Font("굴림", 10F);
  3553. this.cb_COMM20_CH1Use.Location = new System.Drawing.Point(126, 564);
  3554. this.cb_COMM20_CH1Use.Name = "cb_COMM20_CH1Use";
  3555. this.cb_COMM20_CH1Use.Size = new System.Drawing.Size(15, 14);
  3556. this.cb_COMM20_CH1Use.TabIndex = 202;
  3557. this.cb_COMM20_CH1Use.UseVisualStyleBackColor = true;
  3558. //
  3559. // cb_COMM45_CH1Use
  3560. //
  3561. this.cb_COMM45_CH1Use.AutoSize = true;
  3562. this.cb_COMM45_CH1Use.Font = new System.Drawing.Font("굴림", 10F);
  3563. this.cb_COMM45_CH1Use.Location = new System.Drawing.Point(643, 175);
  3564. this.cb_COMM45_CH1Use.Name = "cb_COMM45_CH1Use";
  3565. this.cb_COMM45_CH1Use.Size = new System.Drawing.Size(15, 14);
  3566. this.cb_COMM45_CH1Use.TabIndex = 203;
  3567. this.cb_COMM45_CH1Use.UseVisualStyleBackColor = true;
  3568. //
  3569. // cb_COMM25_CH1Use
  3570. //
  3571. this.cb_COMM25_CH1Use.AutoSize = true;
  3572. this.cb_COMM25_CH1Use.Font = new System.Drawing.Font("굴림", 10F);
  3573. this.cb_COMM25_CH1Use.Location = new System.Drawing.Point(382, 174);
  3574. this.cb_COMM25_CH1Use.Name = "cb_COMM25_CH1Use";
  3575. this.cb_COMM25_CH1Use.Size = new System.Drawing.Size(15, 14);
  3576. this.cb_COMM25_CH1Use.TabIndex = 204;
  3577. this.cb_COMM25_CH1Use.UseVisualStyleBackColor = true;
  3578. //
  3579. // cb_COMM60_CH4Use
  3580. //
  3581. this.cb_COMM60_CH4Use.AutoSize = true;
  3582. this.cb_COMM60_CH4Use.Font = new System.Drawing.Font("굴림", 10F);
  3583. this.cb_COMM60_CH4Use.Location = new System.Drawing.Point(743, 565);
  3584. this.cb_COMM60_CH4Use.Name = "cb_COMM60_CH4Use";
  3585. this.cb_COMM60_CH4Use.Size = new System.Drawing.Size(15, 14);
  3586. this.cb_COMM60_CH4Use.TabIndex = 210;
  3587. this.cb_COMM60_CH4Use.UseVisualStyleBackColor = true;
  3588. //
  3589. // cb_COMM40_CH4Use
  3590. //
  3591. this.cb_COMM40_CH4Use.AutoSize = true;
  3592. this.cb_COMM40_CH4Use.Font = new System.Drawing.Font("굴림", 10F);
  3593. this.cb_COMM40_CH4Use.Location = new System.Drawing.Point(482, 565);
  3594. this.cb_COMM40_CH4Use.Name = "cb_COMM40_CH4Use";
  3595. this.cb_COMM40_CH4Use.Size = new System.Drawing.Size(15, 14);
  3596. this.cb_COMM40_CH4Use.TabIndex = 211;
  3597. this.cb_COMM40_CH4Use.UseVisualStyleBackColor = true;
  3598. //
  3599. // cb_COMM20_CH4Use
  3600. //
  3601. this.cb_COMM20_CH4Use.AutoSize = true;
  3602. this.cb_COMM20_CH4Use.Font = new System.Drawing.Font("굴림", 10F);
  3603. this.cb_COMM20_CH4Use.Location = new System.Drawing.Point(226, 564);
  3604. this.cb_COMM20_CH4Use.Name = "cb_COMM20_CH4Use";
  3605. this.cb_COMM20_CH4Use.Size = new System.Drawing.Size(15, 14);
  3606. this.cb_COMM20_CH4Use.TabIndex = 207;
  3607. this.cb_COMM20_CH4Use.UseVisualStyleBackColor = true;
  3608. //
  3609. // cb_COMM45_CH4Use
  3610. //
  3611. this.cb_COMM45_CH4Use.AutoSize = true;
  3612. this.cb_COMM45_CH4Use.Font = new System.Drawing.Font("굴림", 10F);
  3613. this.cb_COMM45_CH4Use.Location = new System.Drawing.Point(742, 175);
  3614. this.cb_COMM45_CH4Use.Name = "cb_COMM45_CH4Use";
  3615. this.cb_COMM45_CH4Use.Size = new System.Drawing.Size(15, 14);
  3616. this.cb_COMM45_CH4Use.TabIndex = 208;
  3617. this.cb_COMM45_CH4Use.UseVisualStyleBackColor = true;
  3618. //
  3619. // cb_COMM25_CH4Use
  3620. //
  3621. this.cb_COMM25_CH4Use.AutoSize = true;
  3622. this.cb_COMM25_CH4Use.Font = new System.Drawing.Font("굴림", 10F);
  3623. this.cb_COMM25_CH4Use.Location = new System.Drawing.Point(481, 174);
  3624. this.cb_COMM25_CH4Use.Name = "cb_COMM25_CH4Use";
  3625. this.cb_COMM25_CH4Use.Size = new System.Drawing.Size(15, 14);
  3626. this.cb_COMM25_CH4Use.TabIndex = 209;
  3627. this.cb_COMM25_CH4Use.UseVisualStyleBackColor = true;
  3628. //
  3629. // cb_COMM63_CH1Use
  3630. //
  3631. this.cb_COMM63_CH1Use.AutoSize = true;
  3632. this.cb_COMM63_CH1Use.Font = new System.Drawing.Font("굴림", 10F);
  3633. this.cb_COMM63_CH1Use.Location = new System.Drawing.Point(909, 123);
  3634. this.cb_COMM63_CH1Use.Name = "cb_COMM63_CH1Use";
  3635. this.cb_COMM63_CH1Use.Size = new System.Drawing.Size(15, 14);
  3636. this.cb_COMM63_CH1Use.TabIndex = 301;
  3637. this.cb_COMM63_CH1Use.UseVisualStyleBackColor = true;
  3638. //
  3639. // cb_COMM43_CH1Use
  3640. //
  3641. this.cb_COMM43_CH1Use.AutoSize = true;
  3642. this.cb_COMM43_CH1Use.Font = new System.Drawing.Font("굴림", 10F);
  3643. this.cb_COMM43_CH1Use.Location = new System.Drawing.Point(643, 123);
  3644. this.cb_COMM43_CH1Use.Name = "cb_COMM43_CH1Use";
  3645. this.cb_COMM43_CH1Use.Size = new System.Drawing.Size(15, 14);
  3646. this.cb_COMM43_CH1Use.TabIndex = 300;
  3647. this.cb_COMM43_CH1Use.UseVisualStyleBackColor = true;
  3648. //
  3649. // cb_COMM23_CH1Use
  3650. //
  3651. this.cb_COMM23_CH1Use.AutoSize = true;
  3652. this.cb_COMM23_CH1Use.Font = new System.Drawing.Font("굴림", 10F);
  3653. this.cb_COMM23_CH1Use.Location = new System.Drawing.Point(382, 122);
  3654. this.cb_COMM23_CH1Use.Name = "cb_COMM23_CH1Use";
  3655. this.cb_COMM23_CH1Use.Size = new System.Drawing.Size(15, 14);
  3656. this.cb_COMM23_CH1Use.TabIndex = 303;
  3657. this.cb_COMM23_CH1Use.UseVisualStyleBackColor = true;
  3658. //
  3659. // cb_COMM48_CH1Use
  3660. //
  3661. this.cb_COMM48_CH1Use.AutoSize = true;
  3662. this.cb_COMM48_CH1Use.Font = new System.Drawing.Font("굴림", 10F);
  3663. this.cb_COMM48_CH1Use.Location = new System.Drawing.Point(643, 253);
  3664. this.cb_COMM48_CH1Use.Name = "cb_COMM48_CH1Use";
  3665. this.cb_COMM48_CH1Use.Size = new System.Drawing.Size(15, 14);
  3666. this.cb_COMM48_CH1Use.TabIndex = 305;
  3667. this.cb_COMM48_CH1Use.UseVisualStyleBackColor = true;
  3668. //
  3669. // cb_COMM28_CH1Use
  3670. //
  3671. this.cb_COMM28_CH1Use.AutoSize = true;
  3672. this.cb_COMM28_CH1Use.Font = new System.Drawing.Font("굴림", 10F);
  3673. this.cb_COMM28_CH1Use.Location = new System.Drawing.Point(382, 252);
  3674. this.cb_COMM28_CH1Use.Name = "cb_COMM28_CH1Use";
  3675. this.cb_COMM28_CH1Use.Size = new System.Drawing.Size(15, 14);
  3676. this.cb_COMM28_CH1Use.TabIndex = 304;
  3677. this.cb_COMM28_CH1Use.UseVisualStyleBackColor = true;
  3678. //
  3679. // cb_COMM60_CH2Use
  3680. //
  3681. this.cb_COMM60_CH2Use.AutoSize = true;
  3682. this.cb_COMM60_CH2Use.Font = new System.Drawing.Font("굴림", 10F);
  3683. this.cb_COMM60_CH2Use.Location = new System.Drawing.Point(676, 565);
  3684. this.cb_COMM60_CH2Use.Name = "cb_COMM60_CH2Use";
  3685. this.cb_COMM60_CH2Use.Size = new System.Drawing.Size(15, 14);
  3686. this.cb_COMM60_CH2Use.TabIndex = 216;
  3687. this.cb_COMM60_CH2Use.UseVisualStyleBackColor = true;
  3688. //
  3689. // cb_COMM40_CH2Use
  3690. //
  3691. this.cb_COMM40_CH2Use.AutoSize = true;
  3692. this.cb_COMM40_CH2Use.Font = new System.Drawing.Font("굴림", 10F);
  3693. this.cb_COMM40_CH2Use.Location = new System.Drawing.Point(415, 565);
  3694. this.cb_COMM40_CH2Use.Name = "cb_COMM40_CH2Use";
  3695. this.cb_COMM40_CH2Use.Size = new System.Drawing.Size(15, 14);
  3696. this.cb_COMM40_CH2Use.TabIndex = 214;
  3697. this.cb_COMM40_CH2Use.UseVisualStyleBackColor = true;
  3698. //
  3699. // cb_COMM20_CH2Use
  3700. //
  3701. this.cb_COMM20_CH2Use.AutoSize = true;
  3702. this.cb_COMM20_CH2Use.Font = new System.Drawing.Font("굴림", 10F);
  3703. this.cb_COMM20_CH2Use.Location = new System.Drawing.Point(159, 564);
  3704. this.cb_COMM20_CH2Use.Name = "cb_COMM20_CH2Use";
  3705. this.cb_COMM20_CH2Use.Size = new System.Drawing.Size(15, 14);
  3706. this.cb_COMM20_CH2Use.TabIndex = 212;
  3707. this.cb_COMM20_CH2Use.UseVisualStyleBackColor = true;
  3708. //
  3709. // cb_COMM45_CH2Use
  3710. //
  3711. this.cb_COMM45_CH2Use.AutoSize = true;
  3712. this.cb_COMM45_CH2Use.Font = new System.Drawing.Font("굴림", 10F);
  3713. this.cb_COMM45_CH2Use.Location = new System.Drawing.Point(676, 175);
  3714. this.cb_COMM45_CH2Use.Name = "cb_COMM45_CH2Use";
  3715. this.cb_COMM45_CH2Use.Size = new System.Drawing.Size(15, 14);
  3716. this.cb_COMM45_CH2Use.TabIndex = 215;
  3717. this.cb_COMM45_CH2Use.UseVisualStyleBackColor = true;
  3718. //
  3719. // cb_COMM25_CH2Use
  3720. //
  3721. this.cb_COMM25_CH2Use.AutoSize = true;
  3722. this.cb_COMM25_CH2Use.Font = new System.Drawing.Font("굴림", 10F);
  3723. this.cb_COMM25_CH2Use.Location = new System.Drawing.Point(415, 174);
  3724. this.cb_COMM25_CH2Use.Name = "cb_COMM25_CH2Use";
  3725. this.cb_COMM25_CH2Use.Size = new System.Drawing.Size(15, 14);
  3726. this.cb_COMM25_CH2Use.TabIndex = 213;
  3727. this.cb_COMM25_CH2Use.UseVisualStyleBackColor = true;
  3728. //
  3729. // lbl_COMM60
  3730. //
  3731. this.lbl_COMM60.AutoSize = true;
  3732. this.lbl_COMM60.Font = new System.Drawing.Font("굴림", 10F);
  3733. this.lbl_COMM60.Location = new System.Drawing.Point(542, 565);
  3734. this.lbl_COMM60.Name = "lbl_COMM60";
  3735. this.lbl_COMM60.Size = new System.Drawing.Size(70, 14);
  3736. this.lbl_COMM60.TabIndex = 221;
  3737. this.lbl_COMM60.Text = "중계반 60";
  3738. //
  3739. // lbl_COMM40
  3740. //
  3741. this.lbl_COMM40.AutoSize = true;
  3742. this.lbl_COMM40.Font = new System.Drawing.Font("굴림", 10F);
  3743. this.lbl_COMM40.Location = new System.Drawing.Point(286, 565);
  3744. this.lbl_COMM40.Name = "lbl_COMM40";
  3745. this.lbl_COMM40.Size = new System.Drawing.Size(70, 14);
  3746. this.lbl_COMM40.TabIndex = 217;
  3747. this.lbl_COMM40.Text = "중계반 40";
  3748. //
  3749. // lbl_COMM20
  3750. //
  3751. this.lbl_COMM20.AutoSize = true;
  3752. this.lbl_COMM20.Font = new System.Drawing.Font("굴림", 10F);
  3753. this.lbl_COMM20.Location = new System.Drawing.Point(33, 564);
  3754. this.lbl_COMM20.Name = "lbl_COMM20";
  3755. this.lbl_COMM20.Size = new System.Drawing.Size(70, 14);
  3756. this.lbl_COMM20.TabIndex = 220;
  3757. this.lbl_COMM20.Text = "중계반 20";
  3758. //
  3759. // lbl_COMM62
  3760. //
  3761. this.lbl_COMM62.AutoSize = true;
  3762. this.lbl_COMM62.Font = new System.Drawing.Font("굴림", 10F);
  3763. this.lbl_COMM62.Location = new System.Drawing.Point(808, 97);
  3764. this.lbl_COMM62.Name = "lbl_COMM62";
  3765. this.lbl_COMM62.Size = new System.Drawing.Size(70, 14);
  3766. this.lbl_COMM62.TabIndex = 290;
  3767. this.lbl_COMM62.Text = "중계반 62";
  3768. //
  3769. // lbl_COMM42
  3770. //
  3771. this.lbl_COMM42.AutoSize = true;
  3772. this.lbl_COMM42.Font = new System.Drawing.Font("굴림", 10F);
  3773. this.lbl_COMM42.Location = new System.Drawing.Point(542, 97);
  3774. this.lbl_COMM42.Name = "lbl_COMM42";
  3775. this.lbl_COMM42.Size = new System.Drawing.Size(70, 14);
  3776. this.lbl_COMM42.TabIndex = 289;
  3777. this.lbl_COMM42.Text = "중계반 42";
  3778. //
  3779. // lbl_COMM22
  3780. //
  3781. this.lbl_COMM22.AutoSize = true;
  3782. this.lbl_COMM22.Font = new System.Drawing.Font("굴림", 10F);
  3783. this.lbl_COMM22.Location = new System.Drawing.Point(286, 97);
  3784. this.lbl_COMM22.Name = "lbl_COMM22";
  3785. this.lbl_COMM22.Size = new System.Drawing.Size(70, 14);
  3786. this.lbl_COMM22.TabIndex = 291;
  3787. this.lbl_COMM22.Text = "중계반 22";
  3788. //
  3789. // lbl_COMM45
  3790. //
  3791. this.lbl_COMM45.AutoSize = true;
  3792. this.lbl_COMM45.Font = new System.Drawing.Font("굴림", 10F);
  3793. this.lbl_COMM45.Location = new System.Drawing.Point(542, 175);
  3794. this.lbl_COMM45.Name = "lbl_COMM45";
  3795. this.lbl_COMM45.Size = new System.Drawing.Size(70, 14);
  3796. this.lbl_COMM45.TabIndex = 218;
  3797. this.lbl_COMM45.Text = "중계반 45";
  3798. //
  3799. // cb_COMM62_CH4Use
  3800. //
  3801. this.cb_COMM62_CH4Use.AutoSize = true;
  3802. this.cb_COMM62_CH4Use.Font = new System.Drawing.Font("굴림", 10F);
  3803. this.cb_COMM62_CH4Use.Location = new System.Drawing.Point(1009, 97);
  3804. this.cb_COMM62_CH4Use.Name = "cb_COMM62_CH4Use";
  3805. this.cb_COMM62_CH4Use.Size = new System.Drawing.Size(15, 14);
  3806. this.cb_COMM62_CH4Use.TabIndex = 286;
  3807. this.cb_COMM62_CH4Use.UseVisualStyleBackColor = true;
  3808. //
  3809. // lbl_COMM25
  3810. //
  3811. this.lbl_COMM25.AutoSize = true;
  3812. this.lbl_COMM25.Font = new System.Drawing.Font("굴림", 10F);
  3813. this.lbl_COMM25.Location = new System.Drawing.Point(286, 175);
  3814. this.lbl_COMM25.Name = "lbl_COMM25";
  3815. this.lbl_COMM25.Size = new System.Drawing.Size(70, 14);
  3816. this.lbl_COMM25.TabIndex = 219;
  3817. this.lbl_COMM25.Text = "중계반 25";
  3818. //
  3819. // cb_COMM42_CH4Use
  3820. //
  3821. this.cb_COMM42_CH4Use.AutoSize = true;
  3822. this.cb_COMM42_CH4Use.Font = new System.Drawing.Font("굴림", 10F);
  3823. this.cb_COMM42_CH4Use.Location = new System.Drawing.Point(743, 97);
  3824. this.cb_COMM42_CH4Use.Name = "cb_COMM42_CH4Use";
  3825. this.cb_COMM42_CH4Use.Size = new System.Drawing.Size(15, 14);
  3826. this.cb_COMM42_CH4Use.TabIndex = 283;
  3827. this.cb_COMM42_CH4Use.UseVisualStyleBackColor = true;
  3828. //
  3829. // lbl_COMM47
  3830. //
  3831. this.lbl_COMM47.AutoSize = true;
  3832. this.lbl_COMM47.Font = new System.Drawing.Font("굴림", 10F);
  3833. this.lbl_COMM47.Location = new System.Drawing.Point(542, 227);
  3834. this.lbl_COMM47.Name = "lbl_COMM47";
  3835. this.lbl_COMM47.Size = new System.Drawing.Size(70, 14);
  3836. this.lbl_COMM47.TabIndex = 293;
  3837. this.lbl_COMM47.Text = "중계반 47";
  3838. //
  3839. // lbl_COMM27
  3840. //
  3841. this.lbl_COMM27.AutoSize = true;
  3842. this.lbl_COMM27.Font = new System.Drawing.Font("굴림", 10F);
  3843. this.lbl_COMM27.Location = new System.Drawing.Point(286, 227);
  3844. this.lbl_COMM27.Name = "lbl_COMM27";
  3845. this.lbl_COMM27.Size = new System.Drawing.Size(70, 14);
  3846. this.lbl_COMM27.TabIndex = 292;
  3847. this.lbl_COMM27.Text = "중계반 27";
  3848. //
  3849. // cb_COMM22_CH4Use
  3850. //
  3851. this.cb_COMM22_CH4Use.AutoSize = true;
  3852. this.cb_COMM22_CH4Use.Font = new System.Drawing.Font("굴림", 10F);
  3853. this.cb_COMM22_CH4Use.Location = new System.Drawing.Point(482, 96);
  3854. this.cb_COMM22_CH4Use.Name = "cb_COMM22_CH4Use";
  3855. this.cb_COMM22_CH4Use.Size = new System.Drawing.Size(15, 14);
  3856. this.cb_COMM22_CH4Use.TabIndex = 282;
  3857. this.cb_COMM22_CH4Use.UseVisualStyleBackColor = true;
  3858. //
  3859. // cb_COMM47_CH4Use
  3860. //
  3861. this.cb_COMM47_CH4Use.AutoSize = true;
  3862. this.cb_COMM47_CH4Use.Font = new System.Drawing.Font("굴림", 10F);
  3863. this.cb_COMM47_CH4Use.Location = new System.Drawing.Point(743, 227);
  3864. this.cb_COMM47_CH4Use.Name = "cb_COMM47_CH4Use";
  3865. this.cb_COMM47_CH4Use.Size = new System.Drawing.Size(15, 14);
  3866. this.cb_COMM47_CH4Use.TabIndex = 287;
  3867. this.cb_COMM47_CH4Use.UseVisualStyleBackColor = true;
  3868. //
  3869. // cb_COMM27_CH4Use
  3870. //
  3871. this.cb_COMM27_CH4Use.AutoSize = true;
  3872. this.cb_COMM27_CH4Use.Font = new System.Drawing.Font("굴림", 10F);
  3873. this.cb_COMM27_CH4Use.Location = new System.Drawing.Point(482, 226);
  3874. this.cb_COMM27_CH4Use.Name = "cb_COMM27_CH4Use";
  3875. this.cb_COMM27_CH4Use.Size = new System.Drawing.Size(15, 14);
  3876. this.cb_COMM27_CH4Use.TabIndex = 285;
  3877. this.cb_COMM27_CH4Use.UseVisualStyleBackColor = true;
  3878. //
  3879. // cb_COMM61_CH3Use
  3880. //
  3881. this.cb_COMM61_CH3Use.AutoSize = true;
  3882. this.cb_COMM61_CH3Use.Font = new System.Drawing.Font("굴림", 10F);
  3883. this.cb_COMM61_CH3Use.Location = new System.Drawing.Point(976, 71);
  3884. this.cb_COMM61_CH3Use.Name = "cb_COMM61_CH3Use";
  3885. this.cb_COMM61_CH3Use.Size = new System.Drawing.Size(15, 14);
  3886. this.cb_COMM61_CH3Use.TabIndex = 235;
  3887. this.cb_COMM61_CH3Use.UseVisualStyleBackColor = true;
  3888. //
  3889. // cb_COMM41_CH3Use
  3890. //
  3891. this.cb_COMM41_CH3Use.AutoSize = true;
  3892. this.cb_COMM41_CH3Use.Font = new System.Drawing.Font("굴림", 10F);
  3893. this.cb_COMM41_CH3Use.Location = new System.Drawing.Point(710, 71);
  3894. this.cb_COMM41_CH3Use.Name = "cb_COMM41_CH3Use";
  3895. this.cb_COMM41_CH3Use.Size = new System.Drawing.Size(15, 14);
  3896. this.cb_COMM41_CH3Use.TabIndex = 234;
  3897. this.cb_COMM41_CH3Use.UseVisualStyleBackColor = true;
  3898. //
  3899. // cb_COMM62_CH2Use
  3900. //
  3901. this.cb_COMM62_CH2Use.AutoSize = true;
  3902. this.cb_COMM62_CH2Use.Font = new System.Drawing.Font("굴림", 10F);
  3903. this.cb_COMM62_CH2Use.Location = new System.Drawing.Point(942, 97);
  3904. this.cb_COMM62_CH2Use.Name = "cb_COMM62_CH2Use";
  3905. this.cb_COMM62_CH2Use.Size = new System.Drawing.Size(15, 14);
  3906. this.cb_COMM62_CH2Use.TabIndex = 277;
  3907. this.cb_COMM62_CH2Use.UseVisualStyleBackColor = true;
  3908. //
  3909. // cb_COMM21_CH3Use
  3910. //
  3911. this.cb_COMM21_CH3Use.AutoSize = true;
  3912. this.cb_COMM21_CH3Use.Font = new System.Drawing.Font("굴림", 10F);
  3913. this.cb_COMM21_CH3Use.Location = new System.Drawing.Point(449, 70);
  3914. this.cb_COMM21_CH3Use.Name = "cb_COMM21_CH3Use";
  3915. this.cb_COMM21_CH3Use.Size = new System.Drawing.Size(15, 14);
  3916. this.cb_COMM21_CH3Use.TabIndex = 239;
  3917. this.cb_COMM21_CH3Use.UseVisualStyleBackColor = true;
  3918. //
  3919. // cb_COMM42_CH2Use
  3920. //
  3921. this.cb_COMM42_CH2Use.AutoSize = true;
  3922. this.cb_COMM42_CH2Use.Font = new System.Drawing.Font("굴림", 10F);
  3923. this.cb_COMM42_CH2Use.Location = new System.Drawing.Point(676, 97);
  3924. this.cb_COMM42_CH2Use.Name = "cb_COMM42_CH2Use";
  3925. this.cb_COMM42_CH2Use.Size = new System.Drawing.Size(15, 14);
  3926. this.cb_COMM42_CH2Use.TabIndex = 276;
  3927. this.cb_COMM42_CH2Use.UseVisualStyleBackColor = true;
  3928. //
  3929. // cb_COMM46_CH3Use
  3930. //
  3931. this.cb_COMM46_CH3Use.AutoSize = true;
  3932. this.cb_COMM46_CH3Use.Font = new System.Drawing.Font("굴림", 10F);
  3933. this.cb_COMM46_CH3Use.Location = new System.Drawing.Point(709, 201);
  3934. this.cb_COMM46_CH3Use.Name = "cb_COMM46_CH3Use";
  3935. this.cb_COMM46_CH3Use.Size = new System.Drawing.Size(15, 14);
  3936. this.cb_COMM46_CH3Use.TabIndex = 238;
  3937. this.cb_COMM46_CH3Use.UseVisualStyleBackColor = true;
  3938. //
  3939. // cb_COMM26_CH3Use
  3940. //
  3941. this.cb_COMM26_CH3Use.AutoSize = true;
  3942. this.cb_COMM26_CH3Use.Font = new System.Drawing.Font("굴림", 10F);
  3943. this.cb_COMM26_CH3Use.Location = new System.Drawing.Point(448, 200);
  3944. this.cb_COMM26_CH3Use.Name = "cb_COMM26_CH3Use";
  3945. this.cb_COMM26_CH3Use.Size = new System.Drawing.Size(15, 14);
  3946. this.cb_COMM26_CH3Use.TabIndex = 237;
  3947. this.cb_COMM26_CH3Use.UseVisualStyleBackColor = true;
  3948. //
  3949. // cb_COMM62_CH3Use
  3950. //
  3951. this.cb_COMM62_CH3Use.AutoSize = true;
  3952. this.cb_COMM62_CH3Use.Font = new System.Drawing.Font("굴림", 10F);
  3953. this.cb_COMM62_CH3Use.Location = new System.Drawing.Point(976, 97);
  3954. this.cb_COMM62_CH3Use.Name = "cb_COMM62_CH3Use";
  3955. this.cb_COMM62_CH3Use.Size = new System.Drawing.Size(15, 14);
  3956. this.cb_COMM62_CH3Use.TabIndex = 268;
  3957. this.cb_COMM62_CH3Use.UseVisualStyleBackColor = true;
  3958. //
  3959. // cb_COMM22_CH2Use
  3960. //
  3961. this.cb_COMM22_CH2Use.AutoSize = true;
  3962. this.cb_COMM22_CH2Use.Font = new System.Drawing.Font("굴림", 10F);
  3963. this.cb_COMM22_CH2Use.Location = new System.Drawing.Point(415, 96);
  3964. this.cb_COMM22_CH2Use.Name = "cb_COMM22_CH2Use";
  3965. this.cb_COMM22_CH2Use.Size = new System.Drawing.Size(15, 14);
  3966. this.cb_COMM22_CH2Use.TabIndex = 279;
  3967. this.cb_COMM22_CH2Use.UseVisualStyleBackColor = true;
  3968. //
  3969. // cb_COMM42_CH3Use
  3970. //
  3971. this.cb_COMM42_CH3Use.AutoSize = true;
  3972. this.cb_COMM42_CH3Use.Font = new System.Drawing.Font("굴림", 10F);
  3973. this.cb_COMM42_CH3Use.Location = new System.Drawing.Point(710, 97);
  3974. this.cb_COMM42_CH3Use.Name = "cb_COMM42_CH3Use";
  3975. this.cb_COMM42_CH3Use.Size = new System.Drawing.Size(15, 14);
  3976. this.cb_COMM42_CH3Use.TabIndex = 267;
  3977. this.cb_COMM42_CH3Use.UseVisualStyleBackColor = true;
  3978. //
  3979. // cb_COMM47_CH2Use
  3980. //
  3981. this.cb_COMM47_CH2Use.AutoSize = true;
  3982. this.cb_COMM47_CH2Use.Font = new System.Drawing.Font("굴림", 10F);
  3983. this.cb_COMM47_CH2Use.Location = new System.Drawing.Point(676, 227);
  3984. this.cb_COMM47_CH2Use.Name = "cb_COMM47_CH2Use";
  3985. this.cb_COMM47_CH2Use.Size = new System.Drawing.Size(15, 14);
  3986. this.cb_COMM47_CH2Use.TabIndex = 280;
  3987. this.cb_COMM47_CH2Use.UseVisualStyleBackColor = true;
  3988. //
  3989. // cb_COMM27_CH2Use
  3990. //
  3991. this.cb_COMM27_CH2Use.AutoSize = true;
  3992. this.cb_COMM27_CH2Use.Font = new System.Drawing.Font("굴림", 10F);
  3993. this.cb_COMM27_CH2Use.Location = new System.Drawing.Point(415, 226);
  3994. this.cb_COMM27_CH2Use.Name = "cb_COMM27_CH2Use";
  3995. this.cb_COMM27_CH2Use.Size = new System.Drawing.Size(15, 14);
  3996. this.cb_COMM27_CH2Use.TabIndex = 281;
  3997. this.cb_COMM27_CH2Use.UseVisualStyleBackColor = true;
  3998. //
  3999. // cb_COMM61_CH1Use
  4000. //
  4001. this.cb_COMM61_CH1Use.AutoSize = true;
  4002. this.cb_COMM61_CH1Use.Font = new System.Drawing.Font("굴림", 10F);
  4003. this.cb_COMM61_CH1Use.Location = new System.Drawing.Point(909, 71);
  4004. this.cb_COMM61_CH1Use.Name = "cb_COMM61_CH1Use";
  4005. this.cb_COMM61_CH1Use.Size = new System.Drawing.Size(15, 14);
  4006. this.cb_COMM61_CH1Use.TabIndex = 230;
  4007. this.cb_COMM61_CH1Use.UseVisualStyleBackColor = true;
  4008. //
  4009. // cb_COMM22_CH3Use
  4010. //
  4011. this.cb_COMM22_CH3Use.AutoSize = true;
  4012. this.cb_COMM22_CH3Use.Font = new System.Drawing.Font("굴림", 10F);
  4013. this.cb_COMM22_CH3Use.Location = new System.Drawing.Point(449, 96);
  4014. this.cb_COMM22_CH3Use.Name = "cb_COMM22_CH3Use";
  4015. this.cb_COMM22_CH3Use.Size = new System.Drawing.Size(15, 14);
  4016. this.cb_COMM22_CH3Use.TabIndex = 264;
  4017. this.cb_COMM22_CH3Use.UseVisualStyleBackColor = true;
  4018. //
  4019. // cb_COMM41_CH1Use
  4020. //
  4021. this.cb_COMM41_CH1Use.AutoSize = true;
  4022. this.cb_COMM41_CH1Use.Font = new System.Drawing.Font("굴림", 10F);
  4023. this.cb_COMM41_CH1Use.Location = new System.Drawing.Point(643, 71);
  4024. this.cb_COMM41_CH1Use.Name = "cb_COMM41_CH1Use";
  4025. this.cb_COMM41_CH1Use.Size = new System.Drawing.Size(15, 14);
  4026. this.cb_COMM41_CH1Use.TabIndex = 233;
  4027. this.cb_COMM41_CH1Use.UseVisualStyleBackColor = true;
  4028. //
  4029. // cb_COMM47_CH3Use
  4030. //
  4031. this.cb_COMM47_CH3Use.AutoSize = true;
  4032. this.cb_COMM47_CH3Use.Font = new System.Drawing.Font("굴림", 10F);
  4033. this.cb_COMM47_CH3Use.Location = new System.Drawing.Point(710, 227);
  4034. this.cb_COMM47_CH3Use.Name = "cb_COMM47_CH3Use";
  4035. this.cb_COMM47_CH3Use.Size = new System.Drawing.Size(15, 14);
  4036. this.cb_COMM47_CH3Use.TabIndex = 265;
  4037. this.cb_COMM47_CH3Use.UseVisualStyleBackColor = true;
  4038. //
  4039. // cb_COMM27_CH3Use
  4040. //
  4041. this.cb_COMM27_CH3Use.AutoSize = true;
  4042. this.cb_COMM27_CH3Use.Font = new System.Drawing.Font("굴림", 10F);
  4043. this.cb_COMM27_CH3Use.Location = new System.Drawing.Point(449, 226);
  4044. this.cb_COMM27_CH3Use.Name = "cb_COMM27_CH3Use";
  4045. this.cb_COMM27_CH3Use.Size = new System.Drawing.Size(15, 14);
  4046. this.cb_COMM27_CH3Use.TabIndex = 269;
  4047. this.cb_COMM27_CH3Use.UseVisualStyleBackColor = true;
  4048. //
  4049. // cb_COMM61_CH4Use
  4050. //
  4051. this.cb_COMM61_CH4Use.AutoSize = true;
  4052. this.cb_COMM61_CH4Use.Font = new System.Drawing.Font("굴림", 10F);
  4053. this.cb_COMM61_CH4Use.Location = new System.Drawing.Point(1009, 71);
  4054. this.cb_COMM61_CH4Use.Name = "cb_COMM61_CH4Use";
  4055. this.cb_COMM61_CH4Use.Size = new System.Drawing.Size(15, 14);
  4056. this.cb_COMM61_CH4Use.TabIndex = 248;
  4057. this.cb_COMM61_CH4Use.UseVisualStyleBackColor = true;
  4058. //
  4059. // cb_COMM21_CH1Use
  4060. //
  4061. this.cb_COMM21_CH1Use.AutoSize = true;
  4062. this.cb_COMM21_CH1Use.Font = new System.Drawing.Font("굴림", 10F);
  4063. this.cb_COMM21_CH1Use.Location = new System.Drawing.Point(382, 70);
  4064. this.cb_COMM21_CH1Use.Name = "cb_COMM21_CH1Use";
  4065. this.cb_COMM21_CH1Use.Size = new System.Drawing.Size(15, 14);
  4066. this.cb_COMM21_CH1Use.TabIndex = 232;
  4067. this.cb_COMM21_CH1Use.UseVisualStyleBackColor = true;
  4068. //
  4069. // cb_COMM41_CH4Use
  4070. //
  4071. this.cb_COMM41_CH4Use.AutoSize = true;
  4072. this.cb_COMM41_CH4Use.Font = new System.Drawing.Font("굴림", 10F);
  4073. this.cb_COMM41_CH4Use.Location = new System.Drawing.Point(743, 71);
  4074. this.cb_COMM41_CH4Use.Name = "cb_COMM41_CH4Use";
  4075. this.cb_COMM41_CH4Use.Size = new System.Drawing.Size(15, 14);
  4076. this.cb_COMM41_CH4Use.TabIndex = 247;
  4077. this.cb_COMM41_CH4Use.UseVisualStyleBackColor = true;
  4078. //
  4079. // cb_COMM46_CH1Use
  4080. //
  4081. this.cb_COMM46_CH1Use.AutoSize = true;
  4082. this.cb_COMM46_CH1Use.Font = new System.Drawing.Font("굴림", 10F);
  4083. this.cb_COMM46_CH1Use.Location = new System.Drawing.Point(643, 201);
  4084. this.cb_COMM46_CH1Use.Name = "cb_COMM46_CH1Use";
  4085. this.cb_COMM46_CH1Use.Size = new System.Drawing.Size(15, 14);
  4086. this.cb_COMM46_CH1Use.TabIndex = 231;
  4087. this.cb_COMM46_CH1Use.UseVisualStyleBackColor = true;
  4088. //
  4089. // cb_COMM26_CH1Use
  4090. //
  4091. this.cb_COMM26_CH1Use.AutoSize = true;
  4092. this.cb_COMM26_CH1Use.Font = new System.Drawing.Font("굴림", 10F);
  4093. this.cb_COMM26_CH1Use.Location = new System.Drawing.Point(382, 200);
  4094. this.cb_COMM26_CH1Use.Name = "cb_COMM26_CH1Use";
  4095. this.cb_COMM26_CH1Use.Size = new System.Drawing.Size(15, 14);
  4096. this.cb_COMM26_CH1Use.TabIndex = 229;
  4097. this.cb_COMM26_CH1Use.UseVisualStyleBackColor = true;
  4098. //
  4099. // cb_COMM62_CH1Use
  4100. //
  4101. this.cb_COMM62_CH1Use.AutoSize = true;
  4102. this.cb_COMM62_CH1Use.Font = new System.Drawing.Font("굴림", 10F);
  4103. this.cb_COMM62_CH1Use.Location = new System.Drawing.Point(909, 97);
  4104. this.cb_COMM62_CH1Use.Name = "cb_COMM62_CH1Use";
  4105. this.cb_COMM62_CH1Use.Size = new System.Drawing.Size(15, 14);
  4106. this.cb_COMM62_CH1Use.TabIndex = 273;
  4107. this.cb_COMM62_CH1Use.UseVisualStyleBackColor = true;
  4108. //
  4109. // cb_COMM21_CH4Use
  4110. //
  4111. this.cb_COMM21_CH4Use.AutoSize = true;
  4112. this.cb_COMM21_CH4Use.Font = new System.Drawing.Font("굴림", 10F);
  4113. this.cb_COMM21_CH4Use.Location = new System.Drawing.Point(482, 70);
  4114. this.cb_COMM21_CH4Use.Name = "cb_COMM21_CH4Use";
  4115. this.cb_COMM21_CH4Use.Size = new System.Drawing.Size(15, 14);
  4116. this.cb_COMM21_CH4Use.TabIndex = 250;
  4117. this.cb_COMM21_CH4Use.UseVisualStyleBackColor = true;
  4118. //
  4119. // cb_COMM42_CH1Use
  4120. //
  4121. this.cb_COMM42_CH1Use.AutoSize = true;
  4122. this.cb_COMM42_CH1Use.Font = new System.Drawing.Font("굴림", 10F);
  4123. this.cb_COMM42_CH1Use.Location = new System.Drawing.Point(643, 97);
  4124. this.cb_COMM42_CH1Use.Name = "cb_COMM42_CH1Use";
  4125. this.cb_COMM42_CH1Use.Size = new System.Drawing.Size(15, 14);
  4126. this.cb_COMM42_CH1Use.TabIndex = 272;
  4127. this.cb_COMM42_CH1Use.UseVisualStyleBackColor = true;
  4128. //
  4129. // cb_COMM46_CH4Use
  4130. //
  4131. this.cb_COMM46_CH4Use.AutoSize = true;
  4132. this.cb_COMM46_CH4Use.Font = new System.Drawing.Font("굴림", 10F);
  4133. this.cb_COMM46_CH4Use.Location = new System.Drawing.Point(742, 201);
  4134. this.cb_COMM46_CH4Use.Name = "cb_COMM46_CH4Use";
  4135. this.cb_COMM46_CH4Use.Size = new System.Drawing.Size(15, 14);
  4136. this.cb_COMM46_CH4Use.TabIndex = 251;
  4137. this.cb_COMM46_CH4Use.UseVisualStyleBackColor = true;
  4138. //
  4139. // cb_COMM26_CH4Use
  4140. //
  4141. this.cb_COMM26_CH4Use.AutoSize = true;
  4142. this.cb_COMM26_CH4Use.Font = new System.Drawing.Font("굴림", 10F);
  4143. this.cb_COMM26_CH4Use.Location = new System.Drawing.Point(481, 200);
  4144. this.cb_COMM26_CH4Use.Name = "cb_COMM26_CH4Use";
  4145. this.cb_COMM26_CH4Use.Size = new System.Drawing.Size(15, 14);
  4146. this.cb_COMM26_CH4Use.TabIndex = 246;
  4147. this.cb_COMM26_CH4Use.UseVisualStyleBackColor = true;
  4148. //
  4149. // cb_COMM61_CH2Use
  4150. //
  4151. this.cb_COMM61_CH2Use.AutoSize = true;
  4152. this.cb_COMM61_CH2Use.Font = new System.Drawing.Font("굴림", 10F);
  4153. this.cb_COMM61_CH2Use.Location = new System.Drawing.Point(942, 71);
  4154. this.cb_COMM61_CH2Use.Name = "cb_COMM61_CH2Use";
  4155. this.cb_COMM61_CH2Use.Size = new System.Drawing.Size(15, 14);
  4156. this.cb_COMM61_CH2Use.TabIndex = 240;
  4157. this.cb_COMM61_CH2Use.UseVisualStyleBackColor = true;
  4158. //
  4159. // cb_COMM22_CH1Use
  4160. //
  4161. this.cb_COMM22_CH1Use.AutoSize = true;
  4162. this.cb_COMM22_CH1Use.Font = new System.Drawing.Font("굴림", 10F);
  4163. this.cb_COMM22_CH1Use.Location = new System.Drawing.Point(382, 96);
  4164. this.cb_COMM22_CH1Use.Name = "cb_COMM22_CH1Use";
  4165. this.cb_COMM22_CH1Use.Size = new System.Drawing.Size(15, 14);
  4166. this.cb_COMM22_CH1Use.TabIndex = 275;
  4167. this.cb_COMM22_CH1Use.UseVisualStyleBackColor = true;
  4168. //
  4169. // cb_COMM41_CH2Use
  4170. //
  4171. this.cb_COMM41_CH2Use.AutoSize = true;
  4172. this.cb_COMM41_CH2Use.Font = new System.Drawing.Font("굴림", 10F);
  4173. this.cb_COMM41_CH2Use.Location = new System.Drawing.Point(676, 71);
  4174. this.cb_COMM41_CH2Use.Name = "cb_COMM41_CH2Use";
  4175. this.cb_COMM41_CH2Use.Size = new System.Drawing.Size(15, 14);
  4176. this.cb_COMM41_CH2Use.TabIndex = 242;
  4177. this.cb_COMM41_CH2Use.UseVisualStyleBackColor = true;
  4178. //
  4179. // cb_COMM47_CH1Use
  4180. //
  4181. this.cb_COMM47_CH1Use.AutoSize = true;
  4182. this.cb_COMM47_CH1Use.Font = new System.Drawing.Font("굴림", 10F);
  4183. this.cb_COMM47_CH1Use.Location = new System.Drawing.Point(643, 227);
  4184. this.cb_COMM47_CH1Use.Name = "cb_COMM47_CH1Use";
  4185. this.cb_COMM47_CH1Use.Size = new System.Drawing.Size(15, 14);
  4186. this.cb_COMM47_CH1Use.TabIndex = 270;
  4187. this.cb_COMM47_CH1Use.UseVisualStyleBackColor = true;
  4188. //
  4189. // cb_COMM27_CH1Use
  4190. //
  4191. this.cb_COMM27_CH1Use.AutoSize = true;
  4192. this.cb_COMM27_CH1Use.Font = new System.Drawing.Font("굴림", 10F);
  4193. this.cb_COMM27_CH1Use.Location = new System.Drawing.Point(382, 226);
  4194. this.cb_COMM27_CH1Use.Name = "cb_COMM27_CH1Use";
  4195. this.cb_COMM27_CH1Use.Size = new System.Drawing.Size(15, 14);
  4196. this.cb_COMM27_CH1Use.TabIndex = 271;
  4197. this.cb_COMM27_CH1Use.UseVisualStyleBackColor = true;
  4198. //
  4199. // cb_COMM21_CH2Use
  4200. //
  4201. this.cb_COMM21_CH2Use.AutoSize = true;
  4202. this.cb_COMM21_CH2Use.Font = new System.Drawing.Font("굴림", 10F);
  4203. this.cb_COMM21_CH2Use.Location = new System.Drawing.Point(415, 70);
  4204. this.cb_COMM21_CH2Use.Name = "cb_COMM21_CH2Use";
  4205. this.cb_COMM21_CH2Use.Size = new System.Drawing.Size(15, 14);
  4206. this.cb_COMM21_CH2Use.TabIndex = 245;
  4207. this.cb_COMM21_CH2Use.UseVisualStyleBackColor = true;
  4208. //
  4209. // cb_COMM46_CH2Use
  4210. //
  4211. this.cb_COMM46_CH2Use.AutoSize = true;
  4212. this.cb_COMM46_CH2Use.Font = new System.Drawing.Font("굴림", 10F);
  4213. this.cb_COMM46_CH2Use.Location = new System.Drawing.Point(676, 201);
  4214. this.cb_COMM46_CH2Use.Name = "cb_COMM46_CH2Use";
  4215. this.cb_COMM46_CH2Use.Size = new System.Drawing.Size(15, 14);
  4216. this.cb_COMM46_CH2Use.TabIndex = 244;
  4217. this.cb_COMM46_CH2Use.UseVisualStyleBackColor = true;
  4218. //
  4219. // cb_COMM26_CH2Use
  4220. //
  4221. this.cb_COMM26_CH2Use.AutoSize = true;
  4222. this.cb_COMM26_CH2Use.Font = new System.Drawing.Font("굴림", 10F);
  4223. this.cb_COMM26_CH2Use.Location = new System.Drawing.Point(415, 200);
  4224. this.cb_COMM26_CH2Use.Name = "cb_COMM26_CH2Use";
  4225. this.cb_COMM26_CH2Use.Size = new System.Drawing.Size(15, 14);
  4226. this.cb_COMM26_CH2Use.TabIndex = 243;
  4227. this.cb_COMM26_CH2Use.UseVisualStyleBackColor = true;
  4228. //
  4229. // lbl_COMM61
  4230. //
  4231. this.lbl_COMM61.AutoSize = true;
  4232. this.lbl_COMM61.Font = new System.Drawing.Font("굴림", 10F);
  4233. this.lbl_COMM61.Location = new System.Drawing.Point(808, 71);
  4234. this.lbl_COMM61.Name = "lbl_COMM61";
  4235. this.lbl_COMM61.Size = new System.Drawing.Size(70, 14);
  4236. this.lbl_COMM61.TabIndex = 254;
  4237. this.lbl_COMM61.Text = "중계반 61";
  4238. //
  4239. // lbl_COMM41
  4240. //
  4241. this.lbl_COMM41.AutoSize = true;
  4242. this.lbl_COMM41.Font = new System.Drawing.Font("굴림", 10F);
  4243. this.lbl_COMM41.Location = new System.Drawing.Point(542, 71);
  4244. this.lbl_COMM41.Name = "lbl_COMM41";
  4245. this.lbl_COMM41.Size = new System.Drawing.Size(70, 14);
  4246. this.lbl_COMM41.TabIndex = 255;
  4247. this.lbl_COMM41.Text = "중계반 41";
  4248. //
  4249. // lbl_COMM46
  4250. //
  4251. this.lbl_COMM46.AutoSize = true;
  4252. this.lbl_COMM46.Font = new System.Drawing.Font("굴림", 10F);
  4253. this.lbl_COMM46.Location = new System.Drawing.Point(542, 201);
  4254. this.lbl_COMM46.Name = "lbl_COMM46";
  4255. this.lbl_COMM46.Size = new System.Drawing.Size(70, 14);
  4256. this.lbl_COMM46.TabIndex = 252;
  4257. this.lbl_COMM46.Text = "중계반 46";
  4258. //
  4259. // lbl_COMM21
  4260. //
  4261. this.lbl_COMM21.AutoSize = true;
  4262. this.lbl_COMM21.Font = new System.Drawing.Font("굴림", 10F);
  4263. this.lbl_COMM21.Location = new System.Drawing.Point(286, 71);
  4264. this.lbl_COMM21.Name = "lbl_COMM21";
  4265. this.lbl_COMM21.Size = new System.Drawing.Size(70, 14);
  4266. this.lbl_COMM21.TabIndex = 253;
  4267. this.lbl_COMM21.Text = "중계반 21";
  4268. //
  4269. // lbl_COMM26
  4270. //
  4271. this.lbl_COMM26.AutoSize = true;
  4272. this.lbl_COMM26.Font = new System.Drawing.Font("굴림", 10F);
  4273. this.lbl_COMM26.Location = new System.Drawing.Point(286, 201);
  4274. this.lbl_COMM26.Name = "lbl_COMM26";
  4275. this.lbl_COMM26.Size = new System.Drawing.Size(70, 14);
  4276. this.lbl_COMM26.TabIndex = 256;
  4277. this.lbl_COMM26.Text = "중계반 26";
  4278. //
  4279. // label_InfoApplyComment
  4280. //
  4281. this.label_InfoApplyComment.AutoSize = true;
  4282. this.label_InfoApplyComment.Font = new System.Drawing.Font("굴림", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(129)));
  4283. this.label_InfoApplyComment.ForeColor = System.Drawing.Color.Red;
  4284. this.label_InfoApplyComment.Location = new System.Drawing.Point(579, 27);
  4285. this.label_InfoApplyComment.Name = "label_InfoApplyComment";
  4286. this.label_InfoApplyComment.Size = new System.Drawing.Size(281, 16);
  4287. this.label_InfoApplyComment.TabIndex = 153;
  4288. this.label_InfoApplyComment.Text = "적용하기를 누르면 복구 진행합니다";
  4289. this.label_InfoApplyComment.Visible = false;
  4290. //
  4291. // button1
  4292. //
  4293. this.button1.BackColor = System.Drawing.Color.LightGray;
  4294. this.button1.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("button1.BackgroundImage")));
  4295. this.button1.FlatAppearance.BorderSize = 0;
  4296. this.button1.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  4297. this.button1.Location = new System.Drawing.Point(22, 15);
  4298. this.button1.Name = "button1";
  4299. this.button1.Size = new System.Drawing.Size(117, 37);
  4300. this.button1.TabIndex = 152;
  4301. this.button1.UseVisualStyleBackColor = false;
  4302. //
  4303. // txtThisReceiverID
  4304. //
  4305. this.txtThisReceiverID.BackColor = System.Drawing.Color.Black;
  4306. this.txtThisReceiverID.Font = new System.Drawing.Font("굴림", 20F, System.Drawing.FontStyle.Bold);
  4307. this.txtThisReceiverID.ForeColor = System.Drawing.Color.White;
  4308. this.txtThisReceiverID.Location = new System.Drawing.Point(140, 15);
  4309. this.txtThisReceiverID.MaxLength = 2;
  4310. this.txtThisReceiverID.Name = "txtThisReceiverID";
  4311. this.txtThisReceiverID.ReadOnly = true;
  4312. this.txtThisReceiverID.Size = new System.Drawing.Size(39, 38);
  4313. this.txtThisReceiverID.TabIndex = 151;
  4314. this.txtThisReceiverID.Text = "01";
  4315. this.txtThisReceiverID.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
  4316. //
  4317. // btnBoardSave
  4318. //
  4319. this.btnBoardSave.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("btnBoardSave.BackgroundImage")));
  4320. this.btnBoardSave.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  4321. this.btnBoardSave.FlatAppearance.BorderSize = 0;
  4322. this.btnBoardSave.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  4323. this.btnBoardSave.Font = new System.Drawing.Font("굴림", 15.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(129)));
  4324. this.btnBoardSave.ForeColor = System.Drawing.Color.White;
  4325. this.btnBoardSave.Location = new System.Drawing.Point(878, 15);
  4326. this.btnBoardSave.Name = "btnBoardSave";
  4327. this.btnBoardSave.Size = new System.Drawing.Size(183, 40);
  4328. this.btnBoardSave.TabIndex = 134;
  4329. this.btnBoardSave.Text = "적용하기";
  4330. this.btnBoardSave.UseVisualStyleBackColor = true;
  4331. this.btnBoardSave.Click += new System.EventHandler(this.btnBoardSave_Click);
  4332. //
  4333. // tabPage_Repeater
  4334. //
  4335. this.tabPage_Repeater.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("tabPage_Repeater.BackgroundImage")));
  4336. this.tabPage_Repeater.Controls.Add(this.label_UI_CircuitCut);
  4337. this.tabPage_Repeater.Controls.Add(this.label_UI_CircuitCut_Color);
  4338. this.tabPage_Repeater.Controls.Add(this.label_UI_RepeaterCut);
  4339. this.tabPage_Repeater.Controls.Add(this.label_UI_RepeaterCut_Color);
  4340. this.tabPage_Repeater.Controls.Add(this.label_UI_Unuse);
  4341. this.tabPage_Repeater.Controls.Add(this.label_UI_Unuse_Color);
  4342. this.tabPage_Repeater.Controls.Add(this.label_UI_Use);
  4343. this.tabPage_Repeater.Controls.Add(this.label_UI_Comment);
  4344. this.tabPage_Repeater.Controls.Add(this.label_UI_Use_Color);
  4345. this.tabPage_Repeater.Controls.Add(this.label_Comment);
  4346. this.tabPage_Repeater.Controls.Add(this.label20);
  4347. this.tabPage_Repeater.Controls.Add(this.btnOK);
  4348. this.tabPage_Repeater.Controls.Add(this.btnRepeaterAllInfo);
  4349. this.tabPage_Repeater.Controls.Add(this.btnInputOpen);
  4350. this.tabPage_Repeater.Controls.Add(this.label18);
  4351. this.tabPage_Repeater.Controls.Add(this.txtLoopNo);
  4352. this.tabPage_Repeater.Controls.Add(this.txtBoardID);
  4353. this.tabPage_Repeater.Controls.Add(this.txtThisReceiverID2);
  4354. this.tabPage_Repeater.Controls.Add(this.groupRepeater);
  4355. this.tabPage_Repeater.Location = new System.Drawing.Point(4, 26);
  4356. this.tabPage_Repeater.Name = "tabPage_Repeater";
  4357. this.tabPage_Repeater.Padding = new System.Windows.Forms.Padding(3);
  4358. this.tabPage_Repeater.Size = new System.Drawing.Size(1072, 728);
  4359. this.tabPage_Repeater.TabIndex = 1;
  4360. this.tabPage_Repeater.Text = "중계기차단";
  4361. this.tabPage_Repeater.UseVisualStyleBackColor = true;
  4362. //
  4363. // label_UI_CircuitCut
  4364. //
  4365. this.label_UI_CircuitCut.AutoSize = true;
  4366. this.label_UI_CircuitCut.Font = new System.Drawing.Font("굴림", 9F);
  4367. this.label_UI_CircuitCut.Location = new System.Drawing.Point(981, 231);
  4368. this.label_UI_CircuitCut.Margin = new System.Windows.Forms.Padding(5, 0, 5, 0);
  4369. this.label_UI_CircuitCut.Name = "label_UI_CircuitCut";
  4370. this.label_UI_CircuitCut.Size = new System.Drawing.Size(53, 12);
  4371. this.label_UI_CircuitCut.TabIndex = 113;
  4372. this.label_UI_CircuitCut.Text = "회로차단";
  4373. //
  4374. // label_UI_CircuitCut_Color
  4375. //
  4376. this.label_UI_CircuitCut_Color.BackColor = System.Drawing.Color.Pink;
  4377. this.label_UI_CircuitCut_Color.Location = new System.Drawing.Point(961, 229);
  4378. this.label_UI_CircuitCut_Color.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4379. this.label_UI_CircuitCut_Color.Name = "label_UI_CircuitCut_Color";
  4380. this.label_UI_CircuitCut_Color.Size = new System.Drawing.Size(15, 17);
  4381. this.label_UI_CircuitCut_Color.TabIndex = 112;
  4382. //
  4383. // label_UI_RepeaterCut
  4384. //
  4385. this.label_UI_RepeaterCut.AutoSize = true;
  4386. this.label_UI_RepeaterCut.Font = new System.Drawing.Font("굴림", 9F);
  4387. this.label_UI_RepeaterCut.Location = new System.Drawing.Point(981, 210);
  4388. this.label_UI_RepeaterCut.Margin = new System.Windows.Forms.Padding(5, 0, 5, 0);
  4389. this.label_UI_RepeaterCut.Name = "label_UI_RepeaterCut";
  4390. this.label_UI_RepeaterCut.Size = new System.Drawing.Size(65, 12);
  4391. this.label_UI_RepeaterCut.TabIndex = 111;
  4392. this.label_UI_RepeaterCut.Text = "중계기차단";
  4393. //
  4394. // label_UI_RepeaterCut_Color
  4395. //
  4396. this.label_UI_RepeaterCut_Color.BackColor = System.Drawing.Color.Silver;
  4397. this.label_UI_RepeaterCut_Color.Location = new System.Drawing.Point(961, 208);
  4398. this.label_UI_RepeaterCut_Color.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4399. this.label_UI_RepeaterCut_Color.Name = "label_UI_RepeaterCut_Color";
  4400. this.label_UI_RepeaterCut_Color.Size = new System.Drawing.Size(15, 17);
  4401. this.label_UI_RepeaterCut_Color.TabIndex = 110;
  4402. //
  4403. // label_UI_Unuse
  4404. //
  4405. this.label_UI_Unuse.AutoSize = true;
  4406. this.label_UI_Unuse.Font = new System.Drawing.Font("굴림", 9F);
  4407. this.label_UI_Unuse.Location = new System.Drawing.Point(981, 189);
  4408. this.label_UI_Unuse.Margin = new System.Windows.Forms.Padding(5, 0, 5, 0);
  4409. this.label_UI_Unuse.Name = "label_UI_Unuse";
  4410. this.label_UI_Unuse.Size = new System.Drawing.Size(41, 12);
  4411. this.label_UI_Unuse.TabIndex = 109;
  4412. this.label_UI_Unuse.Text = "비사용";
  4413. //
  4414. // label_UI_Unuse_Color
  4415. //
  4416. this.label_UI_Unuse_Color.BackColor = System.Drawing.Color.White;
  4417. this.label_UI_Unuse_Color.Location = new System.Drawing.Point(961, 187);
  4418. this.label_UI_Unuse_Color.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4419. this.label_UI_Unuse_Color.Name = "label_UI_Unuse_Color";
  4420. this.label_UI_Unuse_Color.Size = new System.Drawing.Size(15, 17);
  4421. this.label_UI_Unuse_Color.TabIndex = 108;
  4422. //
  4423. // label_UI_Use
  4424. //
  4425. this.label_UI_Use.AutoSize = true;
  4426. this.label_UI_Use.Font = new System.Drawing.Font("굴림", 9F);
  4427. this.label_UI_Use.Location = new System.Drawing.Point(981, 169);
  4428. this.label_UI_Use.Margin = new System.Windows.Forms.Padding(5, 0, 5, 0);
  4429. this.label_UI_Use.Name = "label_UI_Use";
  4430. this.label_UI_Use.Size = new System.Drawing.Size(29, 12);
  4431. this.label_UI_Use.TabIndex = 107;
  4432. this.label_UI_Use.Text = "사용";
  4433. //
  4434. // label_UI_Comment
  4435. //
  4436. this.label_UI_Comment.AutoSize = true;
  4437. this.label_UI_Comment.Font = new System.Drawing.Font("굴림", 9F);
  4438. this.label_UI_Comment.Location = new System.Drawing.Point(949, 146);
  4439. this.label_UI_Comment.Margin = new System.Windows.Forms.Padding(5, 0, 5, 0);
  4440. this.label_UI_Comment.Name = "label_UI_Comment";
  4441. this.label_UI_Comment.Size = new System.Drawing.Size(73, 12);
  4442. this.label_UI_Comment.TabIndex = 106;
  4443. this.label_UI_Comment.Text = "중계기범례 :";
  4444. //
  4445. // label_UI_Use_Color
  4446. //
  4447. this.label_UI_Use_Color.BackColor = System.Drawing.Color.Aqua;
  4448. this.label_UI_Use_Color.Location = new System.Drawing.Point(961, 167);
  4449. this.label_UI_Use_Color.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4450. this.label_UI_Use_Color.Name = "label_UI_Use_Color";
  4451. this.label_UI_Use_Color.Size = new System.Drawing.Size(15, 17);
  4452. this.label_UI_Use_Color.TabIndex = 105;
  4453. //
  4454. // label_Comment
  4455. //
  4456. this.label_Comment.AutoSize = true;
  4457. this.label_Comment.ForeColor = System.Drawing.Color.LightCoral;
  4458. this.label_Comment.Location = new System.Drawing.Point(120, 35);
  4459. this.label_Comment.Name = "label_Comment";
  4460. this.label_Comment.Size = new System.Drawing.Size(40, 16);
  4461. this.label_Comment.TabIndex = 74;
  4462. this.label_Comment.Text = "상태";
  4463. this.label_Comment.Visible = false;
  4464. //
  4465. // label20
  4466. //
  4467. this.label20.AutoSize = true;
  4468. this.label20.ForeColor = System.Drawing.Color.LightCoral;
  4469. this.label20.Location = new System.Drawing.Point(26, 16);
  4470. this.label20.Name = "label20";
  4471. this.label20.Size = new System.Drawing.Size(23, 16);
  4472. this.label20.TabIndex = 73;
  4473. this.label20.Text = " ";
  4474. this.label20.Visible = false;
  4475. //
  4476. // btnOK
  4477. //
  4478. this.btnOK.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("btnOK.BackgroundImage")));
  4479. this.btnOK.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  4480. this.btnOK.FlatAppearance.BorderSize = 0;
  4481. this.btnOK.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  4482. this.btnOK.Font = new System.Drawing.Font("돋움", 12F, System.Drawing.FontStyle.Bold);
  4483. this.btnOK.ForeColor = System.Drawing.Color.White;
  4484. this.btnOK.Location = new System.Drawing.Point(331, 63);
  4485. this.btnOK.Margin = new System.Windows.Forms.Padding(4);
  4486. this.btnOK.Name = "btnOK";
  4487. this.btnOK.Size = new System.Drawing.Size(83, 33);
  4488. this.btnOK.TabIndex = 71;
  4489. this.btnOK.TabStop = false;
  4490. this.btnOK.Text = "확인";
  4491. this.btnOK.UseVisualStyleBackColor = true;
  4492. this.btnOK.Click += new System.EventHandler(this.btnOK_Click);
  4493. //
  4494. // btnRepeaterAllInfo
  4495. //
  4496. this.btnRepeaterAllInfo.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("btnRepeaterAllInfo.BackgroundImage")));
  4497. this.btnRepeaterAllInfo.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  4498. this.btnRepeaterAllInfo.FlatAppearance.BorderSize = 0;
  4499. this.btnRepeaterAllInfo.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  4500. this.btnRepeaterAllInfo.Font = new System.Drawing.Font("돋움", 12F, System.Drawing.FontStyle.Bold);
  4501. this.btnRepeaterAllInfo.ForeColor = System.Drawing.Color.White;
  4502. this.btnRepeaterAllInfo.Location = new System.Drawing.Point(782, 63);
  4503. this.btnRepeaterAllInfo.Margin = new System.Windows.Forms.Padding(4);
  4504. this.btnRepeaterAllInfo.Name = "btnRepeaterAllInfo";
  4505. this.btnRepeaterAllInfo.Size = new System.Drawing.Size(159, 33);
  4506. this.btnRepeaterAllInfo.TabIndex = 72;
  4507. this.btnRepeaterAllInfo.TabStop = false;
  4508. this.btnRepeaterAllInfo.Text = "읽기명령";
  4509. this.btnRepeaterAllInfo.UseVisualStyleBackColor = true;
  4510. this.btnRepeaterAllInfo.Click += new System.EventHandler(this.btnRepeaterAllInfo_Click);
  4511. //
  4512. // btnInputOpen
  4513. //
  4514. this.btnInputOpen.BackColor = System.Drawing.Color.LightGray;
  4515. this.btnInputOpen.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("btnInputOpen.BackgroundImage")));
  4516. this.btnInputOpen.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  4517. this.btnInputOpen.FlatAppearance.BorderSize = 0;
  4518. this.btnInputOpen.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  4519. this.btnInputOpen.Font = new System.Drawing.Font("돋움", 12F, System.Drawing.FontStyle.Bold);
  4520. this.btnInputOpen.ForeColor = System.Drawing.Color.White;
  4521. this.btnInputOpen.Location = new System.Drawing.Point(119, 63);
  4522. this.btnInputOpen.Name = "btnInputOpen";
  4523. this.btnInputOpen.Size = new System.Drawing.Size(104, 33);
  4524. this.btnInputOpen.TabIndex = 70;
  4525. this.btnInputOpen.TabStop = false;
  4526. this.btnInputOpen.Text = "계통검색";
  4527. this.btnInputOpen.UseVisualStyleBackColor = false;
  4528. this.btnInputOpen.Click += new System.EventHandler(this.btnInputOpen_Click);
  4529. //
  4530. // label18
  4531. //
  4532. this.label18.AutoSize = true;
  4533. this.label18.Font = new System.Drawing.Font("돋움", 10F, System.Drawing.FontStyle.Bold);
  4534. this.label18.Location = new System.Drawing.Point(433, 75);
  4535. this.label18.Margin = new System.Windows.Forms.Padding(5, 0, 5, 0);
  4536. this.label18.Name = "label18";
  4537. this.label18.Size = new System.Drawing.Size(244, 14);
  4538. this.label18.TabIndex = 69;
  4539. this.label18.Text = "01:수신기-01:통신보드-1:LOOP";
  4540. //
  4541. // txtLoopNo
  4542. //
  4543. this.txtLoopNo.Font = new System.Drawing.Font("굴림", 15.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(129)));
  4544. this.txtLoopNo.Location = new System.Drawing.Point(301, 63);
  4545. this.txtLoopNo.MaxLength = 1;
  4546. this.txtLoopNo.Name = "txtLoopNo";
  4547. this.txtLoopNo.Size = new System.Drawing.Size(30, 32);
  4548. this.txtLoopNo.TabIndex = 68;
  4549. this.txtLoopNo.Text = "0";
  4550. this.txtLoopNo.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
  4551. //
  4552. // txtBoardID
  4553. //
  4554. this.txtBoardID.Font = new System.Drawing.Font("굴림", 15.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(129)));
  4555. this.txtBoardID.Location = new System.Drawing.Point(262, 63);
  4556. this.txtBoardID.MaxLength = 2;
  4557. this.txtBoardID.Name = "txtBoardID";
  4558. this.txtBoardID.Size = new System.Drawing.Size(39, 32);
  4559. this.txtBoardID.TabIndex = 67;
  4560. this.txtBoardID.Text = "01";
  4561. this.txtBoardID.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
  4562. //
  4563. // txtThisReceiverID2
  4564. //
  4565. this.txtThisReceiverID2.Font = new System.Drawing.Font("굴림", 15.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(129)));
  4566. this.txtThisReceiverID2.Location = new System.Drawing.Point(223, 63);
  4567. this.txtThisReceiverID2.MaxLength = 2;
  4568. this.txtThisReceiverID2.Name = "txtThisReceiverID2";
  4569. this.txtThisReceiverID2.ReadOnly = true;
  4570. this.txtThisReceiverID2.Size = new System.Drawing.Size(39, 32);
  4571. this.txtThisReceiverID2.TabIndex = 66;
  4572. this.txtThisReceiverID2.Text = "01";
  4573. this.txtThisReceiverID2.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
  4574. //
  4575. // groupRepeater
  4576. //
  4577. this.groupRepeater.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(185)))), ((int)(((byte)(211)))), ((int)(((byte)(228)))));
  4578. this.groupRepeater.Controls.Add(this.label21);
  4579. this.groupRepeater.Controls.Add(this.btnOutWrite);
  4580. this.groupRepeater.Controls.Add(this.btnInWrite);
  4581. this.groupRepeater.Controls.Add(this.panelRepeaterSize);
  4582. this.groupRepeater.Controls.Add(this.dataGridView2);
  4583. this.groupRepeater.Controls.Add(this.label4);
  4584. this.groupRepeater.Controls.Add(this.label22);
  4585. this.groupRepeater.Controls.Add(this.chkDeviceCutFlag);
  4586. this.groupRepeater.Controls.Add(this.txtDeviceMemo);
  4587. this.groupRepeater.Controls.Add(this.txtPositionName);
  4588. this.groupRepeater.Controls.Add(this.txtDeviceTypeName);
  4589. this.groupRepeater.Controls.Add(this.label70);
  4590. this.groupRepeater.Controls.Add(this.panel2);
  4591. this.groupRepeater.Controls.Add(this.label74);
  4592. this.groupRepeater.Controls.Add(this.label73);
  4593. this.groupRepeater.Location = new System.Drawing.Point(123, 115);
  4594. this.groupRepeater.Name = "groupRepeater";
  4595. this.groupRepeater.Size = new System.Drawing.Size(818, 478);
  4596. this.groupRepeater.TabIndex = 45;
  4597. this.groupRepeater.TabStop = false;
  4598. this.groupRepeater.Text = "중계기(1~127)";
  4599. //
  4600. // label21
  4601. //
  4602. this.label21.AutoSize = true;
  4603. this.label21.Font = new System.Drawing.Font("굴림", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129)));
  4604. this.label21.Location = new System.Drawing.Point(88, 410);
  4605. this.label21.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4606. this.label21.Name = "label21";
  4607. this.label21.Size = new System.Drawing.Size(167, 15);
  4608. this.label21.TabIndex = 74;
  4609. this.label21.Text = "C:연감지기, D:열감지기";
  4610. //
  4611. // btnOutWrite
  4612. //
  4613. this.btnOutWrite.BackColor = System.Drawing.Color.MintCream;
  4614. this.btnOutWrite.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  4615. this.btnOutWrite.Location = new System.Drawing.Point(704, 333);
  4616. this.btnOutWrite.Name = "btnOutWrite";
  4617. this.btnOutWrite.Size = new System.Drawing.Size(50, 49);
  4618. this.btnOutWrite.TabIndex = 73;
  4619. this.btnOutWrite.Text = "쓰기";
  4620. this.btnOutWrite.UseVisualStyleBackColor = false;
  4621. this.btnOutWrite.Click += new System.EventHandler(this.btnOutWrite_Click);
  4622. //
  4623. // btnInWrite
  4624. //
  4625. this.btnInWrite.BackColor = System.Drawing.Color.Gold;
  4626. this.btnInWrite.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  4627. this.btnInWrite.Location = new System.Drawing.Point(768, 296);
  4628. this.btnInWrite.Name = "btnInWrite";
  4629. this.btnInWrite.Size = new System.Drawing.Size(50, 25);
  4630. this.btnInWrite.TabIndex = 72;
  4631. this.btnInWrite.Text = "쓰기";
  4632. this.btnInWrite.UseVisualStyleBackColor = false;
  4633. this.btnInWrite.Visible = false;
  4634. this.btnInWrite.Click += new System.EventHandler(this.btnInWrite_Click);
  4635. //
  4636. // panelRepeaterSize
  4637. //
  4638. this.panelRepeaterSize.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  4639. this.panelRepeaterSize.Controls.Add(this.dataGridView1);
  4640. this.panelRepeaterSize.Location = new System.Drawing.Point(51, 31);
  4641. this.panelRepeaterSize.Name = "panelRepeaterSize";
  4642. this.panelRepeaterSize.Size = new System.Drawing.Size(703, 303);
  4643. this.panelRepeaterSize.TabIndex = 71;
  4644. //
  4645. // dataGridView1
  4646. //
  4647. this.dataGridView1.AllowUserToAddRows = false;
  4648. this.dataGridView1.AllowUserToDeleteRows = false;
  4649. this.dataGridView1.AllowUserToResizeColumns = false;
  4650. this.dataGridView1.AllowUserToResizeRows = false;
  4651. this.dataGridView1.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
  4652. this.dataGridView1.ColumnHeadersVisible = false;
  4653. this.dataGridView1.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
  4654. this.Column1,
  4655. this.Column2,
  4656. this.Column3,
  4657. this.Column4,
  4658. this.Column5,
  4659. this.Column6,
  4660. this.Column7,
  4661. this.Column8,
  4662. this.Column9,
  4663. this.Column10});
  4664. this.dataGridView1.Location = new System.Drawing.Point(-1, -1);
  4665. this.dataGridView1.Name = "dataGridView1";
  4666. this.dataGridView1.RowHeadersVisible = false;
  4667. this.dataGridView1.RowHeadersWidthSizeMode = System.Windows.Forms.DataGridViewRowHeadersWidthSizeMode.DisableResizing;
  4668. this.dataGridView1.RowTemplate.Height = 23;
  4669. this.dataGridView1.ScrollBars = System.Windows.Forms.ScrollBars.None;
  4670. this.dataGridView1.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.CellSelect;
  4671. this.dataGridView1.Size = new System.Drawing.Size(703, 302);
  4672. this.dataGridView1.TabIndex = 1;
  4673. this.dataGridView1.CellContentClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.dataGridView1_CellContentClick);
  4674. this.dataGridView1.SelectionChanged += new System.EventHandler(this.dataGridView1_SelectionChanged);
  4675. //
  4676. // Column1
  4677. //
  4678. dataGridViewCellStyle1.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
  4679. dataGridViewCellStyle1.NullValue = "1";
  4680. this.Column1.DefaultCellStyle = dataGridViewCellStyle1;
  4681. this.Column1.HeaderText = "Column1";
  4682. this.Column1.Name = "Column1";
  4683. this.Column1.Resizable = System.Windows.Forms.DataGridViewTriState.False;
  4684. this.Column1.Width = 70;
  4685. //
  4686. // Column2
  4687. //
  4688. dataGridViewCellStyle2.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
  4689. dataGridViewCellStyle2.NullValue = "2";
  4690. this.Column2.DefaultCellStyle = dataGridViewCellStyle2;
  4691. this.Column2.HeaderText = "Column2";
  4692. this.Column2.Name = "Column2";
  4693. this.Column2.Resizable = System.Windows.Forms.DataGridViewTriState.False;
  4694. this.Column2.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
  4695. this.Column2.Width = 70;
  4696. //
  4697. // Column3
  4698. //
  4699. dataGridViewCellStyle3.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
  4700. dataGridViewCellStyle3.NullValue = "3";
  4701. this.Column3.DefaultCellStyle = dataGridViewCellStyle3;
  4702. this.Column3.HeaderText = "Column3";
  4703. this.Column3.Name = "Column3";
  4704. this.Column3.Resizable = System.Windows.Forms.DataGridViewTriState.False;
  4705. this.Column3.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
  4706. this.Column3.Width = 70;
  4707. //
  4708. // Column4
  4709. //
  4710. dataGridViewCellStyle4.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
  4711. dataGridViewCellStyle4.NullValue = "4";
  4712. this.Column4.DefaultCellStyle = dataGridViewCellStyle4;
  4713. this.Column4.HeaderText = "Column4";
  4714. this.Column4.Name = "Column4";
  4715. this.Column4.ReadOnly = true;
  4716. this.Column4.Resizable = System.Windows.Forms.DataGridViewTriState.False;
  4717. this.Column4.Width = 70;
  4718. //
  4719. // Column5
  4720. //
  4721. this.Column5.HeaderText = "Column5";
  4722. this.Column5.Name = "Column5";
  4723. this.Column5.ReadOnly = true;
  4724. this.Column5.Resizable = System.Windows.Forms.DataGridViewTriState.False;
  4725. this.Column5.Width = 70;
  4726. //
  4727. // Column6
  4728. //
  4729. this.Column6.HeaderText = "Column6";
  4730. this.Column6.Name = "Column6";
  4731. this.Column6.ReadOnly = true;
  4732. this.Column6.Resizable = System.Windows.Forms.DataGridViewTriState.False;
  4733. this.Column6.Width = 70;
  4734. //
  4735. // Column7
  4736. //
  4737. this.Column7.HeaderText = "Column7";
  4738. this.Column7.Name = "Column7";
  4739. this.Column7.ReadOnly = true;
  4740. this.Column7.Resizable = System.Windows.Forms.DataGridViewTriState.False;
  4741. this.Column7.Width = 70;
  4742. //
  4743. // Column8
  4744. //
  4745. this.Column8.HeaderText = "Column8";
  4746. this.Column8.Name = "Column8";
  4747. this.Column8.ReadOnly = true;
  4748. this.Column8.Resizable = System.Windows.Forms.DataGridViewTriState.False;
  4749. this.Column8.Width = 70;
  4750. //
  4751. // Column9
  4752. //
  4753. this.Column9.HeaderText = "Column9";
  4754. this.Column9.Name = "Column9";
  4755. this.Column9.ReadOnly = true;
  4756. this.Column9.Resizable = System.Windows.Forms.DataGridViewTriState.False;
  4757. this.Column9.Width = 70;
  4758. //
  4759. // Column10
  4760. //
  4761. this.Column10.HeaderText = "Column10";
  4762. this.Column10.Name = "Column10";
  4763. this.Column10.ReadOnly = true;
  4764. this.Column10.Resizable = System.Windows.Forms.DataGridViewTriState.False;
  4765. this.Column10.Width = 70;
  4766. //
  4767. // dataGridView2
  4768. //
  4769. this.dataGridView2.AllowUserToAddRows = false;
  4770. this.dataGridView2.AllowUserToDeleteRows = false;
  4771. this.dataGridView2.AllowUserToResizeColumns = false;
  4772. this.dataGridView2.AllowUserToResizeRows = false;
  4773. this.dataGridView2.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
  4774. this.dataGridView2.ColumnHeadersVisible = false;
  4775. this.dataGridView2.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
  4776. this.Column11,
  4777. this.Column12,
  4778. this.Column13,
  4779. this.Column14});
  4780. this.dataGridView2.ImeMode = System.Windows.Forms.ImeMode.Alpha;
  4781. this.dataGridView2.Location = new System.Drawing.Point(340, 333);
  4782. this.dataGridView2.Name = "dataGridView2";
  4783. this.dataGridView2.RowHeadersVisible = false;
  4784. this.dataGridView2.RowHeadersWidthSizeMode = System.Windows.Forms.DataGridViewRowHeadersWidthSizeMode.DisableResizing;
  4785. this.dataGridView2.RowTemplate.Height = 23;
  4786. this.dataGridView2.ScrollBars = System.Windows.Forms.ScrollBars.None;
  4787. this.dataGridView2.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.CellSelect;
  4788. this.dataGridView2.Size = new System.Drawing.Size(364, 49);
  4789. this.dataGridView2.TabIndex = 48;
  4790. this.dataGridView2.SelectionChanged += new System.EventHandler(this.dataGridView2_SelectionChanged);
  4791. //
  4792. // Column11
  4793. //
  4794. this.Column11.HeaderText = "Column11";
  4795. this.Column11.MaxInputLength = 1;
  4796. this.Column11.Name = "Column11";
  4797. this.Column11.Resizable = System.Windows.Forms.DataGridViewTriState.False;
  4798. //
  4799. // Column12
  4800. //
  4801. this.Column12.HeaderText = "Column12";
  4802. this.Column12.MaxInputLength = 1;
  4803. this.Column12.Name = "Column12";
  4804. this.Column12.Resizable = System.Windows.Forms.DataGridViewTriState.False;
  4805. //
  4806. // Column13
  4807. //
  4808. this.Column13.HeaderText = "Column13";
  4809. this.Column13.MaxInputLength = 1;
  4810. this.Column13.Name = "Column13";
  4811. this.Column13.Resizable = System.Windows.Forms.DataGridViewTriState.False;
  4812. //
  4813. // Column14
  4814. //
  4815. this.Column14.HeaderText = "Column14";
  4816. this.Column14.MaxInputLength = 1;
  4817. this.Column14.Name = "Column14";
  4818. this.Column14.Resizable = System.Windows.Forms.DataGridViewTriState.False;
  4819. //
  4820. // label4
  4821. //
  4822. this.label4.BackColor = System.Drawing.Color.WhiteSmoke;
  4823. this.label4.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  4824. this.label4.Location = new System.Drawing.Point(255, 409);
  4825. this.label4.Name = "label4";
  4826. this.label4.Size = new System.Drawing.Size(103, 26);
  4827. this.label4.TabIndex = 69;
  4828. this.label4.Text = "회로설명";
  4829. this.label4.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  4830. //
  4831. // label22
  4832. //
  4833. this.label22.BackColor = System.Drawing.Color.WhiteSmoke;
  4834. this.label22.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  4835. this.label22.Font = new System.Drawing.Font("굴림", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129)));
  4836. this.label22.Location = new System.Drawing.Point(255, 384);
  4837. this.label22.Name = "label22";
  4838. this.label22.Size = new System.Drawing.Size(103, 26);
  4839. this.label22.TabIndex = 61;
  4840. this.label22.Text = "연동내용/위치";
  4841. this.label22.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  4842. //
  4843. // chkDeviceCutFlag
  4844. //
  4845. this.chkDeviceCutFlag.Appearance = System.Windows.Forms.Appearance.Button;
  4846. this.chkDeviceCutFlag.AutoCheck = false;
  4847. this.chkDeviceCutFlag.BackColor = System.Drawing.Color.White;
  4848. this.chkDeviceCutFlag.FlatAppearance.CheckedBackColor = System.Drawing.Color.Tomato;
  4849. this.chkDeviceCutFlag.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  4850. this.chkDeviceCutFlag.Location = new System.Drawing.Point(658, 409);
  4851. this.chkDeviceCutFlag.Name = "chkDeviceCutFlag";
  4852. this.chkDeviceCutFlag.Size = new System.Drawing.Size(96, 26);
  4853. this.chkDeviceCutFlag.TabIndex = 63;
  4854. this.chkDeviceCutFlag.Text = "회로차단";
  4855. this.chkDeviceCutFlag.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  4856. this.chkDeviceCutFlag.UseVisualStyleBackColor = false;
  4857. this.chkDeviceCutFlag.Click += new System.EventHandler(this.chkDeviceCutFlag_Click);
  4858. //
  4859. // txtDeviceMemo
  4860. //
  4861. this.txtDeviceMemo.Location = new System.Drawing.Point(357, 409);
  4862. this.txtDeviceMemo.Name = "txtDeviceMemo";
  4863. this.txtDeviceMemo.ReadOnly = true;
  4864. this.txtDeviceMemo.Size = new System.Drawing.Size(301, 26);
  4865. this.txtDeviceMemo.TabIndex = 70;
  4866. //
  4867. // txtPositionName
  4868. //
  4869. this.txtPositionName.Location = new System.Drawing.Point(539, 384);
  4870. this.txtPositionName.Name = "txtPositionName";
  4871. this.txtPositionName.ReadOnly = true;
  4872. this.txtPositionName.Size = new System.Drawing.Size(215, 26);
  4873. this.txtPositionName.TabIndex = 68;
  4874. //
  4875. // txtDeviceTypeName
  4876. //
  4877. this.txtDeviceTypeName.Location = new System.Drawing.Point(357, 384);
  4878. this.txtDeviceTypeName.Name = "txtDeviceTypeName";
  4879. this.txtDeviceTypeName.ReadOnly = true;
  4880. this.txtDeviceTypeName.Size = new System.Drawing.Size(183, 26);
  4881. this.txtDeviceTypeName.TabIndex = 62;
  4882. //
  4883. // label70
  4884. //
  4885. this.label70.AutoSize = true;
  4886. this.label70.Font = new System.Drawing.Font("굴림", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129)));
  4887. this.label70.Location = new System.Drawing.Point(47, 386);
  4888. this.label70.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4889. this.label70.Name = "label70";
  4890. this.label70.Size = new System.Drawing.Size(193, 15);
  4891. this.label70.TabIndex = 54;
  4892. this.label70.Text = "타입) A:2*2회로, B:4*4회로";
  4893. //
  4894. // panel2
  4895. //
  4896. this.panel2.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  4897. this.panel2.Controls.Add(this.chkRepeaterCut);
  4898. this.panel2.Controls.Add(this.lblRepeaterName);
  4899. this.panel2.Controls.Add(this.lblRepeaterID);
  4900. this.panel2.Location = new System.Drawing.Point(51, 333);
  4901. this.panel2.Name = "panel2";
  4902. this.panel2.Size = new System.Drawing.Size(205, 49);
  4903. this.panel2.TabIndex = 53;
  4904. //
  4905. // chkRepeaterCut
  4906. //
  4907. this.chkRepeaterCut.Appearance = System.Windows.Forms.Appearance.Button;
  4908. this.chkRepeaterCut.AutoCheck = false;
  4909. this.chkRepeaterCut.Checked = true;
  4910. this.chkRepeaterCut.CheckState = System.Windows.Forms.CheckState.Checked;
  4911. this.chkRepeaterCut.FlatAppearance.CheckedBackColor = System.Drawing.Color.Red;
  4912. this.chkRepeaterCut.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  4913. this.chkRepeaterCut.Location = new System.Drawing.Point(109, 9);
  4914. this.chkRepeaterCut.Name = "chkRepeaterCut";
  4915. this.chkRepeaterCut.Size = new System.Drawing.Size(75, 29);
  4916. this.chkRepeaterCut.TabIndex = 56;
  4917. this.chkRepeaterCut.Text = "차 단";
  4918. this.chkRepeaterCut.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  4919. this.chkRepeaterCut.UseVisualStyleBackColor = true;
  4920. this.chkRepeaterCut.Click += new System.EventHandler(this.chkRepeaterCut_Click);
  4921. //
  4922. // lblRepeaterName
  4923. //
  4924. this.lblRepeaterName.AutoSize = true;
  4925. this.lblRepeaterName.Font = new System.Drawing.Font("굴림", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129)));
  4926. this.lblRepeaterName.Location = new System.Drawing.Point(46, 15);
  4927. this.lblRepeaterName.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  4928. this.lblRepeaterName.Name = "lblRepeaterName";
  4929. this.lblRepeaterName.Size = new System.Drawing.Size(56, 16);
  4930. this.lblRepeaterName.TabIndex = 55;
  4931. this.lblRepeaterName.Text = "아이디";
  4932. //
  4933. // lblRepeaterID
  4934. //
  4935. this.lblRepeaterID.AutoEllipsis = true;
  4936. this.lblRepeaterID.AutoSize = true;
  4937. this.lblRepeaterID.Font = new System.Drawing.Font("굴림", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(129)));
  4938. this.lblRepeaterID.Location = new System.Drawing.Point(13, 15);
  4939. this.lblRepeaterID.Name = "lblRepeaterID";
  4940. this.lblRepeaterID.Size = new System.Drawing.Size(35, 16);
  4941. this.lblRepeaterID.TabIndex = 49;
  4942. this.lblRepeaterID.Text = "001";
  4943. this.lblRepeaterID.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  4944. //
  4945. // label74
  4946. //
  4947. this.label74.BackColor = System.Drawing.Color.MintCream;
  4948. this.label74.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  4949. this.label74.Location = new System.Drawing.Point(255, 357);
  4950. this.label74.Name = "label74";
  4951. this.label74.Size = new System.Drawing.Size(86, 25);
  4952. this.label74.TabIndex = 51;
  4953. this.label74.Text = "출력회로";
  4954. this.label74.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  4955. //
  4956. // label73
  4957. //
  4958. this.label73.BackColor = System.Drawing.Color.Gold;
  4959. this.label73.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  4960. this.label73.Location = new System.Drawing.Point(255, 333);
  4961. this.label73.Name = "label73";
  4962. this.label73.Size = new System.Drawing.Size(86, 25);
  4963. this.label73.TabIndex = 50;
  4964. this.label73.Text = "입력회로";
  4965. this.label73.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  4966. //
  4967. // ImgLstBoardUseFlag
  4968. //
  4969. this.ImgLstBoardUseFlag.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("ImgLstBoardUseFlag.ImageStream")));
  4970. this.ImgLstBoardUseFlag.TransparentColor = System.Drawing.Color.Transparent;
  4971. this.ImgLstBoardUseFlag.Images.SetKeyName(0, "중계반_사용.gif");
  4972. this.ImgLstBoardUseFlag.Images.SetKeyName(1, "중계반_비사용0.gif");
  4973. //
  4974. // panel_Menu
  4975. //
  4976. this.panel_Menu.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(79)))), ((int)(((byte)(79)))), ((int)(((byte)(79)))));
  4977. this.panel_Menu.Controls.Add(this.button_Menu_RepeaterCut);
  4978. this.panel_Menu.Controls.Add(this.button_LoopCut);
  4979. this.panel_Menu.Location = new System.Drawing.Point(0, 36);
  4980. this.panel_Menu.Margin = new System.Windows.Forms.Padding(0);
  4981. this.panel_Menu.Name = "panel_Menu";
  4982. this.panel_Menu.Size = new System.Drawing.Size(1080, 54);
  4983. this.panel_Menu.TabIndex = 169;
  4984. //
  4985. // button_Menu_RepeaterCut
  4986. //
  4987. this.button_Menu_RepeaterCut.BackgroundImage = global::FPER.Properties.Resources.탭메뉴버튼_회색_100_30;
  4988. this.button_Menu_RepeaterCut.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  4989. this.button_Menu_RepeaterCut.FlatAppearance.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
  4990. this.button_Menu_RepeaterCut.FlatAppearance.BorderSize = 0;
  4991. this.button_Menu_RepeaterCut.FlatAppearance.MouseDownBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
  4992. this.button_Menu_RepeaterCut.FlatAppearance.MouseOverBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
  4993. this.button_Menu_RepeaterCut.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  4994. this.button_Menu_RepeaterCut.Font = new System.Drawing.Font("돋움", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(129)));
  4995. this.button_Menu_RepeaterCut.ForeColor = System.Drawing.Color.White;
  4996. this.button_Menu_RepeaterCut.Location = new System.Drawing.Point(590, 11);
  4997. this.button_Menu_RepeaterCut.Name = "button_Menu_RepeaterCut";
  4998. this.button_Menu_RepeaterCut.Size = new System.Drawing.Size(120, 31);
  4999. this.button_Menu_RepeaterCut.TabIndex = 0;
  5000. this.button_Menu_RepeaterCut.TabStop = false;
  5001. this.button_Menu_RepeaterCut.Text = "중계기차단";
  5002. this.button_Menu_RepeaterCut.UseVisualStyleBackColor = true;
  5003. this.button_Menu_RepeaterCut.Click += new System.EventHandler(this.button_Menu_RepeaterCut_Click);
  5004. //
  5005. // button_LoopCut
  5006. //
  5007. this.button_LoopCut.BackgroundImage = global::FPER.Properties.Resources.탭메뉴버튼_회색_100_30;
  5008. this.button_LoopCut.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
  5009. this.button_LoopCut.FlatAppearance.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
  5010. this.button_LoopCut.FlatAppearance.BorderSize = 0;
  5011. this.button_LoopCut.FlatAppearance.MouseDownBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
  5012. this.button_LoopCut.FlatAppearance.MouseOverBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
  5013. this.button_LoopCut.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  5014. this.button_LoopCut.Font = new System.Drawing.Font("돋움", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(129)));
  5015. this.button_LoopCut.ForeColor = System.Drawing.Color.White;
  5016. this.button_LoopCut.Location = new System.Drawing.Point(400, 11);
  5017. this.button_LoopCut.Name = "button_LoopCut";
  5018. this.button_LoopCut.Size = new System.Drawing.Size(120, 31);
  5019. this.button_LoopCut.TabIndex = 0;
  5020. this.button_LoopCut.TabStop = false;
  5021. this.button_LoopCut.Text = "계통차단";
  5022. this.button_LoopCut.UseVisualStyleBackColor = true;
  5023. this.button_LoopCut.Click += new System.EventHandler(this.button_LoopCut_Click);
  5024. //
  5025. // imageList_BoardUseFlag
  5026. //
  5027. this.imageList_BoardUseFlag.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList_BoardUseFlag.ImageStream")));
  5028. this.imageList_BoardUseFlag.TransparentColor = System.Drawing.Color.Transparent;
  5029. this.imageList_BoardUseFlag.Images.SetKeyName(0, "중계반_배경_짙은회색_오른쪽_103_177.JPG");
  5030. this.imageList_BoardUseFlag.Images.SetKeyName(1, "중계반_배경_옅은회색_오른쪽_103_177.JPG");
  5031. this.imageList_BoardUseFlag.Images.SetKeyName(2, "중계반_배경_짙음옅음_오른쪽_103_177.JPG");
  5032. //
  5033. // frmControlMode_BigReceiver
  5034. //
  5035. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None;
  5036. this.BackColor = System.Drawing.Color.WhiteSmoke;
  5037. this.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("$this.BackgroundImage")));
  5038. this.ClientSize = new System.Drawing.Size(1080, 824);
  5039. this.Controls.Add(this.panel_Menu);
  5040. this.Controls.Add(this.tabControl_Main);
  5041. this.Controls.Add(this.panel1);
  5042. this.Font = new System.Drawing.Font("굴림", 12F);
  5043. this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
  5044. this.Margin = new System.Windows.Forms.Padding(4);
  5045. this.MaximizeBox = false;
  5046. this.MinimizeBox = false;
  5047. this.Name = "frmControlMode_BigReceiver";
  5048. this.ShowIcon = false;
  5049. this.ShowInTaskbar = false;
  5050. this.StartPosition = System.Windows.Forms.FormStartPosition.Manual;
  5051. this.Text = "제어";
  5052. this.Activated += new System.EventHandler(this.frmControlMode_Activated);
  5053. this.Load += new System.EventHandler(this.frmControlMode_Load);
  5054. this.Disposed += new System.EventHandler(this.frmControlMode_Disposed);
  5055. this.panel1.ResumeLayout(false);
  5056. this.panel1.PerformLayout();
  5057. this.tabControl_Main.ResumeLayout(false);
  5058. this.tabPage_Board.ResumeLayout(false);
  5059. this.tabPage_Board.PerformLayout();
  5060. this.groupBox2.ResumeLayout(false);
  5061. this.groupBox2.PerformLayout();
  5062. this.tabPage_Repeater.ResumeLayout(false);
  5063. this.tabPage_Repeater.PerformLayout();
  5064. this.groupRepeater.ResumeLayout(false);
  5065. this.groupRepeater.PerformLayout();
  5066. this.panelRepeaterSize.ResumeLayout(false);
  5067. ((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).EndInit();
  5068. ((System.ComponentModel.ISupportInitialize)(this.dataGridView2)).EndInit();
  5069. this.panel2.ResumeLayout(false);
  5070. this.panel2.PerformLayout();
  5071. this.panel_Menu.ResumeLayout(false);
  5072. this.ResumeLayout(false);
  5073. }
  5074. #endregion
  5075. private System.Windows.Forms.Label lblDir;
  5076. private System.Windows.Forms.Panel panel1;
  5077. private System.Windows.Forms.TabControl tabControl_Main;
  5078. private System.Windows.Forms.TabPage tabPage_Board;
  5079. private System.Windows.Forms.TabPage tabPage_Repeater;
  5080. private System.Windows.Forms.Button btnBoardSave;
  5081. private System.Windows.Forms.GroupBox groupRepeater;
  5082. private System.Windows.Forms.Label label70;
  5083. private System.Windows.Forms.Panel panel2;
  5084. private System.Windows.Forms.Label lblRepeaterID;
  5085. private System.Windows.Forms.Label label74;
  5086. private System.Windows.Forms.Label label73;
  5087. private System.Windows.Forms.DataGridView dataGridView2;
  5088. private System.Windows.Forms.DataGridViewTextBoxColumn Column11;
  5089. private System.Windows.Forms.DataGridViewTextBoxColumn Column12;
  5090. private System.Windows.Forms.DataGridViewTextBoxColumn Column13;
  5091. private System.Windows.Forms.DataGridViewTextBoxColumn Column14;
  5092. private System.Windows.Forms.TextBox txtDeviceTypeName;
  5093. private System.Windows.Forms.Label label22;
  5094. private System.Windows.Forms.CheckBox chkDeviceCutFlag;
  5095. private System.Windows.Forms.Label lblRepeaterName;
  5096. private System.Windows.Forms.Button button1;
  5097. private System.Windows.Forms.TextBox txtThisReceiverID;
  5098. private System.Windows.Forms.Button btnInputOpen;
  5099. private System.Windows.Forms.Label label18;
  5100. private System.Windows.Forms.TextBox txtLoopNo;
  5101. private System.Windows.Forms.TextBox txtBoardID;
  5102. private System.Windows.Forms.TextBox txtThisReceiverID2;
  5103. private System.Windows.Forms.ImageList ImgLstBoardUseFlag;
  5104. private System.Windows.Forms.Button btnWinClose;
  5105. private System.Windows.Forms.TextBox txtDeviceMemo;
  5106. private System.Windows.Forms.Label label4;
  5107. private System.Windows.Forms.TextBox txtPositionName;
  5108. private System.Windows.Forms.Panel panelRepeaterSize;
  5109. private System.Windows.Forms.DataGridView dataGridView1;
  5110. private System.Windows.Forms.DataGridViewComboBoxColumn Column1;
  5111. private System.Windows.Forms.DataGridViewComboBoxColumn Column2;
  5112. private System.Windows.Forms.DataGridViewComboBoxColumn Column3;
  5113. private System.Windows.Forms.DataGridViewTextBoxColumn Column4;
  5114. private System.Windows.Forms.DataGridViewTextBoxColumn Column5;
  5115. private System.Windows.Forms.DataGridViewTextBoxColumn Column6;
  5116. private System.Windows.Forms.DataGridViewTextBoxColumn Column7;
  5117. private System.Windows.Forms.DataGridViewTextBoxColumn Column8;
  5118. private System.Windows.Forms.DataGridViewTextBoxColumn Column9;
  5119. private System.Windows.Forms.DataGridViewTextBoxColumn Column10;
  5120. private System.Windows.Forms.Button btnOK;
  5121. private System.Windows.Forms.Button btnRepeaterAllInfo;
  5122. private System.Windows.Forms.CheckBox chkRepeaterCut;
  5123. private System.Windows.Forms.Button btnInWrite;
  5124. private System.Windows.Forms.Button btnOutWrite;
  5125. private System.Windows.Forms.Label label20;
  5126. private System.Windows.Forms.Panel panel_Menu;
  5127. private System.Windows.Forms.Button button_Menu_RepeaterCut;
  5128. private System.Windows.Forms.Button button_LoopCut;
  5129. private System.Windows.Forms.Label label_Comment;
  5130. private System.Windows.Forms.ImageList imageList_BoardUseFlag;
  5131. private System.Windows.Forms.Label label_UI_RepeaterCut;
  5132. private System.Windows.Forms.Label label_UI_RepeaterCut_Color;
  5133. private System.Windows.Forms.Label label_UI_Unuse;
  5134. private System.Windows.Forms.Label label_UI_Unuse_Color;
  5135. private System.Windows.Forms.Label label_UI_Use;
  5136. private System.Windows.Forms.Label label_UI_Comment;
  5137. private System.Windows.Forms.Label label_UI_Use_Color;
  5138. private System.Windows.Forms.Label label_UI_CircuitCut;
  5139. private System.Windows.Forms.Label label_UI_CircuitCut_Color;
  5140. private System.Windows.Forms.Label label_InfoApplyComment;
  5141. private System.Windows.Forms.Label label21;
  5142. private System.Windows.Forms.GroupBox groupBox2;
  5143. private System.Windows.Forms.CheckBox checkBox_All_3;
  5144. private System.Windows.Forms.CheckBox checkBox_All_2;
  5145. private System.Windows.Forms.CheckBox checkBox_All_1;
  5146. private System.Windows.Forms.Label lbl_COMM55;
  5147. private System.Windows.Forms.Label lbl_COMM35;
  5148. private System.Windows.Forms.Label lbl_COMM15;
  5149. private System.Windows.Forms.CheckBox cb_COMM55_CH4Use;
  5150. private System.Windows.Forms.CheckBox cb_COMM35_CH4Use;
  5151. private System.Windows.Forms.CheckBox cb_COMM15_CH4Use;
  5152. private System.Windows.Forms.CheckBox cb_COMM55_CH2Use;
  5153. private System.Windows.Forms.CheckBox cb_COMM35_CH2Use;
  5154. private System.Windows.Forms.CheckBox cb_COMM15_CH2Use;
  5155. private System.Windows.Forms.CheckBox cb_COMM55_CH3Use;
  5156. private System.Windows.Forms.CheckBox cb_COMM35_CH3Use;
  5157. private System.Windows.Forms.CheckBox cb_COMM15_CH3Use;
  5158. private System.Windows.Forms.CheckBox cb_COMM55_CH1Use;
  5159. private System.Windows.Forms.CheckBox cb_COMM35_CH1Use;
  5160. private System.Windows.Forms.CheckBox cb_COMM15_CH1Use;
  5161. private System.Windows.Forms.Label lbl_COMM59;
  5162. private System.Windows.Forms.Label lbl_COMM39;
  5163. private System.Windows.Forms.Label lbl_COMM19;
  5164. private System.Windows.Forms.Label lbl_COMM54;
  5165. private System.Windows.Forms.Label lbl_COMM34;
  5166. private System.Windows.Forms.Label lbl_COMM14;
  5167. private System.Windows.Forms.CheckBox cb_COMM59_CH4Use;
  5168. private System.Windows.Forms.CheckBox cb_COMM39_CH4Use;
  5169. private System.Windows.Forms.CheckBox cb_COMM19_CH4Use;
  5170. private System.Windows.Forms.CheckBox cb_COMM59_CH2Use;
  5171. private System.Windows.Forms.CheckBox cb_COMM39_CH2Use;
  5172. private System.Windows.Forms.CheckBox cb_COMM19_CH2Use;
  5173. private System.Windows.Forms.CheckBox cb_COMM54_CH4Use;
  5174. private System.Windows.Forms.CheckBox cb_COMM34_CH4Use;
  5175. private System.Windows.Forms.CheckBox cb_COMM14_CH4Use;
  5176. private System.Windows.Forms.CheckBox cb_COMM54_CH2Use;
  5177. private System.Windows.Forms.CheckBox cb_COMM34_CH2Use;
  5178. private System.Windows.Forms.CheckBox cb_COMM14_CH2Use;
  5179. private System.Windows.Forms.CheckBox cb_COMM59_CH3Use;
  5180. private System.Windows.Forms.CheckBox cb_COMM39_CH3Use;
  5181. private System.Windows.Forms.CheckBox cb_COMM19_CH3Use;
  5182. private System.Windows.Forms.CheckBox cb_COMM59_CH1Use;
  5183. private System.Windows.Forms.CheckBox cb_COMM39_CH1Use;
  5184. private System.Windows.Forms.CheckBox cb_COMM19_CH1Use;
  5185. private System.Windows.Forms.CheckBox cb_COMM54_CH3Use;
  5186. private System.Windows.Forms.CheckBox cb_COMM34_CH3Use;
  5187. private System.Windows.Forms.CheckBox cb_COMM14_CH3Use;
  5188. private System.Windows.Forms.CheckBox cb_COMM54_CH1Use;
  5189. private System.Windows.Forms.CheckBox cb_COMM34_CH1Use;
  5190. private System.Windows.Forms.CheckBox cb_COMM14_CH1Use;
  5191. private System.Windows.Forms.Label lbl_COMM58;
  5192. private System.Windows.Forms.Label lbl_COMM38;
  5193. private System.Windows.Forms.Label lbl_COMM18;
  5194. private System.Windows.Forms.Label lbl_COMM53;
  5195. private System.Windows.Forms.Label lbl_COMM33;
  5196. private System.Windows.Forms.Label lbl_COMM13;
  5197. private System.Windows.Forms.CheckBox cb_COMM58_CH4Use;
  5198. private System.Windows.Forms.CheckBox cb_COMM38_CH4Use;
  5199. private System.Windows.Forms.CheckBox cb_COMM18_CH4Use;
  5200. private System.Windows.Forms.CheckBox cb_COMM58_CH2Use;
  5201. private System.Windows.Forms.CheckBox cb_COMM38_CH2Use;
  5202. private System.Windows.Forms.CheckBox cb_COMM18_CH2Use;
  5203. private System.Windows.Forms.CheckBox cb_COMM53_CH4Use;
  5204. private System.Windows.Forms.CheckBox cb_COMM33_CH4Use;
  5205. private System.Windows.Forms.CheckBox cb_COMM13_CH4Use;
  5206. private System.Windows.Forms.CheckBox cb_COMM53_CH2Use;
  5207. private System.Windows.Forms.CheckBox cb_COMM33_CH2Use;
  5208. private System.Windows.Forms.CheckBox cb_COMM13_CH2Use;
  5209. private System.Windows.Forms.CheckBox cb_COMM58_CH3Use;
  5210. private System.Windows.Forms.CheckBox cb_COMM38_CH3Use;
  5211. private System.Windows.Forms.CheckBox cb_COMM18_CH3Use;
  5212. private System.Windows.Forms.CheckBox cb_COMM58_CH1Use;
  5213. private System.Windows.Forms.CheckBox cb_COMM38_CH1Use;
  5214. private System.Windows.Forms.CheckBox cb_COMM18_CH1Use;
  5215. private System.Windows.Forms.CheckBox cb_COMM53_CH3Use;
  5216. private System.Windows.Forms.CheckBox cb_COMM33_CH3Use;
  5217. private System.Windows.Forms.CheckBox cb_COMM13_CH3Use;
  5218. private System.Windows.Forms.CheckBox cb_COMM53_CH1Use;
  5219. private System.Windows.Forms.CheckBox cb_COMM33_CH1Use;
  5220. private System.Windows.Forms.CheckBox cb_COMM13_CH1Use;
  5221. private System.Windows.Forms.Label lbl_COMM57;
  5222. private System.Windows.Forms.Label lbl_COMM37;
  5223. private System.Windows.Forms.Label lbl_COMM17;
  5224. private System.Windows.Forms.Label lbl_COMM52;
  5225. private System.Windows.Forms.Label lbl_COMM32;
  5226. private System.Windows.Forms.Label lbl_COMM12;
  5227. private System.Windows.Forms.CheckBox cb_COMM57_CH4Use;
  5228. private System.Windows.Forms.CheckBox cb_COMM37_CH4Use;
  5229. private System.Windows.Forms.CheckBox cb_COMM17_CH4Use;
  5230. private System.Windows.Forms.CheckBox cb_COMM57_CH2Use;
  5231. private System.Windows.Forms.CheckBox cb_COMM37_CH2Use;
  5232. private System.Windows.Forms.CheckBox cb_COMM17_CH2Use;
  5233. private System.Windows.Forms.CheckBox cb_COMM52_CH4Use;
  5234. private System.Windows.Forms.CheckBox cb_COMM32_CH4Use;
  5235. private System.Windows.Forms.CheckBox cb_COMM12_CH4Use;
  5236. private System.Windows.Forms.CheckBox cb_COMM52_CH2Use;
  5237. private System.Windows.Forms.CheckBox cb_COMM32_CH2Use;
  5238. private System.Windows.Forms.CheckBox cb_COMM12_CH2Use;
  5239. private System.Windows.Forms.CheckBox cb_COMM57_CH3Use;
  5240. private System.Windows.Forms.CheckBox cb_COMM37_CH3Use;
  5241. private System.Windows.Forms.CheckBox cb_COMM17_CH3Use;
  5242. private System.Windows.Forms.CheckBox cb_COMM57_CH1Use;
  5243. private System.Windows.Forms.CheckBox cb_COMM37_CH1Use;
  5244. private System.Windows.Forms.CheckBox cb_COMM17_CH1Use;
  5245. private System.Windows.Forms.CheckBox cb_COMM52_CH3Use;
  5246. private System.Windows.Forms.CheckBox cb_COMM32_CH3Use;
  5247. private System.Windows.Forms.CheckBox cb_COMM12_CH3Use;
  5248. private System.Windows.Forms.CheckBox cb_COMM52_CH1Use;
  5249. private System.Windows.Forms.CheckBox cb_COMM32_CH1Use;
  5250. private System.Windows.Forms.CheckBox cb_COMM12_CH1Use;
  5251. private System.Windows.Forms.Label label80;
  5252. private System.Windows.Forms.Label label55;
  5253. private System.Windows.Forms.Label label33;
  5254. private System.Windows.Forms.Label label79;
  5255. private System.Windows.Forms.Label label54;
  5256. private System.Windows.Forms.Label label8;
  5257. private System.Windows.Forms.Label label78;
  5258. private System.Windows.Forms.Label label52;
  5259. private System.Windows.Forms.Label label32;
  5260. private System.Windows.Forms.Label label77;
  5261. private System.Windows.Forms.Label label51;
  5262. private System.Windows.Forms.Label label5;
  5263. private System.Windows.Forms.Label lbl_COMM56;
  5264. private System.Windows.Forms.Label lbl_COMM36;
  5265. private System.Windows.Forms.Label lbl_COMM16;
  5266. private System.Windows.Forms.CheckBox cb_COMM56_CH4Use;
  5267. private System.Windows.Forms.CheckBox cb_COMM36_CH4Use;
  5268. private System.Windows.Forms.CheckBox cb_COMM16_CH4Use;
  5269. private System.Windows.Forms.Label lbl_COMM51;
  5270. private System.Windows.Forms.Label lbl_COMM31;
  5271. private System.Windows.Forms.Label lbl_COMM11;
  5272. private System.Windows.Forms.CheckBox cb_COMM56_CH2Use;
  5273. private System.Windows.Forms.CheckBox cb_COMM36_CH2Use;
  5274. private System.Windows.Forms.CheckBox cb_COMM16_CH2Use;
  5275. private System.Windows.Forms.CheckBox cb_COMM51_CH4Use;
  5276. private System.Windows.Forms.CheckBox cb_COMM31_CH4Use;
  5277. private System.Windows.Forms.CheckBox cb_COMM11_CH4Use;
  5278. private System.Windows.Forms.CheckBox cb_COMM56_CH3Use;
  5279. private System.Windows.Forms.CheckBox cb_COMM36_CH3Use;
  5280. private System.Windows.Forms.CheckBox cb_COMM16_CH3Use;
  5281. private System.Windows.Forms.CheckBox cb_COMM51_CH2Use;
  5282. private System.Windows.Forms.CheckBox cb_COMM31_CH2Use;
  5283. private System.Windows.Forms.CheckBox cb_COMM11_CH2Use;
  5284. private System.Windows.Forms.CheckBox cb_COMM56_CH1Use;
  5285. private System.Windows.Forms.CheckBox cb_COMM36_CH1Use;
  5286. private System.Windows.Forms.CheckBox cb_COMM16_CH1Use;
  5287. private System.Windows.Forms.CheckBox cb_COMM51_CH3Use;
  5288. private System.Windows.Forms.CheckBox cb_COMM31_CH3Use;
  5289. private System.Windows.Forms.CheckBox cb_COMM11_CH3Use;
  5290. private System.Windows.Forms.CheckBox cb_COMM51_CH1Use;
  5291. private System.Windows.Forms.CheckBox cb_COMM31_CH1Use;
  5292. private System.Windows.Forms.CheckBox cb_COMM11_CH1Use;
  5293. private System.Windows.Forms.Label lbl_COMM50;
  5294. private System.Windows.Forms.Label lbl_COMM30;
  5295. private System.Windows.Forms.Label lbl_COMM10;
  5296. private System.Windows.Forms.CheckBox cb_COMM50_CH4Use;
  5297. private System.Windows.Forms.CheckBox cb_COMM30_CH4Use;
  5298. private System.Windows.Forms.CheckBox cb_COMM10_CH4Use;
  5299. private System.Windows.Forms.CheckBox cb_COMM50_CH2Use;
  5300. private System.Windows.Forms.CheckBox cb_COMM30_CH2Use;
  5301. private System.Windows.Forms.CheckBox cb_COMM10_CH2Use;
  5302. private System.Windows.Forms.CheckBox cb_COMM50_CH3Use;
  5303. private System.Windows.Forms.CheckBox cb_COMM30_CH3Use;
  5304. private System.Windows.Forms.CheckBox cb_COMM10_CH3Use;
  5305. private System.Windows.Forms.CheckBox cb_COMM50_CH1Use;
  5306. private System.Windows.Forms.CheckBox cb_COMM30_CH1Use;
  5307. private System.Windows.Forms.CheckBox cb_COMM10_CH1Use;
  5308. private System.Windows.Forms.Label lbl_COMM64;
  5309. private System.Windows.Forms.Label lbl_COMM44;
  5310. private System.Windows.Forms.Label lbl_COMM24;
  5311. private System.Windows.Forms.Label lbl_COMM49;
  5312. private System.Windows.Forms.Label lbl_COMM29;
  5313. private System.Windows.Forms.Label lbl_COMM9;
  5314. private System.Windows.Forms.CheckBox cb_COMM64_CH4Use;
  5315. private System.Windows.Forms.CheckBox cb_COMM44_CH4Use;
  5316. private System.Windows.Forms.CheckBox cb_COMM24_CH4Use;
  5317. private System.Windows.Forms.CheckBox cb_COMM49_CH4Use;
  5318. private System.Windows.Forms.CheckBox cb_COMM29_CH4Use;
  5319. private System.Windows.Forms.CheckBox cb_COMM9_CH4Use;
  5320. private System.Windows.Forms.CheckBox cb_COMM64_CH2Use;
  5321. private System.Windows.Forms.CheckBox cb_COMM44_CH2Use;
  5322. private System.Windows.Forms.CheckBox cb_COMM24_CH2Use;
  5323. private System.Windows.Forms.CheckBox cb_COMM49_CH2Use;
  5324. private System.Windows.Forms.CheckBox cb_COMM29_CH2Use;
  5325. private System.Windows.Forms.CheckBox cb_COMM9_CH2Use;
  5326. private System.Windows.Forms.CheckBox cb_COMM64_CH3Use;
  5327. private System.Windows.Forms.CheckBox cb_COMM44_CH3Use;
  5328. private System.Windows.Forms.CheckBox cb_COMM24_CH3Use;
  5329. private System.Windows.Forms.CheckBox cb_COMM49_CH3Use;
  5330. private System.Windows.Forms.CheckBox cb_COMM29_CH3Use;
  5331. private System.Windows.Forms.CheckBox cb_COMM9_CH3Use;
  5332. private System.Windows.Forms.CheckBox cb_COMM64_CH1Use;
  5333. private System.Windows.Forms.CheckBox cb_COMM44_CH1Use;
  5334. private System.Windows.Forms.CheckBox cb_COMM24_CH1Use;
  5335. private System.Windows.Forms.CheckBox cb_COMM49_CH1Use;
  5336. private System.Windows.Forms.CheckBox cb_COMM29_CH1Use;
  5337. private System.Windows.Forms.CheckBox cb_COMM9_CH1Use;
  5338. private System.Windows.Forms.Label lbl_COMM63;
  5339. private System.Windows.Forms.Label lbl_COMM43;
  5340. private System.Windows.Forms.Label lbl_COMM23;
  5341. private System.Windows.Forms.Label lbl_COMM48;
  5342. private System.Windows.Forms.Label lbl_COMM28;
  5343. private System.Windows.Forms.CheckBox cb_COMM63_CH4Use;
  5344. private System.Windows.Forms.CheckBox cb_COMM43_CH4Use;
  5345. private System.Windows.Forms.CheckBox cb_COMM23_CH4Use;
  5346. private System.Windows.Forms.CheckBox cb_COMM48_CH4Use;
  5347. private System.Windows.Forms.CheckBox cb_COMM28_CH4Use;
  5348. private System.Windows.Forms.CheckBox cb_COMM60_CH3Use;
  5349. private System.Windows.Forms.CheckBox cb_COMM40_CH3Use;
  5350. private System.Windows.Forms.CheckBox cb_COMM20_CH3Use;
  5351. private System.Windows.Forms.CheckBox cb_COMM45_CH3Use;
  5352. private System.Windows.Forms.CheckBox cb_COMM25_CH3Use;
  5353. private System.Windows.Forms.CheckBox cb_COMM63_CH2Use;
  5354. private System.Windows.Forms.CheckBox cb_COMM43_CH2Use;
  5355. private System.Windows.Forms.CheckBox cb_COMM23_CH2Use;
  5356. private System.Windows.Forms.CheckBox cb_COMM48_CH2Use;
  5357. private System.Windows.Forms.CheckBox cb_COMM28_CH2Use;
  5358. private System.Windows.Forms.CheckBox cb_COMM63_CH3Use;
  5359. private System.Windows.Forms.CheckBox cb_COMM43_CH3Use;
  5360. private System.Windows.Forms.CheckBox cb_COMM23_CH3Use;
  5361. private System.Windows.Forms.CheckBox cb_COMM48_CH3Use;
  5362. private System.Windows.Forms.CheckBox cb_COMM28_CH3Use;
  5363. private System.Windows.Forms.CheckBox cb_COMM60_CH1Use;
  5364. private System.Windows.Forms.CheckBox cb_COMM40_CH1Use;
  5365. private System.Windows.Forms.CheckBox cb_COMM20_CH1Use;
  5366. private System.Windows.Forms.CheckBox cb_COMM45_CH1Use;
  5367. private System.Windows.Forms.CheckBox cb_COMM25_CH1Use;
  5368. private System.Windows.Forms.CheckBox cb_COMM60_CH4Use;
  5369. private System.Windows.Forms.CheckBox cb_COMM40_CH4Use;
  5370. private System.Windows.Forms.CheckBox cb_COMM20_CH4Use;
  5371. private System.Windows.Forms.CheckBox cb_COMM45_CH4Use;
  5372. private System.Windows.Forms.CheckBox cb_COMM25_CH4Use;
  5373. private System.Windows.Forms.CheckBox cb_COMM63_CH1Use;
  5374. private System.Windows.Forms.CheckBox cb_COMM43_CH1Use;
  5375. private System.Windows.Forms.CheckBox cb_COMM23_CH1Use;
  5376. private System.Windows.Forms.CheckBox cb_COMM48_CH1Use;
  5377. private System.Windows.Forms.CheckBox cb_COMM28_CH1Use;
  5378. private System.Windows.Forms.CheckBox cb_COMM60_CH2Use;
  5379. private System.Windows.Forms.CheckBox cb_COMM40_CH2Use;
  5380. private System.Windows.Forms.CheckBox cb_COMM20_CH2Use;
  5381. private System.Windows.Forms.CheckBox cb_COMM45_CH2Use;
  5382. private System.Windows.Forms.CheckBox cb_COMM25_CH2Use;
  5383. private System.Windows.Forms.Label lbl_COMM60;
  5384. private System.Windows.Forms.Label lbl_COMM40;
  5385. private System.Windows.Forms.Label lbl_COMM20;
  5386. private System.Windows.Forms.Label lbl_COMM62;
  5387. private System.Windows.Forms.Label lbl_COMM42;
  5388. private System.Windows.Forms.Label lbl_COMM22;
  5389. private System.Windows.Forms.Label lbl_COMM45;
  5390. private System.Windows.Forms.CheckBox cb_COMM62_CH4Use;
  5391. private System.Windows.Forms.Label lbl_COMM25;
  5392. private System.Windows.Forms.CheckBox cb_COMM42_CH4Use;
  5393. private System.Windows.Forms.Label lbl_COMM47;
  5394. private System.Windows.Forms.Label lbl_COMM27;
  5395. private System.Windows.Forms.CheckBox cb_COMM22_CH4Use;
  5396. private System.Windows.Forms.CheckBox cb_COMM47_CH4Use;
  5397. private System.Windows.Forms.CheckBox cb_COMM27_CH4Use;
  5398. private System.Windows.Forms.CheckBox cb_COMM61_CH3Use;
  5399. private System.Windows.Forms.CheckBox cb_COMM41_CH3Use;
  5400. private System.Windows.Forms.CheckBox cb_COMM62_CH2Use;
  5401. private System.Windows.Forms.CheckBox cb_COMM21_CH3Use;
  5402. private System.Windows.Forms.CheckBox cb_COMM42_CH2Use;
  5403. private System.Windows.Forms.CheckBox cb_COMM46_CH3Use;
  5404. private System.Windows.Forms.CheckBox cb_COMM26_CH3Use;
  5405. private System.Windows.Forms.CheckBox cb_COMM62_CH3Use;
  5406. private System.Windows.Forms.CheckBox cb_COMM22_CH2Use;
  5407. private System.Windows.Forms.CheckBox cb_COMM42_CH3Use;
  5408. private System.Windows.Forms.CheckBox cb_COMM47_CH2Use;
  5409. private System.Windows.Forms.CheckBox cb_COMM27_CH2Use;
  5410. private System.Windows.Forms.CheckBox cb_COMM61_CH1Use;
  5411. private System.Windows.Forms.CheckBox cb_COMM22_CH3Use;
  5412. private System.Windows.Forms.CheckBox cb_COMM41_CH1Use;
  5413. private System.Windows.Forms.CheckBox cb_COMM47_CH3Use;
  5414. private System.Windows.Forms.CheckBox cb_COMM27_CH3Use;
  5415. private System.Windows.Forms.CheckBox cb_COMM61_CH4Use;
  5416. private System.Windows.Forms.CheckBox cb_COMM21_CH1Use;
  5417. private System.Windows.Forms.CheckBox cb_COMM41_CH4Use;
  5418. private System.Windows.Forms.CheckBox cb_COMM46_CH1Use;
  5419. private System.Windows.Forms.CheckBox cb_COMM26_CH1Use;
  5420. private System.Windows.Forms.CheckBox cb_COMM62_CH1Use;
  5421. private System.Windows.Forms.CheckBox cb_COMM21_CH4Use;
  5422. private System.Windows.Forms.CheckBox cb_COMM42_CH1Use;
  5423. private System.Windows.Forms.CheckBox cb_COMM46_CH4Use;
  5424. private System.Windows.Forms.CheckBox cb_COMM26_CH4Use;
  5425. private System.Windows.Forms.CheckBox cb_COMM61_CH2Use;
  5426. private System.Windows.Forms.CheckBox cb_COMM22_CH1Use;
  5427. private System.Windows.Forms.CheckBox cb_COMM41_CH2Use;
  5428. private System.Windows.Forms.CheckBox cb_COMM47_CH1Use;
  5429. private System.Windows.Forms.CheckBox cb_COMM27_CH1Use;
  5430. private System.Windows.Forms.CheckBox cb_COMM21_CH2Use;
  5431. private System.Windows.Forms.CheckBox cb_COMM46_CH2Use;
  5432. private System.Windows.Forms.CheckBox cb_COMM26_CH2Use;
  5433. private System.Windows.Forms.Label lbl_COMM61;
  5434. private System.Windows.Forms.Label lbl_COMM41;
  5435. private System.Windows.Forms.Label lbl_COMM46;
  5436. private System.Windows.Forms.Label lbl_COMM21;
  5437. private System.Windows.Forms.Label lbl_COMM26;
  5438. private System.Windows.Forms.CheckBox checkBox_All_4;
  5439. private System.Windows.Forms.CheckBox cb_COMM1_CH1Use;
  5440. private System.Windows.Forms.CheckBox cb_COMM1_CH2Use;
  5441. private System.Windows.Forms.Label lbl_COMM1;
  5442. private System.Windows.Forms.Label label9;
  5443. private System.Windows.Forms.Label label10;
  5444. private System.Windows.Forms.CheckBox cb_COMM2_CH1Use;
  5445. private System.Windows.Forms.CheckBox cb_COMM2_CH2Use;
  5446. private System.Windows.Forms.Label lbl_COMM2;
  5447. private System.Windows.Forms.CheckBox cb_COMM3_CH1Use;
  5448. private System.Windows.Forms.CheckBox cb_COMM3_CH2Use;
  5449. private System.Windows.Forms.Label lbl_COMM3;
  5450. private System.Windows.Forms.CheckBox cb_COMM4_CH1Use;
  5451. private System.Windows.Forms.CheckBox cb_COMM4_CH2Use;
  5452. private System.Windows.Forms.Label lbl_COMM4;
  5453. private System.Windows.Forms.Label lbl_COMM5;
  5454. private System.Windows.Forms.Label lbl_COMM6;
  5455. private System.Windows.Forms.CheckBox cb_COMM6_CH2Use;
  5456. private System.Windows.Forms.CheckBox cb_COMM7_CH1Use;
  5457. private System.Windows.Forms.CheckBox cb_COMM6_CH1Use;
  5458. private System.Windows.Forms.CheckBox cb_COMM7_CH2Use;
  5459. private System.Windows.Forms.Label lbl_COMM7;
  5460. private System.Windows.Forms.CheckBox cb_COMM5_CH2Use;
  5461. private System.Windows.Forms.CheckBox cb_COMM8_CH1Use;
  5462. private System.Windows.Forms.CheckBox cb_COMM5_CH1Use;
  5463. private System.Windows.Forms.CheckBox cb_COMM8_CH2Use;
  5464. private System.Windows.Forms.Label lbl_COMM8;
  5465. private System.Windows.Forms.Label label1;
  5466. private System.Windows.Forms.Label label2;
  5467. private System.Windows.Forms.CheckBox cb_COMM1_CH3Use;
  5468. private System.Windows.Forms.CheckBox cb_COMM3_CH3Use;
  5469. private System.Windows.Forms.CheckBox cb_COMM1_CH4Use;
  5470. private System.Windows.Forms.CheckBox cb_COMM6_CH4Use;
  5471. private System.Windows.Forms.CheckBox cb_COMM3_CH4Use;
  5472. private System.Windows.Forms.CheckBox cb_COMM4_CH3Use;
  5473. private System.Windows.Forms.CheckBox cb_COMM2_CH3Use;
  5474. private System.Windows.Forms.CheckBox cb_COMM7_CH3Use;
  5475. private System.Windows.Forms.CheckBox cb_COMM2_CH4Use;
  5476. private System.Windows.Forms.CheckBox cb_COMM4_CH4Use;
  5477. private System.Windows.Forms.CheckBox cb_COMM6_CH3Use;
  5478. private System.Windows.Forms.CheckBox cb_COMM7_CH4Use;
  5479. private System.Windows.Forms.CheckBox cb_COMM8_CH3Use;
  5480. private System.Windows.Forms.CheckBox cb_COMM5_CH4Use;
  5481. private System.Windows.Forms.CheckBox cb_COMM8_CH4Use;
  5482. private System.Windows.Forms.CheckBox cb_COMM5_CH3Use;
  5483. }
  5484. }