Main.Designer.cs 218 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948
  1. namespace Jdas_Mbic
  2. {
  3. partial class JdasMbic
  4. {
  5. /// <summary>
  6. /// 필수 디자이너 변수입니다.
  7. /// </summary>
  8. private System.ComponentModel.IContainer components = null;
  9. /// <summary>
  10. /// 사용 중인 모든 리소스를 정리합니다.
  11. /// </summary>
  12. /// <param name="disposing">관리되는 리소스를 삭제해야 하면 true이고, 그렇지 않으면 false입니다.</param>
  13. protected override void Dispose(bool disposing)
  14. {
  15. if (disposing && (components != null))
  16. {
  17. components.Dispose();
  18. }
  19. base.Dispose(disposing);
  20. }
  21. #region Windows Form 디자이너에서 생성한 코드
  22. /// <summary>
  23. /// 디자이너 지원에 필요한 메서드입니다.
  24. /// 이 메서드의 내용을 코드 편집기로 수정하지 마세요.
  25. /// </summary>
  26. private void InitializeComponent()
  27. {
  28. this.components = new System.ComponentModel.Container();
  29. System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(JdasMbic));
  30. this.textBox_FRBT_TIME = new System.Windows.Forms.TextBox();
  31. this.label_BankSel = new System.Windows.Forms.Label();
  32. this.comboBox_BankSel = new System.Windows.Forms.ComboBox();
  33. this.button_MBICMake = new System.Windows.Forms.Button();
  34. this.button_Test = new System.Windows.Forms.Button();
  35. this.label66 = new System.Windows.Forms.Label();
  36. this.label13 = new System.Windows.Forms.Label();
  37. this.checkBox_Fix = new System.Windows.Forms.CheckBox();
  38. this.label_Temp = new System.Windows.Forms.Label();
  39. this.numericUpDown_ShutdownUL3 = new System.Windows.Forms.NumericUpDown();
  40. this.numericUpDown_ShutdownDL3 = new System.Windows.Forms.NumericUpDown();
  41. this.numericUpDown_ALC3 = new System.Windows.Forms.NumericUpDown();
  42. this.numericUpDown_DL3_User = new System.Windows.Forms.NumericUpDown();
  43. this.numericUpDown_UL3_User = new System.Windows.Forms.NumericUpDown();
  44. this.numericUpDown_ATT_DL3 = new System.Windows.Forms.NumericUpDown();
  45. this.numericUpDown_ATT_UL3 = new System.Windows.Forms.NumericUpDown();
  46. this.numericUpDown_Temperature_Offset = new System.Windows.Forms.NumericUpDown();
  47. this.numericUpDown_Temp_Threshold = new System.Windows.Forms.NumericUpDown();
  48. this.numericUpDown_Temp_Threshold_Default = new System.Windows.Forms.NumericUpDown();
  49. this.numericUpDown_ShutdownUL4 = new System.Windows.Forms.NumericUpDown();
  50. this.numericUpDown_ShutdownDL4 = new System.Windows.Forms.NumericUpDown();
  51. this.numericUpDown_ALC4 = new System.Windows.Forms.NumericUpDown();
  52. this.numericUpDown_DL4_User = new System.Windows.Forms.NumericUpDown();
  53. this.numericUpDown_UL4_User = new System.Windows.Forms.NumericUpDown();
  54. this.numericUpDown_ATT_DL4 = new System.Windows.Forms.NumericUpDown();
  55. this.numericUpDown_ATT_UL4 = new System.Windows.Forms.NumericUpDown();
  56. this.numericUpDown_ShutdownDL1 = new System.Windows.Forms.NumericUpDown();
  57. this.numericUpDown_ShutdownUL1 = new System.Windows.Forms.NumericUpDown();
  58. this.numericUpDown_ALC1 = new System.Windows.Forms.NumericUpDown();
  59. this.numericUpDown_DL1_User = new System.Windows.Forms.NumericUpDown();
  60. this.numericUpDown_UL1_User = new System.Windows.Forms.NumericUpDown();
  61. this.numericUpDown_ATT_DL1 = new System.Windows.Forms.NumericUpDown();
  62. this.numericUpDown_ATT_UL1 = new System.Windows.Forms.NumericUpDown();
  63. this.button_FRBT_TimeSetting = new System.Windows.Forms.Button();
  64. this.numericUpDown_ShutdownUL2 = new System.Windows.Forms.NumericUpDown();
  65. this.numericUpDown_ShutdownDL2 = new System.Windows.Forms.NumericUpDown();
  66. this.numericUpDown_ALC2 = new System.Windows.Forms.NumericUpDown();
  67. this.numericUpDown_DL2_User = new System.Windows.Forms.NumericUpDown();
  68. this.numericUpDown_UL2_User = new System.Windows.Forms.NumericUpDown();
  69. this.numericUpDown_ATT_DL2 = new System.Windows.Forms.NumericUpDown();
  70. this.numericUpDown_ATT_UL2 = new System.Windows.Forms.NumericUpDown();
  71. this.button_FirmwareUpdate = new System.Windows.Forms.Button();
  72. this.button_terminal = new System.Windows.Forms.Button();
  73. this.cmCom_Port = new System.Windows.Forms.Label();
  74. this.button_PortOpen = new System.Windows.Forms.Button();
  75. this.comboBox_Port = new System.Windows.Forms.ComboBox();
  76. this.cmBaudRate = new System.Windows.Forms.Label();
  77. this.comboBox_baudrate = new System.Windows.Forms.ComboBox();
  78. this.textBox_DET_DL3_dBm = new System.Windows.Forms.TextBox();
  79. this.textBox_DET_UL3_dBm = new System.Windows.Forms.TextBox();
  80. this.textBox_DET_DL3 = new System.Windows.Forms.TextBox();
  81. this.textBox_DET_UL3 = new System.Windows.Forms.TextBox();
  82. this.textBox_DET_UL4_dBm = new System.Windows.Forms.TextBox();
  83. this.textBox_DET_UL4 = new System.Windows.Forms.TextBox();
  84. this.textBox_DET_DL4_dBm = new System.Windows.Forms.TextBox();
  85. this.textBox_DET_DL4 = new System.Windows.Forms.TextBox();
  86. this.textBox_DET_UL1_dBm = new System.Windows.Forms.TextBox();
  87. this.textBox_DET_UL1 = new System.Windows.Forms.TextBox();
  88. this.textBox_DET_DL1_dBm = new System.Windows.Forms.TextBox();
  89. this.textBox_DET_DL1 = new System.Windows.Forms.TextBox();
  90. this.textBox_DET_DL2_dBm = new System.Windows.Forms.TextBox();
  91. this.textBox_DET_UL2_dBm = new System.Windows.Forms.TextBox();
  92. this.textBox_DET_DL2 = new System.Windows.Forms.TextBox();
  93. this.textBox_DET_UL2 = new System.Windows.Forms.TextBox();
  94. this.numericUpDown_MASK = new System.Windows.Forms.NumericUpDown();
  95. this.label_MASK = new System.Windows.Forms.Label();
  96. this.timer_JdasMbic = new System.Windows.Forms.Timer(this.components);
  97. this.saveFileDialog1 = new System.Windows.Forms.SaveFileDialog();
  98. this.label_CurrBank = new System.Windows.Forms.Label();
  99. this.button1 = new System.Windows.Forms.Button();
  100. this.button_FactorySet = new System.Windows.Forms.Button();
  101. this.panel1 = new System.Windows.Forms.Panel();
  102. this.textBox_UL4_TableOffset = new System.Windows.Forms.TextBox();
  103. this.textBox_UL2_TableOffset = new System.Windows.Forms.TextBox();
  104. this.textBox_DL4_TableOffset = new System.Windows.Forms.TextBox();
  105. this.textBox_UL3_TableOffset = new System.Windows.Forms.TextBox();
  106. this.textBox_DL2_TableOffset = new System.Windows.Forms.TextBox();
  107. this.textBox_UL1_TableOffset = new System.Windows.Forms.TextBox();
  108. this.textBox_DL3_TableOffset = new System.Windows.Forms.TextBox();
  109. this.textBox_DL1_TableOffset = new System.Windows.Forms.TextBox();
  110. this.textBox_Bank2Name = new System.Windows.Forms.TextBox();
  111. this.label8 = new System.Windows.Forms.Label();
  112. this.textBox_Bank1Name = new System.Windows.Forms.TextBox();
  113. this.label6 = new System.Windows.Forms.Label();
  114. this.textBox_CurrBank = new System.Windows.Forms.TextBox();
  115. this.textBox_DLI_Level_Low_Threshold = new System.Windows.Forms.TextBox();
  116. this.textBox_DLI_Level_High_Threshold = new System.Windows.Forms.TextBox();
  117. this.textBox_ULO_Level_High_Threshold = new System.Windows.Forms.TextBox();
  118. this.label4 = new System.Windows.Forms.Label();
  119. this.textBox_MunufactureDate = new System.Windows.Forms.TextBox();
  120. this.label5 = new System.Windows.Forms.Label();
  121. this.label_SerialNumber = new System.Windows.Forms.Label();
  122. this.textBox_PcbVersion = new System.Windows.Forms.TextBox();
  123. this.textBox_SerialNumber = new System.Windows.Forms.TextBox();
  124. this.label_CompileDate = new System.Windows.Forms.Label();
  125. this.label7 = new System.Windows.Forms.Label();
  126. this.button_SelfTest2 = new System.Windows.Forms.Button();
  127. this.button_SelfTest4 = new System.Windows.Forms.Button();
  128. this.button_SelfTest1 = new System.Windows.Forms.Button();
  129. this.button_SelfTest3 = new System.Windows.Forms.Button();
  130. this.panel_Serial = new System.Windows.Forms.Panel();
  131. this.numericUpDown_Version = new System.Windows.Forms.NumericUpDown();
  132. this.label1 = new System.Windows.Forms.Label();
  133. this.pictureBox_R_TX = new System.Windows.Forms.PictureBox();
  134. this.pictureBox_G_TX = new System.Windows.Forms.PictureBox();
  135. this.pictureBox_R_RX = new System.Windows.Forms.PictureBox();
  136. this.pictureBox_G_RX = new System.Windows.Forms.PictureBox();
  137. this.pictureBox1 = new System.Windows.Forms.PictureBox();
  138. this.label9 = new System.Windows.Forms.Label();
  139. this.label_TableOffset = new System.Windows.Forms.Label();
  140. this.label111 = new System.Windows.Forms.Label();
  141. this.label100 = new System.Windows.Forms.Label();
  142. this.label110 = new System.Windows.Forms.Label();
  143. this.label99 = new System.Windows.Forms.Label();
  144. this.label109 = new System.Windows.Forms.Label();
  145. this.label98 = new System.Windows.Forms.Label();
  146. this.label108 = new System.Windows.Forms.Label();
  147. this.label101 = new System.Windows.Forms.Label();
  148. this.label107 = new System.Windows.Forms.Label();
  149. this.label97 = new System.Windows.Forms.Label();
  150. this.label106 = new System.Windows.Forms.Label();
  151. this.label96 = new System.Windows.Forms.Label();
  152. this.label112 = new System.Windows.Forms.Label();
  153. this.label105 = new System.Windows.Forms.Label();
  154. this.label102 = new System.Windows.Forms.Label();
  155. this.label104 = new System.Windows.Forms.Label();
  156. this.label95 = new System.Windows.Forms.Label();
  157. this.label103 = new System.Windows.Forms.Label();
  158. this.label94 = new System.Windows.Forms.Label();
  159. this.button_DL_Shutdown = new System.Windows.Forms.Button();
  160. this.button_UL_Shutdown = new System.Windows.Forms.Button();
  161. this.button_AGC = new System.Windows.Forms.Button();
  162. this.button_ALC = new System.Windows.Forms.Button();
  163. this.textBox_DL_ShutdownLimit = new System.Windows.Forms.TextBox();
  164. this.textBox_UL_ShutdownLimit = new System.Windows.Forms.TextBox();
  165. this.textBox_DLI_AGC_Threshold = new System.Windows.Forms.TextBox();
  166. this.textBox_ULO_ALC_Threshold = new System.Windows.Forms.TextBox();
  167. this.textBox_DLI_FRBT_D_Day = new System.Windows.Forms.TextBox();
  168. this.textBox_FRBT_Status = new System.Windows.Forms.TextBox();
  169. this.textBox1_Carrier = new System.Windows.Forms.TextBox();
  170. this.button_Carrier = new System.Windows.Forms.Button();
  171. this.button_LedTest = new System.Windows.Forms.Button();
  172. this.textBox_CardType = new System.Windows.Forms.TextBox();
  173. this.textBox_CpuVersion = new System.Windows.Forms.TextBox();
  174. this.panel17 = new System.Windows.Forms.Panel();
  175. this.textBox8 = new System.Windows.Forms.TextBox();
  176. this.pictureBox_UL4_Shutdown_Alarm_ON = new System.Windows.Forms.PictureBox();
  177. this.pictureBox_ULO_Path4_High_Alarm_ON = new System.Windows.Forms.PictureBox();
  178. this.button_UL4_PATH = new System.Windows.Forms.Button();
  179. this.panel18 = new System.Windows.Forms.Panel();
  180. this.label93 = new System.Windows.Forms.Label();
  181. this.pictureBox_ULO_Path4_High_Alarm_OFF = new System.Windows.Forms.PictureBox();
  182. this.pictureBox_ALC4_Alarm_OFF = new System.Windows.Forms.PictureBox();
  183. this.pictureBox_ALC4_Alarm_ON = new System.Windows.Forms.PictureBox();
  184. this.pictureBox_UL4_Shutdown_Alarm_OFF = new System.Windows.Forms.PictureBox();
  185. this.panel9 = new System.Windows.Forms.Panel();
  186. this.textBox4 = new System.Windows.Forms.TextBox();
  187. this.pictureBox_AGC4_Alarm_ON = new System.Windows.Forms.PictureBox();
  188. this.pictureBox_DLI_Path4_High_Alarm_ON = new System.Windows.Forms.PictureBox();
  189. this.button_DL4_PATH = new System.Windows.Forms.Button();
  190. this.panel10 = new System.Windows.Forms.Panel();
  191. this.label86 = new System.Windows.Forms.Label();
  192. this.pictureBox_DLI_Path4_High_Alarm_OFF = new System.Windows.Forms.PictureBox();
  193. this.pictureBox_DLI_Path4_Low_Alarm_ON = new System.Windows.Forms.PictureBox();
  194. this.pictureBox_DLI_Path4_Low_Alarm_OFF = new System.Windows.Forms.PictureBox();
  195. this.pictureBox_AGC4_Alarm_OFF = new System.Windows.Forms.PictureBox();
  196. this.pictureBox_DL4_Shutdown_Alarm_OFF = new System.Windows.Forms.PictureBox();
  197. this.pictureBox_DL4_Shutdown_Alarm_ON = new System.Windows.Forms.PictureBox();
  198. this.panel15 = new System.Windows.Forms.Panel();
  199. this.textBox7 = new System.Windows.Forms.TextBox();
  200. this.pictureBox_UL3_Shutdown_Alarm_ON = new System.Windows.Forms.PictureBox();
  201. this.pictureBox_ULO_Path3_High_Alarm_ON = new System.Windows.Forms.PictureBox();
  202. this.button_UL3_PATH = new System.Windows.Forms.Button();
  203. this.panel16 = new System.Windows.Forms.Panel();
  204. this.label92 = new System.Windows.Forms.Label();
  205. this.pictureBox_ULO_Path3_High_Alarm_OFF = new System.Windows.Forms.PictureBox();
  206. this.pictureBox_ALC3_Alarm_OFF = new System.Windows.Forms.PictureBox();
  207. this.pictureBox_ALC3_Alarm_ON = new System.Windows.Forms.PictureBox();
  208. this.pictureBox_UL3_Shutdown_Alarm_OFF = new System.Windows.Forms.PictureBox();
  209. this.panel7 = new System.Windows.Forms.Panel();
  210. this.textBox3 = new System.Windows.Forms.TextBox();
  211. this.pictureBox_AGC3_Alarm_ON = new System.Windows.Forms.PictureBox();
  212. this.pictureBox_DLI_Path3_High_Alarm_ON = new System.Windows.Forms.PictureBox();
  213. this.button_DL3_PATH = new System.Windows.Forms.Button();
  214. this.panel8 = new System.Windows.Forms.Panel();
  215. this.label85 = new System.Windows.Forms.Label();
  216. this.pictureBox_DLI_Path3_High_Alarm_OFF = new System.Windows.Forms.PictureBox();
  217. this.pictureBox_DLI_Path3_Low_Alarm_ON = new System.Windows.Forms.PictureBox();
  218. this.pictureBox_DLI_Path3_Low_Alarm_OFF = new System.Windows.Forms.PictureBox();
  219. this.pictureBox_AGC3_Alarm_OFF = new System.Windows.Forms.PictureBox();
  220. this.pictureBox_DL3_Shutdown_Alarm_OFF = new System.Windows.Forms.PictureBox();
  221. this.pictureBox_DL3_Shutdown_Alarm_ON = new System.Windows.Forms.PictureBox();
  222. this.panel13 = new System.Windows.Forms.Panel();
  223. this.textBox6 = new System.Windows.Forms.TextBox();
  224. this.pictureBox_UL2_Shutdown_Alarm_ON = new System.Windows.Forms.PictureBox();
  225. this.pictureBox_ULO_Path2_High_Alarm_ON = new System.Windows.Forms.PictureBox();
  226. this.button_UL2_PATH = new System.Windows.Forms.Button();
  227. this.panel14 = new System.Windows.Forms.Panel();
  228. this.label90 = new System.Windows.Forms.Label();
  229. this.pictureBox_ULO_Path2_High_Alarm_OFF = new System.Windows.Forms.PictureBox();
  230. this.pictureBox_ALC2_Alarm_OFF = new System.Windows.Forms.PictureBox();
  231. this.pictureBox_ALC2_Alarm_ON = new System.Windows.Forms.PictureBox();
  232. this.pictureBox_UL2_Shutdown_Alarm_OFF = new System.Windows.Forms.PictureBox();
  233. this.panel5 = new System.Windows.Forms.Panel();
  234. this.textBox2 = new System.Windows.Forms.TextBox();
  235. this.pictureBox_AGC2_Alarm_ON = new System.Windows.Forms.PictureBox();
  236. this.pictureBox_DLI_Path2_High_Alarm_ON = new System.Windows.Forms.PictureBox();
  237. this.button_DL2_PATH = new System.Windows.Forms.Button();
  238. this.panel6 = new System.Windows.Forms.Panel();
  239. this.label84 = new System.Windows.Forms.Label();
  240. this.pictureBox_DLI_Path2_High_Alarm_OFF = new System.Windows.Forms.PictureBox();
  241. this.pictureBox_DLI_Path2_Low_Alarm_ON = new System.Windows.Forms.PictureBox();
  242. this.pictureBox_DLI_Path2_Low_Alarm_OFF = new System.Windows.Forms.PictureBox();
  243. this.pictureBox_AGC2_Alarm_OFF = new System.Windows.Forms.PictureBox();
  244. this.pictureBox_DL2_Shutdown_Alarm_OFF = new System.Windows.Forms.PictureBox();
  245. this.pictureBox_DL2_Shutdown_Alarm_ON = new System.Windows.Forms.PictureBox();
  246. this.panel11 = new System.Windows.Forms.Panel();
  247. this.textBox5 = new System.Windows.Forms.TextBox();
  248. this.pictureBox_UL1_Shutdown_Alarm_ON = new System.Windows.Forms.PictureBox();
  249. this.pictureBox_ULO_Path1_High_Alarm_ON = new System.Windows.Forms.PictureBox();
  250. this.button_UL1_PATH = new System.Windows.Forms.Button();
  251. this.panel12 = new System.Windows.Forms.Panel();
  252. this.label87 = new System.Windows.Forms.Label();
  253. this.pictureBox_ULO_Path1_High_Alarm_OFF = new System.Windows.Forms.PictureBox();
  254. this.pictureBox_ALC1_Alarm_OFF = new System.Windows.Forms.PictureBox();
  255. this.pictureBox_ALC1_Alarm_ON = new System.Windows.Forms.PictureBox();
  256. this.pictureBox_UL1_Shutdown_Alarm_OFF = new System.Windows.Forms.PictureBox();
  257. this.panel3 = new System.Windows.Forms.Panel();
  258. this.textBox1 = new System.Windows.Forms.TextBox();
  259. this.pictureBox_AGC1_Alarm_ON = new System.Windows.Forms.PictureBox();
  260. this.pictureBox_DLI_Path1_High_Alarm_ON = new System.Windows.Forms.PictureBox();
  261. this.button_DL1_PATH = new System.Windows.Forms.Button();
  262. this.panel4 = new System.Windows.Forms.Panel();
  263. this.label83 = new System.Windows.Forms.Label();
  264. this.pictureBox_DLI_Path1_High_Alarm_OFF = new System.Windows.Forms.PictureBox();
  265. this.pictureBox_DLI_Path1_Low_Alarm_ON = new System.Windows.Forms.PictureBox();
  266. this.pictureBox_DLI_Path1_Low_Alarm_OFF = new System.Windows.Forms.PictureBox();
  267. this.pictureBox_AGC1_Alarm_OFF = new System.Windows.Forms.PictureBox();
  268. this.pictureBox_DL1_Shutdown_Alarm_OFF = new System.Windows.Forms.PictureBox();
  269. this.pictureBox_DL1_Shutdown_Alarm_ON = new System.Windows.Forms.PictureBox();
  270. this.label82 = new System.Windows.Forms.Label();
  271. this.label81 = new System.Windows.Forms.Label();
  272. this.label78 = new System.Windows.Forms.Label();
  273. this.label80 = new System.Windows.Forms.Label();
  274. this.label77 = new System.Windows.Forms.Label();
  275. this.label79 = new System.Windows.Forms.Label();
  276. this.label75 = new System.Windows.Forms.Label();
  277. this.label76 = new System.Windows.Forms.Label();
  278. this.label74 = new System.Windows.Forms.Label();
  279. this.label73 = new System.Windows.Forms.Label();
  280. this.label67 = new System.Windows.Forms.Label();
  281. this.label72 = new System.Windows.Forms.Label();
  282. this.label71 = new System.Windows.Forms.Label();
  283. this.label70 = new System.Windows.Forms.Label();
  284. this.label69 = new System.Windows.Forms.Label();
  285. this.label68 = new System.Windows.Forms.Label();
  286. this.label65 = new System.Windows.Forms.Label();
  287. this.panel_MainTitle = new System.Windows.Forms.Panel();
  288. this.button_Exit = new System.Windows.Forms.Button();
  289. this.label64 = new System.Windows.Forms.Label();
  290. this.pictureBox_TempHigh_Alarm_ON = new System.Windows.Forms.PictureBox();
  291. this.pictureBox_TempHigh_Alarm_OFF = new System.Windows.Forms.PictureBox();
  292. this.label2 = new System.Windows.Forms.Label();
  293. this.numericUpDown1 = new System.Windows.Forms.NumericUpDown();
  294. this.label3 = new System.Windows.Forms.Label();
  295. this.numericUpDown2 = new System.Windows.Forms.NumericUpDown();
  296. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_ShutdownUL3)).BeginInit();
  297. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_ShutdownDL3)).BeginInit();
  298. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_ALC3)).BeginInit();
  299. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_DL3_User)).BeginInit();
  300. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_UL3_User)).BeginInit();
  301. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_ATT_DL3)).BeginInit();
  302. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_ATT_UL3)).BeginInit();
  303. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_Temperature_Offset)).BeginInit();
  304. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_Temp_Threshold)).BeginInit();
  305. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_Temp_Threshold_Default)).BeginInit();
  306. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_ShutdownUL4)).BeginInit();
  307. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_ShutdownDL4)).BeginInit();
  308. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_ALC4)).BeginInit();
  309. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_DL4_User)).BeginInit();
  310. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_UL4_User)).BeginInit();
  311. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_ATT_DL4)).BeginInit();
  312. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_ATT_UL4)).BeginInit();
  313. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_ShutdownDL1)).BeginInit();
  314. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_ShutdownUL1)).BeginInit();
  315. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_ALC1)).BeginInit();
  316. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_DL1_User)).BeginInit();
  317. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_UL1_User)).BeginInit();
  318. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_ATT_DL1)).BeginInit();
  319. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_ATT_UL1)).BeginInit();
  320. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_ShutdownUL2)).BeginInit();
  321. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_ShutdownDL2)).BeginInit();
  322. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_ALC2)).BeginInit();
  323. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_DL2_User)).BeginInit();
  324. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_UL2_User)).BeginInit();
  325. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_ATT_DL2)).BeginInit();
  326. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_ATT_UL2)).BeginInit();
  327. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_MASK)).BeginInit();
  328. this.panel1.SuspendLayout();
  329. this.panel_Serial.SuspendLayout();
  330. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_Version)).BeginInit();
  331. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_R_TX)).BeginInit();
  332. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_G_TX)).BeginInit();
  333. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_R_RX)).BeginInit();
  334. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_G_RX)).BeginInit();
  335. ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
  336. this.panel17.SuspendLayout();
  337. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_UL4_Shutdown_Alarm_ON)).BeginInit();
  338. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_ULO_Path4_High_Alarm_ON)).BeginInit();
  339. this.panel18.SuspendLayout();
  340. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_ULO_Path4_High_Alarm_OFF)).BeginInit();
  341. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_ALC4_Alarm_OFF)).BeginInit();
  342. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_ALC4_Alarm_ON)).BeginInit();
  343. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_UL4_Shutdown_Alarm_OFF)).BeginInit();
  344. this.panel9.SuspendLayout();
  345. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_AGC4_Alarm_ON)).BeginInit();
  346. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_DLI_Path4_High_Alarm_ON)).BeginInit();
  347. this.panel10.SuspendLayout();
  348. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_DLI_Path4_High_Alarm_OFF)).BeginInit();
  349. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_DLI_Path4_Low_Alarm_ON)).BeginInit();
  350. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_DLI_Path4_Low_Alarm_OFF)).BeginInit();
  351. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_AGC4_Alarm_OFF)).BeginInit();
  352. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_DL4_Shutdown_Alarm_OFF)).BeginInit();
  353. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_DL4_Shutdown_Alarm_ON)).BeginInit();
  354. this.panel15.SuspendLayout();
  355. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_UL3_Shutdown_Alarm_ON)).BeginInit();
  356. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_ULO_Path3_High_Alarm_ON)).BeginInit();
  357. this.panel16.SuspendLayout();
  358. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_ULO_Path3_High_Alarm_OFF)).BeginInit();
  359. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_ALC3_Alarm_OFF)).BeginInit();
  360. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_ALC3_Alarm_ON)).BeginInit();
  361. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_UL3_Shutdown_Alarm_OFF)).BeginInit();
  362. this.panel7.SuspendLayout();
  363. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_AGC3_Alarm_ON)).BeginInit();
  364. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_DLI_Path3_High_Alarm_ON)).BeginInit();
  365. this.panel8.SuspendLayout();
  366. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_DLI_Path3_High_Alarm_OFF)).BeginInit();
  367. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_DLI_Path3_Low_Alarm_ON)).BeginInit();
  368. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_DLI_Path3_Low_Alarm_OFF)).BeginInit();
  369. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_AGC3_Alarm_OFF)).BeginInit();
  370. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_DL3_Shutdown_Alarm_OFF)).BeginInit();
  371. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_DL3_Shutdown_Alarm_ON)).BeginInit();
  372. this.panel13.SuspendLayout();
  373. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_UL2_Shutdown_Alarm_ON)).BeginInit();
  374. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_ULO_Path2_High_Alarm_ON)).BeginInit();
  375. this.panel14.SuspendLayout();
  376. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_ULO_Path2_High_Alarm_OFF)).BeginInit();
  377. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_ALC2_Alarm_OFF)).BeginInit();
  378. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_ALC2_Alarm_ON)).BeginInit();
  379. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_UL2_Shutdown_Alarm_OFF)).BeginInit();
  380. this.panel5.SuspendLayout();
  381. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_AGC2_Alarm_ON)).BeginInit();
  382. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_DLI_Path2_High_Alarm_ON)).BeginInit();
  383. this.panel6.SuspendLayout();
  384. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_DLI_Path2_High_Alarm_OFF)).BeginInit();
  385. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_DLI_Path2_Low_Alarm_ON)).BeginInit();
  386. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_DLI_Path2_Low_Alarm_OFF)).BeginInit();
  387. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_AGC2_Alarm_OFF)).BeginInit();
  388. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_DL2_Shutdown_Alarm_OFF)).BeginInit();
  389. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_DL2_Shutdown_Alarm_ON)).BeginInit();
  390. this.panel11.SuspendLayout();
  391. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_UL1_Shutdown_Alarm_ON)).BeginInit();
  392. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_ULO_Path1_High_Alarm_ON)).BeginInit();
  393. this.panel12.SuspendLayout();
  394. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_ULO_Path1_High_Alarm_OFF)).BeginInit();
  395. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_ALC1_Alarm_OFF)).BeginInit();
  396. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_ALC1_Alarm_ON)).BeginInit();
  397. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_UL1_Shutdown_Alarm_OFF)).BeginInit();
  398. this.panel3.SuspendLayout();
  399. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_AGC1_Alarm_ON)).BeginInit();
  400. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_DLI_Path1_High_Alarm_ON)).BeginInit();
  401. this.panel4.SuspendLayout();
  402. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_DLI_Path1_High_Alarm_OFF)).BeginInit();
  403. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_DLI_Path1_Low_Alarm_ON)).BeginInit();
  404. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_DLI_Path1_Low_Alarm_OFF)).BeginInit();
  405. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_AGC1_Alarm_OFF)).BeginInit();
  406. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_DL1_Shutdown_Alarm_OFF)).BeginInit();
  407. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_DL1_Shutdown_Alarm_ON)).BeginInit();
  408. this.panel_MainTitle.SuspendLayout();
  409. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_TempHigh_Alarm_ON)).BeginInit();
  410. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_TempHigh_Alarm_OFF)).BeginInit();
  411. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown1)).BeginInit();
  412. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown2)).BeginInit();
  413. this.SuspendLayout();
  414. //
  415. // textBox_FRBT_TIME
  416. //
  417. this.textBox_FRBT_TIME.Location = new System.Drawing.Point(700, 132);
  418. this.textBox_FRBT_TIME.Name = "textBox_FRBT_TIME";
  419. this.textBox_FRBT_TIME.Size = new System.Drawing.Size(67, 23);
  420. this.textBox_FRBT_TIME.TabIndex = 153;
  421. this.textBox_FRBT_TIME.Text = "20-07-02-07-09-15";
  422. //
  423. // label_BankSel
  424. //
  425. this.label_BankSel.AutoSize = true;
  426. this.label_BankSel.Location = new System.Drawing.Point(28, 677);
  427. this.label_BankSel.Name = "label_BankSel";
  428. this.label_BankSel.Size = new System.Drawing.Size(69, 15);
  429. this.label_BankSel.TabIndex = 152;
  430. this.label_BankSel.Text = "Bank Select";
  431. //
  432. // comboBox_BankSel
  433. //
  434. this.comboBox_BankSel.FormattingEnabled = true;
  435. this.comboBox_BankSel.Items.AddRange(new object[] {
  436. "BANK1",
  437. "BANK2",
  438. "AUTO"});
  439. this.comboBox_BankSel.Location = new System.Drawing.Point(18, 695);
  440. this.comboBox_BankSel.Name = "comboBox_BankSel";
  441. this.comboBox_BankSel.Size = new System.Drawing.Size(79, 23);
  442. this.comboBox_BankSel.TabIndex = 151;
  443. this.comboBox_BankSel.SelectedIndexChanged += new System.EventHandler(this.comboBox_BankSel_SelectedIndexChanged);
  444. //
  445. // button_MBICMake
  446. //
  447. this.button_MBICMake.Location = new System.Drawing.Point(18, 600);
  448. this.button_MBICMake.Name = "button_MBICMake";
  449. this.button_MBICMake.Size = new System.Drawing.Size(85, 23);
  450. this.button_MBICMake.TabIndex = 149;
  451. this.button_MBICMake.Text = "MBIC Make";
  452. this.button_MBICMake.UseVisualStyleBackColor = true;
  453. this.button_MBICMake.Click += new System.EventHandler(this.button_Make_Click);
  454. //
  455. // button_Test
  456. //
  457. this.button_Test.Location = new System.Drawing.Point(19, 571);
  458. this.button_Test.Name = "button_Test";
  459. this.button_Test.Size = new System.Drawing.Size(84, 23);
  460. this.button_Test.TabIndex = 149;
  461. this.button_Test.Text = "MBIC Down";
  462. this.button_Test.UseVisualStyleBackColor = true;
  463. this.button_Test.Click += new System.EventHandler(this.button_Test_Click);
  464. //
  465. // label66
  466. //
  467. this.label66.AutoSize = true;
  468. this.label66.Location = new System.Drawing.Point(319, 228);
  469. this.label66.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  470. this.label66.Name = "label66";
  471. this.label66.Size = new System.Drawing.Size(110, 15);
  472. this.label66.TabIndex = 100;
  473. this.label66.Text = "Temperature Offset";
  474. //
  475. // label13
  476. //
  477. this.label13.AutoSize = true;
  478. this.label13.Location = new System.Drawing.Point(319, 206);
  479. this.label13.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  480. this.label13.Name = "label13";
  481. this.label13.Size = new System.Drawing.Size(139, 15);
  482. this.label13.TabIndex = 100;
  483. this.label13.Text = "Temp. Threshold Default";
  484. //
  485. // checkBox_Fix
  486. //
  487. this.checkBox_Fix.AutoSize = true;
  488. this.checkBox_Fix.Location = new System.Drawing.Point(7, 379);
  489. this.checkBox_Fix.Name = "checkBox_Fix";
  490. this.checkBox_Fix.Size = new System.Drawing.Size(70, 19);
  491. this.checkBox_Fix.TabIndex = 147;
  492. this.checkBox_Fix.Text = "Data Fix";
  493. this.checkBox_Fix.UseVisualStyleBackColor = true;
  494. //
  495. // label_Temp
  496. //
  497. this.label_Temp.AutoSize = true;
  498. this.label_Temp.Font = new System.Drawing.Font("맑은 고딕", 18F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(129)));
  499. this.label_Temp.Location = new System.Drawing.Point(217, 177);
  500. this.label_Temp.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  501. this.label_Temp.Name = "label_Temp";
  502. this.label_Temp.Size = new System.Drawing.Size(55, 32);
  503. this.label_Temp.TabIndex = 148;
  504. this.label_Temp.Text = "----";
  505. //
  506. // numericUpDown_ShutdownUL3
  507. //
  508. this.numericUpDown_ShutdownUL3.Location = new System.Drawing.Point(41, 279);
  509. this.numericUpDown_ShutdownUL3.Name = "numericUpDown_ShutdownUL3";
  510. this.numericUpDown_ShutdownUL3.Size = new System.Drawing.Size(36, 23);
  511. this.numericUpDown_ShutdownUL3.TabIndex = 155;
  512. //
  513. // numericUpDown_ShutdownDL3
  514. //
  515. this.numericUpDown_ShutdownDL3.Location = new System.Drawing.Point(42, 274);
  516. this.numericUpDown_ShutdownDL3.Name = "numericUpDown_ShutdownDL3";
  517. this.numericUpDown_ShutdownDL3.Size = new System.Drawing.Size(36, 23);
  518. this.numericUpDown_ShutdownDL3.TabIndex = 155;
  519. //
  520. // numericUpDown_ALC3
  521. //
  522. this.numericUpDown_ALC3.Location = new System.Drawing.Point(9, 110);
  523. this.numericUpDown_ALC3.Maximum = new decimal(new int[] {
  524. 65535,
  525. 0,
  526. 0,
  527. 0});
  528. this.numericUpDown_ALC3.Minimum = new decimal(new int[] {
  529. 65535,
  530. 0,
  531. 0,
  532. -2147483648});
  533. this.numericUpDown_ALC3.Name = "numericUpDown_ALC3";
  534. this.numericUpDown_ALC3.Size = new System.Drawing.Size(65, 23);
  535. this.numericUpDown_ALC3.TabIndex = 152;
  536. this.numericUpDown_ALC3.Enter += new System.EventHandler(this.Activi_Change__SettingComplete);
  537. this.numericUpDown_ALC3.KeyDown += new System.Windows.Forms.KeyEventHandler(this.numericUpDown_User_KeyDown);
  538. this.numericUpDown_ALC3.Leave += new System.EventHandler(this.Activi_Change__Setting);
  539. //
  540. // numericUpDown_DL3_User
  541. //
  542. this.numericUpDown_DL3_User.DecimalPlaces = 2;
  543. this.numericUpDown_DL3_User.Increment = new decimal(new int[] {
  544. 5,
  545. 0,
  546. 0,
  547. 65536});
  548. this.numericUpDown_DL3_User.Location = new System.Drawing.Point(9, 87);
  549. this.numericUpDown_DL3_User.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
  550. this.numericUpDown_DL3_User.Maximum = new decimal(new int[] {
  551. 0,
  552. 0,
  553. 0,
  554. 0});
  555. this.numericUpDown_DL3_User.Minimum = new decimal(new int[] {
  556. 315,
  557. 0,
  558. 0,
  559. -2147418112});
  560. this.numericUpDown_DL3_User.Name = "numericUpDown_DL3_User";
  561. this.numericUpDown_DL3_User.Size = new System.Drawing.Size(65, 23);
  562. this.numericUpDown_DL3_User.TabIndex = 103;
  563. this.numericUpDown_DL3_User.Value = new decimal(new int[] {
  564. 315,
  565. 0,
  566. 0,
  567. -2147418112});
  568. this.numericUpDown_DL3_User.Enter += new System.EventHandler(this.Activi_Change__SettingComplete);
  569. this.numericUpDown_DL3_User.KeyDown += new System.Windows.Forms.KeyEventHandler(this.numericUpDown_User_KeyDown);
  570. this.numericUpDown_DL3_User.Leave += new System.EventHandler(this.Activi_Change__Setting);
  571. //
  572. // numericUpDown_UL3_User
  573. //
  574. this.numericUpDown_UL3_User.DecimalPlaces = 2;
  575. this.numericUpDown_UL3_User.Increment = new decimal(new int[] {
  576. 5,
  577. 0,
  578. 0,
  579. 65536});
  580. this.numericUpDown_UL3_User.Location = new System.Drawing.Point(9, 87);
  581. this.numericUpDown_UL3_User.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
  582. this.numericUpDown_UL3_User.Maximum = new decimal(new int[] {
  583. 0,
  584. 0,
  585. 0,
  586. 0});
  587. this.numericUpDown_UL3_User.Minimum = new decimal(new int[] {
  588. 315,
  589. 0,
  590. 0,
  591. -2147418112});
  592. this.numericUpDown_UL3_User.Name = "numericUpDown_UL3_User";
  593. this.numericUpDown_UL3_User.Size = new System.Drawing.Size(65, 23);
  594. this.numericUpDown_UL3_User.TabIndex = 103;
  595. this.numericUpDown_UL3_User.Value = new decimal(new int[] {
  596. 315,
  597. 0,
  598. 0,
  599. -2147418112});
  600. this.numericUpDown_UL3_User.Enter += new System.EventHandler(this.Activi_Change__SettingComplete);
  601. this.numericUpDown_UL3_User.KeyDown += new System.Windows.Forms.KeyEventHandler(this.numericUpDown_User_KeyDown);
  602. this.numericUpDown_UL3_User.Leave += new System.EventHandler(this.Activi_Change__Setting);
  603. //
  604. // numericUpDown_ATT_DL3
  605. //
  606. this.numericUpDown_ATT_DL3.DecimalPlaces = 2;
  607. this.numericUpDown_ATT_DL3.Increment = new decimal(new int[] {
  608. 5,
  609. 0,
  610. 0,
  611. 65536});
  612. this.numericUpDown_ATT_DL3.Location = new System.Drawing.Point(9, 60);
  613. this.numericUpDown_ATT_DL3.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
  614. this.numericUpDown_ATT_DL3.Maximum = new decimal(new int[] {
  615. 5,
  616. 0,
  617. 0,
  618. 0});
  619. this.numericUpDown_ATT_DL3.Minimum = new decimal(new int[] {
  620. 15,
  621. 0,
  622. 0,
  623. -2147483648});
  624. this.numericUpDown_ATT_DL3.Name = "numericUpDown_ATT_DL3";
  625. this.numericUpDown_ATT_DL3.Size = new System.Drawing.Size(65, 23);
  626. this.numericUpDown_ATT_DL3.TabIndex = 103;
  627. this.numericUpDown_ATT_DL3.Value = new decimal(new int[] {
  628. 15,
  629. 0,
  630. 0,
  631. -2147483648});
  632. this.numericUpDown_ATT_DL3.Enter += new System.EventHandler(this.Activi_Change__SettingComplete);
  633. this.numericUpDown_ATT_DL3.KeyDown += new System.Windows.Forms.KeyEventHandler(this.ATT_Enter);
  634. this.numericUpDown_ATT_DL3.Leave += new System.EventHandler(this.Activi_Change__Setting);
  635. //
  636. // numericUpDown_ATT_UL3
  637. //
  638. this.numericUpDown_ATT_UL3.DecimalPlaces = 2;
  639. this.numericUpDown_ATT_UL3.Increment = new decimal(new int[] {
  640. 5,
  641. 0,
  642. 0,
  643. 65536});
  644. this.numericUpDown_ATT_UL3.Location = new System.Drawing.Point(9, 60);
  645. this.numericUpDown_ATT_UL3.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
  646. this.numericUpDown_ATT_UL3.Maximum = new decimal(new int[] {
  647. 0,
  648. 0,
  649. 0,
  650. 0});
  651. this.numericUpDown_ATT_UL3.Minimum = new decimal(new int[] {
  652. 315,
  653. 0,
  654. 0,
  655. -2147418112});
  656. this.numericUpDown_ATT_UL3.Name = "numericUpDown_ATT_UL3";
  657. this.numericUpDown_ATT_UL3.Size = new System.Drawing.Size(65, 23);
  658. this.numericUpDown_ATT_UL3.TabIndex = 103;
  659. this.numericUpDown_ATT_UL3.Value = new decimal(new int[] {
  660. 315,
  661. 0,
  662. 0,
  663. -2147418112});
  664. this.numericUpDown_ATT_UL3.Enter += new System.EventHandler(this.Activi_Change__SettingComplete);
  665. this.numericUpDown_ATT_UL3.KeyDown += new System.Windows.Forms.KeyEventHandler(this.ATT_Enter);
  666. this.numericUpDown_ATT_UL3.Leave += new System.EventHandler(this.Activi_Change__Setting);
  667. //
  668. // numericUpDown_Temperature_Offset
  669. //
  670. this.numericUpDown_Temperature_Offset.Location = new System.Drawing.Point(483, 226);
  671. this.numericUpDown_Temperature_Offset.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
  672. this.numericUpDown_Temperature_Offset.Maximum = new decimal(new int[] {
  673. 20,
  674. 0,
  675. 0,
  676. 0});
  677. this.numericUpDown_Temperature_Offset.Minimum = new decimal(new int[] {
  678. 20,
  679. 0,
  680. 0,
  681. -2147483648});
  682. this.numericUpDown_Temperature_Offset.Name = "numericUpDown_Temperature_Offset";
  683. this.numericUpDown_Temperature_Offset.Size = new System.Drawing.Size(44, 23);
  684. this.numericUpDown_Temperature_Offset.TabIndex = 103;
  685. this.numericUpDown_Temperature_Offset.Enter += new System.EventHandler(this.Activi_Change__SettingComplete);
  686. this.numericUpDown_Temperature_Offset.KeyDown += new System.Windows.Forms.KeyEventHandler(this.numericUpDown_User_KeyDown);
  687. this.numericUpDown_Temperature_Offset.Leave += new System.EventHandler(this.Activi_Change__Setting);
  688. //
  689. // numericUpDown_Temp_Threshold
  690. //
  691. this.numericUpDown_Temp_Threshold.Location = new System.Drawing.Point(483, 177);
  692. this.numericUpDown_Temp_Threshold.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
  693. this.numericUpDown_Temp_Threshold.Maximum = new decimal(new int[] {
  694. 99,
  695. 0,
  696. 0,
  697. 0});
  698. this.numericUpDown_Temp_Threshold.Minimum = new decimal(new int[] {
  699. 30,
  700. 0,
  701. 0,
  702. -2147483648});
  703. this.numericUpDown_Temp_Threshold.Name = "numericUpDown_Temp_Threshold";
  704. this.numericUpDown_Temp_Threshold.Size = new System.Drawing.Size(44, 23);
  705. this.numericUpDown_Temp_Threshold.TabIndex = 103;
  706. this.numericUpDown_Temp_Threshold.Enter += new System.EventHandler(this.Activi_Change__SettingComplete);
  707. this.numericUpDown_Temp_Threshold.KeyDown += new System.Windows.Forms.KeyEventHandler(this.numericUpDown_User_KeyDown);
  708. this.numericUpDown_Temp_Threshold.Leave += new System.EventHandler(this.Activi_Change__Setting);
  709. //
  710. // numericUpDown_Temp_Threshold_Default
  711. //
  712. this.numericUpDown_Temp_Threshold_Default.Location = new System.Drawing.Point(483, 201);
  713. this.numericUpDown_Temp_Threshold_Default.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
  714. this.numericUpDown_Temp_Threshold_Default.Maximum = new decimal(new int[] {
  715. 200,
  716. 0,
  717. 0,
  718. 0});
  719. this.numericUpDown_Temp_Threshold_Default.Minimum = new decimal(new int[] {
  720. 200,
  721. 0,
  722. 0,
  723. -2147483648});
  724. this.numericUpDown_Temp_Threshold_Default.Name = "numericUpDown_Temp_Threshold_Default";
  725. this.numericUpDown_Temp_Threshold_Default.Size = new System.Drawing.Size(44, 23);
  726. this.numericUpDown_Temp_Threshold_Default.TabIndex = 103;
  727. this.numericUpDown_Temp_Threshold_Default.Enter += new System.EventHandler(this.Activi_Change__SettingComplete);
  728. this.numericUpDown_Temp_Threshold_Default.KeyDown += new System.Windows.Forms.KeyEventHandler(this.numericUpDown_User_KeyDown);
  729. this.numericUpDown_Temp_Threshold_Default.Leave += new System.EventHandler(this.Activi_Change__Setting);
  730. //
  731. // numericUpDown_ShutdownUL4
  732. //
  733. this.numericUpDown_ShutdownUL4.Location = new System.Drawing.Point(42, 279);
  734. this.numericUpDown_ShutdownUL4.Name = "numericUpDown_ShutdownUL4";
  735. this.numericUpDown_ShutdownUL4.Size = new System.Drawing.Size(36, 23);
  736. this.numericUpDown_ShutdownUL4.TabIndex = 155;
  737. //
  738. // numericUpDown_ShutdownDL4
  739. //
  740. this.numericUpDown_ShutdownDL4.Location = new System.Drawing.Point(45, 277);
  741. this.numericUpDown_ShutdownDL4.Name = "numericUpDown_ShutdownDL4";
  742. this.numericUpDown_ShutdownDL4.Size = new System.Drawing.Size(36, 23);
  743. this.numericUpDown_ShutdownDL4.TabIndex = 155;
  744. //
  745. // numericUpDown_ALC4
  746. //
  747. this.numericUpDown_ALC4.Location = new System.Drawing.Point(7, 110);
  748. this.numericUpDown_ALC4.Minimum = new decimal(new int[] {
  749. 40,
  750. 0,
  751. 0,
  752. -2147483648});
  753. this.numericUpDown_ALC4.Name = "numericUpDown_ALC4";
  754. this.numericUpDown_ALC4.Size = new System.Drawing.Size(65, 23);
  755. this.numericUpDown_ALC4.TabIndex = 152;
  756. this.numericUpDown_ALC4.Enter += new System.EventHandler(this.Activi_Change__SettingComplete);
  757. this.numericUpDown_ALC4.KeyDown += new System.Windows.Forms.KeyEventHandler(this.numericUpDown_User_KeyDown);
  758. this.numericUpDown_ALC4.Leave += new System.EventHandler(this.Activi_Change__Setting);
  759. //
  760. // numericUpDown_DL4_User
  761. //
  762. this.numericUpDown_DL4_User.DecimalPlaces = 2;
  763. this.numericUpDown_DL4_User.Increment = new decimal(new int[] {
  764. 5,
  765. 0,
  766. 0,
  767. 65536});
  768. this.numericUpDown_DL4_User.Location = new System.Drawing.Point(7, 87);
  769. this.numericUpDown_DL4_User.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
  770. this.numericUpDown_DL4_User.Maximum = new decimal(new int[] {
  771. 0,
  772. 0,
  773. 0,
  774. 0});
  775. this.numericUpDown_DL4_User.Minimum = new decimal(new int[] {
  776. 315,
  777. 0,
  778. 0,
  779. -2147418112});
  780. this.numericUpDown_DL4_User.Name = "numericUpDown_DL4_User";
  781. this.numericUpDown_DL4_User.Size = new System.Drawing.Size(65, 23);
  782. this.numericUpDown_DL4_User.TabIndex = 103;
  783. this.numericUpDown_DL4_User.Value = new decimal(new int[] {
  784. 315,
  785. 0,
  786. 0,
  787. -2147418112});
  788. this.numericUpDown_DL4_User.Enter += new System.EventHandler(this.Activi_Change__SettingComplete);
  789. this.numericUpDown_DL4_User.KeyDown += new System.Windows.Forms.KeyEventHandler(this.numericUpDown_User_KeyDown);
  790. this.numericUpDown_DL4_User.Leave += new System.EventHandler(this.Activi_Change__Setting);
  791. //
  792. // numericUpDown_UL4_User
  793. //
  794. this.numericUpDown_UL4_User.DecimalPlaces = 2;
  795. this.numericUpDown_UL4_User.Increment = new decimal(new int[] {
  796. 5,
  797. 0,
  798. 0,
  799. 65536});
  800. this.numericUpDown_UL4_User.Location = new System.Drawing.Point(7, 87);
  801. this.numericUpDown_UL4_User.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
  802. this.numericUpDown_UL4_User.Maximum = new decimal(new int[] {
  803. 0,
  804. 0,
  805. 0,
  806. 0});
  807. this.numericUpDown_UL4_User.Minimum = new decimal(new int[] {
  808. 315,
  809. 0,
  810. 0,
  811. -2147418112});
  812. this.numericUpDown_UL4_User.Name = "numericUpDown_UL4_User";
  813. this.numericUpDown_UL4_User.Size = new System.Drawing.Size(65, 23);
  814. this.numericUpDown_UL4_User.TabIndex = 103;
  815. this.numericUpDown_UL4_User.Value = new decimal(new int[] {
  816. 315,
  817. 0,
  818. 0,
  819. -2147418112});
  820. this.numericUpDown_UL4_User.Enter += new System.EventHandler(this.Activi_Change__SettingComplete);
  821. this.numericUpDown_UL4_User.KeyDown += new System.Windows.Forms.KeyEventHandler(this.numericUpDown_User_KeyDown);
  822. this.numericUpDown_UL4_User.Leave += new System.EventHandler(this.Activi_Change__Setting);
  823. //
  824. // numericUpDown_ATT_DL4
  825. //
  826. this.numericUpDown_ATT_DL4.DecimalPlaces = 2;
  827. this.numericUpDown_ATT_DL4.Increment = new decimal(new int[] {
  828. 5,
  829. 0,
  830. 0,
  831. 65536});
  832. this.numericUpDown_ATT_DL4.Location = new System.Drawing.Point(7, 60);
  833. this.numericUpDown_ATT_DL4.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
  834. this.numericUpDown_ATT_DL4.Maximum = new decimal(new int[] {
  835. 5,
  836. 0,
  837. 0,
  838. 0});
  839. this.numericUpDown_ATT_DL4.Minimum = new decimal(new int[] {
  840. 15,
  841. 0,
  842. 0,
  843. -2147483648});
  844. this.numericUpDown_ATT_DL4.Name = "numericUpDown_ATT_DL4";
  845. this.numericUpDown_ATT_DL4.Size = new System.Drawing.Size(65, 23);
  846. this.numericUpDown_ATT_DL4.TabIndex = 103;
  847. this.numericUpDown_ATT_DL4.Value = new decimal(new int[] {
  848. 15,
  849. 0,
  850. 0,
  851. -2147483648});
  852. this.numericUpDown_ATT_DL4.Enter += new System.EventHandler(this.Activi_Change__SettingComplete);
  853. this.numericUpDown_ATT_DL4.KeyDown += new System.Windows.Forms.KeyEventHandler(this.ATT_Enter);
  854. this.numericUpDown_ATT_DL4.Leave += new System.EventHandler(this.Activi_Change__Setting);
  855. //
  856. // numericUpDown_ATT_UL4
  857. //
  858. this.numericUpDown_ATT_UL4.DecimalPlaces = 2;
  859. this.numericUpDown_ATT_UL4.Increment = new decimal(new int[] {
  860. 5,
  861. 0,
  862. 0,
  863. 65536});
  864. this.numericUpDown_ATT_UL4.Location = new System.Drawing.Point(7, 60);
  865. this.numericUpDown_ATT_UL4.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
  866. this.numericUpDown_ATT_UL4.Maximum = new decimal(new int[] {
  867. 0,
  868. 0,
  869. 0,
  870. 0});
  871. this.numericUpDown_ATT_UL4.Minimum = new decimal(new int[] {
  872. 315,
  873. 0,
  874. 0,
  875. -2147418112});
  876. this.numericUpDown_ATT_UL4.Name = "numericUpDown_ATT_UL4";
  877. this.numericUpDown_ATT_UL4.Size = new System.Drawing.Size(65, 23);
  878. this.numericUpDown_ATT_UL4.TabIndex = 103;
  879. this.numericUpDown_ATT_UL4.Value = new decimal(new int[] {
  880. 315,
  881. 0,
  882. 0,
  883. -2147418112});
  884. this.numericUpDown_ATT_UL4.Enter += new System.EventHandler(this.Activi_Change__SettingComplete);
  885. this.numericUpDown_ATT_UL4.KeyDown += new System.Windows.Forms.KeyEventHandler(this.ATT_Enter);
  886. this.numericUpDown_ATT_UL4.Leave += new System.EventHandler(this.Activi_Change__Setting);
  887. //
  888. // numericUpDown_ShutdownDL1
  889. //
  890. this.numericUpDown_ShutdownDL1.Location = new System.Drawing.Point(40, 274);
  891. this.numericUpDown_ShutdownDL1.Name = "numericUpDown_ShutdownDL1";
  892. this.numericUpDown_ShutdownDL1.Size = new System.Drawing.Size(36, 23);
  893. this.numericUpDown_ShutdownDL1.TabIndex = 155;
  894. //
  895. // numericUpDown_ShutdownUL1
  896. //
  897. this.numericUpDown_ShutdownUL1.Location = new System.Drawing.Point(42, 279);
  898. this.numericUpDown_ShutdownUL1.Name = "numericUpDown_ShutdownUL1";
  899. this.numericUpDown_ShutdownUL1.Size = new System.Drawing.Size(36, 23);
  900. this.numericUpDown_ShutdownUL1.TabIndex = 155;
  901. //
  902. // numericUpDown_ALC1
  903. //
  904. this.numericUpDown_ALC1.Location = new System.Drawing.Point(9, 112);
  905. this.numericUpDown_ALC1.Maximum = new decimal(new int[] {
  906. 65535,
  907. 0,
  908. 0,
  909. 0});
  910. this.numericUpDown_ALC1.Minimum = new decimal(new int[] {
  911. 65535,
  912. 0,
  913. 0,
  914. -2147483648});
  915. this.numericUpDown_ALC1.Name = "numericUpDown_ALC1";
  916. this.numericUpDown_ALC1.Size = new System.Drawing.Size(65, 23);
  917. this.numericUpDown_ALC1.TabIndex = 149;
  918. this.numericUpDown_ALC1.Enter += new System.EventHandler(this.Activi_Change__SettingComplete);
  919. this.numericUpDown_ALC1.KeyDown += new System.Windows.Forms.KeyEventHandler(this.numericUpDown_User_KeyDown);
  920. this.numericUpDown_ALC1.Leave += new System.EventHandler(this.Activi_Change__Setting);
  921. //
  922. // numericUpDown_DL1_User
  923. //
  924. this.numericUpDown_DL1_User.DecimalPlaces = 2;
  925. this.numericUpDown_DL1_User.Increment = new decimal(new int[] {
  926. 5,
  927. 0,
  928. 0,
  929. 65536});
  930. this.numericUpDown_DL1_User.Location = new System.Drawing.Point(9, 87);
  931. this.numericUpDown_DL1_User.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
  932. this.numericUpDown_DL1_User.Maximum = new decimal(new int[] {
  933. 0,
  934. 0,
  935. 0,
  936. 0});
  937. this.numericUpDown_DL1_User.Minimum = new decimal(new int[] {
  938. 315,
  939. 0,
  940. 0,
  941. -2147418112});
  942. this.numericUpDown_DL1_User.Name = "numericUpDown_DL1_User";
  943. this.numericUpDown_DL1_User.Size = new System.Drawing.Size(65, 23);
  944. this.numericUpDown_DL1_User.TabIndex = 103;
  945. this.numericUpDown_DL1_User.Value = new decimal(new int[] {
  946. 315,
  947. 0,
  948. 0,
  949. -2147418112});
  950. this.numericUpDown_DL1_User.Enter += new System.EventHandler(this.Activi_Change__SettingComplete);
  951. this.numericUpDown_DL1_User.KeyDown += new System.Windows.Forms.KeyEventHandler(this.numericUpDown_User_KeyDown);
  952. this.numericUpDown_DL1_User.Leave += new System.EventHandler(this.Activi_Change__Setting);
  953. //
  954. // numericUpDown_UL1_User
  955. //
  956. this.numericUpDown_UL1_User.DecimalPlaces = 2;
  957. this.numericUpDown_UL1_User.Increment = new decimal(new int[] {
  958. 5,
  959. 0,
  960. 0,
  961. 65536});
  962. this.numericUpDown_UL1_User.Location = new System.Drawing.Point(9, 87);
  963. this.numericUpDown_UL1_User.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
  964. this.numericUpDown_UL1_User.Maximum = new decimal(new int[] {
  965. 0,
  966. 0,
  967. 0,
  968. 0});
  969. this.numericUpDown_UL1_User.Minimum = new decimal(new int[] {
  970. 315,
  971. 0,
  972. 0,
  973. -2147418112});
  974. this.numericUpDown_UL1_User.Name = "numericUpDown_UL1_User";
  975. this.numericUpDown_UL1_User.Size = new System.Drawing.Size(65, 23);
  976. this.numericUpDown_UL1_User.TabIndex = 103;
  977. this.numericUpDown_UL1_User.Value = new decimal(new int[] {
  978. 315,
  979. 0,
  980. 0,
  981. -2147418112});
  982. this.numericUpDown_UL1_User.Enter += new System.EventHandler(this.Activi_Change__SettingComplete);
  983. this.numericUpDown_UL1_User.KeyDown += new System.Windows.Forms.KeyEventHandler(this.numericUpDown_User_KeyDown);
  984. this.numericUpDown_UL1_User.Leave += new System.EventHandler(this.Activi_Change__Setting);
  985. //
  986. // numericUpDown_ATT_DL1
  987. //
  988. this.numericUpDown_ATT_DL1.DecimalPlaces = 2;
  989. this.numericUpDown_ATT_DL1.Increment = new decimal(new int[] {
  990. 5,
  991. 0,
  992. 0,
  993. 65536});
  994. this.numericUpDown_ATT_DL1.Location = new System.Drawing.Point(9, 60);
  995. this.numericUpDown_ATT_DL1.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
  996. this.numericUpDown_ATT_DL1.Maximum = new decimal(new int[] {
  997. 5,
  998. 0,
  999. 0,
  1000. 0});
  1001. this.numericUpDown_ATT_DL1.Minimum = new decimal(new int[] {
  1002. 15,
  1003. 0,
  1004. 0,
  1005. -2147483648});
  1006. this.numericUpDown_ATT_DL1.Name = "numericUpDown_ATT_DL1";
  1007. this.numericUpDown_ATT_DL1.Size = new System.Drawing.Size(65, 23);
  1008. this.numericUpDown_ATT_DL1.TabIndex = 103;
  1009. this.numericUpDown_ATT_DL1.Value = new decimal(new int[] {
  1010. 15,
  1011. 0,
  1012. 0,
  1013. -2147483648});
  1014. this.numericUpDown_ATT_DL1.Enter += new System.EventHandler(this.Activi_Change__SettingComplete);
  1015. this.numericUpDown_ATT_DL1.KeyDown += new System.Windows.Forms.KeyEventHandler(this.ATT_Enter);
  1016. this.numericUpDown_ATT_DL1.Leave += new System.EventHandler(this.Activi_Change__Setting);
  1017. //
  1018. // numericUpDown_ATT_UL1
  1019. //
  1020. this.numericUpDown_ATT_UL1.DecimalPlaces = 2;
  1021. this.numericUpDown_ATT_UL1.Increment = new decimal(new int[] {
  1022. 5,
  1023. 0,
  1024. 0,
  1025. 65536});
  1026. this.numericUpDown_ATT_UL1.Location = new System.Drawing.Point(9, 60);
  1027. this.numericUpDown_ATT_UL1.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
  1028. this.numericUpDown_ATT_UL1.Maximum = new decimal(new int[] {
  1029. 0,
  1030. 0,
  1031. 0,
  1032. 0});
  1033. this.numericUpDown_ATT_UL1.Minimum = new decimal(new int[] {
  1034. 315,
  1035. 0,
  1036. 0,
  1037. -2147418112});
  1038. this.numericUpDown_ATT_UL1.Name = "numericUpDown_ATT_UL1";
  1039. this.numericUpDown_ATT_UL1.Size = new System.Drawing.Size(65, 23);
  1040. this.numericUpDown_ATT_UL1.TabIndex = 103;
  1041. this.numericUpDown_ATT_UL1.Value = new decimal(new int[] {
  1042. 315,
  1043. 0,
  1044. 0,
  1045. -2147418112});
  1046. this.numericUpDown_ATT_UL1.Enter += new System.EventHandler(this.Activi_Change__SettingComplete);
  1047. this.numericUpDown_ATT_UL1.KeyDown += new System.Windows.Forms.KeyEventHandler(this.ATT_Enter);
  1048. this.numericUpDown_ATT_UL1.Leave += new System.EventHandler(this.Activi_Change__Setting);
  1049. //
  1050. // button_FRBT_TimeSetting
  1051. //
  1052. this.button_FRBT_TimeSetting.Location = new System.Drawing.Point(780, 133);
  1053. this.button_FRBT_TimeSetting.Name = "button_FRBT_TimeSetting";
  1054. this.button_FRBT_TimeSetting.Size = new System.Drawing.Size(75, 23);
  1055. this.button_FRBT_TimeSetting.TabIndex = 146;
  1056. this.button_FRBT_TimeSetting.Text = "FRBT TIME SETTING";
  1057. this.button_FRBT_TimeSetting.UseVisualStyleBackColor = true;
  1058. this.button_FRBT_TimeSetting.Click += new System.EventHandler(this.button_FRBT_TimeSetting_Click);
  1059. //
  1060. // numericUpDown_ShutdownUL2
  1061. //
  1062. this.numericUpDown_ShutdownUL2.Location = new System.Drawing.Point(42, 278);
  1063. this.numericUpDown_ShutdownUL2.Name = "numericUpDown_ShutdownUL2";
  1064. this.numericUpDown_ShutdownUL2.Size = new System.Drawing.Size(36, 23);
  1065. this.numericUpDown_ShutdownUL2.TabIndex = 155;
  1066. //
  1067. // numericUpDown_ShutdownDL2
  1068. //
  1069. this.numericUpDown_ShutdownDL2.Location = new System.Drawing.Point(43, 274);
  1070. this.numericUpDown_ShutdownDL2.Name = "numericUpDown_ShutdownDL2";
  1071. this.numericUpDown_ShutdownDL2.Size = new System.Drawing.Size(36, 23);
  1072. this.numericUpDown_ShutdownDL2.TabIndex = 155;
  1073. //
  1074. // numericUpDown_ALC2
  1075. //
  1076. this.numericUpDown_ALC2.Location = new System.Drawing.Point(7, 110);
  1077. this.numericUpDown_ALC2.Maximum = new decimal(new int[] {
  1078. 65535,
  1079. 0,
  1080. 0,
  1081. 0});
  1082. this.numericUpDown_ALC2.Minimum = new decimal(new int[] {
  1083. 65535,
  1084. 0,
  1085. 0,
  1086. -2147483648});
  1087. this.numericUpDown_ALC2.Name = "numericUpDown_ALC2";
  1088. this.numericUpDown_ALC2.Size = new System.Drawing.Size(65, 23);
  1089. this.numericUpDown_ALC2.TabIndex = 152;
  1090. this.numericUpDown_ALC2.Enter += new System.EventHandler(this.Activi_Change__SettingComplete);
  1091. this.numericUpDown_ALC2.KeyDown += new System.Windows.Forms.KeyEventHandler(this.numericUpDown_User_KeyDown);
  1092. this.numericUpDown_ALC2.Leave += new System.EventHandler(this.Activi_Change__Setting);
  1093. //
  1094. // numericUpDown_DL2_User
  1095. //
  1096. this.numericUpDown_DL2_User.DecimalPlaces = 2;
  1097. this.numericUpDown_DL2_User.Increment = new decimal(new int[] {
  1098. 5,
  1099. 0,
  1100. 0,
  1101. 65536});
  1102. this.numericUpDown_DL2_User.Location = new System.Drawing.Point(9, 87);
  1103. this.numericUpDown_DL2_User.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
  1104. this.numericUpDown_DL2_User.Maximum = new decimal(new int[] {
  1105. 0,
  1106. 0,
  1107. 0,
  1108. 0});
  1109. this.numericUpDown_DL2_User.Minimum = new decimal(new int[] {
  1110. 315,
  1111. 0,
  1112. 0,
  1113. -2147418112});
  1114. this.numericUpDown_DL2_User.Name = "numericUpDown_DL2_User";
  1115. this.numericUpDown_DL2_User.Size = new System.Drawing.Size(65, 23);
  1116. this.numericUpDown_DL2_User.TabIndex = 103;
  1117. this.numericUpDown_DL2_User.Value = new decimal(new int[] {
  1118. 315,
  1119. 0,
  1120. 0,
  1121. -2147418112});
  1122. this.numericUpDown_DL2_User.Enter += new System.EventHandler(this.Activi_Change__SettingComplete);
  1123. this.numericUpDown_DL2_User.KeyDown += new System.Windows.Forms.KeyEventHandler(this.numericUpDown_User_KeyDown);
  1124. this.numericUpDown_DL2_User.Leave += new System.EventHandler(this.Activi_Change__Setting);
  1125. //
  1126. // numericUpDown_UL2_User
  1127. //
  1128. this.numericUpDown_UL2_User.DecimalPlaces = 2;
  1129. this.numericUpDown_UL2_User.Increment = new decimal(new int[] {
  1130. 5,
  1131. 0,
  1132. 0,
  1133. 65536});
  1134. this.numericUpDown_UL2_User.Location = new System.Drawing.Point(7, 87);
  1135. this.numericUpDown_UL2_User.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
  1136. this.numericUpDown_UL2_User.Maximum = new decimal(new int[] {
  1137. 0,
  1138. 0,
  1139. 0,
  1140. 0});
  1141. this.numericUpDown_UL2_User.Minimum = new decimal(new int[] {
  1142. 315,
  1143. 0,
  1144. 0,
  1145. -2147418112});
  1146. this.numericUpDown_UL2_User.Name = "numericUpDown_UL2_User";
  1147. this.numericUpDown_UL2_User.Size = new System.Drawing.Size(65, 23);
  1148. this.numericUpDown_UL2_User.TabIndex = 103;
  1149. this.numericUpDown_UL2_User.Value = new decimal(new int[] {
  1150. 315,
  1151. 0,
  1152. 0,
  1153. -2147418112});
  1154. this.numericUpDown_UL2_User.Enter += new System.EventHandler(this.Activi_Change__SettingComplete);
  1155. this.numericUpDown_UL2_User.KeyDown += new System.Windows.Forms.KeyEventHandler(this.numericUpDown_User_KeyDown);
  1156. this.numericUpDown_UL2_User.Leave += new System.EventHandler(this.Activi_Change__Setting);
  1157. //
  1158. // numericUpDown_ATT_DL2
  1159. //
  1160. this.numericUpDown_ATT_DL2.DecimalPlaces = 2;
  1161. this.numericUpDown_ATT_DL2.Increment = new decimal(new int[] {
  1162. 5,
  1163. 0,
  1164. 0,
  1165. 65536});
  1166. this.numericUpDown_ATT_DL2.Location = new System.Drawing.Point(8, 60);
  1167. this.numericUpDown_ATT_DL2.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
  1168. this.numericUpDown_ATT_DL2.Maximum = new decimal(new int[] {
  1169. 5,
  1170. 0,
  1171. 0,
  1172. 0});
  1173. this.numericUpDown_ATT_DL2.Minimum = new decimal(new int[] {
  1174. 15,
  1175. 0,
  1176. 0,
  1177. -2147483648});
  1178. this.numericUpDown_ATT_DL2.Name = "numericUpDown_ATT_DL2";
  1179. this.numericUpDown_ATT_DL2.Size = new System.Drawing.Size(65, 23);
  1180. this.numericUpDown_ATT_DL2.TabIndex = 103;
  1181. this.numericUpDown_ATT_DL2.Value = new decimal(new int[] {
  1182. 15,
  1183. 0,
  1184. 0,
  1185. -2147483648});
  1186. this.numericUpDown_ATT_DL2.Enter += new System.EventHandler(this.Activi_Change__SettingComplete);
  1187. this.numericUpDown_ATT_DL2.KeyDown += new System.Windows.Forms.KeyEventHandler(this.ATT_Enter);
  1188. this.numericUpDown_ATT_DL2.Leave += new System.EventHandler(this.Activi_Change__Setting);
  1189. //
  1190. // numericUpDown_ATT_UL2
  1191. //
  1192. this.numericUpDown_ATT_UL2.DecimalPlaces = 2;
  1193. this.numericUpDown_ATT_UL2.Increment = new decimal(new int[] {
  1194. 5,
  1195. 0,
  1196. 0,
  1197. 65536});
  1198. this.numericUpDown_ATT_UL2.Location = new System.Drawing.Point(7, 60);
  1199. this.numericUpDown_ATT_UL2.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
  1200. this.numericUpDown_ATT_UL2.Maximum = new decimal(new int[] {
  1201. 0,
  1202. 0,
  1203. 0,
  1204. 0});
  1205. this.numericUpDown_ATT_UL2.Minimum = new decimal(new int[] {
  1206. 315,
  1207. 0,
  1208. 0,
  1209. -2147418112});
  1210. this.numericUpDown_ATT_UL2.Name = "numericUpDown_ATT_UL2";
  1211. this.numericUpDown_ATT_UL2.Size = new System.Drawing.Size(65, 23);
  1212. this.numericUpDown_ATT_UL2.TabIndex = 103;
  1213. this.numericUpDown_ATT_UL2.Value = new decimal(new int[] {
  1214. 315,
  1215. 0,
  1216. 0,
  1217. -2147418112});
  1218. this.numericUpDown_ATT_UL2.Enter += new System.EventHandler(this.Activi_Change__SettingComplete);
  1219. this.numericUpDown_ATT_UL2.KeyDown += new System.Windows.Forms.KeyEventHandler(this.ATT_Enter);
  1220. this.numericUpDown_ATT_UL2.Leave += new System.EventHandler(this.Activi_Change__Setting);
  1221. //
  1222. // button_FirmwareUpdate
  1223. //
  1224. this.button_FirmwareUpdate.Location = new System.Drawing.Point(4, 194);
  1225. this.button_FirmwareUpdate.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
  1226. this.button_FirmwareUpdate.Name = "button_FirmwareUpdate";
  1227. this.button_FirmwareUpdate.Size = new System.Drawing.Size(107, 34);
  1228. this.button_FirmwareUpdate.TabIndex = 93;
  1229. this.button_FirmwareUpdate.Text = "Firmware Update";
  1230. this.button_FirmwareUpdate.UseVisualStyleBackColor = true;
  1231. this.button_FirmwareUpdate.Click += new System.EventHandler(this.button_FirmwareUpdate_Click);
  1232. //
  1233. // button_terminal
  1234. //
  1235. this.button_terminal.Location = new System.Drawing.Point(4, 148);
  1236. this.button_terminal.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
  1237. this.button_terminal.Name = "button_terminal";
  1238. this.button_terminal.Size = new System.Drawing.Size(107, 34);
  1239. this.button_terminal.TabIndex = 94;
  1240. this.button_terminal.Text = "Terminal";
  1241. this.button_terminal.UseVisualStyleBackColor = true;
  1242. this.button_terminal.Click += new System.EventHandler(this.button_terminal_Click);
  1243. //
  1244. // cmCom_Port
  1245. //
  1246. this.cmCom_Port.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  1247. | System.Windows.Forms.AnchorStyles.Left)
  1248. | System.Windows.Forms.AnchorStyles.Right)));
  1249. this.cmCom_Port.AutoSize = true;
  1250. this.cmCom_Port.Location = new System.Drawing.Point(2, 12);
  1251. this.cmCom_Port.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  1252. this.cmCom_Port.Name = "cmCom_Port";
  1253. this.cmCom_Port.Size = new System.Drawing.Size(59, 15);
  1254. this.cmCom_Port.TabIndex = 89;
  1255. this.cmCom_Port.Text = "Com Port";
  1256. //
  1257. // button_PortOpen
  1258. //
  1259. this.button_PortOpen.Location = new System.Drawing.Point(4, 104);
  1260. this.button_PortOpen.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
  1261. this.button_PortOpen.Name = "button_PortOpen";
  1262. this.button_PortOpen.Size = new System.Drawing.Size(107, 34);
  1263. this.button_PortOpen.TabIndex = 86;
  1264. this.button_PortOpen.Text = "Port Open";
  1265. this.button_PortOpen.UseVisualStyleBackColor = true;
  1266. this.button_PortOpen.Click += new System.EventHandler(this.button_PortOpen_Click);
  1267. //
  1268. // comboBox_Port
  1269. //
  1270. this.comboBox_Port.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  1271. | System.Windows.Forms.AnchorStyles.Left)
  1272. | System.Windows.Forms.AnchorStyles.Right)));
  1273. this.comboBox_Port.Cursor = System.Windows.Forms.Cursors.Default;
  1274. this.comboBox_Port.FormattingEnabled = true;
  1275. this.comboBox_Port.Location = new System.Drawing.Point(5, 27);
  1276. this.comboBox_Port.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
  1277. this.comboBox_Port.Name = "comboBox_Port";
  1278. this.comboBox_Port.Size = new System.Drawing.Size(91, 23);
  1279. this.comboBox_Port.TabIndex = 88;
  1280. //
  1281. // cmBaudRate
  1282. //
  1283. this.cmBaudRate.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  1284. | System.Windows.Forms.AnchorStyles.Left)
  1285. | System.Windows.Forms.AnchorStyles.Right)));
  1286. this.cmBaudRate.AutoSize = true;
  1287. this.cmBaudRate.Location = new System.Drawing.Point(2, 63);
  1288. this.cmBaudRate.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  1289. this.cmBaudRate.Name = "cmBaudRate";
  1290. this.cmBaudRate.Size = new System.Drawing.Size(88, 15);
  1291. this.cmBaudRate.TabIndex = 90;
  1292. this.cmBaudRate.Text = "Baud Rate(bps)";
  1293. //
  1294. // comboBox_baudrate
  1295. //
  1296. this.comboBox_baudrate.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  1297. | System.Windows.Forms.AnchorStyles.Left)
  1298. | System.Windows.Forms.AnchorStyles.Right)));
  1299. this.comboBox_baudrate.FormattingEnabled = true;
  1300. this.comboBox_baudrate.Items.AddRange(new object[] {
  1301. "9600",
  1302. "14400",
  1303. "19200",
  1304. "38400",
  1305. "57600",
  1306. "115200",
  1307. "128000",
  1308. "921600"});
  1309. this.comboBox_baudrate.Location = new System.Drawing.Point(4, 78);
  1310. this.comboBox_baudrate.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
  1311. this.comboBox_baudrate.Name = "comboBox_baudrate";
  1312. this.comboBox_baudrate.Size = new System.Drawing.Size(91, 23);
  1313. this.comboBox_baudrate.TabIndex = 91;
  1314. this.comboBox_baudrate.Text = "115200";
  1315. //
  1316. // textBox_DET_DL3_dBm
  1317. //
  1318. this.textBox_DET_DL3_dBm.Location = new System.Drawing.Point(6, 162);
  1319. this.textBox_DET_DL3_dBm.Name = "textBox_DET_DL3_dBm";
  1320. this.textBox_DET_DL3_dBm.ReadOnly = true;
  1321. this.textBox_DET_DL3_dBm.Size = new System.Drawing.Size(65, 23);
  1322. this.textBox_DET_DL3_dBm.TabIndex = 148;
  1323. //
  1324. // textBox_DET_UL3_dBm
  1325. //
  1326. this.textBox_DET_UL3_dBm.Location = new System.Drawing.Point(7, 166);
  1327. this.textBox_DET_UL3_dBm.Name = "textBox_DET_UL3_dBm";
  1328. this.textBox_DET_UL3_dBm.ReadOnly = true;
  1329. this.textBox_DET_UL3_dBm.Size = new System.Drawing.Size(65, 23);
  1330. this.textBox_DET_UL3_dBm.TabIndex = 149;
  1331. //
  1332. // textBox_DET_DL3
  1333. //
  1334. this.textBox_DET_DL3.Location = new System.Drawing.Point(5, 189);
  1335. this.textBox_DET_DL3.Name = "textBox_DET_DL3";
  1336. this.textBox_DET_DL3.ReadOnly = true;
  1337. this.textBox_DET_DL3.Size = new System.Drawing.Size(65, 23);
  1338. this.textBox_DET_DL3.TabIndex = 148;
  1339. //
  1340. // textBox_DET_UL3
  1341. //
  1342. this.textBox_DET_UL3.Location = new System.Drawing.Point(7, 193);
  1343. this.textBox_DET_UL3.Name = "textBox_DET_UL3";
  1344. this.textBox_DET_UL3.ReadOnly = true;
  1345. this.textBox_DET_UL3.Size = new System.Drawing.Size(65, 23);
  1346. this.textBox_DET_UL3.TabIndex = 149;
  1347. //
  1348. // textBox_DET_UL4_dBm
  1349. //
  1350. this.textBox_DET_UL4_dBm.Location = new System.Drawing.Point(7, 166);
  1351. this.textBox_DET_UL4_dBm.Name = "textBox_DET_UL4_dBm";
  1352. this.textBox_DET_UL4_dBm.ReadOnly = true;
  1353. this.textBox_DET_UL4_dBm.Size = new System.Drawing.Size(65, 23);
  1354. this.textBox_DET_UL4_dBm.TabIndex = 149;
  1355. //
  1356. // textBox_DET_UL4
  1357. //
  1358. this.textBox_DET_UL4.Location = new System.Drawing.Point(7, 193);
  1359. this.textBox_DET_UL4.Name = "textBox_DET_UL4";
  1360. this.textBox_DET_UL4.ReadOnly = true;
  1361. this.textBox_DET_UL4.Size = new System.Drawing.Size(65, 23);
  1362. this.textBox_DET_UL4.TabIndex = 149;
  1363. //
  1364. // textBox_DET_DL4_dBm
  1365. //
  1366. this.textBox_DET_DL4_dBm.Location = new System.Drawing.Point(4, 162);
  1367. this.textBox_DET_DL4_dBm.Name = "textBox_DET_DL4_dBm";
  1368. this.textBox_DET_DL4_dBm.ReadOnly = true;
  1369. this.textBox_DET_DL4_dBm.Size = new System.Drawing.Size(65, 23);
  1370. this.textBox_DET_DL4_dBm.TabIndex = 148;
  1371. //
  1372. // textBox_DET_DL4
  1373. //
  1374. this.textBox_DET_DL4.Location = new System.Drawing.Point(4, 189);
  1375. this.textBox_DET_DL4.Name = "textBox_DET_DL4";
  1376. this.textBox_DET_DL4.ReadOnly = true;
  1377. this.textBox_DET_DL4.Size = new System.Drawing.Size(65, 23);
  1378. this.textBox_DET_DL4.TabIndex = 148;
  1379. //
  1380. // textBox_DET_UL1_dBm
  1381. //
  1382. this.textBox_DET_UL1_dBm.Location = new System.Drawing.Point(7, 166);
  1383. this.textBox_DET_UL1_dBm.Name = "textBox_DET_UL1_dBm";
  1384. this.textBox_DET_UL1_dBm.ReadOnly = true;
  1385. this.textBox_DET_UL1_dBm.Size = new System.Drawing.Size(65, 23);
  1386. this.textBox_DET_UL1_dBm.TabIndex = 144;
  1387. //
  1388. // textBox_DET_UL1
  1389. //
  1390. this.textBox_DET_UL1.Location = new System.Drawing.Point(7, 193);
  1391. this.textBox_DET_UL1.Name = "textBox_DET_UL1";
  1392. this.textBox_DET_UL1.ReadOnly = true;
  1393. this.textBox_DET_UL1.Size = new System.Drawing.Size(65, 23);
  1394. this.textBox_DET_UL1.TabIndex = 144;
  1395. //
  1396. // textBox_DET_DL1_dBm
  1397. //
  1398. this.textBox_DET_DL1_dBm.Location = new System.Drawing.Point(9, 162);
  1399. this.textBox_DET_DL1_dBm.Name = "textBox_DET_DL1_dBm";
  1400. this.textBox_DET_DL1_dBm.ReadOnly = true;
  1401. this.textBox_DET_DL1_dBm.Size = new System.Drawing.Size(65, 23);
  1402. this.textBox_DET_DL1_dBm.TabIndex = 144;
  1403. //
  1404. // textBox_DET_DL1
  1405. //
  1406. this.textBox_DET_DL1.Location = new System.Drawing.Point(9, 189);
  1407. this.textBox_DET_DL1.Name = "textBox_DET_DL1";
  1408. this.textBox_DET_DL1.ReadOnly = true;
  1409. this.textBox_DET_DL1.Size = new System.Drawing.Size(65, 23);
  1410. this.textBox_DET_DL1.TabIndex = 144;
  1411. //
  1412. // textBox_DET_DL2_dBm
  1413. //
  1414. this.textBox_DET_DL2_dBm.Location = new System.Drawing.Point(7, 162);
  1415. this.textBox_DET_DL2_dBm.Name = "textBox_DET_DL2_dBm";
  1416. this.textBox_DET_DL2_dBm.ReadOnly = true;
  1417. this.textBox_DET_DL2_dBm.Size = new System.Drawing.Size(65, 23);
  1418. this.textBox_DET_DL2_dBm.TabIndex = 148;
  1419. //
  1420. // textBox_DET_UL2_dBm
  1421. //
  1422. this.textBox_DET_UL2_dBm.Location = new System.Drawing.Point(7, 166);
  1423. this.textBox_DET_UL2_dBm.Name = "textBox_DET_UL2_dBm";
  1424. this.textBox_DET_UL2_dBm.ReadOnly = true;
  1425. this.textBox_DET_UL2_dBm.Size = new System.Drawing.Size(65, 23);
  1426. this.textBox_DET_UL2_dBm.TabIndex = 149;
  1427. //
  1428. // textBox_DET_DL2
  1429. //
  1430. this.textBox_DET_DL2.Location = new System.Drawing.Point(7, 189);
  1431. this.textBox_DET_DL2.Name = "textBox_DET_DL2";
  1432. this.textBox_DET_DL2.ReadOnly = true;
  1433. this.textBox_DET_DL2.Size = new System.Drawing.Size(65, 23);
  1434. this.textBox_DET_DL2.TabIndex = 148;
  1435. //
  1436. // textBox_DET_UL2
  1437. //
  1438. this.textBox_DET_UL2.Location = new System.Drawing.Point(7, 193);
  1439. this.textBox_DET_UL2.Name = "textBox_DET_UL2";
  1440. this.textBox_DET_UL2.ReadOnly = true;
  1441. this.textBox_DET_UL2.Size = new System.Drawing.Size(65, 23);
  1442. this.textBox_DET_UL2.TabIndex = 149;
  1443. //
  1444. // numericUpDown_MASK
  1445. //
  1446. this.numericUpDown_MASK.Location = new System.Drawing.Point(820, 172);
  1447. this.numericUpDown_MASK.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
  1448. this.numericUpDown_MASK.Maximum = new decimal(new int[] {
  1449. 1,
  1450. 0,
  1451. 0,
  1452. 0});
  1453. this.numericUpDown_MASK.Name = "numericUpDown_MASK";
  1454. this.numericUpDown_MASK.Size = new System.Drawing.Size(65, 23);
  1455. this.numericUpDown_MASK.TabIndex = 147;
  1456. this.numericUpDown_MASK.Enter += new System.EventHandler(this.Activi_Change__SettingComplete);
  1457. this.numericUpDown_MASK.KeyDown += new System.Windows.Forms.KeyEventHandler(this.numericUpDown_User_KeyDown);
  1458. this.numericUpDown_MASK.Leave += new System.EventHandler(this.Activi_Change__Setting);
  1459. //
  1460. // label_MASK
  1461. //
  1462. this.label_MASK.AutoSize = true;
  1463. this.label_MASK.Location = new System.Drawing.Point(776, 176);
  1464. this.label_MASK.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  1465. this.label_MASK.Name = "label_MASK";
  1466. this.label_MASK.Size = new System.Drawing.Size(40, 15);
  1467. this.label_MASK.TabIndex = 146;
  1468. this.label_MASK.Text = "MASK";
  1469. //
  1470. // timer_JdasMbic
  1471. //
  1472. this.timer_JdasMbic.Interval = 166;
  1473. this.timer_JdasMbic.Tick += new System.EventHandler(this.timer1_Tick);
  1474. //
  1475. // label_CurrBank
  1476. //
  1477. this.label_CurrBank.AutoSize = true;
  1478. this.label_CurrBank.Location = new System.Drawing.Point(28, 127);
  1479. this.label_CurrBank.Name = "label_CurrBank";
  1480. this.label_CurrBank.Size = new System.Drawing.Size(33, 15);
  1481. this.label_CurrBank.TabIndex = 150;
  1482. this.label_CurrBank.Text = "Bank";
  1483. //
  1484. // button1
  1485. //
  1486. this.button1.Location = new System.Drawing.Point(17, 299);
  1487. this.button1.Name = "button1";
  1488. this.button1.Size = new System.Drawing.Size(75, 23);
  1489. this.button1.TabIndex = 157;
  1490. this.button1.Text = "Reset";
  1491. this.button1.UseVisualStyleBackColor = true;
  1492. this.button1.Click += new System.EventHandler(this.button1_Click);
  1493. //
  1494. // button_FactorySet
  1495. //
  1496. this.button_FactorySet.Location = new System.Drawing.Point(17, 329);
  1497. this.button_FactorySet.Name = "button_FactorySet";
  1498. this.button_FactorySet.Size = new System.Drawing.Size(75, 23);
  1499. this.button_FactorySet.TabIndex = 158;
  1500. this.button_FactorySet.Text = "Factory Set";
  1501. this.button_FactorySet.UseVisualStyleBackColor = true;
  1502. this.button_FactorySet.Click += new System.EventHandler(this.button_FactorySet_Click);
  1503. //
  1504. // panel1
  1505. //
  1506. this.panel1.BackColor = System.Drawing.Color.White;
  1507. this.panel1.Controls.Add(this.textBox_UL4_TableOffset);
  1508. this.panel1.Controls.Add(this.textBox_UL2_TableOffset);
  1509. this.panel1.Controls.Add(this.textBox_DL4_TableOffset);
  1510. this.panel1.Controls.Add(this.textBox_UL3_TableOffset);
  1511. this.panel1.Controls.Add(this.textBox_DL2_TableOffset);
  1512. this.panel1.Controls.Add(this.textBox_UL1_TableOffset);
  1513. this.panel1.Controls.Add(this.textBox_DL3_TableOffset);
  1514. this.panel1.Controls.Add(this.textBox_DL1_TableOffset);
  1515. this.panel1.Controls.Add(this.textBox_Bank2Name);
  1516. this.panel1.Controls.Add(this.label8);
  1517. this.panel1.Controls.Add(this.textBox_Bank1Name);
  1518. this.panel1.Controls.Add(this.label6);
  1519. this.panel1.Controls.Add(this.textBox_CurrBank);
  1520. this.panel1.Controls.Add(this.textBox_DLI_Level_Low_Threshold);
  1521. this.panel1.Controls.Add(this.textBox_DLI_Level_High_Threshold);
  1522. this.panel1.Controls.Add(this.textBox_ULO_Level_High_Threshold);
  1523. this.panel1.Controls.Add(this.label4);
  1524. this.panel1.Controls.Add(this.textBox_MunufactureDate);
  1525. this.panel1.Controls.Add(this.label5);
  1526. this.panel1.Controls.Add(this.label_SerialNumber);
  1527. this.panel1.Controls.Add(this.textBox_PcbVersion);
  1528. this.panel1.Controls.Add(this.textBox_SerialNumber);
  1529. this.panel1.Controls.Add(this.label_CompileDate);
  1530. this.panel1.Controls.Add(this.label7);
  1531. this.panel1.Controls.Add(this.label_CurrBank);
  1532. this.panel1.Controls.Add(this.button_SelfTest2);
  1533. this.panel1.Controls.Add(this.button_SelfTest4);
  1534. this.panel1.Controls.Add(this.button_SelfTest1);
  1535. this.panel1.Controls.Add(this.numericUpDown_MASK);
  1536. this.panel1.Controls.Add(this.label_MASK);
  1537. this.panel1.Controls.Add(this.button_SelfTest3);
  1538. this.panel1.Controls.Add(this.panel_Serial);
  1539. this.panel1.Controls.Add(this.pictureBox1);
  1540. this.panel1.Controls.Add(this.textBox_FRBT_TIME);
  1541. this.panel1.Controls.Add(this.label_Temp);
  1542. this.panel1.Controls.Add(this.label9);
  1543. this.panel1.Controls.Add(this.label_TableOffset);
  1544. this.panel1.Controls.Add(this.label111);
  1545. this.panel1.Controls.Add(this.label66);
  1546. this.panel1.Controls.Add(this.label13);
  1547. this.panel1.Controls.Add(this.label100);
  1548. this.panel1.Controls.Add(this.numericUpDown_Temperature_Offset);
  1549. this.panel1.Controls.Add(this.label110);
  1550. this.panel1.Controls.Add(this.label99);
  1551. this.panel1.Controls.Add(this.numericUpDown_Temp_Threshold_Default);
  1552. this.panel1.Controls.Add(this.label109);
  1553. this.panel1.Controls.Add(this.label98);
  1554. this.panel1.Controls.Add(this.label108);
  1555. this.panel1.Controls.Add(this.label101);
  1556. this.panel1.Controls.Add(this.label107);
  1557. this.panel1.Controls.Add(this.label97);
  1558. this.panel1.Controls.Add(this.label106);
  1559. this.panel1.Controls.Add(this.label96);
  1560. this.panel1.Controls.Add(this.label112);
  1561. this.panel1.Controls.Add(this.label105);
  1562. this.panel1.Controls.Add(this.button_FRBT_TimeSetting);
  1563. this.panel1.Controls.Add(this.numericUpDown_Temp_Threshold);
  1564. this.panel1.Controls.Add(this.label102);
  1565. this.panel1.Controls.Add(this.label104);
  1566. this.panel1.Controls.Add(this.label95);
  1567. this.panel1.Controls.Add(this.label103);
  1568. this.panel1.Controls.Add(this.label94);
  1569. this.panel1.Controls.Add(this.button_DL_Shutdown);
  1570. this.panel1.Controls.Add(this.button_UL_Shutdown);
  1571. this.panel1.Controls.Add(this.button_AGC);
  1572. this.panel1.Controls.Add(this.button_ALC);
  1573. this.panel1.Controls.Add(this.textBox_DL_ShutdownLimit);
  1574. this.panel1.Controls.Add(this.textBox_UL_ShutdownLimit);
  1575. this.panel1.Controls.Add(this.textBox_DLI_AGC_Threshold);
  1576. this.panel1.Controls.Add(this.textBox_ULO_ALC_Threshold);
  1577. this.panel1.Controls.Add(this.textBox_DLI_FRBT_D_Day);
  1578. this.panel1.Controls.Add(this.textBox_FRBT_Status);
  1579. this.panel1.Controls.Add(this.textBox1_Carrier);
  1580. this.panel1.Controls.Add(this.button_Carrier);
  1581. this.panel1.Controls.Add(this.button_LedTest);
  1582. this.panel1.Controls.Add(this.textBox_CardType);
  1583. this.panel1.Controls.Add(this.textBox_CpuVersion);
  1584. this.panel1.Controls.Add(this.panel17);
  1585. this.panel1.Controls.Add(this.panel9);
  1586. this.panel1.Controls.Add(this.panel15);
  1587. this.panel1.Controls.Add(this.panel7);
  1588. this.panel1.Controls.Add(this.panel13);
  1589. this.panel1.Controls.Add(this.panel5);
  1590. this.panel1.Controls.Add(this.panel11);
  1591. this.panel1.Controls.Add(this.panel3);
  1592. this.panel1.Controls.Add(this.label82);
  1593. this.panel1.Controls.Add(this.label81);
  1594. this.panel1.Controls.Add(this.label78);
  1595. this.panel1.Controls.Add(this.label80);
  1596. this.panel1.Controls.Add(this.label77);
  1597. this.panel1.Controls.Add(this.label79);
  1598. this.panel1.Controls.Add(this.label75);
  1599. this.panel1.Controls.Add(this.label76);
  1600. this.panel1.Controls.Add(this.label74);
  1601. this.panel1.Controls.Add(this.label73);
  1602. this.panel1.Controls.Add(this.label67);
  1603. this.panel1.Controls.Add(this.label72);
  1604. this.panel1.Controls.Add(this.label71);
  1605. this.panel1.Controls.Add(this.label70);
  1606. this.panel1.Controls.Add(this.label69);
  1607. this.panel1.Controls.Add(this.label68);
  1608. this.panel1.Controls.Add(this.label65);
  1609. this.panel1.Controls.Add(this.panel_MainTitle);
  1610. this.panel1.Controls.Add(this.pictureBox_TempHigh_Alarm_ON);
  1611. this.panel1.Controls.Add(this.pictureBox_TempHigh_Alarm_OFF);
  1612. this.panel1.Font = new System.Drawing.Font("맑은 고딕", 9F);
  1613. this.panel1.Location = new System.Drawing.Point(1, 0);
  1614. this.panel1.Name = "panel1";
  1615. this.panel1.Size = new System.Drawing.Size(1136, 895);
  1616. this.panel1.TabIndex = 159;
  1617. //
  1618. // textBox_UL4_TableOffset
  1619. //
  1620. this.textBox_UL4_TableOffset.Location = new System.Drawing.Point(1030, 741);
  1621. this.textBox_UL4_TableOffset.Name = "textBox_UL4_TableOffset";
  1622. this.textBox_UL4_TableOffset.Size = new System.Drawing.Size(75, 23);
  1623. this.textBox_UL4_TableOffset.TabIndex = 178;
  1624. this.textBox_UL4_TableOffset.Visible = false;
  1625. //
  1626. // textBox_UL2_TableOffset
  1627. //
  1628. this.textBox_UL2_TableOffset.Location = new System.Drawing.Point(824, 741);
  1629. this.textBox_UL2_TableOffset.Name = "textBox_UL2_TableOffset";
  1630. this.textBox_UL2_TableOffset.Size = new System.Drawing.Size(75, 23);
  1631. this.textBox_UL2_TableOffset.TabIndex = 178;
  1632. this.textBox_UL2_TableOffset.Visible = false;
  1633. //
  1634. // textBox_DL4_TableOffset
  1635. //
  1636. this.textBox_DL4_TableOffset.Location = new System.Drawing.Point(526, 746);
  1637. this.textBox_DL4_TableOffset.Name = "textBox_DL4_TableOffset";
  1638. this.textBox_DL4_TableOffset.Size = new System.Drawing.Size(75, 23);
  1639. this.textBox_DL4_TableOffset.TabIndex = 178;
  1640. this.textBox_DL4_TableOffset.Visible = false;
  1641. //
  1642. // textBox_UL3_TableOffset
  1643. //
  1644. this.textBox_UL3_TableOffset.Location = new System.Drawing.Point(931, 741);
  1645. this.textBox_UL3_TableOffset.Name = "textBox_UL3_TableOffset";
  1646. this.textBox_UL3_TableOffset.Size = new System.Drawing.Size(75, 23);
  1647. this.textBox_UL3_TableOffset.TabIndex = 177;
  1648. this.textBox_UL3_TableOffset.Visible = false;
  1649. //
  1650. // textBox_DL2_TableOffset
  1651. //
  1652. this.textBox_DL2_TableOffset.Location = new System.Drawing.Point(320, 746);
  1653. this.textBox_DL2_TableOffset.Name = "textBox_DL2_TableOffset";
  1654. this.textBox_DL2_TableOffset.Size = new System.Drawing.Size(75, 23);
  1655. this.textBox_DL2_TableOffset.TabIndex = 178;
  1656. this.textBox_DL2_TableOffset.Visible = false;
  1657. //
  1658. // textBox_UL1_TableOffset
  1659. //
  1660. this.textBox_UL1_TableOffset.Location = new System.Drawing.Point(718, 741);
  1661. this.textBox_UL1_TableOffset.Name = "textBox_UL1_TableOffset";
  1662. this.textBox_UL1_TableOffset.Size = new System.Drawing.Size(75, 23);
  1663. this.textBox_UL1_TableOffset.TabIndex = 176;
  1664. this.textBox_UL1_TableOffset.Visible = false;
  1665. //
  1666. // textBox_DL3_TableOffset
  1667. //
  1668. this.textBox_DL3_TableOffset.Location = new System.Drawing.Point(427, 746);
  1669. this.textBox_DL3_TableOffset.Name = "textBox_DL3_TableOffset";
  1670. this.textBox_DL3_TableOffset.Size = new System.Drawing.Size(75, 23);
  1671. this.textBox_DL3_TableOffset.TabIndex = 177;
  1672. this.textBox_DL3_TableOffset.Visible = false;
  1673. //
  1674. // textBox_DL1_TableOffset
  1675. //
  1676. this.textBox_DL1_TableOffset.Location = new System.Drawing.Point(214, 746);
  1677. this.textBox_DL1_TableOffset.Name = "textBox_DL1_TableOffset";
  1678. this.textBox_DL1_TableOffset.Size = new System.Drawing.Size(75, 23);
  1679. this.textBox_DL1_TableOffset.TabIndex = 176;
  1680. this.textBox_DL1_TableOffset.Visible = false;
  1681. //
  1682. // textBox_Bank2Name
  1683. //
  1684. this.textBox_Bank2Name.Location = new System.Drawing.Point(233, 103);
  1685. this.textBox_Bank2Name.Name = "textBox_Bank2Name";
  1686. this.textBox_Bank2Name.Size = new System.Drawing.Size(186, 23);
  1687. this.textBox_Bank2Name.TabIndex = 172;
  1688. //
  1689. // label8
  1690. //
  1691. this.label8.AutoSize = true;
  1692. this.label8.Location = new System.Drawing.Point(187, 106);
  1693. this.label8.Name = "label8";
  1694. this.label8.Size = new System.Drawing.Size(44, 15);
  1695. this.label8.TabIndex = 171;
  1696. this.label8.Text = "Bank 2";
  1697. //
  1698. // textBox_Bank1Name
  1699. //
  1700. this.textBox_Bank1Name.Location = new System.Drawing.Point(233, 79);
  1701. this.textBox_Bank1Name.Name = "textBox_Bank1Name";
  1702. this.textBox_Bank1Name.Size = new System.Drawing.Size(186, 23);
  1703. this.textBox_Bank1Name.TabIndex = 172;
  1704. //
  1705. // label6
  1706. //
  1707. this.label6.AutoSize = true;
  1708. this.label6.Location = new System.Drawing.Point(186, 82);
  1709. this.label6.Name = "label6";
  1710. this.label6.Size = new System.Drawing.Size(44, 15);
  1711. this.label6.TabIndex = 171;
  1712. this.label6.Text = "Bank 1";
  1713. //
  1714. // textBox_CurrBank
  1715. //
  1716. this.textBox_CurrBank.Location = new System.Drawing.Point(105, 124);
  1717. this.textBox_CurrBank.Name = "textBox_CurrBank";
  1718. this.textBox_CurrBank.Size = new System.Drawing.Size(63, 23);
  1719. this.textBox_CurrBank.TabIndex = 170;
  1720. //
  1721. // textBox_DLI_Level_Low_Threshold
  1722. //
  1723. this.textBox_DLI_Level_Low_Threshold.Location = new System.Drawing.Point(403, 303);
  1724. this.textBox_DLI_Level_Low_Threshold.Name = "textBox_DLI_Level_Low_Threshold";
  1725. this.textBox_DLI_Level_Low_Threshold.Size = new System.Drawing.Size(65, 23);
  1726. this.textBox_DLI_Level_Low_Threshold.TabIndex = 169;
  1727. //
  1728. // textBox_DLI_Level_High_Threshold
  1729. //
  1730. this.textBox_DLI_Level_High_Threshold.Location = new System.Drawing.Point(323, 304);
  1731. this.textBox_DLI_Level_High_Threshold.Name = "textBox_DLI_Level_High_Threshold";
  1732. this.textBox_DLI_Level_High_Threshold.Size = new System.Drawing.Size(65, 23);
  1733. this.textBox_DLI_Level_High_Threshold.TabIndex = 168;
  1734. //
  1735. // textBox_ULO_Level_High_Threshold
  1736. //
  1737. this.textBox_ULO_Level_High_Threshold.Location = new System.Drawing.Point(824, 300);
  1738. this.textBox_ULO_Level_High_Threshold.Name = "textBox_ULO_Level_High_Threshold";
  1739. this.textBox_ULO_Level_High_Threshold.Size = new System.Drawing.Size(65, 23);
  1740. this.textBox_ULO_Level_High_Threshold.TabIndex = 167;
  1741. //
  1742. // label4
  1743. //
  1744. this.label4.AutoSize = true;
  1745. this.label4.Location = new System.Drawing.Point(919, 76);
  1746. this.label4.Name = "label4";
  1747. this.label4.Size = new System.Drawing.Size(59, 15);
  1748. this.label4.TabIndex = 164;
  1749. this.label4.Text = "제조 일자";
  1750. //
  1751. // textBox_MunufactureDate
  1752. //
  1753. this.textBox_MunufactureDate.Location = new System.Drawing.Point(1005, 73);
  1754. this.textBox_MunufactureDate.Name = "textBox_MunufactureDate";
  1755. this.textBox_MunufactureDate.Size = new System.Drawing.Size(115, 23);
  1756. this.textBox_MunufactureDate.TabIndex = 163;
  1757. //
  1758. // label5
  1759. //
  1760. this.label5.AutoSize = true;
  1761. this.label5.Location = new System.Drawing.Point(916, 135);
  1762. this.label5.Name = "label5";
  1763. this.label5.Size = new System.Drawing.Size(73, 15);
  1764. this.label5.TabIndex = 162;
  1765. this.label5.Text = "PCB Version";
  1766. //
  1767. // label_SerialNumber
  1768. //
  1769. this.label_SerialNumber.AutoSize = true;
  1770. this.label_SerialNumber.Location = new System.Drawing.Point(912, 106);
  1771. this.label_SerialNumber.Name = "label_SerialNumber";
  1772. this.label_SerialNumber.Size = new System.Drawing.Size(71, 15);
  1773. this.label_SerialNumber.TabIndex = 161;
  1774. this.label_SerialNumber.Text = "시리얼 넘버";
  1775. //
  1776. // textBox_PcbVersion
  1777. //
  1778. this.textBox_PcbVersion.Location = new System.Drawing.Point(1005, 132);
  1779. this.textBox_PcbVersion.Name = "textBox_PcbVersion";
  1780. this.textBox_PcbVersion.Size = new System.Drawing.Size(115, 23);
  1781. this.textBox_PcbVersion.TabIndex = 159;
  1782. //
  1783. // textBox_SerialNumber
  1784. //
  1785. this.textBox_SerialNumber.Location = new System.Drawing.Point(1005, 103);
  1786. this.textBox_SerialNumber.Name = "textBox_SerialNumber";
  1787. this.textBox_SerialNumber.Size = new System.Drawing.Size(115, 23);
  1788. this.textBox_SerialNumber.TabIndex = 158;
  1789. //
  1790. // label_CompileDate
  1791. //
  1792. this.label_CompileDate.AutoSize = true;
  1793. this.label_CompileDate.Location = new System.Drawing.Point(156, 864);
  1794. this.label_CompileDate.Name = "label_CompileDate";
  1795. this.label_CompileDate.Size = new System.Drawing.Size(39, 15);
  1796. this.label_CompileDate.TabIndex = 157;
  1797. this.label_CompileDate.Text = "label3";
  1798. //
  1799. // label7
  1800. //
  1801. this.label7.AutoSize = true;
  1802. this.label7.Font = new System.Drawing.Font("맑은 고딕", 9F);
  1803. this.label7.Location = new System.Drawing.Point(642, 774);
  1804. this.label7.Name = "label7";
  1805. this.label7.Size = new System.Drawing.Size(52, 15);
  1806. this.label7.TabIndex = 156;
  1807. this.label7.Text = "Self Test";
  1808. //
  1809. // button_SelfTest2
  1810. //
  1811. this.button_SelfTest2.Location = new System.Drawing.Point(825, 769);
  1812. this.button_SelfTest2.Name = "button_SelfTest2";
  1813. this.button_SelfTest2.Size = new System.Drawing.Size(75, 23);
  1814. this.button_SelfTest2.TabIndex = 155;
  1815. this.button_SelfTest2.Text = "OFF";
  1816. this.button_SelfTest2.UseVisualStyleBackColor = true;
  1817. this.button_SelfTest2.Click += new System.EventHandler(this.button_PATH_Ctrl_Click);
  1818. //
  1819. // button_SelfTest4
  1820. //
  1821. this.button_SelfTest4.Location = new System.Drawing.Point(1030, 769);
  1822. this.button_SelfTest4.Name = "button_SelfTest4";
  1823. this.button_SelfTest4.Size = new System.Drawing.Size(75, 23);
  1824. this.button_SelfTest4.TabIndex = 155;
  1825. this.button_SelfTest4.Text = "OFF";
  1826. this.button_SelfTest4.UseVisualStyleBackColor = true;
  1827. this.button_SelfTest4.Click += new System.EventHandler(this.button_PATH_Ctrl_Click);
  1828. //
  1829. // button_SelfTest1
  1830. //
  1831. this.button_SelfTest1.Location = new System.Drawing.Point(718, 769);
  1832. this.button_SelfTest1.Name = "button_SelfTest1";
  1833. this.button_SelfTest1.Size = new System.Drawing.Size(75, 23);
  1834. this.button_SelfTest1.TabIndex = 155;
  1835. this.button_SelfTest1.Text = "OFF";
  1836. this.button_SelfTest1.UseVisualStyleBackColor = true;
  1837. this.button_SelfTest1.Click += new System.EventHandler(this.button_PATH_Ctrl_Click);
  1838. //
  1839. // button_SelfTest3
  1840. //
  1841. this.button_SelfTest3.Location = new System.Drawing.Point(930, 769);
  1842. this.button_SelfTest3.Name = "button_SelfTest3";
  1843. this.button_SelfTest3.Size = new System.Drawing.Size(75, 23);
  1844. this.button_SelfTest3.TabIndex = 155;
  1845. this.button_SelfTest3.Text = "OFF";
  1846. this.button_SelfTest3.UseVisualStyleBackColor = true;
  1847. this.button_SelfTest3.Click += new System.EventHandler(this.button_PATH_Ctrl_Click);
  1848. //
  1849. // panel_Serial
  1850. //
  1851. this.panel_Serial.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;
  1852. this.panel_Serial.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  1853. this.panel_Serial.Controls.Add(this.numericUpDown_Version);
  1854. this.panel_Serial.Controls.Add(this.label_BankSel);
  1855. this.panel_Serial.Controls.Add(this.label1);
  1856. this.panel_Serial.Controls.Add(this.button_FirmwareUpdate);
  1857. this.panel_Serial.Controls.Add(this.comboBox_BankSel);
  1858. this.panel_Serial.Controls.Add(this.cmCom_Port);
  1859. this.panel_Serial.Controls.Add(this.button1);
  1860. this.panel_Serial.Controls.Add(this.button_terminal);
  1861. this.panel_Serial.Controls.Add(this.button_FactorySet);
  1862. this.panel_Serial.Controls.Add(this.comboBox_baudrate);
  1863. this.panel_Serial.Controls.Add(this.cmBaudRate);
  1864. this.panel_Serial.Controls.Add(this.button_PortOpen);
  1865. this.panel_Serial.Controls.Add(this.comboBox_Port);
  1866. this.panel_Serial.Controls.Add(this.button_Test);
  1867. this.panel_Serial.Controls.Add(this.checkBox_Fix);
  1868. this.panel_Serial.Controls.Add(this.button_MBICMake);
  1869. this.panel_Serial.Controls.Add(this.pictureBox_R_TX);
  1870. this.panel_Serial.Controls.Add(this.pictureBox_G_TX);
  1871. this.panel_Serial.Controls.Add(this.pictureBox_R_RX);
  1872. this.panel_Serial.Controls.Add(this.pictureBox_G_RX);
  1873. this.panel_Serial.Location = new System.Drawing.Point(0, 165);
  1874. this.panel_Serial.Name = "panel_Serial";
  1875. this.panel_Serial.Size = new System.Drawing.Size(124, 729);
  1876. this.panel_Serial.TabIndex = 154;
  1877. this.panel_Serial.Paint += new System.Windows.Forms.PaintEventHandler(this.panel_Serial_Paint);
  1878. //
  1879. // numericUpDown_Version
  1880. //
  1881. this.numericUpDown_Version.Location = new System.Drawing.Point(25, 539);
  1882. this.numericUpDown_Version.Name = "numericUpDown_Version";
  1883. this.numericUpDown_Version.Size = new System.Drawing.Size(69, 23);
  1884. this.numericUpDown_Version.TabIndex = 151;
  1885. //
  1886. // label1
  1887. //
  1888. this.label1.AutoSize = true;
  1889. this.label1.Font = new System.Drawing.Font("맑은 고딕", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(129)));
  1890. this.label1.Location = new System.Drawing.Point(61, 239);
  1891. this.label1.Name = "label1";
  1892. this.label1.Size = new System.Drawing.Size(21, 15);
  1893. this.label1.TabIndex = 150;
  1894. this.label1.Text = "Rx";
  1895. //
  1896. // pictureBox_R_TX
  1897. //
  1898. this.pictureBox_R_TX.Image = global::Jdas_Mbic.Properties.Resources.red;
  1899. this.pictureBox_R_TX.Location = new System.Drawing.Point(19, 263);
  1900. this.pictureBox_R_TX.Name = "pictureBox_R_TX";
  1901. this.pictureBox_R_TX.Size = new System.Drawing.Size(29, 23);
  1902. this.pictureBox_R_TX.TabIndex = 7;
  1903. this.pictureBox_R_TX.TabStop = false;
  1904. //
  1905. // pictureBox_G_TX
  1906. //
  1907. this.pictureBox_G_TX.Image = global::Jdas_Mbic.Properties.Resources.green;
  1908. this.pictureBox_G_TX.Location = new System.Drawing.Point(19, 263);
  1909. this.pictureBox_G_TX.Name = "pictureBox_G_TX";
  1910. this.pictureBox_G_TX.Size = new System.Drawing.Size(29, 23);
  1911. this.pictureBox_G_TX.TabIndex = 6;
  1912. this.pictureBox_G_TX.TabStop = false;
  1913. //
  1914. // pictureBox_R_RX
  1915. //
  1916. this.pictureBox_R_RX.Image = global::Jdas_Mbic.Properties.Resources.red;
  1917. this.pictureBox_R_RX.Location = new System.Drawing.Point(57, 263);
  1918. this.pictureBox_R_RX.Name = "pictureBox_R_RX";
  1919. this.pictureBox_R_RX.Size = new System.Drawing.Size(29, 23);
  1920. this.pictureBox_R_RX.TabIndex = 7;
  1921. this.pictureBox_R_RX.TabStop = false;
  1922. //
  1923. // pictureBox_G_RX
  1924. //
  1925. this.pictureBox_G_RX.Image = global::Jdas_Mbic.Properties.Resources.green;
  1926. this.pictureBox_G_RX.Location = new System.Drawing.Point(57, 263);
  1927. this.pictureBox_G_RX.Name = "pictureBox_G_RX";
  1928. this.pictureBox_G_RX.Size = new System.Drawing.Size(29, 23);
  1929. this.pictureBox_G_RX.TabIndex = 6;
  1930. this.pictureBox_G_RX.TabStop = false;
  1931. //
  1932. // pictureBox1
  1933. //
  1934. this.pictureBox1.Image = global::Jdas_Mbic.Properties.Resources.bluecell_logo;
  1935. this.pictureBox1.Location = new System.Drawing.Point(966, 840);
  1936. this.pictureBox1.Name = "pictureBox1";
  1937. this.pictureBox1.Size = new System.Drawing.Size(165, 50);
  1938. this.pictureBox1.TabIndex = 0;
  1939. this.pictureBox1.TabStop = false;
  1940. //
  1941. // label9
  1942. //
  1943. this.label9.AutoSize = true;
  1944. this.label9.Font = new System.Drawing.Font("맑은 고딕", 9F);
  1945. this.label9.Location = new System.Drawing.Point(128, 754);
  1946. this.label9.Name = "label9";
  1947. this.label9.Size = new System.Drawing.Size(71, 15);
  1948. this.label9.TabIndex = 105;
  1949. this.label9.Text = "Table Offset";
  1950. this.label9.Visible = false;
  1951. //
  1952. // label_TableOffset
  1953. //
  1954. this.label_TableOffset.AutoSize = true;
  1955. this.label_TableOffset.Font = new System.Drawing.Font("맑은 고딕", 9F);
  1956. this.label_TableOffset.Location = new System.Drawing.Point(639, 746);
  1957. this.label_TableOffset.Name = "label_TableOffset";
  1958. this.label_TableOffset.Size = new System.Drawing.Size(71, 15);
  1959. this.label_TableOffset.TabIndex = 105;
  1960. this.label_TableOffset.Text = "Table Offset";
  1961. this.label_TableOffset.Visible = false;
  1962. //
  1963. // label111
  1964. //
  1965. this.label111.AutoSize = true;
  1966. this.label111.Font = new System.Drawing.Font("맑은 고딕", 9F);
  1967. this.label111.Location = new System.Drawing.Point(635, 717);
  1968. this.label111.Name = "label111";
  1969. this.label111.Size = new System.Drawing.Size(66, 15);
  1970. this.label111.TabIndex = 105;
  1971. this.label111.Text = "FRBT Atten";
  1972. //
  1973. // label100
  1974. //
  1975. this.label100.AutoSize = true;
  1976. this.label100.Location = new System.Drawing.Point(129, 714);
  1977. this.label100.Name = "label100";
  1978. this.label100.Size = new System.Drawing.Size(66, 15);
  1979. this.label100.TabIndex = 105;
  1980. this.label100.Text = "FRBT Atten";
  1981. //
  1982. // label110
  1983. //
  1984. this.label110.AutoSize = true;
  1985. this.label110.Font = new System.Drawing.Font("맑은 고딕", 9F);
  1986. this.label110.Location = new System.Drawing.Point(639, 683);
  1987. this.label110.Name = "label110";
  1988. this.label110.Size = new System.Drawing.Size(62, 15);
  1989. this.label110.TabIndex = 105;
  1990. this.label110.Text = "Shutdown";
  1991. //
  1992. // label99
  1993. //
  1994. this.label99.AutoSize = true;
  1995. this.label99.Location = new System.Drawing.Point(133, 680);
  1996. this.label99.Name = "label99";
  1997. this.label99.Size = new System.Drawing.Size(62, 15);
  1998. this.label99.TabIndex = 105;
  1999. this.label99.Text = "Shutdown";
  2000. //
  2001. // label109
  2002. //
  2003. this.label109.AutoSize = true;
  2004. this.label109.Font = new System.Drawing.Font("맑은 고딕", 9F);
  2005. this.label109.Location = new System.Drawing.Point(648, 639);
  2006. this.label109.Name = "label109";
  2007. this.label109.Size = new System.Drawing.Size(29, 15);
  2008. this.label109.TabIndex = 105;
  2009. this.label109.Text = "ALC";
  2010. //
  2011. // label98
  2012. //
  2013. this.label98.AutoSize = true;
  2014. this.label98.Location = new System.Drawing.Point(142, 636);
  2015. this.label98.Name = "label98";
  2016. this.label98.Size = new System.Drawing.Size(31, 15);
  2017. this.label98.TabIndex = 105;
  2018. this.label98.Text = "AGC";
  2019. //
  2020. // label108
  2021. //
  2022. this.label108.AutoSize = true;
  2023. this.label108.Font = new System.Drawing.Font("맑은 고딕", 9F);
  2024. this.label108.Location = new System.Drawing.Point(647, 598);
  2025. this.label108.Name = "label108";
  2026. this.label108.Size = new System.Drawing.Size(32, 15);
  2027. this.label108.TabIndex = 105;
  2028. this.label108.Text = "ADC";
  2029. //
  2030. // label101
  2031. //
  2032. this.label101.AutoSize = true;
  2033. this.label101.Location = new System.Drawing.Point(141, 595);
  2034. this.label101.Name = "label101";
  2035. this.label101.Size = new System.Drawing.Size(32, 15);
  2036. this.label101.TabIndex = 105;
  2037. this.label101.Text = "ADC";
  2038. //
  2039. // label107
  2040. //
  2041. this.label107.AutoSize = true;
  2042. this.label107.Font = new System.Drawing.Font("맑은 고딕", 9F);
  2043. this.label107.Location = new System.Drawing.Point(645, 572);
  2044. this.label107.Name = "label107";
  2045. this.label107.Size = new System.Drawing.Size(34, 15);
  2046. this.label107.TabIndex = 105;
  2047. this.label107.Text = "Level";
  2048. //
  2049. // label97
  2050. //
  2051. this.label97.AutoSize = true;
  2052. this.label97.Location = new System.Drawing.Point(140, 569);
  2053. this.label97.Name = "label97";
  2054. this.label97.Size = new System.Drawing.Size(34, 15);
  2055. this.label97.TabIndex = 105;
  2056. this.label97.Text = "Level";
  2057. //
  2058. // label106
  2059. //
  2060. this.label106.AutoSize = true;
  2061. this.label106.Font = new System.Drawing.Font("맑은 고딕", 9F);
  2062. this.label106.Location = new System.Drawing.Point(648, 544);
  2063. this.label106.Name = "label106";
  2064. this.label106.Size = new System.Drawing.Size(37, 15);
  2065. this.label106.TabIndex = 105;
  2066. this.label106.Text = "High ";
  2067. //
  2068. // label96
  2069. //
  2070. this.label96.AutoSize = true;
  2071. this.label96.Location = new System.Drawing.Point(129, 541);
  2072. this.label96.Name = "label96";
  2073. this.label96.Size = new System.Drawing.Size(68, 15);
  2074. this.label96.TabIndex = 105;
  2075. this.label96.Text = "High / Low";
  2076. //
  2077. // label112
  2078. //
  2079. this.label112.AutoSize = true;
  2080. this.label112.Font = new System.Drawing.Font("맑은 고딕", 9F);
  2081. this.label112.Location = new System.Drawing.Point(640, 517);
  2082. this.label112.Name = "label112";
  2083. this.label112.Size = new System.Drawing.Size(62, 15);
  2084. this.label112.TabIndex = 105;
  2085. this.label112.Text = "ALC Atten";
  2086. //
  2087. // label105
  2088. //
  2089. this.label105.AutoSize = true;
  2090. this.label105.Font = new System.Drawing.Font("맑은 고딕", 9F);
  2091. this.label105.Location = new System.Drawing.Point(642, 495);
  2092. this.label105.Name = "label105";
  2093. this.label105.Size = new System.Drawing.Size(63, 15);
  2094. this.label105.TabIndex = 105;
  2095. this.label105.Text = "User Atten";
  2096. //
  2097. // label102
  2098. //
  2099. this.label102.AutoSize = true;
  2100. this.label102.Location = new System.Drawing.Point(136, 492);
  2101. this.label102.Name = "label102";
  2102. this.label102.Size = new System.Drawing.Size(63, 15);
  2103. this.label102.TabIndex = 105;
  2104. this.label102.Text = "User Atten";
  2105. //
  2106. // label104
  2107. //
  2108. this.label104.AutoSize = true;
  2109. this.label104.Font = new System.Drawing.Font("맑은 고딕", 9F);
  2110. this.label104.Location = new System.Drawing.Point(641, 468);
  2111. this.label104.Name = "label104";
  2112. this.label104.Size = new System.Drawing.Size(64, 15);
  2113. this.label104.TabIndex = 105;
  2114. this.label104.Text = "Gain Atten";
  2115. //
  2116. // label95
  2117. //
  2118. this.label95.AutoSize = true;
  2119. this.label95.Location = new System.Drawing.Point(135, 465);
  2120. this.label95.Name = "label95";
  2121. this.label95.Size = new System.Drawing.Size(64, 15);
  2122. this.label95.TabIndex = 105;
  2123. this.label95.Text = "Gain Atten";
  2124. //
  2125. // label103
  2126. //
  2127. this.label103.AutoSize = true;
  2128. this.label103.Font = new System.Drawing.Font("맑은 고딕", 9F);
  2129. this.label103.Location = new System.Drawing.Point(654, 442);
  2130. this.label103.Name = "label103";
  2131. this.label103.Size = new System.Drawing.Size(20, 15);
  2132. this.label103.TabIndex = 105;
  2133. this.label103.Text = "RF";
  2134. //
  2135. // label94
  2136. //
  2137. this.label94.AutoSize = true;
  2138. this.label94.Location = new System.Drawing.Point(148, 439);
  2139. this.label94.Name = "label94";
  2140. this.label94.Size = new System.Drawing.Size(20, 15);
  2141. this.label94.TabIndex = 105;
  2142. this.label94.Text = "RF";
  2143. //
  2144. // button_DL_Shutdown
  2145. //
  2146. this.button_DL_Shutdown.Location = new System.Drawing.Point(403, 351);
  2147. this.button_DL_Shutdown.Name = "button_DL_Shutdown";
  2148. this.button_DL_Shutdown.Size = new System.Drawing.Size(65, 23);
  2149. this.button_DL_Shutdown.TabIndex = 104;
  2150. this.button_DL_Shutdown.Text = "OFF";
  2151. this.button_DL_Shutdown.UseVisualStyleBackColor = true;
  2152. this.button_DL_Shutdown.Click += new System.EventHandler(this.button_PATH_Ctrl_Click);
  2153. //
  2154. // button_UL_Shutdown
  2155. //
  2156. this.button_UL_Shutdown.Location = new System.Drawing.Point(904, 348);
  2157. this.button_UL_Shutdown.Name = "button_UL_Shutdown";
  2158. this.button_UL_Shutdown.Size = new System.Drawing.Size(65, 23);
  2159. this.button_UL_Shutdown.TabIndex = 104;
  2160. this.button_UL_Shutdown.Text = "OFF";
  2161. this.button_UL_Shutdown.UseVisualStyleBackColor = true;
  2162. this.button_UL_Shutdown.Click += new System.EventHandler(this.button_PATH_Ctrl_Click);
  2163. //
  2164. // button_AGC
  2165. //
  2166. this.button_AGC.Location = new System.Drawing.Point(403, 327);
  2167. this.button_AGC.Name = "button_AGC";
  2168. this.button_AGC.Size = new System.Drawing.Size(65, 23);
  2169. this.button_AGC.TabIndex = 104;
  2170. this.button_AGC.Text = "OFF";
  2171. this.button_AGC.UseVisualStyleBackColor = true;
  2172. this.button_AGC.Click += new System.EventHandler(this.button_PATH_Ctrl_Click);
  2173. //
  2174. // button_ALC
  2175. //
  2176. this.button_ALC.Location = new System.Drawing.Point(904, 324);
  2177. this.button_ALC.Name = "button_ALC";
  2178. this.button_ALC.Size = new System.Drawing.Size(65, 23);
  2179. this.button_ALC.TabIndex = 104;
  2180. this.button_ALC.Text = "OFF";
  2181. this.button_ALC.UseVisualStyleBackColor = true;
  2182. this.button_ALC.Click += new System.EventHandler(this.button_PATH_Ctrl_Click);
  2183. //
  2184. // textBox_DL_ShutdownLimit
  2185. //
  2186. this.textBox_DL_ShutdownLimit.Location = new System.Drawing.Point(323, 353);
  2187. this.textBox_DL_ShutdownLimit.Name = "textBox_DL_ShutdownLimit";
  2188. this.textBox_DL_ShutdownLimit.Size = new System.Drawing.Size(65, 23);
  2189. this.textBox_DL_ShutdownLimit.TabIndex = 12;
  2190. //
  2191. // textBox_UL_ShutdownLimit
  2192. //
  2193. this.textBox_UL_ShutdownLimit.Location = new System.Drawing.Point(824, 350);
  2194. this.textBox_UL_ShutdownLimit.Name = "textBox_UL_ShutdownLimit";
  2195. this.textBox_UL_ShutdownLimit.Size = new System.Drawing.Size(65, 23);
  2196. this.textBox_UL_ShutdownLimit.TabIndex = 12;
  2197. //
  2198. // textBox_DLI_AGC_Threshold
  2199. //
  2200. this.textBox_DLI_AGC_Threshold.Location = new System.Drawing.Point(323, 329);
  2201. this.textBox_DLI_AGC_Threshold.Name = "textBox_DLI_AGC_Threshold";
  2202. this.textBox_DLI_AGC_Threshold.Size = new System.Drawing.Size(65, 23);
  2203. this.textBox_DLI_AGC_Threshold.TabIndex = 12;
  2204. //
  2205. // textBox_ULO_ALC_Threshold
  2206. //
  2207. this.textBox_ULO_ALC_Threshold.Location = new System.Drawing.Point(824, 326);
  2208. this.textBox_ULO_ALC_Threshold.Name = "textBox_ULO_ALC_Threshold";
  2209. this.textBox_ULO_ALC_Threshold.Size = new System.Drawing.Size(65, 23);
  2210. this.textBox_ULO_ALC_Threshold.TabIndex = 12;
  2211. //
  2212. // textBox_DLI_FRBT_D_Day
  2213. //
  2214. this.textBox_DLI_FRBT_D_Day.Location = new System.Drawing.Point(780, 76);
  2215. this.textBox_DLI_FRBT_D_Day.Name = "textBox_DLI_FRBT_D_Day";
  2216. this.textBox_DLI_FRBT_D_Day.Size = new System.Drawing.Size(75, 23);
  2217. this.textBox_DLI_FRBT_D_Day.TabIndex = 11;
  2218. //
  2219. // textBox_FRBT_Status
  2220. //
  2221. this.textBox_FRBT_Status.Location = new System.Drawing.Point(780, 104);
  2222. this.textBox_FRBT_Status.Name = "textBox_FRBT_Status";
  2223. this.textBox_FRBT_Status.Size = new System.Drawing.Size(75, 23);
  2224. this.textBox_FRBT_Status.TabIndex = 11;
  2225. //
  2226. // textBox1_Carrier
  2227. //
  2228. this.textBox1_Carrier.Location = new System.Drawing.Point(490, 99);
  2229. this.textBox1_Carrier.Name = "textBox1_Carrier";
  2230. this.textBox1_Carrier.Size = new System.Drawing.Size(75, 23);
  2231. this.textBox1_Carrier.TabIndex = 9;
  2232. //
  2233. // button_Carrier
  2234. //
  2235. this.button_Carrier.Location = new System.Drawing.Point(575, 96);
  2236. this.button_Carrier.Name = "button_Carrier";
  2237. this.button_Carrier.Size = new System.Drawing.Size(75, 23);
  2238. this.button_Carrier.TabIndex = 8;
  2239. this.button_Carrier.Text = "OFF";
  2240. this.button_Carrier.UseVisualStyleBackColor = true;
  2241. this.button_Carrier.Click += new System.EventHandler(this.button_PATH_Ctrl_Click);
  2242. //
  2243. // button_LedTest
  2244. //
  2245. this.button_LedTest.Location = new System.Drawing.Point(490, 73);
  2246. this.button_LedTest.Name = "button_LedTest";
  2247. this.button_LedTest.Size = new System.Drawing.Size(75, 23);
  2248. this.button_LedTest.TabIndex = 7;
  2249. this.button_LedTest.Text = "LED TEST";
  2250. this.button_LedTest.UseVisualStyleBackColor = true;
  2251. this.button_LedTest.Click += new System.EventHandler(this.button_LedTest_Click);
  2252. //
  2253. // textBox_CardType
  2254. //
  2255. this.textBox_CardType.Location = new System.Drawing.Point(105, 76);
  2256. this.textBox_CardType.Name = "textBox_CardType";
  2257. this.textBox_CardType.Size = new System.Drawing.Size(63, 23);
  2258. this.textBox_CardType.TabIndex = 6;
  2259. //
  2260. // textBox_CpuVersion
  2261. //
  2262. this.textBox_CpuVersion.Location = new System.Drawing.Point(105, 100);
  2263. this.textBox_CpuVersion.Name = "textBox_CpuVersion";
  2264. this.textBox_CpuVersion.Size = new System.Drawing.Size(63, 23);
  2265. this.textBox_CpuVersion.TabIndex = 6;
  2266. //
  2267. // panel17
  2268. //
  2269. this.panel17.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  2270. this.panel17.Controls.Add(this.numericUpDown_ShutdownUL4);
  2271. this.panel17.Controls.Add(this.textBox8);
  2272. this.panel17.Controls.Add(this.textBox_DET_UL4);
  2273. this.panel17.Controls.Add(this.numericUpDown_ALC4);
  2274. this.panel17.Controls.Add(this.numericUpDown_UL4_User);
  2275. this.panel17.Controls.Add(this.textBox_DET_UL4_dBm);
  2276. this.panel17.Controls.Add(this.numericUpDown_ATT_UL4);
  2277. this.panel17.Controls.Add(this.pictureBox_UL4_Shutdown_Alarm_ON);
  2278. this.panel17.Controls.Add(this.pictureBox_ULO_Path4_High_Alarm_ON);
  2279. this.panel17.Controls.Add(this.button_UL4_PATH);
  2280. this.panel17.Controls.Add(this.panel18);
  2281. this.panel17.Controls.Add(this.pictureBox_ULO_Path4_High_Alarm_OFF);
  2282. this.panel17.Controls.Add(this.pictureBox_ALC4_Alarm_OFF);
  2283. this.panel17.Controls.Add(this.pictureBox_ALC4_Alarm_ON);
  2284. this.panel17.Controls.Add(this.pictureBox_UL4_Shutdown_Alarm_OFF);
  2285. this.panel17.Location = new System.Drawing.Point(1026, 403);
  2286. this.panel17.Name = "panel17";
  2287. this.panel17.Size = new System.Drawing.Size(83, 335);
  2288. this.panel17.TabIndex = 5;
  2289. //
  2290. // textBox8
  2291. //
  2292. this.textBox8.Location = new System.Drawing.Point(3, 310);
  2293. this.textBox8.Name = "textBox8";
  2294. this.textBox8.Size = new System.Drawing.Size(75, 23);
  2295. this.textBox8.TabIndex = 8;
  2296. //
  2297. // pictureBox_UL4_Shutdown_Alarm_ON
  2298. //
  2299. this.pictureBox_UL4_Shutdown_Alarm_ON.Image = global::Jdas_Mbic.Properties.Resources.red;
  2300. this.pictureBox_UL4_Shutdown_Alarm_ON.Location = new System.Drawing.Point(7, 276);
  2301. this.pictureBox_UL4_Shutdown_Alarm_ON.Name = "pictureBox_UL4_Shutdown_Alarm_ON";
  2302. this.pictureBox_UL4_Shutdown_Alarm_ON.Size = new System.Drawing.Size(29, 23);
  2303. this.pictureBox_UL4_Shutdown_Alarm_ON.TabIndex = 7;
  2304. this.pictureBox_UL4_Shutdown_Alarm_ON.TabStop = false;
  2305. //
  2306. // pictureBox_ULO_Path4_High_Alarm_ON
  2307. //
  2308. this.pictureBox_ULO_Path4_High_Alarm_ON.Image = global::Jdas_Mbic.Properties.Resources.red;
  2309. this.pictureBox_ULO_Path4_High_Alarm_ON.Location = new System.Drawing.Point(7, 137);
  2310. this.pictureBox_ULO_Path4_High_Alarm_ON.Name = "pictureBox_ULO_Path4_High_Alarm_ON";
  2311. this.pictureBox_ULO_Path4_High_Alarm_ON.Size = new System.Drawing.Size(29, 23);
  2312. this.pictureBox_ULO_Path4_High_Alarm_ON.TabIndex = 7;
  2313. this.pictureBox_ULO_Path4_High_Alarm_ON.TabStop = false;
  2314. //
  2315. // button_UL4_PATH
  2316. //
  2317. this.button_UL4_PATH.Location = new System.Drawing.Point(4, 31);
  2318. this.button_UL4_PATH.Name = "button_UL4_PATH";
  2319. this.button_UL4_PATH.Size = new System.Drawing.Size(75, 23);
  2320. this.button_UL4_PATH.TabIndex = 7;
  2321. this.button_UL4_PATH.Text = "OFF";
  2322. this.button_UL4_PATH.UseVisualStyleBackColor = true;
  2323. this.button_UL4_PATH.Click += new System.EventHandler(this.button_PATH_Ctrl_Click);
  2324. //
  2325. // panel18
  2326. //
  2327. this.panel18.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  2328. this.panel18.Controls.Add(this.label93);
  2329. this.panel18.Location = new System.Drawing.Point(0, 0);
  2330. this.panel18.Name = "panel18";
  2331. this.panel18.Size = new System.Drawing.Size(83, 25);
  2332. this.panel18.TabIndex = 6;
  2333. //
  2334. // label93
  2335. //
  2336. this.label93.AutoSize = true;
  2337. this.label93.Font = new System.Drawing.Font("맑은 고딕", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129)));
  2338. this.label93.Location = new System.Drawing.Point(20, 5);
  2339. this.label93.Name = "label93";
  2340. this.label93.Size = new System.Drawing.Size(42, 15);
  2341. this.label93.TabIndex = 0;
  2342. this.label93.Text = "Path 4";
  2343. //
  2344. // pictureBox_ULO_Path4_High_Alarm_OFF
  2345. //
  2346. this.pictureBox_ULO_Path4_High_Alarm_OFF.Image = global::Jdas_Mbic.Properties.Resources.green;
  2347. this.pictureBox_ULO_Path4_High_Alarm_OFF.Location = new System.Drawing.Point(7, 137);
  2348. this.pictureBox_ULO_Path4_High_Alarm_OFF.Name = "pictureBox_ULO_Path4_High_Alarm_OFF";
  2349. this.pictureBox_ULO_Path4_High_Alarm_OFF.Size = new System.Drawing.Size(29, 23);
  2350. this.pictureBox_ULO_Path4_High_Alarm_OFF.TabIndex = 6;
  2351. this.pictureBox_ULO_Path4_High_Alarm_OFF.TabStop = false;
  2352. //
  2353. // pictureBox_ALC4_Alarm_OFF
  2354. //
  2355. this.pictureBox_ALC4_Alarm_OFF.Image = global::Jdas_Mbic.Properties.Resources.green;
  2356. this.pictureBox_ALC4_Alarm_OFF.Location = new System.Drawing.Point(7, 232);
  2357. this.pictureBox_ALC4_Alarm_OFF.Name = "pictureBox_ALC4_Alarm_OFF";
  2358. this.pictureBox_ALC4_Alarm_OFF.Size = new System.Drawing.Size(29, 23);
  2359. this.pictureBox_ALC4_Alarm_OFF.TabIndex = 6;
  2360. this.pictureBox_ALC4_Alarm_OFF.TabStop = false;
  2361. //
  2362. // pictureBox_ALC4_Alarm_ON
  2363. //
  2364. this.pictureBox_ALC4_Alarm_ON.Image = global::Jdas_Mbic.Properties.Resources.red;
  2365. this.pictureBox_ALC4_Alarm_ON.Location = new System.Drawing.Point(7, 232);
  2366. this.pictureBox_ALC4_Alarm_ON.Name = "pictureBox_ALC4_Alarm_ON";
  2367. this.pictureBox_ALC4_Alarm_ON.Size = new System.Drawing.Size(29, 23);
  2368. this.pictureBox_ALC4_Alarm_ON.TabIndex = 7;
  2369. this.pictureBox_ALC4_Alarm_ON.TabStop = false;
  2370. //
  2371. // pictureBox_UL4_Shutdown_Alarm_OFF
  2372. //
  2373. this.pictureBox_UL4_Shutdown_Alarm_OFF.Image = global::Jdas_Mbic.Properties.Resources.green;
  2374. this.pictureBox_UL4_Shutdown_Alarm_OFF.Location = new System.Drawing.Point(7, 276);
  2375. this.pictureBox_UL4_Shutdown_Alarm_OFF.Name = "pictureBox_UL4_Shutdown_Alarm_OFF";
  2376. this.pictureBox_UL4_Shutdown_Alarm_OFF.Size = new System.Drawing.Size(29, 23);
  2377. this.pictureBox_UL4_Shutdown_Alarm_OFF.TabIndex = 6;
  2378. this.pictureBox_UL4_Shutdown_Alarm_OFF.TabStop = false;
  2379. //
  2380. // panel9
  2381. //
  2382. this.panel9.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  2383. this.panel9.Controls.Add(this.textBox4);
  2384. this.panel9.Controls.Add(this.numericUpDown_ShutdownDL4);
  2385. this.panel9.Controls.Add(this.numericUpDown_DL4_User);
  2386. this.panel9.Controls.Add(this.numericUpDown_ATT_DL4);
  2387. this.panel9.Controls.Add(this.pictureBox_AGC4_Alarm_ON);
  2388. this.panel9.Controls.Add(this.pictureBox_DLI_Path4_High_Alarm_ON);
  2389. this.panel9.Controls.Add(this.button_DL4_PATH);
  2390. this.panel9.Controls.Add(this.textBox_DET_DL4);
  2391. this.panel9.Controls.Add(this.textBox_DET_DL4_dBm);
  2392. this.panel9.Controls.Add(this.panel10);
  2393. this.panel9.Controls.Add(this.pictureBox_DLI_Path4_High_Alarm_OFF);
  2394. this.panel9.Controls.Add(this.pictureBox_DLI_Path4_Low_Alarm_ON);
  2395. this.panel9.Controls.Add(this.pictureBox_DLI_Path4_Low_Alarm_OFF);
  2396. this.panel9.Controls.Add(this.pictureBox_AGC4_Alarm_OFF);
  2397. this.panel9.Controls.Add(this.pictureBox_DL4_Shutdown_Alarm_OFF);
  2398. this.panel9.Controls.Add(this.pictureBox_DL4_Shutdown_Alarm_ON);
  2399. this.panel9.Location = new System.Drawing.Point(522, 403);
  2400. this.panel9.Name = "panel9";
  2401. this.panel9.Size = new System.Drawing.Size(83, 335);
  2402. this.panel9.TabIndex = 5;
  2403. //
  2404. // textBox4
  2405. //
  2406. this.textBox4.Location = new System.Drawing.Point(3, 306);
  2407. this.textBox4.Name = "textBox4";
  2408. this.textBox4.Size = new System.Drawing.Size(75, 23);
  2409. this.textBox4.TabIndex = 8;
  2410. //
  2411. // pictureBox_AGC4_Alarm_ON
  2412. //
  2413. this.pictureBox_AGC4_Alarm_ON.Image = global::Jdas_Mbic.Properties.Resources.red;
  2414. this.pictureBox_AGC4_Alarm_ON.Location = new System.Drawing.Point(7, 228);
  2415. this.pictureBox_AGC4_Alarm_ON.Name = "pictureBox_AGC4_Alarm_ON";
  2416. this.pictureBox_AGC4_Alarm_ON.Size = new System.Drawing.Size(29, 23);
  2417. this.pictureBox_AGC4_Alarm_ON.TabIndex = 7;
  2418. this.pictureBox_AGC4_Alarm_ON.TabStop = false;
  2419. //
  2420. // pictureBox_DLI_Path4_High_Alarm_ON
  2421. //
  2422. this.pictureBox_DLI_Path4_High_Alarm_ON.Image = global::Jdas_Mbic.Properties.Resources.red;
  2423. this.pictureBox_DLI_Path4_High_Alarm_ON.Location = new System.Drawing.Point(7, 133);
  2424. this.pictureBox_DLI_Path4_High_Alarm_ON.Name = "pictureBox_DLI_Path4_High_Alarm_ON";
  2425. this.pictureBox_DLI_Path4_High_Alarm_ON.Size = new System.Drawing.Size(29, 23);
  2426. this.pictureBox_DLI_Path4_High_Alarm_ON.TabIndex = 7;
  2427. this.pictureBox_DLI_Path4_High_Alarm_ON.TabStop = false;
  2428. //
  2429. // button_DL4_PATH
  2430. //
  2431. this.button_DL4_PATH.Location = new System.Drawing.Point(4, 31);
  2432. this.button_DL4_PATH.Name = "button_DL4_PATH";
  2433. this.button_DL4_PATH.Size = new System.Drawing.Size(75, 23);
  2434. this.button_DL4_PATH.TabIndex = 7;
  2435. this.button_DL4_PATH.Text = "OFF";
  2436. this.button_DL4_PATH.UseVisualStyleBackColor = true;
  2437. this.button_DL4_PATH.Click += new System.EventHandler(this.button_PATH_Ctrl_Click);
  2438. //
  2439. // panel10
  2440. //
  2441. this.panel10.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  2442. this.panel10.Controls.Add(this.label86);
  2443. this.panel10.Location = new System.Drawing.Point(0, 0);
  2444. this.panel10.Name = "panel10";
  2445. this.panel10.Size = new System.Drawing.Size(83, 25);
  2446. this.panel10.TabIndex = 6;
  2447. //
  2448. // label86
  2449. //
  2450. this.label86.AutoSize = true;
  2451. this.label86.Font = new System.Drawing.Font("맑은 고딕", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129)));
  2452. this.label86.Location = new System.Drawing.Point(20, 5);
  2453. this.label86.Name = "label86";
  2454. this.label86.Size = new System.Drawing.Size(42, 15);
  2455. this.label86.TabIndex = 0;
  2456. this.label86.Text = "Path 4";
  2457. //
  2458. // pictureBox_DLI_Path4_High_Alarm_OFF
  2459. //
  2460. this.pictureBox_DLI_Path4_High_Alarm_OFF.Image = global::Jdas_Mbic.Properties.Resources.green;
  2461. this.pictureBox_DLI_Path4_High_Alarm_OFF.Location = new System.Drawing.Point(7, 133);
  2462. this.pictureBox_DLI_Path4_High_Alarm_OFF.Name = "pictureBox_DLI_Path4_High_Alarm_OFF";
  2463. this.pictureBox_DLI_Path4_High_Alarm_OFF.Size = new System.Drawing.Size(29, 23);
  2464. this.pictureBox_DLI_Path4_High_Alarm_OFF.TabIndex = 6;
  2465. this.pictureBox_DLI_Path4_High_Alarm_OFF.TabStop = false;
  2466. //
  2467. // pictureBox_DLI_Path4_Low_Alarm_ON
  2468. //
  2469. this.pictureBox_DLI_Path4_Low_Alarm_ON.Image = global::Jdas_Mbic.Properties.Resources.red;
  2470. this.pictureBox_DLI_Path4_Low_Alarm_ON.Location = new System.Drawing.Point(45, 133);
  2471. this.pictureBox_DLI_Path4_Low_Alarm_ON.Name = "pictureBox_DLI_Path4_Low_Alarm_ON";
  2472. this.pictureBox_DLI_Path4_Low_Alarm_ON.Size = new System.Drawing.Size(29, 23);
  2473. this.pictureBox_DLI_Path4_Low_Alarm_ON.TabIndex = 7;
  2474. this.pictureBox_DLI_Path4_Low_Alarm_ON.TabStop = false;
  2475. //
  2476. // pictureBox_DLI_Path4_Low_Alarm_OFF
  2477. //
  2478. this.pictureBox_DLI_Path4_Low_Alarm_OFF.Image = global::Jdas_Mbic.Properties.Resources.green;
  2479. this.pictureBox_DLI_Path4_Low_Alarm_OFF.Location = new System.Drawing.Point(45, 133);
  2480. this.pictureBox_DLI_Path4_Low_Alarm_OFF.Name = "pictureBox_DLI_Path4_Low_Alarm_OFF";
  2481. this.pictureBox_DLI_Path4_Low_Alarm_OFF.Size = new System.Drawing.Size(29, 23);
  2482. this.pictureBox_DLI_Path4_Low_Alarm_OFF.TabIndex = 6;
  2483. this.pictureBox_DLI_Path4_Low_Alarm_OFF.TabStop = false;
  2484. //
  2485. // pictureBox_AGC4_Alarm_OFF
  2486. //
  2487. this.pictureBox_AGC4_Alarm_OFF.Image = global::Jdas_Mbic.Properties.Resources.green;
  2488. this.pictureBox_AGC4_Alarm_OFF.Location = new System.Drawing.Point(7, 228);
  2489. this.pictureBox_AGC4_Alarm_OFF.Name = "pictureBox_AGC4_Alarm_OFF";
  2490. this.pictureBox_AGC4_Alarm_OFF.Size = new System.Drawing.Size(29, 23);
  2491. this.pictureBox_AGC4_Alarm_OFF.TabIndex = 6;
  2492. this.pictureBox_AGC4_Alarm_OFF.TabStop = false;
  2493. //
  2494. // pictureBox_DL4_Shutdown_Alarm_OFF
  2495. //
  2496. this.pictureBox_DL4_Shutdown_Alarm_OFF.Image = global::Jdas_Mbic.Properties.Resources.green;
  2497. this.pictureBox_DL4_Shutdown_Alarm_OFF.Location = new System.Drawing.Point(7, 272);
  2498. this.pictureBox_DL4_Shutdown_Alarm_OFF.Name = "pictureBox_DL4_Shutdown_Alarm_OFF";
  2499. this.pictureBox_DL4_Shutdown_Alarm_OFF.Size = new System.Drawing.Size(29, 23);
  2500. this.pictureBox_DL4_Shutdown_Alarm_OFF.TabIndex = 6;
  2501. this.pictureBox_DL4_Shutdown_Alarm_OFF.TabStop = false;
  2502. //
  2503. // pictureBox_DL4_Shutdown_Alarm_ON
  2504. //
  2505. this.pictureBox_DL4_Shutdown_Alarm_ON.Image = global::Jdas_Mbic.Properties.Resources.red;
  2506. this.pictureBox_DL4_Shutdown_Alarm_ON.Location = new System.Drawing.Point(7, 272);
  2507. this.pictureBox_DL4_Shutdown_Alarm_ON.Name = "pictureBox_DL4_Shutdown_Alarm_ON";
  2508. this.pictureBox_DL4_Shutdown_Alarm_ON.Size = new System.Drawing.Size(29, 23);
  2509. this.pictureBox_DL4_Shutdown_Alarm_ON.TabIndex = 7;
  2510. this.pictureBox_DL4_Shutdown_Alarm_ON.TabStop = false;
  2511. //
  2512. // panel15
  2513. //
  2514. this.panel15.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  2515. this.panel15.Controls.Add(this.numericUpDown_ShutdownUL3);
  2516. this.panel15.Controls.Add(this.textBox7);
  2517. this.panel15.Controls.Add(this.numericUpDown_ALC3);
  2518. this.panel15.Controls.Add(this.numericUpDown_UL3_User);
  2519. this.panel15.Controls.Add(this.numericUpDown_ATT_UL3);
  2520. this.panel15.Controls.Add(this.textBox_DET_UL3);
  2521. this.panel15.Controls.Add(this.textBox_DET_UL3_dBm);
  2522. this.panel15.Controls.Add(this.pictureBox_UL3_Shutdown_Alarm_ON);
  2523. this.panel15.Controls.Add(this.pictureBox_ULO_Path3_High_Alarm_ON);
  2524. this.panel15.Controls.Add(this.button_UL3_PATH);
  2525. this.panel15.Controls.Add(this.panel16);
  2526. this.panel15.Controls.Add(this.pictureBox_ULO_Path3_High_Alarm_OFF);
  2527. this.panel15.Controls.Add(this.pictureBox_ALC3_Alarm_OFF);
  2528. this.panel15.Controls.Add(this.pictureBox_ALC3_Alarm_ON);
  2529. this.panel15.Controls.Add(this.pictureBox_UL3_Shutdown_Alarm_OFF);
  2530. this.panel15.Location = new System.Drawing.Point(926, 403);
  2531. this.panel15.Name = "panel15";
  2532. this.panel15.Size = new System.Drawing.Size(83, 335);
  2533. this.panel15.TabIndex = 5;
  2534. //
  2535. // textBox7
  2536. //
  2537. this.textBox7.Location = new System.Drawing.Point(3, 310);
  2538. this.textBox7.Name = "textBox7";
  2539. this.textBox7.Size = new System.Drawing.Size(75, 23);
  2540. this.textBox7.TabIndex = 8;
  2541. //
  2542. // pictureBox_UL3_Shutdown_Alarm_ON
  2543. //
  2544. this.pictureBox_UL3_Shutdown_Alarm_ON.Image = global::Jdas_Mbic.Properties.Resources.red;
  2545. this.pictureBox_UL3_Shutdown_Alarm_ON.Location = new System.Drawing.Point(7, 276);
  2546. this.pictureBox_UL3_Shutdown_Alarm_ON.Name = "pictureBox_UL3_Shutdown_Alarm_ON";
  2547. this.pictureBox_UL3_Shutdown_Alarm_ON.Size = new System.Drawing.Size(29, 23);
  2548. this.pictureBox_UL3_Shutdown_Alarm_ON.TabIndex = 7;
  2549. this.pictureBox_UL3_Shutdown_Alarm_ON.TabStop = false;
  2550. //
  2551. // pictureBox_ULO_Path3_High_Alarm_ON
  2552. //
  2553. this.pictureBox_ULO_Path3_High_Alarm_ON.Image = global::Jdas_Mbic.Properties.Resources.red;
  2554. this.pictureBox_ULO_Path3_High_Alarm_ON.Location = new System.Drawing.Point(7, 137);
  2555. this.pictureBox_ULO_Path3_High_Alarm_ON.Name = "pictureBox_ULO_Path3_High_Alarm_ON";
  2556. this.pictureBox_ULO_Path3_High_Alarm_ON.Size = new System.Drawing.Size(29, 23);
  2557. this.pictureBox_ULO_Path3_High_Alarm_ON.TabIndex = 7;
  2558. this.pictureBox_ULO_Path3_High_Alarm_ON.TabStop = false;
  2559. //
  2560. // button_UL3_PATH
  2561. //
  2562. this.button_UL3_PATH.Location = new System.Drawing.Point(4, 31);
  2563. this.button_UL3_PATH.Name = "button_UL3_PATH";
  2564. this.button_UL3_PATH.Size = new System.Drawing.Size(75, 23);
  2565. this.button_UL3_PATH.TabIndex = 7;
  2566. this.button_UL3_PATH.Text = "OFF";
  2567. this.button_UL3_PATH.UseVisualStyleBackColor = true;
  2568. this.button_UL3_PATH.Click += new System.EventHandler(this.button_PATH_Ctrl_Click);
  2569. //
  2570. // panel16
  2571. //
  2572. this.panel16.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  2573. this.panel16.Controls.Add(this.label92);
  2574. this.panel16.Location = new System.Drawing.Point(0, 0);
  2575. this.panel16.Name = "panel16";
  2576. this.panel16.Size = new System.Drawing.Size(83, 25);
  2577. this.panel16.TabIndex = 6;
  2578. //
  2579. // label92
  2580. //
  2581. this.label92.AutoSize = true;
  2582. this.label92.Font = new System.Drawing.Font("맑은 고딕", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129)));
  2583. this.label92.Location = new System.Drawing.Point(20, 5);
  2584. this.label92.Name = "label92";
  2585. this.label92.Size = new System.Drawing.Size(42, 15);
  2586. this.label92.TabIndex = 0;
  2587. this.label92.Text = "Path 3";
  2588. //
  2589. // pictureBox_ULO_Path3_High_Alarm_OFF
  2590. //
  2591. this.pictureBox_ULO_Path3_High_Alarm_OFF.Image = global::Jdas_Mbic.Properties.Resources.green;
  2592. this.pictureBox_ULO_Path3_High_Alarm_OFF.Location = new System.Drawing.Point(7, 137);
  2593. this.pictureBox_ULO_Path3_High_Alarm_OFF.Name = "pictureBox_ULO_Path3_High_Alarm_OFF";
  2594. this.pictureBox_ULO_Path3_High_Alarm_OFF.Size = new System.Drawing.Size(29, 23);
  2595. this.pictureBox_ULO_Path3_High_Alarm_OFF.TabIndex = 6;
  2596. this.pictureBox_ULO_Path3_High_Alarm_OFF.TabStop = false;
  2597. //
  2598. // pictureBox_ALC3_Alarm_OFF
  2599. //
  2600. this.pictureBox_ALC3_Alarm_OFF.Image = global::Jdas_Mbic.Properties.Resources.green;
  2601. this.pictureBox_ALC3_Alarm_OFF.Location = new System.Drawing.Point(7, 232);
  2602. this.pictureBox_ALC3_Alarm_OFF.Name = "pictureBox_ALC3_Alarm_OFF";
  2603. this.pictureBox_ALC3_Alarm_OFF.Size = new System.Drawing.Size(29, 23);
  2604. this.pictureBox_ALC3_Alarm_OFF.TabIndex = 6;
  2605. this.pictureBox_ALC3_Alarm_OFF.TabStop = false;
  2606. //
  2607. // pictureBox_ALC3_Alarm_ON
  2608. //
  2609. this.pictureBox_ALC3_Alarm_ON.Image = global::Jdas_Mbic.Properties.Resources.red;
  2610. this.pictureBox_ALC3_Alarm_ON.Location = new System.Drawing.Point(7, 232);
  2611. this.pictureBox_ALC3_Alarm_ON.Name = "pictureBox_ALC3_Alarm_ON";
  2612. this.pictureBox_ALC3_Alarm_ON.Size = new System.Drawing.Size(29, 23);
  2613. this.pictureBox_ALC3_Alarm_ON.TabIndex = 7;
  2614. this.pictureBox_ALC3_Alarm_ON.TabStop = false;
  2615. //
  2616. // pictureBox_UL3_Shutdown_Alarm_OFF
  2617. //
  2618. this.pictureBox_UL3_Shutdown_Alarm_OFF.Image = global::Jdas_Mbic.Properties.Resources.green;
  2619. this.pictureBox_UL3_Shutdown_Alarm_OFF.Location = new System.Drawing.Point(7, 276);
  2620. this.pictureBox_UL3_Shutdown_Alarm_OFF.Name = "pictureBox_UL3_Shutdown_Alarm_OFF";
  2621. this.pictureBox_UL3_Shutdown_Alarm_OFF.Size = new System.Drawing.Size(29, 23);
  2622. this.pictureBox_UL3_Shutdown_Alarm_OFF.TabIndex = 6;
  2623. this.pictureBox_UL3_Shutdown_Alarm_OFF.TabStop = false;
  2624. //
  2625. // panel7
  2626. //
  2627. this.panel7.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  2628. this.panel7.Controls.Add(this.textBox3);
  2629. this.panel7.Controls.Add(this.numericUpDown_ShutdownDL3);
  2630. this.panel7.Controls.Add(this.numericUpDown_DL3_User);
  2631. this.panel7.Controls.Add(this.numericUpDown_ATT_DL3);
  2632. this.panel7.Controls.Add(this.pictureBox_AGC3_Alarm_ON);
  2633. this.panel7.Controls.Add(this.pictureBox_DLI_Path3_High_Alarm_ON);
  2634. this.panel7.Controls.Add(this.button_DL3_PATH);
  2635. this.panel7.Controls.Add(this.textBox_DET_DL3_dBm);
  2636. this.panel7.Controls.Add(this.panel8);
  2637. this.panel7.Controls.Add(this.textBox_DET_DL3);
  2638. this.panel7.Controls.Add(this.pictureBox_DLI_Path3_High_Alarm_OFF);
  2639. this.panel7.Controls.Add(this.pictureBox_DLI_Path3_Low_Alarm_ON);
  2640. this.panel7.Controls.Add(this.pictureBox_DLI_Path3_Low_Alarm_OFF);
  2641. this.panel7.Controls.Add(this.pictureBox_AGC3_Alarm_OFF);
  2642. this.panel7.Controls.Add(this.pictureBox_DL3_Shutdown_Alarm_OFF);
  2643. this.panel7.Controls.Add(this.pictureBox_DL3_Shutdown_Alarm_ON);
  2644. this.panel7.Location = new System.Drawing.Point(422, 403);
  2645. this.panel7.Name = "panel7";
  2646. this.panel7.Size = new System.Drawing.Size(83, 335);
  2647. this.panel7.TabIndex = 5;
  2648. //
  2649. // textBox3
  2650. //
  2651. this.textBox3.Location = new System.Drawing.Point(3, 306);
  2652. this.textBox3.Name = "textBox3";
  2653. this.textBox3.Size = new System.Drawing.Size(75, 23);
  2654. this.textBox3.TabIndex = 8;
  2655. //
  2656. // pictureBox_AGC3_Alarm_ON
  2657. //
  2658. this.pictureBox_AGC3_Alarm_ON.Image = global::Jdas_Mbic.Properties.Resources.red;
  2659. this.pictureBox_AGC3_Alarm_ON.Location = new System.Drawing.Point(7, 228);
  2660. this.pictureBox_AGC3_Alarm_ON.Name = "pictureBox_AGC3_Alarm_ON";
  2661. this.pictureBox_AGC3_Alarm_ON.Size = new System.Drawing.Size(29, 23);
  2662. this.pictureBox_AGC3_Alarm_ON.TabIndex = 7;
  2663. this.pictureBox_AGC3_Alarm_ON.TabStop = false;
  2664. //
  2665. // pictureBox_DLI_Path3_High_Alarm_ON
  2666. //
  2667. this.pictureBox_DLI_Path3_High_Alarm_ON.Image = global::Jdas_Mbic.Properties.Resources.red;
  2668. this.pictureBox_DLI_Path3_High_Alarm_ON.Location = new System.Drawing.Point(7, 133);
  2669. this.pictureBox_DLI_Path3_High_Alarm_ON.Name = "pictureBox_DLI_Path3_High_Alarm_ON";
  2670. this.pictureBox_DLI_Path3_High_Alarm_ON.Size = new System.Drawing.Size(29, 23);
  2671. this.pictureBox_DLI_Path3_High_Alarm_ON.TabIndex = 7;
  2672. this.pictureBox_DLI_Path3_High_Alarm_ON.TabStop = false;
  2673. //
  2674. // button_DL3_PATH
  2675. //
  2676. this.button_DL3_PATH.Location = new System.Drawing.Point(4, 31);
  2677. this.button_DL3_PATH.Name = "button_DL3_PATH";
  2678. this.button_DL3_PATH.Size = new System.Drawing.Size(75, 23);
  2679. this.button_DL3_PATH.TabIndex = 7;
  2680. this.button_DL3_PATH.Text = "OFF";
  2681. this.button_DL3_PATH.UseVisualStyleBackColor = true;
  2682. this.button_DL3_PATH.Click += new System.EventHandler(this.button_PATH_Ctrl_Click);
  2683. //
  2684. // panel8
  2685. //
  2686. this.panel8.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  2687. this.panel8.Controls.Add(this.label85);
  2688. this.panel8.Location = new System.Drawing.Point(0, 0);
  2689. this.panel8.Name = "panel8";
  2690. this.panel8.Size = new System.Drawing.Size(83, 25);
  2691. this.panel8.TabIndex = 6;
  2692. //
  2693. // label85
  2694. //
  2695. this.label85.AutoSize = true;
  2696. this.label85.Font = new System.Drawing.Font("맑은 고딕", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129)));
  2697. this.label85.Location = new System.Drawing.Point(20, 5);
  2698. this.label85.Name = "label85";
  2699. this.label85.Size = new System.Drawing.Size(42, 15);
  2700. this.label85.TabIndex = 0;
  2701. this.label85.Text = "Path 3";
  2702. //
  2703. // pictureBox_DLI_Path3_High_Alarm_OFF
  2704. //
  2705. this.pictureBox_DLI_Path3_High_Alarm_OFF.Image = global::Jdas_Mbic.Properties.Resources.green;
  2706. this.pictureBox_DLI_Path3_High_Alarm_OFF.Location = new System.Drawing.Point(7, 133);
  2707. this.pictureBox_DLI_Path3_High_Alarm_OFF.Name = "pictureBox_DLI_Path3_High_Alarm_OFF";
  2708. this.pictureBox_DLI_Path3_High_Alarm_OFF.Size = new System.Drawing.Size(29, 23);
  2709. this.pictureBox_DLI_Path3_High_Alarm_OFF.TabIndex = 6;
  2710. this.pictureBox_DLI_Path3_High_Alarm_OFF.TabStop = false;
  2711. //
  2712. // pictureBox_DLI_Path3_Low_Alarm_ON
  2713. //
  2714. this.pictureBox_DLI_Path3_Low_Alarm_ON.Image = global::Jdas_Mbic.Properties.Resources.red;
  2715. this.pictureBox_DLI_Path3_Low_Alarm_ON.Location = new System.Drawing.Point(45, 133);
  2716. this.pictureBox_DLI_Path3_Low_Alarm_ON.Name = "pictureBox_DLI_Path3_Low_Alarm_ON";
  2717. this.pictureBox_DLI_Path3_Low_Alarm_ON.Size = new System.Drawing.Size(29, 23);
  2718. this.pictureBox_DLI_Path3_Low_Alarm_ON.TabIndex = 7;
  2719. this.pictureBox_DLI_Path3_Low_Alarm_ON.TabStop = false;
  2720. //
  2721. // pictureBox_DLI_Path3_Low_Alarm_OFF
  2722. //
  2723. this.pictureBox_DLI_Path3_Low_Alarm_OFF.Image = global::Jdas_Mbic.Properties.Resources.green;
  2724. this.pictureBox_DLI_Path3_Low_Alarm_OFF.Location = new System.Drawing.Point(45, 133);
  2725. this.pictureBox_DLI_Path3_Low_Alarm_OFF.Name = "pictureBox_DLI_Path3_Low_Alarm_OFF";
  2726. this.pictureBox_DLI_Path3_Low_Alarm_OFF.Size = new System.Drawing.Size(29, 23);
  2727. this.pictureBox_DLI_Path3_Low_Alarm_OFF.TabIndex = 6;
  2728. this.pictureBox_DLI_Path3_Low_Alarm_OFF.TabStop = false;
  2729. //
  2730. // pictureBox_AGC3_Alarm_OFF
  2731. //
  2732. this.pictureBox_AGC3_Alarm_OFF.Image = global::Jdas_Mbic.Properties.Resources.green;
  2733. this.pictureBox_AGC3_Alarm_OFF.Location = new System.Drawing.Point(7, 228);
  2734. this.pictureBox_AGC3_Alarm_OFF.Name = "pictureBox_AGC3_Alarm_OFF";
  2735. this.pictureBox_AGC3_Alarm_OFF.Size = new System.Drawing.Size(29, 23);
  2736. this.pictureBox_AGC3_Alarm_OFF.TabIndex = 6;
  2737. this.pictureBox_AGC3_Alarm_OFF.TabStop = false;
  2738. //
  2739. // pictureBox_DL3_Shutdown_Alarm_OFF
  2740. //
  2741. this.pictureBox_DL3_Shutdown_Alarm_OFF.Image = global::Jdas_Mbic.Properties.Resources.green;
  2742. this.pictureBox_DL3_Shutdown_Alarm_OFF.Location = new System.Drawing.Point(7, 272);
  2743. this.pictureBox_DL3_Shutdown_Alarm_OFF.Name = "pictureBox_DL3_Shutdown_Alarm_OFF";
  2744. this.pictureBox_DL3_Shutdown_Alarm_OFF.Size = new System.Drawing.Size(29, 23);
  2745. this.pictureBox_DL3_Shutdown_Alarm_OFF.TabIndex = 6;
  2746. this.pictureBox_DL3_Shutdown_Alarm_OFF.TabStop = false;
  2747. //
  2748. // pictureBox_DL3_Shutdown_Alarm_ON
  2749. //
  2750. this.pictureBox_DL3_Shutdown_Alarm_ON.Image = global::Jdas_Mbic.Properties.Resources.red;
  2751. this.pictureBox_DL3_Shutdown_Alarm_ON.Location = new System.Drawing.Point(7, 272);
  2752. this.pictureBox_DL3_Shutdown_Alarm_ON.Name = "pictureBox_DL3_Shutdown_Alarm_ON";
  2753. this.pictureBox_DL3_Shutdown_Alarm_ON.Size = new System.Drawing.Size(29, 23);
  2754. this.pictureBox_DL3_Shutdown_Alarm_ON.TabIndex = 7;
  2755. this.pictureBox_DL3_Shutdown_Alarm_ON.TabStop = false;
  2756. //
  2757. // panel13
  2758. //
  2759. this.panel13.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  2760. this.panel13.Controls.Add(this.numericUpDown_ShutdownUL2);
  2761. this.panel13.Controls.Add(this.textBox6);
  2762. this.panel13.Controls.Add(this.numericUpDown_ALC2);
  2763. this.panel13.Controls.Add(this.numericUpDown_UL2_User);
  2764. this.panel13.Controls.Add(this.numericUpDown_ATT_UL2);
  2765. this.panel13.Controls.Add(this.pictureBox_UL2_Shutdown_Alarm_ON);
  2766. this.panel13.Controls.Add(this.textBox_DET_UL2);
  2767. this.panel13.Controls.Add(this.textBox_DET_UL2_dBm);
  2768. this.panel13.Controls.Add(this.pictureBox_ULO_Path2_High_Alarm_ON);
  2769. this.panel13.Controls.Add(this.button_UL2_PATH);
  2770. this.panel13.Controls.Add(this.panel14);
  2771. this.panel13.Controls.Add(this.pictureBox_ULO_Path2_High_Alarm_OFF);
  2772. this.panel13.Controls.Add(this.pictureBox_ALC2_Alarm_OFF);
  2773. this.panel13.Controls.Add(this.pictureBox_ALC2_Alarm_ON);
  2774. this.panel13.Controls.Add(this.pictureBox_UL2_Shutdown_Alarm_OFF);
  2775. this.panel13.Location = new System.Drawing.Point(820, 403);
  2776. this.panel13.Name = "panel13";
  2777. this.panel13.Size = new System.Drawing.Size(83, 335);
  2778. this.panel13.TabIndex = 5;
  2779. //
  2780. // textBox6
  2781. //
  2782. this.textBox6.Location = new System.Drawing.Point(3, 310);
  2783. this.textBox6.Name = "textBox6";
  2784. this.textBox6.Size = new System.Drawing.Size(75, 23);
  2785. this.textBox6.TabIndex = 8;
  2786. //
  2787. // pictureBox_UL2_Shutdown_Alarm_ON
  2788. //
  2789. this.pictureBox_UL2_Shutdown_Alarm_ON.Image = global::Jdas_Mbic.Properties.Resources.red;
  2790. this.pictureBox_UL2_Shutdown_Alarm_ON.Location = new System.Drawing.Point(7, 276);
  2791. this.pictureBox_UL2_Shutdown_Alarm_ON.Name = "pictureBox_UL2_Shutdown_Alarm_ON";
  2792. this.pictureBox_UL2_Shutdown_Alarm_ON.Size = new System.Drawing.Size(29, 23);
  2793. this.pictureBox_UL2_Shutdown_Alarm_ON.TabIndex = 7;
  2794. this.pictureBox_UL2_Shutdown_Alarm_ON.TabStop = false;
  2795. //
  2796. // pictureBox_ULO_Path2_High_Alarm_ON
  2797. //
  2798. this.pictureBox_ULO_Path2_High_Alarm_ON.Image = global::Jdas_Mbic.Properties.Resources.red;
  2799. this.pictureBox_ULO_Path2_High_Alarm_ON.Location = new System.Drawing.Point(7, 137);
  2800. this.pictureBox_ULO_Path2_High_Alarm_ON.Name = "pictureBox_ULO_Path2_High_Alarm_ON";
  2801. this.pictureBox_ULO_Path2_High_Alarm_ON.Size = new System.Drawing.Size(29, 23);
  2802. this.pictureBox_ULO_Path2_High_Alarm_ON.TabIndex = 7;
  2803. this.pictureBox_ULO_Path2_High_Alarm_ON.TabStop = false;
  2804. //
  2805. // button_UL2_PATH
  2806. //
  2807. this.button_UL2_PATH.Location = new System.Drawing.Point(4, 31);
  2808. this.button_UL2_PATH.Name = "button_UL2_PATH";
  2809. this.button_UL2_PATH.Size = new System.Drawing.Size(75, 23);
  2810. this.button_UL2_PATH.TabIndex = 7;
  2811. this.button_UL2_PATH.Text = "OFF";
  2812. this.button_UL2_PATH.UseVisualStyleBackColor = true;
  2813. this.button_UL2_PATH.Click += new System.EventHandler(this.button_PATH_Ctrl_Click);
  2814. //
  2815. // panel14
  2816. //
  2817. this.panel14.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  2818. this.panel14.Controls.Add(this.label90);
  2819. this.panel14.Location = new System.Drawing.Point(0, 0);
  2820. this.panel14.Name = "panel14";
  2821. this.panel14.Size = new System.Drawing.Size(83, 25);
  2822. this.panel14.TabIndex = 6;
  2823. //
  2824. // label90
  2825. //
  2826. this.label90.AutoSize = true;
  2827. this.label90.Font = new System.Drawing.Font("맑은 고딕", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129)));
  2828. this.label90.Location = new System.Drawing.Point(20, 5);
  2829. this.label90.Name = "label90";
  2830. this.label90.Size = new System.Drawing.Size(42, 15);
  2831. this.label90.TabIndex = 0;
  2832. this.label90.Text = "Path 2";
  2833. //
  2834. // pictureBox_ULO_Path2_High_Alarm_OFF
  2835. //
  2836. this.pictureBox_ULO_Path2_High_Alarm_OFF.Image = global::Jdas_Mbic.Properties.Resources.green;
  2837. this.pictureBox_ULO_Path2_High_Alarm_OFF.Location = new System.Drawing.Point(7, 137);
  2838. this.pictureBox_ULO_Path2_High_Alarm_OFF.Name = "pictureBox_ULO_Path2_High_Alarm_OFF";
  2839. this.pictureBox_ULO_Path2_High_Alarm_OFF.Size = new System.Drawing.Size(29, 23);
  2840. this.pictureBox_ULO_Path2_High_Alarm_OFF.TabIndex = 6;
  2841. this.pictureBox_ULO_Path2_High_Alarm_OFF.TabStop = false;
  2842. //
  2843. // pictureBox_ALC2_Alarm_OFF
  2844. //
  2845. this.pictureBox_ALC2_Alarm_OFF.Image = global::Jdas_Mbic.Properties.Resources.green;
  2846. this.pictureBox_ALC2_Alarm_OFF.Location = new System.Drawing.Point(7, 232);
  2847. this.pictureBox_ALC2_Alarm_OFF.Name = "pictureBox_ALC2_Alarm_OFF";
  2848. this.pictureBox_ALC2_Alarm_OFF.Size = new System.Drawing.Size(29, 23);
  2849. this.pictureBox_ALC2_Alarm_OFF.TabIndex = 6;
  2850. this.pictureBox_ALC2_Alarm_OFF.TabStop = false;
  2851. //
  2852. // pictureBox_ALC2_Alarm_ON
  2853. //
  2854. this.pictureBox_ALC2_Alarm_ON.Image = global::Jdas_Mbic.Properties.Resources.red;
  2855. this.pictureBox_ALC2_Alarm_ON.Location = new System.Drawing.Point(7, 232);
  2856. this.pictureBox_ALC2_Alarm_ON.Name = "pictureBox_ALC2_Alarm_ON";
  2857. this.pictureBox_ALC2_Alarm_ON.Size = new System.Drawing.Size(29, 23);
  2858. this.pictureBox_ALC2_Alarm_ON.TabIndex = 7;
  2859. this.pictureBox_ALC2_Alarm_ON.TabStop = false;
  2860. //
  2861. // pictureBox_UL2_Shutdown_Alarm_OFF
  2862. //
  2863. this.pictureBox_UL2_Shutdown_Alarm_OFF.Image = global::Jdas_Mbic.Properties.Resources.green;
  2864. this.pictureBox_UL2_Shutdown_Alarm_OFF.Location = new System.Drawing.Point(7, 276);
  2865. this.pictureBox_UL2_Shutdown_Alarm_OFF.Name = "pictureBox_UL2_Shutdown_Alarm_OFF";
  2866. this.pictureBox_UL2_Shutdown_Alarm_OFF.Size = new System.Drawing.Size(29, 23);
  2867. this.pictureBox_UL2_Shutdown_Alarm_OFF.TabIndex = 6;
  2868. this.pictureBox_UL2_Shutdown_Alarm_OFF.TabStop = false;
  2869. //
  2870. // panel5
  2871. //
  2872. this.panel5.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  2873. this.panel5.Controls.Add(this.textBox2);
  2874. this.panel5.Controls.Add(this.numericUpDown_ShutdownDL2);
  2875. this.panel5.Controls.Add(this.numericUpDown_DL2_User);
  2876. this.panel5.Controls.Add(this.numericUpDown_ATT_DL2);
  2877. this.panel5.Controls.Add(this.pictureBox_AGC2_Alarm_ON);
  2878. this.panel5.Controls.Add(this.pictureBox_DLI_Path2_High_Alarm_ON);
  2879. this.panel5.Controls.Add(this.button_DL2_PATH);
  2880. this.panel5.Controls.Add(this.panel6);
  2881. this.panel5.Controls.Add(this.textBox_DET_DL2_dBm);
  2882. this.panel5.Controls.Add(this.textBox_DET_DL2);
  2883. this.panel5.Controls.Add(this.pictureBox_DLI_Path2_High_Alarm_OFF);
  2884. this.panel5.Controls.Add(this.pictureBox_DLI_Path2_Low_Alarm_ON);
  2885. this.panel5.Controls.Add(this.pictureBox_DLI_Path2_Low_Alarm_OFF);
  2886. this.panel5.Controls.Add(this.pictureBox_AGC2_Alarm_OFF);
  2887. this.panel5.Controls.Add(this.pictureBox_DL2_Shutdown_Alarm_OFF);
  2888. this.panel5.Controls.Add(this.pictureBox_DL2_Shutdown_Alarm_ON);
  2889. this.panel5.Location = new System.Drawing.Point(316, 403);
  2890. this.panel5.Name = "panel5";
  2891. this.panel5.Size = new System.Drawing.Size(83, 335);
  2892. this.panel5.TabIndex = 5;
  2893. //
  2894. // textBox2
  2895. //
  2896. this.textBox2.Location = new System.Drawing.Point(3, 306);
  2897. this.textBox2.Name = "textBox2";
  2898. this.textBox2.Size = new System.Drawing.Size(75, 23);
  2899. this.textBox2.TabIndex = 8;
  2900. //
  2901. // pictureBox_AGC2_Alarm_ON
  2902. //
  2903. this.pictureBox_AGC2_Alarm_ON.Image = global::Jdas_Mbic.Properties.Resources.red;
  2904. this.pictureBox_AGC2_Alarm_ON.Location = new System.Drawing.Point(7, 228);
  2905. this.pictureBox_AGC2_Alarm_ON.Name = "pictureBox_AGC2_Alarm_ON";
  2906. this.pictureBox_AGC2_Alarm_ON.Size = new System.Drawing.Size(29, 23);
  2907. this.pictureBox_AGC2_Alarm_ON.TabIndex = 7;
  2908. this.pictureBox_AGC2_Alarm_ON.TabStop = false;
  2909. //
  2910. // pictureBox_DLI_Path2_High_Alarm_ON
  2911. //
  2912. this.pictureBox_DLI_Path2_High_Alarm_ON.Image = global::Jdas_Mbic.Properties.Resources.red;
  2913. this.pictureBox_DLI_Path2_High_Alarm_ON.Location = new System.Drawing.Point(7, 133);
  2914. this.pictureBox_DLI_Path2_High_Alarm_ON.Name = "pictureBox_DLI_Path2_High_Alarm_ON";
  2915. this.pictureBox_DLI_Path2_High_Alarm_ON.Size = new System.Drawing.Size(29, 23);
  2916. this.pictureBox_DLI_Path2_High_Alarm_ON.TabIndex = 7;
  2917. this.pictureBox_DLI_Path2_High_Alarm_ON.TabStop = false;
  2918. //
  2919. // button_DL2_PATH
  2920. //
  2921. this.button_DL2_PATH.Location = new System.Drawing.Point(4, 31);
  2922. this.button_DL2_PATH.Name = "button_DL2_PATH";
  2923. this.button_DL2_PATH.Size = new System.Drawing.Size(75, 23);
  2924. this.button_DL2_PATH.TabIndex = 7;
  2925. this.button_DL2_PATH.Text = "OFF";
  2926. this.button_DL2_PATH.UseVisualStyleBackColor = true;
  2927. this.button_DL2_PATH.Click += new System.EventHandler(this.button_PATH_Ctrl_Click);
  2928. //
  2929. // panel6
  2930. //
  2931. this.panel6.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  2932. this.panel6.Controls.Add(this.label84);
  2933. this.panel6.Location = new System.Drawing.Point(0, 0);
  2934. this.panel6.Name = "panel6";
  2935. this.panel6.Size = new System.Drawing.Size(83, 25);
  2936. this.panel6.TabIndex = 6;
  2937. //
  2938. // label84
  2939. //
  2940. this.label84.AutoSize = true;
  2941. this.label84.Font = new System.Drawing.Font("맑은 고딕", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129)));
  2942. this.label84.Location = new System.Drawing.Point(20, 5);
  2943. this.label84.Name = "label84";
  2944. this.label84.Size = new System.Drawing.Size(42, 15);
  2945. this.label84.TabIndex = 0;
  2946. this.label84.Text = "Path 2";
  2947. //
  2948. // pictureBox_DLI_Path2_High_Alarm_OFF
  2949. //
  2950. this.pictureBox_DLI_Path2_High_Alarm_OFF.Image = global::Jdas_Mbic.Properties.Resources.green;
  2951. this.pictureBox_DLI_Path2_High_Alarm_OFF.Location = new System.Drawing.Point(7, 133);
  2952. this.pictureBox_DLI_Path2_High_Alarm_OFF.Name = "pictureBox_DLI_Path2_High_Alarm_OFF";
  2953. this.pictureBox_DLI_Path2_High_Alarm_OFF.Size = new System.Drawing.Size(29, 23);
  2954. this.pictureBox_DLI_Path2_High_Alarm_OFF.TabIndex = 6;
  2955. this.pictureBox_DLI_Path2_High_Alarm_OFF.TabStop = false;
  2956. //
  2957. // pictureBox_DLI_Path2_Low_Alarm_ON
  2958. //
  2959. this.pictureBox_DLI_Path2_Low_Alarm_ON.Image = global::Jdas_Mbic.Properties.Resources.red;
  2960. this.pictureBox_DLI_Path2_Low_Alarm_ON.Location = new System.Drawing.Point(45, 133);
  2961. this.pictureBox_DLI_Path2_Low_Alarm_ON.Name = "pictureBox_DLI_Path2_Low_Alarm_ON";
  2962. this.pictureBox_DLI_Path2_Low_Alarm_ON.Size = new System.Drawing.Size(29, 23);
  2963. this.pictureBox_DLI_Path2_Low_Alarm_ON.TabIndex = 7;
  2964. this.pictureBox_DLI_Path2_Low_Alarm_ON.TabStop = false;
  2965. //
  2966. // pictureBox_DLI_Path2_Low_Alarm_OFF
  2967. //
  2968. this.pictureBox_DLI_Path2_Low_Alarm_OFF.Image = global::Jdas_Mbic.Properties.Resources.green;
  2969. this.pictureBox_DLI_Path2_Low_Alarm_OFF.Location = new System.Drawing.Point(45, 133);
  2970. this.pictureBox_DLI_Path2_Low_Alarm_OFF.Name = "pictureBox_DLI_Path2_Low_Alarm_OFF";
  2971. this.pictureBox_DLI_Path2_Low_Alarm_OFF.Size = new System.Drawing.Size(29, 23);
  2972. this.pictureBox_DLI_Path2_Low_Alarm_OFF.TabIndex = 6;
  2973. this.pictureBox_DLI_Path2_Low_Alarm_OFF.TabStop = false;
  2974. //
  2975. // pictureBox_AGC2_Alarm_OFF
  2976. //
  2977. this.pictureBox_AGC2_Alarm_OFF.Image = global::Jdas_Mbic.Properties.Resources.green;
  2978. this.pictureBox_AGC2_Alarm_OFF.Location = new System.Drawing.Point(7, 228);
  2979. this.pictureBox_AGC2_Alarm_OFF.Name = "pictureBox_AGC2_Alarm_OFF";
  2980. this.pictureBox_AGC2_Alarm_OFF.Size = new System.Drawing.Size(29, 23);
  2981. this.pictureBox_AGC2_Alarm_OFF.TabIndex = 6;
  2982. this.pictureBox_AGC2_Alarm_OFF.TabStop = false;
  2983. //
  2984. // pictureBox_DL2_Shutdown_Alarm_OFF
  2985. //
  2986. this.pictureBox_DL2_Shutdown_Alarm_OFF.Image = global::Jdas_Mbic.Properties.Resources.green;
  2987. this.pictureBox_DL2_Shutdown_Alarm_OFF.Location = new System.Drawing.Point(7, 272);
  2988. this.pictureBox_DL2_Shutdown_Alarm_OFF.Name = "pictureBox_DL2_Shutdown_Alarm_OFF";
  2989. this.pictureBox_DL2_Shutdown_Alarm_OFF.Size = new System.Drawing.Size(29, 23);
  2990. this.pictureBox_DL2_Shutdown_Alarm_OFF.TabIndex = 6;
  2991. this.pictureBox_DL2_Shutdown_Alarm_OFF.TabStop = false;
  2992. //
  2993. // pictureBox_DL2_Shutdown_Alarm_ON
  2994. //
  2995. this.pictureBox_DL2_Shutdown_Alarm_ON.Image = global::Jdas_Mbic.Properties.Resources.red;
  2996. this.pictureBox_DL2_Shutdown_Alarm_ON.Location = new System.Drawing.Point(7, 272);
  2997. this.pictureBox_DL2_Shutdown_Alarm_ON.Name = "pictureBox_DL2_Shutdown_Alarm_ON";
  2998. this.pictureBox_DL2_Shutdown_Alarm_ON.Size = new System.Drawing.Size(29, 23);
  2999. this.pictureBox_DL2_Shutdown_Alarm_ON.TabIndex = 7;
  3000. this.pictureBox_DL2_Shutdown_Alarm_ON.TabStop = false;
  3001. //
  3002. // panel11
  3003. //
  3004. this.panel11.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  3005. this.panel11.Controls.Add(this.numericUpDown_ShutdownUL1);
  3006. this.panel11.Controls.Add(this.textBox5);
  3007. this.panel11.Controls.Add(this.numericUpDown_ALC1);
  3008. this.panel11.Controls.Add(this.numericUpDown_UL1_User);
  3009. this.panel11.Controls.Add(this.numericUpDown_ATT_UL1);
  3010. this.panel11.Controls.Add(this.pictureBox_UL1_Shutdown_Alarm_ON);
  3011. this.panel11.Controls.Add(this.textBox_DET_UL1);
  3012. this.panel11.Controls.Add(this.textBox_DET_UL1_dBm);
  3013. this.panel11.Controls.Add(this.pictureBox_ULO_Path1_High_Alarm_ON);
  3014. this.panel11.Controls.Add(this.button_UL1_PATH);
  3015. this.panel11.Controls.Add(this.panel12);
  3016. this.panel11.Controls.Add(this.pictureBox_ULO_Path1_High_Alarm_OFF);
  3017. this.panel11.Controls.Add(this.pictureBox_ALC1_Alarm_OFF);
  3018. this.panel11.Controls.Add(this.pictureBox_ALC1_Alarm_ON);
  3019. this.panel11.Controls.Add(this.pictureBox_UL1_Shutdown_Alarm_OFF);
  3020. this.panel11.Location = new System.Drawing.Point(714, 403);
  3021. this.panel11.Name = "panel11";
  3022. this.panel11.Size = new System.Drawing.Size(83, 335);
  3023. this.panel11.TabIndex = 5;
  3024. //
  3025. // textBox5
  3026. //
  3027. this.textBox5.Location = new System.Drawing.Point(3, 310);
  3028. this.textBox5.Name = "textBox5";
  3029. this.textBox5.Size = new System.Drawing.Size(75, 23);
  3030. this.textBox5.TabIndex = 8;
  3031. //
  3032. // pictureBox_UL1_Shutdown_Alarm_ON
  3033. //
  3034. this.pictureBox_UL1_Shutdown_Alarm_ON.Image = global::Jdas_Mbic.Properties.Resources.red;
  3035. this.pictureBox_UL1_Shutdown_Alarm_ON.Location = new System.Drawing.Point(7, 276);
  3036. this.pictureBox_UL1_Shutdown_Alarm_ON.Name = "pictureBox_UL1_Shutdown_Alarm_ON";
  3037. this.pictureBox_UL1_Shutdown_Alarm_ON.Size = new System.Drawing.Size(29, 23);
  3038. this.pictureBox_UL1_Shutdown_Alarm_ON.TabIndex = 7;
  3039. this.pictureBox_UL1_Shutdown_Alarm_ON.TabStop = false;
  3040. //
  3041. // pictureBox_ULO_Path1_High_Alarm_ON
  3042. //
  3043. this.pictureBox_ULO_Path1_High_Alarm_ON.Image = global::Jdas_Mbic.Properties.Resources.red;
  3044. this.pictureBox_ULO_Path1_High_Alarm_ON.Location = new System.Drawing.Point(7, 137);
  3045. this.pictureBox_ULO_Path1_High_Alarm_ON.Name = "pictureBox_ULO_Path1_High_Alarm_ON";
  3046. this.pictureBox_ULO_Path1_High_Alarm_ON.Size = new System.Drawing.Size(29, 23);
  3047. this.pictureBox_ULO_Path1_High_Alarm_ON.TabIndex = 7;
  3048. this.pictureBox_ULO_Path1_High_Alarm_ON.TabStop = false;
  3049. //
  3050. // button_UL1_PATH
  3051. //
  3052. this.button_UL1_PATH.Location = new System.Drawing.Point(4, 31);
  3053. this.button_UL1_PATH.Name = "button_UL1_PATH";
  3054. this.button_UL1_PATH.Size = new System.Drawing.Size(75, 23);
  3055. this.button_UL1_PATH.TabIndex = 7;
  3056. this.button_UL1_PATH.Text = "OFF";
  3057. this.button_UL1_PATH.UseVisualStyleBackColor = true;
  3058. this.button_UL1_PATH.Click += new System.EventHandler(this.button_PATH_Ctrl_Click);
  3059. //
  3060. // panel12
  3061. //
  3062. this.panel12.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  3063. this.panel12.Controls.Add(this.label87);
  3064. this.panel12.Location = new System.Drawing.Point(0, 0);
  3065. this.panel12.Name = "panel12";
  3066. this.panel12.Size = new System.Drawing.Size(83, 25);
  3067. this.panel12.TabIndex = 6;
  3068. //
  3069. // label87
  3070. //
  3071. this.label87.AutoSize = true;
  3072. this.label87.Font = new System.Drawing.Font("맑은 고딕", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129)));
  3073. this.label87.Location = new System.Drawing.Point(20, 5);
  3074. this.label87.Name = "label87";
  3075. this.label87.Size = new System.Drawing.Size(42, 15);
  3076. this.label87.TabIndex = 0;
  3077. this.label87.Text = "Path 1";
  3078. //
  3079. // pictureBox_ULO_Path1_High_Alarm_OFF
  3080. //
  3081. this.pictureBox_ULO_Path1_High_Alarm_OFF.Image = global::Jdas_Mbic.Properties.Resources.green;
  3082. this.pictureBox_ULO_Path1_High_Alarm_OFF.Location = new System.Drawing.Point(7, 137);
  3083. this.pictureBox_ULO_Path1_High_Alarm_OFF.Name = "pictureBox_ULO_Path1_High_Alarm_OFF";
  3084. this.pictureBox_ULO_Path1_High_Alarm_OFF.Size = new System.Drawing.Size(29, 23);
  3085. this.pictureBox_ULO_Path1_High_Alarm_OFF.TabIndex = 6;
  3086. this.pictureBox_ULO_Path1_High_Alarm_OFF.TabStop = false;
  3087. //
  3088. // pictureBox_ALC1_Alarm_OFF
  3089. //
  3090. this.pictureBox_ALC1_Alarm_OFF.Image = global::Jdas_Mbic.Properties.Resources.green;
  3091. this.pictureBox_ALC1_Alarm_OFF.Location = new System.Drawing.Point(7, 232);
  3092. this.pictureBox_ALC1_Alarm_OFF.Name = "pictureBox_ALC1_Alarm_OFF";
  3093. this.pictureBox_ALC1_Alarm_OFF.Size = new System.Drawing.Size(29, 23);
  3094. this.pictureBox_ALC1_Alarm_OFF.TabIndex = 6;
  3095. this.pictureBox_ALC1_Alarm_OFF.TabStop = false;
  3096. //
  3097. // pictureBox_ALC1_Alarm_ON
  3098. //
  3099. this.pictureBox_ALC1_Alarm_ON.Image = global::Jdas_Mbic.Properties.Resources.red;
  3100. this.pictureBox_ALC1_Alarm_ON.Location = new System.Drawing.Point(7, 232);
  3101. this.pictureBox_ALC1_Alarm_ON.Name = "pictureBox_ALC1_Alarm_ON";
  3102. this.pictureBox_ALC1_Alarm_ON.Size = new System.Drawing.Size(29, 23);
  3103. this.pictureBox_ALC1_Alarm_ON.TabIndex = 7;
  3104. this.pictureBox_ALC1_Alarm_ON.TabStop = false;
  3105. //
  3106. // pictureBox_UL1_Shutdown_Alarm_OFF
  3107. //
  3108. this.pictureBox_UL1_Shutdown_Alarm_OFF.Image = global::Jdas_Mbic.Properties.Resources.green;
  3109. this.pictureBox_UL1_Shutdown_Alarm_OFF.Location = new System.Drawing.Point(7, 276);
  3110. this.pictureBox_UL1_Shutdown_Alarm_OFF.Name = "pictureBox_UL1_Shutdown_Alarm_OFF";
  3111. this.pictureBox_UL1_Shutdown_Alarm_OFF.Size = new System.Drawing.Size(29, 23);
  3112. this.pictureBox_UL1_Shutdown_Alarm_OFF.TabIndex = 6;
  3113. this.pictureBox_UL1_Shutdown_Alarm_OFF.TabStop = false;
  3114. //
  3115. // panel3
  3116. //
  3117. this.panel3.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  3118. this.panel3.Controls.Add(this.numericUpDown_ShutdownDL1);
  3119. this.panel3.Controls.Add(this.textBox1);
  3120. this.panel3.Controls.Add(this.numericUpDown_DL1_User);
  3121. this.panel3.Controls.Add(this.numericUpDown_ATT_DL1);
  3122. this.panel3.Controls.Add(this.pictureBox_AGC1_Alarm_ON);
  3123. this.panel3.Controls.Add(this.pictureBox_DLI_Path1_High_Alarm_ON);
  3124. this.panel3.Controls.Add(this.button_DL1_PATH);
  3125. this.panel3.Controls.Add(this.panel4);
  3126. this.panel3.Controls.Add(this.textBox_DET_DL1_dBm);
  3127. this.panel3.Controls.Add(this.textBox_DET_DL1);
  3128. this.panel3.Controls.Add(this.pictureBox_DLI_Path1_High_Alarm_OFF);
  3129. this.panel3.Controls.Add(this.pictureBox_DLI_Path1_Low_Alarm_ON);
  3130. this.panel3.Controls.Add(this.pictureBox_DLI_Path1_Low_Alarm_OFF);
  3131. this.panel3.Controls.Add(this.pictureBox_AGC1_Alarm_OFF);
  3132. this.panel3.Controls.Add(this.pictureBox_DL1_Shutdown_Alarm_OFF);
  3133. this.panel3.Controls.Add(this.pictureBox_DL1_Shutdown_Alarm_ON);
  3134. this.panel3.Location = new System.Drawing.Point(210, 403);
  3135. this.panel3.Name = "panel3";
  3136. this.panel3.Size = new System.Drawing.Size(83, 335);
  3137. this.panel3.TabIndex = 5;
  3138. //
  3139. // textBox1
  3140. //
  3141. this.textBox1.Location = new System.Drawing.Point(3, 306);
  3142. this.textBox1.Name = "textBox1";
  3143. this.textBox1.Size = new System.Drawing.Size(75, 23);
  3144. this.textBox1.TabIndex = 8;
  3145. //
  3146. // pictureBox_AGC1_Alarm_ON
  3147. //
  3148. this.pictureBox_AGC1_Alarm_ON.Image = global::Jdas_Mbic.Properties.Resources.red;
  3149. this.pictureBox_AGC1_Alarm_ON.Location = new System.Drawing.Point(7, 228);
  3150. this.pictureBox_AGC1_Alarm_ON.Name = "pictureBox_AGC1_Alarm_ON";
  3151. this.pictureBox_AGC1_Alarm_ON.Size = new System.Drawing.Size(29, 23);
  3152. this.pictureBox_AGC1_Alarm_ON.TabIndex = 7;
  3153. this.pictureBox_AGC1_Alarm_ON.TabStop = false;
  3154. //
  3155. // pictureBox_DLI_Path1_High_Alarm_ON
  3156. //
  3157. this.pictureBox_DLI_Path1_High_Alarm_ON.Image = global::Jdas_Mbic.Properties.Resources.red;
  3158. this.pictureBox_DLI_Path1_High_Alarm_ON.Location = new System.Drawing.Point(7, 133);
  3159. this.pictureBox_DLI_Path1_High_Alarm_ON.Name = "pictureBox_DLI_Path1_High_Alarm_ON";
  3160. this.pictureBox_DLI_Path1_High_Alarm_ON.Size = new System.Drawing.Size(29, 23);
  3161. this.pictureBox_DLI_Path1_High_Alarm_ON.TabIndex = 7;
  3162. this.pictureBox_DLI_Path1_High_Alarm_ON.TabStop = false;
  3163. //
  3164. // button_DL1_PATH
  3165. //
  3166. this.button_DL1_PATH.Location = new System.Drawing.Point(4, 31);
  3167. this.button_DL1_PATH.Name = "button_DL1_PATH";
  3168. this.button_DL1_PATH.Size = new System.Drawing.Size(75, 23);
  3169. this.button_DL1_PATH.TabIndex = 7;
  3170. this.button_DL1_PATH.Text = "OFF";
  3171. this.button_DL1_PATH.UseVisualStyleBackColor = true;
  3172. this.button_DL1_PATH.Click += new System.EventHandler(this.button_PATH_Ctrl_Click);
  3173. //
  3174. // panel4
  3175. //
  3176. this.panel4.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  3177. this.panel4.Controls.Add(this.label83);
  3178. this.panel4.Location = new System.Drawing.Point(0, 0);
  3179. this.panel4.Name = "panel4";
  3180. this.panel4.Size = new System.Drawing.Size(83, 25);
  3181. this.panel4.TabIndex = 6;
  3182. //
  3183. // label83
  3184. //
  3185. this.label83.AutoSize = true;
  3186. this.label83.Font = new System.Drawing.Font("맑은 고딕", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129)));
  3187. this.label83.Location = new System.Drawing.Point(20, 5);
  3188. this.label83.Name = "label83";
  3189. this.label83.Size = new System.Drawing.Size(42, 15);
  3190. this.label83.TabIndex = 0;
  3191. this.label83.Text = "Path 1";
  3192. //
  3193. // pictureBox_DLI_Path1_High_Alarm_OFF
  3194. //
  3195. this.pictureBox_DLI_Path1_High_Alarm_OFF.Image = global::Jdas_Mbic.Properties.Resources.green;
  3196. this.pictureBox_DLI_Path1_High_Alarm_OFF.Location = new System.Drawing.Point(7, 133);
  3197. this.pictureBox_DLI_Path1_High_Alarm_OFF.Name = "pictureBox_DLI_Path1_High_Alarm_OFF";
  3198. this.pictureBox_DLI_Path1_High_Alarm_OFF.Size = new System.Drawing.Size(29, 23);
  3199. this.pictureBox_DLI_Path1_High_Alarm_OFF.TabIndex = 6;
  3200. this.pictureBox_DLI_Path1_High_Alarm_OFF.TabStop = false;
  3201. //
  3202. // pictureBox_DLI_Path1_Low_Alarm_ON
  3203. //
  3204. this.pictureBox_DLI_Path1_Low_Alarm_ON.Image = global::Jdas_Mbic.Properties.Resources.red;
  3205. this.pictureBox_DLI_Path1_Low_Alarm_ON.Location = new System.Drawing.Point(45, 133);
  3206. this.pictureBox_DLI_Path1_Low_Alarm_ON.Name = "pictureBox_DLI_Path1_Low_Alarm_ON";
  3207. this.pictureBox_DLI_Path1_Low_Alarm_ON.Size = new System.Drawing.Size(29, 23);
  3208. this.pictureBox_DLI_Path1_Low_Alarm_ON.TabIndex = 7;
  3209. this.pictureBox_DLI_Path1_Low_Alarm_ON.TabStop = false;
  3210. //
  3211. // pictureBox_DLI_Path1_Low_Alarm_OFF
  3212. //
  3213. this.pictureBox_DLI_Path1_Low_Alarm_OFF.Image = global::Jdas_Mbic.Properties.Resources.green;
  3214. this.pictureBox_DLI_Path1_Low_Alarm_OFF.Location = new System.Drawing.Point(45, 133);
  3215. this.pictureBox_DLI_Path1_Low_Alarm_OFF.Name = "pictureBox_DLI_Path1_Low_Alarm_OFF";
  3216. this.pictureBox_DLI_Path1_Low_Alarm_OFF.Size = new System.Drawing.Size(29, 23);
  3217. this.pictureBox_DLI_Path1_Low_Alarm_OFF.TabIndex = 6;
  3218. this.pictureBox_DLI_Path1_Low_Alarm_OFF.TabStop = false;
  3219. //
  3220. // pictureBox_AGC1_Alarm_OFF
  3221. //
  3222. this.pictureBox_AGC1_Alarm_OFF.Image = global::Jdas_Mbic.Properties.Resources.green;
  3223. this.pictureBox_AGC1_Alarm_OFF.Location = new System.Drawing.Point(7, 228);
  3224. this.pictureBox_AGC1_Alarm_OFF.Name = "pictureBox_AGC1_Alarm_OFF";
  3225. this.pictureBox_AGC1_Alarm_OFF.Size = new System.Drawing.Size(29, 23);
  3226. this.pictureBox_AGC1_Alarm_OFF.TabIndex = 6;
  3227. this.pictureBox_AGC1_Alarm_OFF.TabStop = false;
  3228. //
  3229. // pictureBox_DL1_Shutdown_Alarm_OFF
  3230. //
  3231. this.pictureBox_DL1_Shutdown_Alarm_OFF.Image = global::Jdas_Mbic.Properties.Resources.green;
  3232. this.pictureBox_DL1_Shutdown_Alarm_OFF.Location = new System.Drawing.Point(7, 272);
  3233. this.pictureBox_DL1_Shutdown_Alarm_OFF.Name = "pictureBox_DL1_Shutdown_Alarm_OFF";
  3234. this.pictureBox_DL1_Shutdown_Alarm_OFF.Size = new System.Drawing.Size(29, 23);
  3235. this.pictureBox_DL1_Shutdown_Alarm_OFF.TabIndex = 6;
  3236. this.pictureBox_DL1_Shutdown_Alarm_OFF.TabStop = false;
  3237. //
  3238. // pictureBox_DL1_Shutdown_Alarm_ON
  3239. //
  3240. this.pictureBox_DL1_Shutdown_Alarm_ON.Image = global::Jdas_Mbic.Properties.Resources.red;
  3241. this.pictureBox_DL1_Shutdown_Alarm_ON.Location = new System.Drawing.Point(7, 272);
  3242. this.pictureBox_DL1_Shutdown_Alarm_ON.Name = "pictureBox_DL1_Shutdown_Alarm_ON";
  3243. this.pictureBox_DL1_Shutdown_Alarm_ON.Size = new System.Drawing.Size(29, 23);
  3244. this.pictureBox_DL1_Shutdown_Alarm_ON.TabIndex = 7;
  3245. this.pictureBox_DL1_Shutdown_Alarm_ON.TabStop = false;
  3246. //
  3247. // label82
  3248. //
  3249. this.label82.AutoSize = true;
  3250. this.label82.Font = new System.Drawing.Font("맑은 고딕", 14F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(129)));
  3251. this.label82.Location = new System.Drawing.Point(710, 263);
  3252. this.label82.Name = "label82";
  3253. this.label82.Size = new System.Drawing.Size(120, 25);
  3254. this.label82.TabIndex = 3;
  3255. this.label82.Text = "UL OUTPUT";
  3256. //
  3257. // label81
  3258. //
  3259. this.label81.AutoSize = true;
  3260. this.label81.Font = new System.Drawing.Font("맑은 고딕", 9F);
  3261. this.label81.Location = new System.Drawing.Point(713, 308);
  3262. this.label81.Name = "label81";
  3263. this.label81.Size = new System.Drawing.Size(68, 15);
  3264. this.label81.TabIndex = 4;
  3265. this.label81.Text = "High Limit";
  3266. //
  3267. // label78
  3268. //
  3269. this.label78.AutoSize = true;
  3270. this.label78.Font = new System.Drawing.Font("맑은 고딕", 14F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(129)));
  3271. this.label78.Location = new System.Drawing.Point(205, 263);
  3272. this.label78.Name = "label78";
  3273. this.label78.Size = new System.Drawing.Size(92, 25);
  3274. this.label78.TabIndex = 3;
  3275. this.label78.Text = "DL Input";
  3276. //
  3277. // label80
  3278. //
  3279. this.label80.AutoSize = true;
  3280. this.label80.Font = new System.Drawing.Font("맑은 고딕", 9F);
  3281. this.label80.Location = new System.Drawing.Point(712, 335);
  3282. this.label80.Name = "label80";
  3283. this.label80.Size = new System.Drawing.Size(60, 15);
  3284. this.label80.TabIndex = 3;
  3285. this.label80.Text = "ALC Limit";
  3286. //
  3287. // label77
  3288. //
  3289. this.label77.AutoSize = true;
  3290. this.label77.Location = new System.Drawing.Point(208, 308);
  3291. this.label77.Name = "label77";
  3292. this.label77.Size = new System.Drawing.Size(99, 15);
  3293. this.label77.TabIndex = 4;
  3294. this.label77.Text = "High / Low Limit";
  3295. //
  3296. // label79
  3297. //
  3298. this.label79.AutoSize = true;
  3299. this.label79.Font = new System.Drawing.Font("맑은 고딕", 9F);
  3300. this.label79.Location = new System.Drawing.Point(712, 358);
  3301. this.label79.Name = "label79";
  3302. this.label79.Size = new System.Drawing.Size(95, 15);
  3303. this.label79.TabIndex = 4;
  3304. this.label79.Text = "ShutDown Limit";
  3305. //
  3306. // label75
  3307. //
  3308. this.label75.AutoSize = true;
  3309. this.label75.Location = new System.Drawing.Point(207, 335);
  3310. this.label75.Name = "label75";
  3311. this.label75.Size = new System.Drawing.Size(62, 15);
  3312. this.label75.TabIndex = 3;
  3313. this.label75.Text = "AGC Limit";
  3314. //
  3315. // label76
  3316. //
  3317. this.label76.AutoSize = true;
  3318. this.label76.Location = new System.Drawing.Point(207, 358);
  3319. this.label76.Name = "label76";
  3320. this.label76.Size = new System.Drawing.Size(95, 15);
  3321. this.label76.TabIndex = 4;
  3322. this.label76.Text = "ShutDown Limit";
  3323. //
  3324. // label74
  3325. //
  3326. this.label74.AutoSize = true;
  3327. this.label74.Location = new System.Drawing.Point(318, 184);
  3328. this.label74.Name = "label74";
  3329. this.label74.Size = new System.Drawing.Size(98, 15);
  3330. this.label74.TabIndex = 2;
  3331. this.label74.Text = "Temp High Limit";
  3332. //
  3333. // label73
  3334. //
  3335. this.label73.AutoSize = true;
  3336. this.label73.Location = new System.Drawing.Point(170, 184);
  3337. this.label73.Name = "label73";
  3338. this.label73.Size = new System.Drawing.Size(37, 15);
  3339. this.label73.TabIndex = 2;
  3340. this.label73.Text = "Temp";
  3341. //
  3342. // label67
  3343. //
  3344. this.label67.AutoSize = true;
  3345. this.label67.Location = new System.Drawing.Point(17, 79);
  3346. this.label67.Name = "label67";
  3347. this.label67.Size = new System.Drawing.Size(61, 15);
  3348. this.label67.TabIndex = 1;
  3349. this.label67.Text = "Card Type";
  3350. //
  3351. // label72
  3352. //
  3353. this.label72.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
  3354. this.label72.Location = new System.Drawing.Point(0, 165);
  3355. this.label72.Name = "label72";
  3356. this.label72.Size = new System.Drawing.Size(1150, 2);
  3357. this.label72.TabIndex = 1;
  3358. //
  3359. // label71
  3360. //
  3361. this.label71.AutoSize = true;
  3362. this.label71.Location = new System.Drawing.Point(697, 108);
  3363. this.label71.Name = "label71";
  3364. this.label71.Size = new System.Drawing.Size(70, 15);
  3365. this.label71.TabIndex = 1;
  3366. this.label71.Text = "FRBT Status";
  3367. //
  3368. // label70
  3369. //
  3370. this.label70.AutoSize = true;
  3371. this.label70.Location = new System.Drawing.Point(697, 79);
  3372. this.label70.Name = "label70";
  3373. this.label70.Size = new System.Drawing.Size(72, 15);
  3374. this.label70.TabIndex = 1;
  3375. this.label70.Text = "FRBT D-Day";
  3376. //
  3377. // label69
  3378. //
  3379. this.label69.AutoSize = true;
  3380. this.label69.Location = new System.Drawing.Point(425, 102);
  3381. this.label69.Name = "label69";
  3382. this.label69.Size = new System.Drawing.Size(42, 15);
  3383. this.label69.TabIndex = 1;
  3384. this.label69.Text = "Carrier";
  3385. //
  3386. // label68
  3387. //
  3388. this.label68.AutoSize = true;
  3389. this.label68.Location = new System.Drawing.Point(425, 79);
  3390. this.label68.Name = "label68";
  3391. this.label68.Size = new System.Drawing.Size(53, 15);
  3392. this.label68.TabIndex = 1;
  3393. this.label68.Text = "LED Test";
  3394. //
  3395. // label65
  3396. //
  3397. this.label65.AutoSize = true;
  3398. this.label65.Location = new System.Drawing.Point(17, 102);
  3399. this.label65.Name = "label65";
  3400. this.label65.Size = new System.Drawing.Size(74, 15);
  3401. this.label65.TabIndex = 1;
  3402. this.label65.Text = "CPU Version";
  3403. //
  3404. // panel_MainTitle
  3405. //
  3406. this.panel_MainTitle.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(65)))), ((int)(((byte)(97)))), ((int)(((byte)(146)))));
  3407. this.panel_MainTitle.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  3408. this.panel_MainTitle.Controls.Add(this.button_Exit);
  3409. this.panel_MainTitle.Controls.Add(this.label64);
  3410. this.panel_MainTitle.Location = new System.Drawing.Point(0, 0);
  3411. this.panel_MainTitle.Name = "panel_MainTitle";
  3412. this.panel_MainTitle.Size = new System.Drawing.Size(1135, 60);
  3413. this.panel_MainTitle.TabIndex = 0;
  3414. this.panel_MainTitle.DragEnter += new System.Windows.Forms.DragEventHandler(this.panel_MainTitle_DragEnter);
  3415. this.panel_MainTitle.Paint += new System.Windows.Forms.PaintEventHandler(this.panel_MainTitle_Paint);
  3416. this.panel_MainTitle.MouseDown += new System.Windows.Forms.MouseEventHandler(this.panel_MainTitle_MouseDown);
  3417. this.panel_MainTitle.MouseMove += new System.Windows.Forms.MouseEventHandler(this.panel_MainTitle_MouseMove);
  3418. //
  3419. // button_Exit
  3420. //
  3421. this.button_Exit.Location = new System.Drawing.Point(1055, 3);
  3422. this.button_Exit.Name = "button_Exit";
  3423. this.button_Exit.Size = new System.Drawing.Size(75, 23);
  3424. this.button_Exit.TabIndex = 1;
  3425. this.button_Exit.Text = "Exit";
  3426. this.button_Exit.UseVisualStyleBackColor = true;
  3427. this.button_Exit.Click += new System.EventHandler(this.button_Exit_Click);
  3428. //
  3429. // label64
  3430. //
  3431. this.label64.AutoSize = true;
  3432. this.label64.BackColor = System.Drawing.Color.Transparent;
  3433. this.label64.Font = new System.Drawing.Font("나눔고딕", 24F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(129)));
  3434. this.label64.ForeColor = System.Drawing.Color.White;
  3435. this.label64.Location = new System.Drawing.Point(17, 9);
  3436. this.label64.Name = "label64";
  3437. this.label64.Size = new System.Drawing.Size(95, 36);
  3438. this.label64.TabIndex = 0;
  3439. this.label64.Text = "MBIC";
  3440. //
  3441. // pictureBox_TempHigh_Alarm_ON
  3442. //
  3443. this.pictureBox_TempHigh_Alarm_ON.Image = global::Jdas_Mbic.Properties.Resources.red;
  3444. this.pictureBox_TempHigh_Alarm_ON.Location = new System.Drawing.Point(135, 184);
  3445. this.pictureBox_TempHigh_Alarm_ON.Name = "pictureBox_TempHigh_Alarm_ON";
  3446. this.pictureBox_TempHigh_Alarm_ON.Size = new System.Drawing.Size(29, 23);
  3447. this.pictureBox_TempHigh_Alarm_ON.TabIndex = 7;
  3448. this.pictureBox_TempHigh_Alarm_ON.TabStop = false;
  3449. //
  3450. // pictureBox_TempHigh_Alarm_OFF
  3451. //
  3452. this.pictureBox_TempHigh_Alarm_OFF.Image = global::Jdas_Mbic.Properties.Resources.green;
  3453. this.pictureBox_TempHigh_Alarm_OFF.Location = new System.Drawing.Point(135, 184);
  3454. this.pictureBox_TempHigh_Alarm_OFF.Name = "pictureBox_TempHigh_Alarm_OFF";
  3455. this.pictureBox_TempHigh_Alarm_OFF.Size = new System.Drawing.Size(29, 23);
  3456. this.pictureBox_TempHigh_Alarm_OFF.TabIndex = 6;
  3457. this.pictureBox_TempHigh_Alarm_OFF.TabStop = false;
  3458. //
  3459. // label2
  3460. //
  3461. this.label2.AutoSize = true;
  3462. this.label2.Font = new System.Drawing.Font("맑은 고딕", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(129)));
  3463. this.label2.Location = new System.Drawing.Point(31, 25);
  3464. this.label2.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  3465. this.label2.Name = "label2";
  3466. this.label2.Size = new System.Drawing.Size(145, 15);
  3467. this.label2.TabIndex = 100;
  3468. this.label2.Text = "DL Shutdown Threshold";
  3469. //
  3470. // numericUpDown1
  3471. //
  3472. this.numericUpDown1.Location = new System.Drawing.Point(177, 54);
  3473. this.numericUpDown1.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
  3474. this.numericUpDown1.Maximum = new decimal(new int[] {
  3475. 1,
  3476. 0,
  3477. 0,
  3478. 0});
  3479. this.numericUpDown1.Name = "numericUpDown1";
  3480. this.numericUpDown1.Size = new System.Drawing.Size(65, 21);
  3481. this.numericUpDown1.TabIndex = 145;
  3482. //
  3483. // label3
  3484. //
  3485. this.label3.AutoSize = true;
  3486. this.label3.Location = new System.Drawing.Point(32, 58);
  3487. this.label3.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  3488. this.label3.Name = "label3";
  3489. this.label3.Size = new System.Drawing.Size(43, 12);
  3490. this.label3.TabIndex = 100;
  3491. this.label3.Text = "Default";
  3492. //
  3493. // numericUpDown2
  3494. //
  3495. this.numericUpDown2.DecimalPlaces = 2;
  3496. this.numericUpDown2.Location = new System.Drawing.Point(176, 16);
  3497. this.numericUpDown2.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
  3498. this.numericUpDown2.Maximum = new decimal(new int[] {
  3499. 7,
  3500. 0,
  3501. 0,
  3502. 0});
  3503. this.numericUpDown2.Minimum = new decimal(new int[] {
  3504. 22,
  3505. 0,
  3506. 0,
  3507. -2147483648});
  3508. this.numericUpDown2.Name = "numericUpDown2";
  3509. this.numericUpDown2.Size = new System.Drawing.Size(65, 21);
  3510. this.numericUpDown2.TabIndex = 145;
  3511. this.numericUpDown2.Value = new decimal(new int[] {
  3512. 1,
  3513. 0,
  3514. 0,
  3515. -2147483648});
  3516. //
  3517. // JdasMbic
  3518. //
  3519. this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 12F);
  3520. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  3521. this.AutoScroll = true;
  3522. this.AutoSize = true;
  3523. this.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
  3524. this.ClientSize = new System.Drawing.Size(1137, 895);
  3525. this.Controls.Add(this.panel1);
  3526. this.DoubleBuffered = true;
  3527. this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
  3528. this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
  3529. this.MaximizeBox = false;
  3530. this.Name = "JdasMbic";
  3531. this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
  3532. this.Text = "Jdas Mbic";
  3533. this.Load += new System.EventHandler(this.JdasMbic_Load);
  3534. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_ShutdownUL3)).EndInit();
  3535. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_ShutdownDL3)).EndInit();
  3536. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_ALC3)).EndInit();
  3537. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_DL3_User)).EndInit();
  3538. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_UL3_User)).EndInit();
  3539. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_ATT_DL3)).EndInit();
  3540. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_ATT_UL3)).EndInit();
  3541. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_Temperature_Offset)).EndInit();
  3542. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_Temp_Threshold)).EndInit();
  3543. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_Temp_Threshold_Default)).EndInit();
  3544. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_ShutdownUL4)).EndInit();
  3545. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_ShutdownDL4)).EndInit();
  3546. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_ALC4)).EndInit();
  3547. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_DL4_User)).EndInit();
  3548. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_UL4_User)).EndInit();
  3549. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_ATT_DL4)).EndInit();
  3550. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_ATT_UL4)).EndInit();
  3551. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_ShutdownDL1)).EndInit();
  3552. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_ShutdownUL1)).EndInit();
  3553. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_ALC1)).EndInit();
  3554. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_DL1_User)).EndInit();
  3555. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_UL1_User)).EndInit();
  3556. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_ATT_DL1)).EndInit();
  3557. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_ATT_UL1)).EndInit();
  3558. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_ShutdownUL2)).EndInit();
  3559. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_ShutdownDL2)).EndInit();
  3560. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_ALC2)).EndInit();
  3561. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_DL2_User)).EndInit();
  3562. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_UL2_User)).EndInit();
  3563. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_ATT_DL2)).EndInit();
  3564. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_ATT_UL2)).EndInit();
  3565. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_MASK)).EndInit();
  3566. this.panel1.ResumeLayout(false);
  3567. this.panel1.PerformLayout();
  3568. this.panel_Serial.ResumeLayout(false);
  3569. this.panel_Serial.PerformLayout();
  3570. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_Version)).EndInit();
  3571. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_R_TX)).EndInit();
  3572. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_G_TX)).EndInit();
  3573. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_R_RX)).EndInit();
  3574. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_G_RX)).EndInit();
  3575. ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
  3576. this.panel17.ResumeLayout(false);
  3577. this.panel17.PerformLayout();
  3578. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_UL4_Shutdown_Alarm_ON)).EndInit();
  3579. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_ULO_Path4_High_Alarm_ON)).EndInit();
  3580. this.panel18.ResumeLayout(false);
  3581. this.panel18.PerformLayout();
  3582. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_ULO_Path4_High_Alarm_OFF)).EndInit();
  3583. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_ALC4_Alarm_OFF)).EndInit();
  3584. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_ALC4_Alarm_ON)).EndInit();
  3585. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_UL4_Shutdown_Alarm_OFF)).EndInit();
  3586. this.panel9.ResumeLayout(false);
  3587. this.panel9.PerformLayout();
  3588. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_AGC4_Alarm_ON)).EndInit();
  3589. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_DLI_Path4_High_Alarm_ON)).EndInit();
  3590. this.panel10.ResumeLayout(false);
  3591. this.panel10.PerformLayout();
  3592. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_DLI_Path4_High_Alarm_OFF)).EndInit();
  3593. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_DLI_Path4_Low_Alarm_ON)).EndInit();
  3594. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_DLI_Path4_Low_Alarm_OFF)).EndInit();
  3595. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_AGC4_Alarm_OFF)).EndInit();
  3596. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_DL4_Shutdown_Alarm_OFF)).EndInit();
  3597. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_DL4_Shutdown_Alarm_ON)).EndInit();
  3598. this.panel15.ResumeLayout(false);
  3599. this.panel15.PerformLayout();
  3600. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_UL3_Shutdown_Alarm_ON)).EndInit();
  3601. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_ULO_Path3_High_Alarm_ON)).EndInit();
  3602. this.panel16.ResumeLayout(false);
  3603. this.panel16.PerformLayout();
  3604. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_ULO_Path3_High_Alarm_OFF)).EndInit();
  3605. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_ALC3_Alarm_OFF)).EndInit();
  3606. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_ALC3_Alarm_ON)).EndInit();
  3607. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_UL3_Shutdown_Alarm_OFF)).EndInit();
  3608. this.panel7.ResumeLayout(false);
  3609. this.panel7.PerformLayout();
  3610. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_AGC3_Alarm_ON)).EndInit();
  3611. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_DLI_Path3_High_Alarm_ON)).EndInit();
  3612. this.panel8.ResumeLayout(false);
  3613. this.panel8.PerformLayout();
  3614. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_DLI_Path3_High_Alarm_OFF)).EndInit();
  3615. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_DLI_Path3_Low_Alarm_ON)).EndInit();
  3616. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_DLI_Path3_Low_Alarm_OFF)).EndInit();
  3617. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_AGC3_Alarm_OFF)).EndInit();
  3618. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_DL3_Shutdown_Alarm_OFF)).EndInit();
  3619. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_DL3_Shutdown_Alarm_ON)).EndInit();
  3620. this.panel13.ResumeLayout(false);
  3621. this.panel13.PerformLayout();
  3622. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_UL2_Shutdown_Alarm_ON)).EndInit();
  3623. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_ULO_Path2_High_Alarm_ON)).EndInit();
  3624. this.panel14.ResumeLayout(false);
  3625. this.panel14.PerformLayout();
  3626. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_ULO_Path2_High_Alarm_OFF)).EndInit();
  3627. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_ALC2_Alarm_OFF)).EndInit();
  3628. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_ALC2_Alarm_ON)).EndInit();
  3629. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_UL2_Shutdown_Alarm_OFF)).EndInit();
  3630. this.panel5.ResumeLayout(false);
  3631. this.panel5.PerformLayout();
  3632. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_AGC2_Alarm_ON)).EndInit();
  3633. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_DLI_Path2_High_Alarm_ON)).EndInit();
  3634. this.panel6.ResumeLayout(false);
  3635. this.panel6.PerformLayout();
  3636. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_DLI_Path2_High_Alarm_OFF)).EndInit();
  3637. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_DLI_Path2_Low_Alarm_ON)).EndInit();
  3638. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_DLI_Path2_Low_Alarm_OFF)).EndInit();
  3639. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_AGC2_Alarm_OFF)).EndInit();
  3640. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_DL2_Shutdown_Alarm_OFF)).EndInit();
  3641. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_DL2_Shutdown_Alarm_ON)).EndInit();
  3642. this.panel11.ResumeLayout(false);
  3643. this.panel11.PerformLayout();
  3644. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_UL1_Shutdown_Alarm_ON)).EndInit();
  3645. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_ULO_Path1_High_Alarm_ON)).EndInit();
  3646. this.panel12.ResumeLayout(false);
  3647. this.panel12.PerformLayout();
  3648. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_ULO_Path1_High_Alarm_OFF)).EndInit();
  3649. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_ALC1_Alarm_OFF)).EndInit();
  3650. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_ALC1_Alarm_ON)).EndInit();
  3651. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_UL1_Shutdown_Alarm_OFF)).EndInit();
  3652. this.panel3.ResumeLayout(false);
  3653. this.panel3.PerformLayout();
  3654. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_AGC1_Alarm_ON)).EndInit();
  3655. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_DLI_Path1_High_Alarm_ON)).EndInit();
  3656. this.panel4.ResumeLayout(false);
  3657. this.panel4.PerformLayout();
  3658. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_DLI_Path1_High_Alarm_OFF)).EndInit();
  3659. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_DLI_Path1_Low_Alarm_ON)).EndInit();
  3660. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_DLI_Path1_Low_Alarm_OFF)).EndInit();
  3661. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_AGC1_Alarm_OFF)).EndInit();
  3662. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_DL1_Shutdown_Alarm_OFF)).EndInit();
  3663. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_DL1_Shutdown_Alarm_ON)).EndInit();
  3664. this.panel_MainTitle.ResumeLayout(false);
  3665. this.panel_MainTitle.PerformLayout();
  3666. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_TempHigh_Alarm_ON)).EndInit();
  3667. ((System.ComponentModel.ISupportInitialize)(this.pictureBox_TempHigh_Alarm_OFF)).EndInit();
  3668. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown1)).EndInit();
  3669. ((System.ComponentModel.ISupportInitialize)(this.numericUpDown2)).EndInit();
  3670. this.ResumeLayout(false);
  3671. }
  3672. #endregion
  3673. private System.Windows.Forms.PictureBox pictureBox1;
  3674. public System.Windows.Forms.NumericUpDown numericUpDown_ATT_UL3;
  3675. public System.Windows.Forms.NumericUpDown numericUpDown_ATT_DL3;
  3676. public System.Windows.Forms.NumericUpDown numericUpDown_ATT_UL4;
  3677. public System.Windows.Forms.NumericUpDown numericUpDown_ATT_DL4;
  3678. public System.Windows.Forms.NumericUpDown numericUpDown_ATT_UL1;
  3679. public System.Windows.Forms.NumericUpDown numericUpDown_ATT_DL1;
  3680. public System.Windows.Forms.NumericUpDown numericUpDown_ATT_UL2;
  3681. private System.Windows.Forms.Label label13;
  3682. public System.Windows.Forms.NumericUpDown numericUpDown_ATT_DL2;
  3683. private System.Windows.Forms.Button button_FirmwareUpdate;
  3684. private System.Windows.Forms.Button button_terminal;
  3685. private System.Windows.Forms.Label cmCom_Port;
  3686. private System.Windows.Forms.Button button_PortOpen;
  3687. public System.Windows.Forms.ComboBox comboBox_Port;
  3688. private System.Windows.Forms.Label cmBaudRate;
  3689. private System.Windows.Forms.Button button_FRBT_TimeSetting;
  3690. private System.Windows.Forms.SaveFileDialog saveFileDialog1;
  3691. public System.Windows.Forms.Label label_Temp;
  3692. private System.Windows.Forms.CheckBox checkBox_Fix;
  3693. private System.Windows.Forms.TextBox textBox_DET_DL3_dBm;
  3694. private System.Windows.Forms.TextBox textBox_DET_UL3_dBm;
  3695. private System.Windows.Forms.TextBox textBox_DET_UL4_dBm;
  3696. private System.Windows.Forms.TextBox textBox_DET_DL4_dBm;
  3697. private System.Windows.Forms.TextBox textBox_DET_UL1_dBm;
  3698. private System.Windows.Forms.TextBox textBox_DET_DL1_dBm;
  3699. private System.Windows.Forms.TextBox textBox_DET_DL2_dBm;
  3700. private System.Windows.Forms.TextBox textBox_DET_UL2_dBm;
  3701. public System.Windows.Forms.ComboBox comboBox_baudrate;
  3702. public System.Windows.Forms.NumericUpDown numericUpDown_DL3_User;
  3703. public System.Windows.Forms.NumericUpDown numericUpDown_UL3_User;
  3704. public System.Windows.Forms.NumericUpDown numericUpDown_DL4_User;
  3705. public System.Windows.Forms.NumericUpDown numericUpDown_UL4_User;
  3706. public System.Windows.Forms.NumericUpDown numericUpDown_DL1_User;
  3707. public System.Windows.Forms.NumericUpDown numericUpDown_UL1_User;
  3708. public System.Windows.Forms.NumericUpDown numericUpDown_DL2_User;
  3709. public System.Windows.Forms.NumericUpDown numericUpDown_UL2_User;
  3710. public System.Windows.Forms.NumericUpDown numericUpDown_Temp_Threshold_Default;
  3711. public System.Windows.Forms.NumericUpDown numericUpDown_Temp_Threshold;
  3712. private System.Windows.Forms.Label label66;
  3713. public System.Windows.Forms.NumericUpDown numericUpDown_Temperature_Offset;
  3714. public System.Windows.Forms.NumericUpDown numericUpDown_MASK;
  3715. private System.Windows.Forms.Label label_MASK;
  3716. private System.Windows.Forms.Button button_Test;
  3717. private System.Windows.Forms.Button button_MBICMake;
  3718. private System.Windows.Forms.Label label_CurrBank;
  3719. private System.Windows.Forms.NumericUpDown numericUpDown_ALC3;
  3720. private System.Windows.Forms.NumericUpDown numericUpDown_ALC4;
  3721. private System.Windows.Forms.NumericUpDown numericUpDown_ALC1;
  3722. private System.Windows.Forms.NumericUpDown numericUpDown_ALC2;
  3723. private System.Windows.Forms.NumericUpDown numericUpDown_ShutdownUL1;
  3724. private System.Windows.Forms.NumericUpDown numericUpDown_ShutdownUL4;
  3725. private System.Windows.Forms.NumericUpDown numericUpDown_ShutdownUL3;
  3726. private System.Windows.Forms.NumericUpDown numericUpDown_ShutdownUL2;
  3727. private System.Windows.Forms.NumericUpDown numericUpDown_ShutdownDL4;
  3728. private System.Windows.Forms.NumericUpDown numericUpDown_ShutdownDL3;
  3729. private System.Windows.Forms.NumericUpDown numericUpDown_ShutdownDL2;
  3730. private System.Windows.Forms.NumericUpDown numericUpDown_ShutdownDL1;
  3731. private System.Windows.Forms.Label label_BankSel;
  3732. private System.Windows.Forms.ComboBox comboBox_BankSel;
  3733. private System.Windows.Forms.Button button1;
  3734. private System.Windows.Forms.TextBox textBox_FRBT_TIME;
  3735. private System.Windows.Forms.Button button_FactorySet;
  3736. private System.Windows.Forms.Panel panel1;
  3737. private System.Windows.Forms.PictureBox pictureBox_DLI_Path1_High_Alarm_OFF;
  3738. private System.Windows.Forms.Panel panel3;
  3739. private System.Windows.Forms.Button button_DL1_PATH;
  3740. private System.Windows.Forms.Panel panel4;
  3741. private System.Windows.Forms.Label label83;
  3742. private System.Windows.Forms.Label label82;
  3743. private System.Windows.Forms.Label label81;
  3744. private System.Windows.Forms.Label label78;
  3745. private System.Windows.Forms.Label label80;
  3746. private System.Windows.Forms.Label label77;
  3747. private System.Windows.Forms.Label label79;
  3748. private System.Windows.Forms.Label label75;
  3749. private System.Windows.Forms.Label label76;
  3750. private System.Windows.Forms.Label label74;
  3751. private System.Windows.Forms.Label label73;
  3752. private System.Windows.Forms.Label label67;
  3753. private System.Windows.Forms.Label label72;
  3754. private System.Windows.Forms.Label label71;
  3755. private System.Windows.Forms.Label label70;
  3756. private System.Windows.Forms.Label label69;
  3757. private System.Windows.Forms.Label label68;
  3758. private System.Windows.Forms.Label label65;
  3759. private System.Windows.Forms.Panel panel_MainTitle;
  3760. private System.Windows.Forms.Label label64;
  3761. private System.Windows.Forms.PictureBox pictureBox_DLI_Path1_High_Alarm_ON;
  3762. private System.Windows.Forms.Label label111;
  3763. private System.Windows.Forms.Label label100;
  3764. private System.Windows.Forms.Label label110;
  3765. private System.Windows.Forms.Label label99;
  3766. private System.Windows.Forms.Label label109;
  3767. private System.Windows.Forms.Label label98;
  3768. private System.Windows.Forms.Label label108;
  3769. private System.Windows.Forms.Label label101;
  3770. private System.Windows.Forms.Label label107;
  3771. private System.Windows.Forms.Label label97;
  3772. private System.Windows.Forms.Label label106;
  3773. private System.Windows.Forms.Label label96;
  3774. private System.Windows.Forms.Label label112;
  3775. private System.Windows.Forms.Label label105;
  3776. private System.Windows.Forms.Label label102;
  3777. private System.Windows.Forms.Label label104;
  3778. private System.Windows.Forms.Label label95;
  3779. private System.Windows.Forms.Label label103;
  3780. private System.Windows.Forms.Label label94;
  3781. private System.Windows.Forms.Button button_DL_Shutdown;
  3782. private System.Windows.Forms.Button button_UL_Shutdown;
  3783. private System.Windows.Forms.Button button_AGC;
  3784. private System.Windows.Forms.Button button_ALC;
  3785. private System.Windows.Forms.TextBox textBox_DL_ShutdownLimit;
  3786. private System.Windows.Forms.TextBox textBox_UL_ShutdownLimit;
  3787. private System.Windows.Forms.TextBox textBox_DLI_AGC_Threshold;
  3788. private System.Windows.Forms.TextBox textBox_ULO_ALC_Threshold;
  3789. private System.Windows.Forms.TextBox textBox_FRBT_Status;
  3790. private System.Windows.Forms.NumericUpDown numericUpDown1;
  3791. private System.Windows.Forms.TextBox textBox1_Carrier;
  3792. private System.Windows.Forms.Button button_Carrier;
  3793. private System.Windows.Forms.Button button_LedTest;
  3794. private System.Windows.Forms.TextBox textBox_CardType;
  3795. private System.Windows.Forms.TextBox textBox_CpuVersion;
  3796. private System.Windows.Forms.Panel panel17;
  3797. private System.Windows.Forms.TextBox textBox8;
  3798. private System.Windows.Forms.PictureBox pictureBox_UL4_Shutdown_Alarm_OFF;
  3799. private System.Windows.Forms.PictureBox pictureBox_UL4_Shutdown_Alarm_ON;
  3800. private System.Windows.Forms.PictureBox pictureBox_ALC4_Alarm_OFF;
  3801. private System.Windows.Forms.PictureBox pictureBox_ALC4_Alarm_ON;
  3802. private System.Windows.Forms.PictureBox pictureBox_ULO_Path4_High_Alarm_OFF;
  3803. private System.Windows.Forms.PictureBox pictureBox_ULO_Path4_High_Alarm_ON;
  3804. private System.Windows.Forms.Button button_UL4_PATH;
  3805. private System.Windows.Forms.Panel panel18;
  3806. private System.Windows.Forms.Label label93;
  3807. private System.Windows.Forms.Panel panel9;
  3808. private System.Windows.Forms.TextBox textBox4;
  3809. private System.Windows.Forms.PictureBox pictureBox_DLI_Path4_Low_Alarm_OFF;
  3810. private System.Windows.Forms.PictureBox pictureBox_DLI_Path4_Low_Alarm_ON;
  3811. private System.Windows.Forms.PictureBox pictureBox_DL4_Shutdown_Alarm_OFF;
  3812. private System.Windows.Forms.PictureBox pictureBox_DL4_Shutdown_Alarm_ON;
  3813. private System.Windows.Forms.PictureBox pictureBox_AGC4_Alarm_OFF;
  3814. private System.Windows.Forms.PictureBox pictureBox_AGC4_Alarm_ON;
  3815. private System.Windows.Forms.PictureBox pictureBox_DLI_Path4_High_Alarm_OFF;
  3816. private System.Windows.Forms.PictureBox pictureBox_DLI_Path4_High_Alarm_ON;
  3817. private System.Windows.Forms.Button button_DL4_PATH;
  3818. private System.Windows.Forms.Panel panel10;
  3819. private System.Windows.Forms.Label label86;
  3820. private System.Windows.Forms.Panel panel15;
  3821. private System.Windows.Forms.TextBox textBox7;
  3822. private System.Windows.Forms.PictureBox pictureBox_UL3_Shutdown_Alarm_OFF;
  3823. private System.Windows.Forms.PictureBox pictureBox_UL3_Shutdown_Alarm_ON;
  3824. private System.Windows.Forms.PictureBox pictureBox_ALC3_Alarm_OFF;
  3825. private System.Windows.Forms.PictureBox pictureBox_ALC3_Alarm_ON;
  3826. private System.Windows.Forms.PictureBox pictureBox_ULO_Path3_High_Alarm_OFF;
  3827. private System.Windows.Forms.PictureBox pictureBox_ULO_Path3_High_Alarm_ON;
  3828. private System.Windows.Forms.Button button_UL3_PATH;
  3829. private System.Windows.Forms.Panel panel16;
  3830. private System.Windows.Forms.Label label92;
  3831. private System.Windows.Forms.Panel panel7;
  3832. private System.Windows.Forms.TextBox textBox3;
  3833. private System.Windows.Forms.PictureBox pictureBox_DLI_Path3_Low_Alarm_OFF;
  3834. private System.Windows.Forms.PictureBox pictureBox_DLI_Path3_Low_Alarm_ON;
  3835. private System.Windows.Forms.PictureBox pictureBox_DL3_Shutdown_Alarm_OFF;
  3836. private System.Windows.Forms.PictureBox pictureBox_DL3_Shutdown_Alarm_ON;
  3837. private System.Windows.Forms.PictureBox pictureBox_AGC3_Alarm_OFF;
  3838. private System.Windows.Forms.PictureBox pictureBox_AGC3_Alarm_ON;
  3839. private System.Windows.Forms.PictureBox pictureBox_DLI_Path3_High_Alarm_OFF;
  3840. private System.Windows.Forms.PictureBox pictureBox_DLI_Path3_High_Alarm_ON;
  3841. private System.Windows.Forms.Button button_DL3_PATH;
  3842. private System.Windows.Forms.Panel panel8;
  3843. private System.Windows.Forms.Label label85;
  3844. private System.Windows.Forms.Panel panel13;
  3845. private System.Windows.Forms.TextBox textBox6;
  3846. private System.Windows.Forms.PictureBox pictureBox_UL2_Shutdown_Alarm_OFF;
  3847. private System.Windows.Forms.PictureBox pictureBox_UL2_Shutdown_Alarm_ON;
  3848. private System.Windows.Forms.PictureBox pictureBox_ALC2_Alarm_OFF;
  3849. private System.Windows.Forms.PictureBox pictureBox_ALC2_Alarm_ON;
  3850. private System.Windows.Forms.PictureBox pictureBox_ULO_Path2_High_Alarm_OFF;
  3851. private System.Windows.Forms.PictureBox pictureBox_ULO_Path2_High_Alarm_ON;
  3852. private System.Windows.Forms.Button button_UL2_PATH;
  3853. private System.Windows.Forms.Panel panel14;
  3854. private System.Windows.Forms.Label label90;
  3855. private System.Windows.Forms.Panel panel5;
  3856. private System.Windows.Forms.TextBox textBox2;
  3857. private System.Windows.Forms.PictureBox pictureBox_DLI_Path2_Low_Alarm_OFF;
  3858. private System.Windows.Forms.PictureBox pictureBox_DLI_Path2_Low_Alarm_ON;
  3859. private System.Windows.Forms.PictureBox pictureBox_DL2_Shutdown_Alarm_OFF;
  3860. private System.Windows.Forms.PictureBox pictureBox_DL2_Shutdown_Alarm_ON;
  3861. private System.Windows.Forms.PictureBox pictureBox_AGC2_Alarm_OFF;
  3862. private System.Windows.Forms.PictureBox pictureBox_AGC2_Alarm_ON;
  3863. private System.Windows.Forms.PictureBox pictureBox_DLI_Path2_High_Alarm_OFF;
  3864. private System.Windows.Forms.PictureBox pictureBox_DLI_Path2_High_Alarm_ON;
  3865. private System.Windows.Forms.Button button_DL2_PATH;
  3866. private System.Windows.Forms.Panel panel6;
  3867. private System.Windows.Forms.Label label84;
  3868. private System.Windows.Forms.Panel panel11;
  3869. private System.Windows.Forms.TextBox textBox5;
  3870. private System.Windows.Forms.PictureBox pictureBox_UL1_Shutdown_Alarm_OFF;
  3871. private System.Windows.Forms.PictureBox pictureBox_UL1_Shutdown_Alarm_ON;
  3872. private System.Windows.Forms.PictureBox pictureBox_ALC1_Alarm_OFF;
  3873. private System.Windows.Forms.PictureBox pictureBox_ALC1_Alarm_ON;
  3874. private System.Windows.Forms.PictureBox pictureBox_ULO_Path1_High_Alarm_OFF;
  3875. private System.Windows.Forms.PictureBox pictureBox_ULO_Path1_High_Alarm_ON;
  3876. private System.Windows.Forms.Button button_UL1_PATH;
  3877. private System.Windows.Forms.Panel panel12;
  3878. private System.Windows.Forms.Label label87;
  3879. private System.Windows.Forms.TextBox textBox1;
  3880. private System.Windows.Forms.PictureBox pictureBox_DLI_Path1_Low_Alarm_OFF;
  3881. private System.Windows.Forms.PictureBox pictureBox_DLI_Path1_Low_Alarm_ON;
  3882. private System.Windows.Forms.PictureBox pictureBox_DL1_Shutdown_Alarm_ON;
  3883. private System.Windows.Forms.PictureBox pictureBox_AGC1_Alarm_OFF;
  3884. private System.Windows.Forms.PictureBox pictureBox_AGC1_Alarm_ON;
  3885. private System.Windows.Forms.Panel panel_Serial;
  3886. private System.Windows.Forms.Label label7;
  3887. private System.Windows.Forms.Button button_SelfTest2;
  3888. private System.Windows.Forms.Button button_SelfTest4;
  3889. private System.Windows.Forms.Button button_SelfTest1;
  3890. private System.Windows.Forms.Button button_SelfTest3;
  3891. private System.Windows.Forms.PictureBox pictureBox_G_RX;
  3892. private System.Windows.Forms.PictureBox pictureBox_R_RX;
  3893. private System.Windows.Forms.PictureBox pictureBox_G_TX;
  3894. private System.Windows.Forms.PictureBox pictureBox_R_TX;
  3895. private System.Windows.Forms.Label label2;
  3896. private System.Windows.Forms.Label label1;
  3897. private System.Windows.Forms.PictureBox pictureBox_TempHigh_Alarm_OFF;
  3898. private System.Windows.Forms.PictureBox pictureBox_TempHigh_Alarm_ON;
  3899. private System.Windows.Forms.PictureBox pictureBox_DL1_Shutdown_Alarm_OFF;
  3900. private System.Windows.Forms.Label label_CompileDate;
  3901. private System.Windows.Forms.Label label3;
  3902. private System.Windows.Forms.NumericUpDown numericUpDown2;
  3903. public System.Windows.Forms.TextBox textBox_DET_DL3;
  3904. public System.Windows.Forms.TextBox textBox_DET_UL3;
  3905. public System.Windows.Forms.TextBox textBox_DET_DL4;
  3906. public System.Windows.Forms.TextBox textBox_DET_UL4;
  3907. public System.Windows.Forms.TextBox textBox_DET_DL1;
  3908. public System.Windows.Forms.TextBox textBox_DET_UL1;
  3909. public System.Windows.Forms.TextBox textBox_DET_DL2;
  3910. public System.Windows.Forms.TextBox textBox_DET_UL2;
  3911. private System.Windows.Forms.Button button_Exit;
  3912. private System.Windows.Forms.TextBox textBox_DLI_FRBT_D_Day;
  3913. private System.Windows.Forms.Label label5;
  3914. private System.Windows.Forms.Label label_SerialNumber;
  3915. private System.Windows.Forms.TextBox textBox_PcbVersion;
  3916. private System.Windows.Forms.TextBox textBox_SerialNumber;
  3917. private System.Windows.Forms.Label label4;
  3918. private System.Windows.Forms.TextBox textBox_MunufactureDate;
  3919. private System.Windows.Forms.TextBox textBox_DLI_Level_Low_Threshold;
  3920. private System.Windows.Forms.TextBox textBox_DLI_Level_High_Threshold;
  3921. private System.Windows.Forms.TextBox textBox_ULO_Level_High_Threshold;
  3922. private System.Windows.Forms.TextBox textBox_CurrBank;
  3923. private System.Windows.Forms.TextBox textBox_Bank2Name;
  3924. private System.Windows.Forms.Label label8;
  3925. private System.Windows.Forms.TextBox textBox_Bank1Name;
  3926. private System.Windows.Forms.Label label6;
  3927. private System.Windows.Forms.TextBox textBox_UL4_TableOffset;
  3928. private System.Windows.Forms.TextBox textBox_UL2_TableOffset;
  3929. private System.Windows.Forms.TextBox textBox_DL4_TableOffset;
  3930. private System.Windows.Forms.TextBox textBox_UL3_TableOffset;
  3931. private System.Windows.Forms.TextBox textBox_DL2_TableOffset;
  3932. private System.Windows.Forms.TextBox textBox_UL1_TableOffset;
  3933. private System.Windows.Forms.TextBox textBox_DL3_TableOffset;
  3934. private System.Windows.Forms.TextBox textBox_DL1_TableOffset;
  3935. private System.Windows.Forms.Label label_TableOffset;
  3936. private System.Windows.Forms.Label label9;
  3937. public System.Windows.Forms.Timer timer_JdasMbic;
  3938. public System.Windows.Forms.NumericUpDown numericUpDown_Version;
  3939. }
  3940. }