c83c9b847aec4dd1497281ab6736519019163938.svn-base 307 KB

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