| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948 |
- namespace Jdas_Mbic
- {
- partial class JdasMbic
- {
- /// <summary>
- /// 필수 디자이너 변수입니다.
- /// </summary>
- private System.ComponentModel.IContainer components = null;
- /// <summary>
- /// 사용 중인 모든 리소스를 정리합니다.
- /// </summary>
- /// <param name="disposing">관리되는 리소스를 삭제해야 하면 true이고, 그렇지 않으면 false입니다.</param>
- protected override void Dispose(bool disposing)
- {
- if (disposing && (components != null))
- {
- components.Dispose();
- }
- base.Dispose(disposing);
- }
- #region Windows Form 디자이너에서 생성한 코드
- /// <summary>
- /// 디자이너 지원에 필요한 메서드입니다.
- /// 이 메서드의 내용을 코드 편집기로 수정하지 마세요.
- /// </summary>
- private void InitializeComponent()
- {
- this.components = new System.ComponentModel.Container();
- System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(JdasMbic));
- this.textBox_FRBT_TIME = new System.Windows.Forms.TextBox();
- this.label_BankSel = new System.Windows.Forms.Label();
- this.comboBox_BankSel = new System.Windows.Forms.ComboBox();
- this.button_MBICMake = new System.Windows.Forms.Button();
- this.button_Test = new System.Windows.Forms.Button();
- this.label66 = new System.Windows.Forms.Label();
- this.label13 = new System.Windows.Forms.Label();
- this.checkBox_Fix = new System.Windows.Forms.CheckBox();
- this.label_Temp = new System.Windows.Forms.Label();
- this.numericUpDown_ShutdownUL3 = new System.Windows.Forms.NumericUpDown();
- this.numericUpDown_ShutdownDL3 = new System.Windows.Forms.NumericUpDown();
- this.numericUpDown_ALC3 = new System.Windows.Forms.NumericUpDown();
- this.numericUpDown_DL3_User = new System.Windows.Forms.NumericUpDown();
- this.numericUpDown_UL3_User = new System.Windows.Forms.NumericUpDown();
- this.numericUpDown_ATT_DL3 = new System.Windows.Forms.NumericUpDown();
- this.numericUpDown_ATT_UL3 = new System.Windows.Forms.NumericUpDown();
- this.numericUpDown_Temperature_Offset = new System.Windows.Forms.NumericUpDown();
- this.numericUpDown_Temp_Threshold = new System.Windows.Forms.NumericUpDown();
- this.numericUpDown_Temp_Threshold_Default = new System.Windows.Forms.NumericUpDown();
- this.numericUpDown_ShutdownUL4 = new System.Windows.Forms.NumericUpDown();
- this.numericUpDown_ShutdownDL4 = new System.Windows.Forms.NumericUpDown();
- this.numericUpDown_ALC4 = new System.Windows.Forms.NumericUpDown();
- this.numericUpDown_DL4_User = new System.Windows.Forms.NumericUpDown();
- this.numericUpDown_UL4_User = new System.Windows.Forms.NumericUpDown();
- this.numericUpDown_ATT_DL4 = new System.Windows.Forms.NumericUpDown();
- this.numericUpDown_ATT_UL4 = new System.Windows.Forms.NumericUpDown();
- this.numericUpDown_ShutdownDL1 = new System.Windows.Forms.NumericUpDown();
- this.numericUpDown_ShutdownUL1 = new System.Windows.Forms.NumericUpDown();
- this.numericUpDown_ALC1 = new System.Windows.Forms.NumericUpDown();
- this.numericUpDown_DL1_User = new System.Windows.Forms.NumericUpDown();
- this.numericUpDown_UL1_User = new System.Windows.Forms.NumericUpDown();
- this.numericUpDown_ATT_DL1 = new System.Windows.Forms.NumericUpDown();
- this.numericUpDown_ATT_UL1 = new System.Windows.Forms.NumericUpDown();
- this.button_FRBT_TimeSetting = new System.Windows.Forms.Button();
- this.numericUpDown_ShutdownUL2 = new System.Windows.Forms.NumericUpDown();
- this.numericUpDown_ShutdownDL2 = new System.Windows.Forms.NumericUpDown();
- this.numericUpDown_ALC2 = new System.Windows.Forms.NumericUpDown();
- this.numericUpDown_DL2_User = new System.Windows.Forms.NumericUpDown();
- this.numericUpDown_UL2_User = new System.Windows.Forms.NumericUpDown();
- this.numericUpDown_ATT_DL2 = new System.Windows.Forms.NumericUpDown();
- this.numericUpDown_ATT_UL2 = new System.Windows.Forms.NumericUpDown();
- this.button_FirmwareUpdate = new System.Windows.Forms.Button();
- this.button_terminal = new System.Windows.Forms.Button();
- this.cmCom_Port = new System.Windows.Forms.Label();
- this.button_PortOpen = new System.Windows.Forms.Button();
- this.comboBox_Port = new System.Windows.Forms.ComboBox();
- this.cmBaudRate = new System.Windows.Forms.Label();
- this.comboBox_baudrate = new System.Windows.Forms.ComboBox();
- this.textBox_DET_DL3_dBm = new System.Windows.Forms.TextBox();
- this.textBox_DET_UL3_dBm = new System.Windows.Forms.TextBox();
- this.textBox_DET_DL3 = new System.Windows.Forms.TextBox();
- this.textBox_DET_UL3 = new System.Windows.Forms.TextBox();
- this.textBox_DET_UL4_dBm = new System.Windows.Forms.TextBox();
- this.textBox_DET_UL4 = new System.Windows.Forms.TextBox();
- this.textBox_DET_DL4_dBm = new System.Windows.Forms.TextBox();
- this.textBox_DET_DL4 = new System.Windows.Forms.TextBox();
- this.textBox_DET_UL1_dBm = new System.Windows.Forms.TextBox();
- this.textBox_DET_UL1 = new System.Windows.Forms.TextBox();
- this.textBox_DET_DL1_dBm = new System.Windows.Forms.TextBox();
- this.textBox_DET_DL1 = new System.Windows.Forms.TextBox();
- this.textBox_DET_DL2_dBm = new System.Windows.Forms.TextBox();
- this.textBox_DET_UL2_dBm = new System.Windows.Forms.TextBox();
- this.textBox_DET_DL2 = new System.Windows.Forms.TextBox();
- this.textBox_DET_UL2 = new System.Windows.Forms.TextBox();
- this.numericUpDown_MASK = new System.Windows.Forms.NumericUpDown();
- this.label_MASK = new System.Windows.Forms.Label();
- this.timer_JdasMbic = new System.Windows.Forms.Timer(this.components);
- this.saveFileDialog1 = new System.Windows.Forms.SaveFileDialog();
- this.label_CurrBank = new System.Windows.Forms.Label();
- this.button1 = new System.Windows.Forms.Button();
- this.button_FactorySet = new System.Windows.Forms.Button();
- this.panel1 = new System.Windows.Forms.Panel();
- this.textBox_UL4_TableOffset = new System.Windows.Forms.TextBox();
- this.textBox_UL2_TableOffset = new System.Windows.Forms.TextBox();
- this.textBox_DL4_TableOffset = new System.Windows.Forms.TextBox();
- this.textBox_UL3_TableOffset = new System.Windows.Forms.TextBox();
- this.textBox_DL2_TableOffset = new System.Windows.Forms.TextBox();
- this.textBox_UL1_TableOffset = new System.Windows.Forms.TextBox();
- this.textBox_DL3_TableOffset = new System.Windows.Forms.TextBox();
- this.textBox_DL1_TableOffset = new System.Windows.Forms.TextBox();
- this.textBox_Bank2Name = new System.Windows.Forms.TextBox();
- this.label8 = new System.Windows.Forms.Label();
- this.textBox_Bank1Name = new System.Windows.Forms.TextBox();
- this.label6 = new System.Windows.Forms.Label();
- this.textBox_CurrBank = new System.Windows.Forms.TextBox();
- this.textBox_DLI_Level_Low_Threshold = new System.Windows.Forms.TextBox();
- this.textBox_DLI_Level_High_Threshold = new System.Windows.Forms.TextBox();
- this.textBox_ULO_Level_High_Threshold = new System.Windows.Forms.TextBox();
- this.label4 = new System.Windows.Forms.Label();
- this.textBox_MunufactureDate = new System.Windows.Forms.TextBox();
- this.label5 = new System.Windows.Forms.Label();
- this.label_SerialNumber = new System.Windows.Forms.Label();
- this.textBox_PcbVersion = new System.Windows.Forms.TextBox();
- this.textBox_SerialNumber = new System.Windows.Forms.TextBox();
- this.label_CompileDate = new System.Windows.Forms.Label();
- this.label7 = new System.Windows.Forms.Label();
- this.button_SelfTest2 = new System.Windows.Forms.Button();
- this.button_SelfTest4 = new System.Windows.Forms.Button();
- this.button_SelfTest1 = new System.Windows.Forms.Button();
- this.button_SelfTest3 = new System.Windows.Forms.Button();
- this.panel_Serial = new System.Windows.Forms.Panel();
- this.numericUpDown_Version = new System.Windows.Forms.NumericUpDown();
- this.label1 = new System.Windows.Forms.Label();
- this.pictureBox_R_TX = new System.Windows.Forms.PictureBox();
- this.pictureBox_G_TX = new System.Windows.Forms.PictureBox();
- this.pictureBox_R_RX = new System.Windows.Forms.PictureBox();
- this.pictureBox_G_RX = new System.Windows.Forms.PictureBox();
- this.pictureBox1 = new System.Windows.Forms.PictureBox();
- this.label9 = new System.Windows.Forms.Label();
- this.label_TableOffset = new System.Windows.Forms.Label();
- this.label111 = new System.Windows.Forms.Label();
- this.label100 = new System.Windows.Forms.Label();
- this.label110 = new System.Windows.Forms.Label();
- this.label99 = new System.Windows.Forms.Label();
- this.label109 = new System.Windows.Forms.Label();
- this.label98 = new System.Windows.Forms.Label();
- this.label108 = new System.Windows.Forms.Label();
- this.label101 = new System.Windows.Forms.Label();
- this.label107 = new System.Windows.Forms.Label();
- this.label97 = new System.Windows.Forms.Label();
- this.label106 = new System.Windows.Forms.Label();
- this.label96 = new System.Windows.Forms.Label();
- this.label112 = new System.Windows.Forms.Label();
- this.label105 = new System.Windows.Forms.Label();
- this.label102 = new System.Windows.Forms.Label();
- this.label104 = new System.Windows.Forms.Label();
- this.label95 = new System.Windows.Forms.Label();
- this.label103 = new System.Windows.Forms.Label();
- this.label94 = new System.Windows.Forms.Label();
- this.button_DL_Shutdown = new System.Windows.Forms.Button();
- this.button_UL_Shutdown = new System.Windows.Forms.Button();
- this.button_AGC = new System.Windows.Forms.Button();
- this.button_ALC = new System.Windows.Forms.Button();
- this.textBox_DL_ShutdownLimit = new System.Windows.Forms.TextBox();
- this.textBox_UL_ShutdownLimit = new System.Windows.Forms.TextBox();
- this.textBox_DLI_AGC_Threshold = new System.Windows.Forms.TextBox();
- this.textBox_ULO_ALC_Threshold = new System.Windows.Forms.TextBox();
- this.textBox_DLI_FRBT_D_Day = new System.Windows.Forms.TextBox();
- this.textBox_FRBT_Status = new System.Windows.Forms.TextBox();
- this.textBox1_Carrier = new System.Windows.Forms.TextBox();
- this.button_Carrier = new System.Windows.Forms.Button();
- this.button_LedTest = new System.Windows.Forms.Button();
- this.textBox_CardType = new System.Windows.Forms.TextBox();
- this.textBox_CpuVersion = new System.Windows.Forms.TextBox();
- this.panel17 = new System.Windows.Forms.Panel();
- this.textBox8 = new System.Windows.Forms.TextBox();
- this.pictureBox_UL4_Shutdown_Alarm_ON = new System.Windows.Forms.PictureBox();
- this.pictureBox_ULO_Path4_High_Alarm_ON = new System.Windows.Forms.PictureBox();
- this.button_UL4_PATH = new System.Windows.Forms.Button();
- this.panel18 = new System.Windows.Forms.Panel();
- this.label93 = new System.Windows.Forms.Label();
- this.pictureBox_ULO_Path4_High_Alarm_OFF = new System.Windows.Forms.PictureBox();
- this.pictureBox_ALC4_Alarm_OFF = new System.Windows.Forms.PictureBox();
- this.pictureBox_ALC4_Alarm_ON = new System.Windows.Forms.PictureBox();
- this.pictureBox_UL4_Shutdown_Alarm_OFF = new System.Windows.Forms.PictureBox();
- this.panel9 = new System.Windows.Forms.Panel();
- this.textBox4 = new System.Windows.Forms.TextBox();
- this.pictureBox_AGC4_Alarm_ON = new System.Windows.Forms.PictureBox();
- this.pictureBox_DLI_Path4_High_Alarm_ON = new System.Windows.Forms.PictureBox();
- this.button_DL4_PATH = new System.Windows.Forms.Button();
- this.panel10 = new System.Windows.Forms.Panel();
- this.label86 = new System.Windows.Forms.Label();
- this.pictureBox_DLI_Path4_High_Alarm_OFF = new System.Windows.Forms.PictureBox();
- this.pictureBox_DLI_Path4_Low_Alarm_ON = new System.Windows.Forms.PictureBox();
- this.pictureBox_DLI_Path4_Low_Alarm_OFF = new System.Windows.Forms.PictureBox();
- this.pictureBox_AGC4_Alarm_OFF = new System.Windows.Forms.PictureBox();
- this.pictureBox_DL4_Shutdown_Alarm_OFF = new System.Windows.Forms.PictureBox();
- this.pictureBox_DL4_Shutdown_Alarm_ON = new System.Windows.Forms.PictureBox();
- this.panel15 = new System.Windows.Forms.Panel();
- this.textBox7 = new System.Windows.Forms.TextBox();
- this.pictureBox_UL3_Shutdown_Alarm_ON = new System.Windows.Forms.PictureBox();
- this.pictureBox_ULO_Path3_High_Alarm_ON = new System.Windows.Forms.PictureBox();
- this.button_UL3_PATH = new System.Windows.Forms.Button();
- this.panel16 = new System.Windows.Forms.Panel();
- this.label92 = new System.Windows.Forms.Label();
- this.pictureBox_ULO_Path3_High_Alarm_OFF = new System.Windows.Forms.PictureBox();
- this.pictureBox_ALC3_Alarm_OFF = new System.Windows.Forms.PictureBox();
- this.pictureBox_ALC3_Alarm_ON = new System.Windows.Forms.PictureBox();
- this.pictureBox_UL3_Shutdown_Alarm_OFF = new System.Windows.Forms.PictureBox();
- this.panel7 = new System.Windows.Forms.Panel();
- this.textBox3 = new System.Windows.Forms.TextBox();
- this.pictureBox_AGC3_Alarm_ON = new System.Windows.Forms.PictureBox();
- this.pictureBox_DLI_Path3_High_Alarm_ON = new System.Windows.Forms.PictureBox();
- this.button_DL3_PATH = new System.Windows.Forms.Button();
- this.panel8 = new System.Windows.Forms.Panel();
- this.label85 = new System.Windows.Forms.Label();
- this.pictureBox_DLI_Path3_High_Alarm_OFF = new System.Windows.Forms.PictureBox();
- this.pictureBox_DLI_Path3_Low_Alarm_ON = new System.Windows.Forms.PictureBox();
- this.pictureBox_DLI_Path3_Low_Alarm_OFF = new System.Windows.Forms.PictureBox();
- this.pictureBox_AGC3_Alarm_OFF = new System.Windows.Forms.PictureBox();
- this.pictureBox_DL3_Shutdown_Alarm_OFF = new System.Windows.Forms.PictureBox();
- this.pictureBox_DL3_Shutdown_Alarm_ON = new System.Windows.Forms.PictureBox();
- this.panel13 = new System.Windows.Forms.Panel();
- this.textBox6 = new System.Windows.Forms.TextBox();
- this.pictureBox_UL2_Shutdown_Alarm_ON = new System.Windows.Forms.PictureBox();
- this.pictureBox_ULO_Path2_High_Alarm_ON = new System.Windows.Forms.PictureBox();
- this.button_UL2_PATH = new System.Windows.Forms.Button();
- this.panel14 = new System.Windows.Forms.Panel();
- this.label90 = new System.Windows.Forms.Label();
- this.pictureBox_ULO_Path2_High_Alarm_OFF = new System.Windows.Forms.PictureBox();
- this.pictureBox_ALC2_Alarm_OFF = new System.Windows.Forms.PictureBox();
- this.pictureBox_ALC2_Alarm_ON = new System.Windows.Forms.PictureBox();
- this.pictureBox_UL2_Shutdown_Alarm_OFF = new System.Windows.Forms.PictureBox();
- this.panel5 = new System.Windows.Forms.Panel();
- this.textBox2 = new System.Windows.Forms.TextBox();
- this.pictureBox_AGC2_Alarm_ON = new System.Windows.Forms.PictureBox();
- this.pictureBox_DLI_Path2_High_Alarm_ON = new System.Windows.Forms.PictureBox();
- this.button_DL2_PATH = new System.Windows.Forms.Button();
- this.panel6 = new System.Windows.Forms.Panel();
- this.label84 = new System.Windows.Forms.Label();
- this.pictureBox_DLI_Path2_High_Alarm_OFF = new System.Windows.Forms.PictureBox();
- this.pictureBox_DLI_Path2_Low_Alarm_ON = new System.Windows.Forms.PictureBox();
- this.pictureBox_DLI_Path2_Low_Alarm_OFF = new System.Windows.Forms.PictureBox();
- this.pictureBox_AGC2_Alarm_OFF = new System.Windows.Forms.PictureBox();
- this.pictureBox_DL2_Shutdown_Alarm_OFF = new System.Windows.Forms.PictureBox();
- this.pictureBox_DL2_Shutdown_Alarm_ON = new System.Windows.Forms.PictureBox();
- this.panel11 = new System.Windows.Forms.Panel();
- this.textBox5 = new System.Windows.Forms.TextBox();
- this.pictureBox_UL1_Shutdown_Alarm_ON = new System.Windows.Forms.PictureBox();
- this.pictureBox_ULO_Path1_High_Alarm_ON = new System.Windows.Forms.PictureBox();
- this.button_UL1_PATH = new System.Windows.Forms.Button();
- this.panel12 = new System.Windows.Forms.Panel();
- this.label87 = new System.Windows.Forms.Label();
- this.pictureBox_ULO_Path1_High_Alarm_OFF = new System.Windows.Forms.PictureBox();
- this.pictureBox_ALC1_Alarm_OFF = new System.Windows.Forms.PictureBox();
- this.pictureBox_ALC1_Alarm_ON = new System.Windows.Forms.PictureBox();
- this.pictureBox_UL1_Shutdown_Alarm_OFF = new System.Windows.Forms.PictureBox();
- this.panel3 = new System.Windows.Forms.Panel();
- this.textBox1 = new System.Windows.Forms.TextBox();
- this.pictureBox_AGC1_Alarm_ON = new System.Windows.Forms.PictureBox();
- this.pictureBox_DLI_Path1_High_Alarm_ON = new System.Windows.Forms.PictureBox();
- this.button_DL1_PATH = new System.Windows.Forms.Button();
- this.panel4 = new System.Windows.Forms.Panel();
- this.label83 = new System.Windows.Forms.Label();
- this.pictureBox_DLI_Path1_High_Alarm_OFF = new System.Windows.Forms.PictureBox();
- this.pictureBox_DLI_Path1_Low_Alarm_ON = new System.Windows.Forms.PictureBox();
- this.pictureBox_DLI_Path1_Low_Alarm_OFF = new System.Windows.Forms.PictureBox();
- this.pictureBox_AGC1_Alarm_OFF = new System.Windows.Forms.PictureBox();
- this.pictureBox_DL1_Shutdown_Alarm_OFF = new System.Windows.Forms.PictureBox();
- this.pictureBox_DL1_Shutdown_Alarm_ON = new System.Windows.Forms.PictureBox();
- this.label82 = new System.Windows.Forms.Label();
- this.label81 = new System.Windows.Forms.Label();
- this.label78 = new System.Windows.Forms.Label();
- this.label80 = new System.Windows.Forms.Label();
- this.label77 = new System.Windows.Forms.Label();
- this.label79 = new System.Windows.Forms.Label();
- this.label75 = new System.Windows.Forms.Label();
- this.label76 = new System.Windows.Forms.Label();
- this.label74 = new System.Windows.Forms.Label();
- this.label73 = new System.Windows.Forms.Label();
- this.label67 = new System.Windows.Forms.Label();
- this.label72 = new System.Windows.Forms.Label();
- this.label71 = new System.Windows.Forms.Label();
- this.label70 = new System.Windows.Forms.Label();
- this.label69 = new System.Windows.Forms.Label();
- this.label68 = new System.Windows.Forms.Label();
- this.label65 = new System.Windows.Forms.Label();
- this.panel_MainTitle = new System.Windows.Forms.Panel();
- this.button_Exit = new System.Windows.Forms.Button();
- this.label64 = new System.Windows.Forms.Label();
- this.pictureBox_TempHigh_Alarm_ON = new System.Windows.Forms.PictureBox();
- this.pictureBox_TempHigh_Alarm_OFF = new System.Windows.Forms.PictureBox();
- this.label2 = new System.Windows.Forms.Label();
- this.numericUpDown1 = new System.Windows.Forms.NumericUpDown();
- this.label3 = new System.Windows.Forms.Label();
- this.numericUpDown2 = new System.Windows.Forms.NumericUpDown();
- ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_ShutdownUL3)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_ShutdownDL3)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_ALC3)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_DL3_User)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_UL3_User)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_ATT_DL3)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_ATT_UL3)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_Temperature_Offset)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_Temp_Threshold)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_Temp_Threshold_Default)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_ShutdownUL4)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_ShutdownDL4)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_ALC4)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_DL4_User)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_UL4_User)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_ATT_DL4)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_ATT_UL4)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_ShutdownDL1)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_ShutdownUL1)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_ALC1)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_DL1_User)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_UL1_User)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_ATT_DL1)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_ATT_UL1)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_ShutdownUL2)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_ShutdownDL2)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_ALC2)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_DL2_User)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_UL2_User)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_ATT_DL2)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_ATT_UL2)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_MASK)).BeginInit();
- this.panel1.SuspendLayout();
- this.panel_Serial.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_Version)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.pictureBox_R_TX)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.pictureBox_G_TX)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.pictureBox_R_RX)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.pictureBox_G_RX)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
- this.panel17.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.pictureBox_UL4_Shutdown_Alarm_ON)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.pictureBox_ULO_Path4_High_Alarm_ON)).BeginInit();
- this.panel18.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.pictureBox_ULO_Path4_High_Alarm_OFF)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.pictureBox_ALC4_Alarm_OFF)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.pictureBox_ALC4_Alarm_ON)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.pictureBox_UL4_Shutdown_Alarm_OFF)).BeginInit();
- this.panel9.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.pictureBox_AGC4_Alarm_ON)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.pictureBox_DLI_Path4_High_Alarm_ON)).BeginInit();
- this.panel10.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.pictureBox_DLI_Path4_High_Alarm_OFF)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.pictureBox_DLI_Path4_Low_Alarm_ON)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.pictureBox_DLI_Path4_Low_Alarm_OFF)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.pictureBox_AGC4_Alarm_OFF)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.pictureBox_DL4_Shutdown_Alarm_OFF)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.pictureBox_DL4_Shutdown_Alarm_ON)).BeginInit();
- this.panel15.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.pictureBox_UL3_Shutdown_Alarm_ON)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.pictureBox_ULO_Path3_High_Alarm_ON)).BeginInit();
- this.panel16.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.pictureBox_ULO_Path3_High_Alarm_OFF)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.pictureBox_ALC3_Alarm_OFF)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.pictureBox_ALC3_Alarm_ON)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.pictureBox_UL3_Shutdown_Alarm_OFF)).BeginInit();
- this.panel7.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.pictureBox_AGC3_Alarm_ON)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.pictureBox_DLI_Path3_High_Alarm_ON)).BeginInit();
- this.panel8.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.pictureBox_DLI_Path3_High_Alarm_OFF)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.pictureBox_DLI_Path3_Low_Alarm_ON)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.pictureBox_DLI_Path3_Low_Alarm_OFF)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.pictureBox_AGC3_Alarm_OFF)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.pictureBox_DL3_Shutdown_Alarm_OFF)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.pictureBox_DL3_Shutdown_Alarm_ON)).BeginInit();
- this.panel13.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.pictureBox_UL2_Shutdown_Alarm_ON)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.pictureBox_ULO_Path2_High_Alarm_ON)).BeginInit();
- this.panel14.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.pictureBox_ULO_Path2_High_Alarm_OFF)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.pictureBox_ALC2_Alarm_OFF)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.pictureBox_ALC2_Alarm_ON)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.pictureBox_UL2_Shutdown_Alarm_OFF)).BeginInit();
- this.panel5.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.pictureBox_AGC2_Alarm_ON)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.pictureBox_DLI_Path2_High_Alarm_ON)).BeginInit();
- this.panel6.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.pictureBox_DLI_Path2_High_Alarm_OFF)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.pictureBox_DLI_Path2_Low_Alarm_ON)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.pictureBox_DLI_Path2_Low_Alarm_OFF)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.pictureBox_AGC2_Alarm_OFF)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.pictureBox_DL2_Shutdown_Alarm_OFF)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.pictureBox_DL2_Shutdown_Alarm_ON)).BeginInit();
- this.panel11.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.pictureBox_UL1_Shutdown_Alarm_ON)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.pictureBox_ULO_Path1_High_Alarm_ON)).BeginInit();
- this.panel12.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.pictureBox_ULO_Path1_High_Alarm_OFF)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.pictureBox_ALC1_Alarm_OFF)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.pictureBox_ALC1_Alarm_ON)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.pictureBox_UL1_Shutdown_Alarm_OFF)).BeginInit();
- this.panel3.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.pictureBox_AGC1_Alarm_ON)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.pictureBox_DLI_Path1_High_Alarm_ON)).BeginInit();
- this.panel4.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.pictureBox_DLI_Path1_High_Alarm_OFF)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.pictureBox_DLI_Path1_Low_Alarm_ON)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.pictureBox_DLI_Path1_Low_Alarm_OFF)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.pictureBox_AGC1_Alarm_OFF)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.pictureBox_DL1_Shutdown_Alarm_OFF)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.pictureBox_DL1_Shutdown_Alarm_ON)).BeginInit();
- this.panel_MainTitle.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.pictureBox_TempHigh_Alarm_ON)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.pictureBox_TempHigh_Alarm_OFF)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.numericUpDown1)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.numericUpDown2)).BeginInit();
- this.SuspendLayout();
- //
- // textBox_FRBT_TIME
- //
- this.textBox_FRBT_TIME.Location = new System.Drawing.Point(700, 132);
- this.textBox_FRBT_TIME.Name = "textBox_FRBT_TIME";
- this.textBox_FRBT_TIME.Size = new System.Drawing.Size(67, 23);
- this.textBox_FRBT_TIME.TabIndex = 153;
- this.textBox_FRBT_TIME.Text = "20-07-02-07-09-15";
- //
- // label_BankSel
- //
- this.label_BankSel.AutoSize = true;
- this.label_BankSel.Location = new System.Drawing.Point(28, 677);
- this.label_BankSel.Name = "label_BankSel";
- this.label_BankSel.Size = new System.Drawing.Size(69, 15);
- this.label_BankSel.TabIndex = 152;
- this.label_BankSel.Text = "Bank Select";
- //
- // comboBox_BankSel
- //
- this.comboBox_BankSel.FormattingEnabled = true;
- this.comboBox_BankSel.Items.AddRange(new object[] {
- "BANK1",
- "BANK2",
- "AUTO"});
- this.comboBox_BankSel.Location = new System.Drawing.Point(18, 695);
- this.comboBox_BankSel.Name = "comboBox_BankSel";
- this.comboBox_BankSel.Size = new System.Drawing.Size(79, 23);
- this.comboBox_BankSel.TabIndex = 151;
- this.comboBox_BankSel.SelectedIndexChanged += new System.EventHandler(this.comboBox_BankSel_SelectedIndexChanged);
- //
- // button_MBICMake
- //
- this.button_MBICMake.Location = new System.Drawing.Point(18, 600);
- this.button_MBICMake.Name = "button_MBICMake";
- this.button_MBICMake.Size = new System.Drawing.Size(85, 23);
- this.button_MBICMake.TabIndex = 149;
- this.button_MBICMake.Text = "MBIC Make";
- this.button_MBICMake.UseVisualStyleBackColor = true;
- this.button_MBICMake.Click += new System.EventHandler(this.button_Make_Click);
- //
- // button_Test
- //
- this.button_Test.Location = new System.Drawing.Point(19, 571);
- this.button_Test.Name = "button_Test";
- this.button_Test.Size = new System.Drawing.Size(84, 23);
- this.button_Test.TabIndex = 149;
- this.button_Test.Text = "MBIC Down";
- this.button_Test.UseVisualStyleBackColor = true;
- this.button_Test.Click += new System.EventHandler(this.button_Test_Click);
- //
- // label66
- //
- this.label66.AutoSize = true;
- this.label66.Location = new System.Drawing.Point(319, 228);
- this.label66.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.label66.Name = "label66";
- this.label66.Size = new System.Drawing.Size(110, 15);
- this.label66.TabIndex = 100;
- this.label66.Text = "Temperature Offset";
- //
- // label13
- //
- this.label13.AutoSize = true;
- this.label13.Location = new System.Drawing.Point(319, 206);
- this.label13.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.label13.Name = "label13";
- this.label13.Size = new System.Drawing.Size(139, 15);
- this.label13.TabIndex = 100;
- this.label13.Text = "Temp. Threshold Default";
- //
- // checkBox_Fix
- //
- this.checkBox_Fix.AutoSize = true;
- this.checkBox_Fix.Location = new System.Drawing.Point(7, 379);
- this.checkBox_Fix.Name = "checkBox_Fix";
- this.checkBox_Fix.Size = new System.Drawing.Size(70, 19);
- this.checkBox_Fix.TabIndex = 147;
- this.checkBox_Fix.Text = "Data Fix";
- this.checkBox_Fix.UseVisualStyleBackColor = true;
- //
- // label_Temp
- //
- this.label_Temp.AutoSize = true;
- this.label_Temp.Font = new System.Drawing.Font("맑은 고딕", 18F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(129)));
- this.label_Temp.Location = new System.Drawing.Point(217, 177);
- this.label_Temp.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.label_Temp.Name = "label_Temp";
- this.label_Temp.Size = new System.Drawing.Size(55, 32);
- this.label_Temp.TabIndex = 148;
- this.label_Temp.Text = "----";
- //
- // numericUpDown_ShutdownUL3
- //
- this.numericUpDown_ShutdownUL3.Location = new System.Drawing.Point(41, 279);
- this.numericUpDown_ShutdownUL3.Name = "numericUpDown_ShutdownUL3";
- this.numericUpDown_ShutdownUL3.Size = new System.Drawing.Size(36, 23);
- this.numericUpDown_ShutdownUL3.TabIndex = 155;
- //
- // numericUpDown_ShutdownDL3
- //
- this.numericUpDown_ShutdownDL3.Location = new System.Drawing.Point(42, 274);
- this.numericUpDown_ShutdownDL3.Name = "numericUpDown_ShutdownDL3";
- this.numericUpDown_ShutdownDL3.Size = new System.Drawing.Size(36, 23);
- this.numericUpDown_ShutdownDL3.TabIndex = 155;
- //
- // numericUpDown_ALC3
- //
- this.numericUpDown_ALC3.Location = new System.Drawing.Point(9, 110);
- this.numericUpDown_ALC3.Maximum = new decimal(new int[] {
- 65535,
- 0,
- 0,
- 0});
- this.numericUpDown_ALC3.Minimum = new decimal(new int[] {
- 65535,
- 0,
- 0,
- -2147483648});
- this.numericUpDown_ALC3.Name = "numericUpDown_ALC3";
- this.numericUpDown_ALC3.Size = new System.Drawing.Size(65, 23);
- this.numericUpDown_ALC3.TabIndex = 152;
- this.numericUpDown_ALC3.Enter += new System.EventHandler(this.Activi_Change__SettingComplete);
- this.numericUpDown_ALC3.KeyDown += new System.Windows.Forms.KeyEventHandler(this.numericUpDown_User_KeyDown);
- this.numericUpDown_ALC3.Leave += new System.EventHandler(this.Activi_Change__Setting);
- //
- // numericUpDown_DL3_User
- //
- this.numericUpDown_DL3_User.DecimalPlaces = 2;
- this.numericUpDown_DL3_User.Increment = new decimal(new int[] {
- 5,
- 0,
- 0,
- 65536});
- this.numericUpDown_DL3_User.Location = new System.Drawing.Point(9, 87);
- this.numericUpDown_DL3_User.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
- this.numericUpDown_DL3_User.Maximum = new decimal(new int[] {
- 0,
- 0,
- 0,
- 0});
- this.numericUpDown_DL3_User.Minimum = new decimal(new int[] {
- 315,
- 0,
- 0,
- -2147418112});
- this.numericUpDown_DL3_User.Name = "numericUpDown_DL3_User";
- this.numericUpDown_DL3_User.Size = new System.Drawing.Size(65, 23);
- this.numericUpDown_DL3_User.TabIndex = 103;
- this.numericUpDown_DL3_User.Value = new decimal(new int[] {
- 315,
- 0,
- 0,
- -2147418112});
- this.numericUpDown_DL3_User.Enter += new System.EventHandler(this.Activi_Change__SettingComplete);
- this.numericUpDown_DL3_User.KeyDown += new System.Windows.Forms.KeyEventHandler(this.numericUpDown_User_KeyDown);
- this.numericUpDown_DL3_User.Leave += new System.EventHandler(this.Activi_Change__Setting);
- //
- // numericUpDown_UL3_User
- //
- this.numericUpDown_UL3_User.DecimalPlaces = 2;
- this.numericUpDown_UL3_User.Increment = new decimal(new int[] {
- 5,
- 0,
- 0,
- 65536});
- this.numericUpDown_UL3_User.Location = new System.Drawing.Point(9, 87);
- this.numericUpDown_UL3_User.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
- this.numericUpDown_UL3_User.Maximum = new decimal(new int[] {
- 0,
- 0,
- 0,
- 0});
- this.numericUpDown_UL3_User.Minimum = new decimal(new int[] {
- 315,
- 0,
- 0,
- -2147418112});
- this.numericUpDown_UL3_User.Name = "numericUpDown_UL3_User";
- this.numericUpDown_UL3_User.Size = new System.Drawing.Size(65, 23);
- this.numericUpDown_UL3_User.TabIndex = 103;
- this.numericUpDown_UL3_User.Value = new decimal(new int[] {
- 315,
- 0,
- 0,
- -2147418112});
- this.numericUpDown_UL3_User.Enter += new System.EventHandler(this.Activi_Change__SettingComplete);
- this.numericUpDown_UL3_User.KeyDown += new System.Windows.Forms.KeyEventHandler(this.numericUpDown_User_KeyDown);
- this.numericUpDown_UL3_User.Leave += new System.EventHandler(this.Activi_Change__Setting);
- //
- // numericUpDown_ATT_DL3
- //
- this.numericUpDown_ATT_DL3.DecimalPlaces = 2;
- this.numericUpDown_ATT_DL3.Increment = new decimal(new int[] {
- 5,
- 0,
- 0,
- 65536});
- this.numericUpDown_ATT_DL3.Location = new System.Drawing.Point(9, 60);
- this.numericUpDown_ATT_DL3.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
- this.numericUpDown_ATT_DL3.Maximum = new decimal(new int[] {
- 5,
- 0,
- 0,
- 0});
- this.numericUpDown_ATT_DL3.Minimum = new decimal(new int[] {
- 15,
- 0,
- 0,
- -2147483648});
- this.numericUpDown_ATT_DL3.Name = "numericUpDown_ATT_DL3";
- this.numericUpDown_ATT_DL3.Size = new System.Drawing.Size(65, 23);
- this.numericUpDown_ATT_DL3.TabIndex = 103;
- this.numericUpDown_ATT_DL3.Value = new decimal(new int[] {
- 15,
- 0,
- 0,
- -2147483648});
- this.numericUpDown_ATT_DL3.Enter += new System.EventHandler(this.Activi_Change__SettingComplete);
- this.numericUpDown_ATT_DL3.KeyDown += new System.Windows.Forms.KeyEventHandler(this.ATT_Enter);
- this.numericUpDown_ATT_DL3.Leave += new System.EventHandler(this.Activi_Change__Setting);
- //
- // numericUpDown_ATT_UL3
- //
- this.numericUpDown_ATT_UL3.DecimalPlaces = 2;
- this.numericUpDown_ATT_UL3.Increment = new decimal(new int[] {
- 5,
- 0,
- 0,
- 65536});
- this.numericUpDown_ATT_UL3.Location = new System.Drawing.Point(9, 60);
- this.numericUpDown_ATT_UL3.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
- this.numericUpDown_ATT_UL3.Maximum = new decimal(new int[] {
- 0,
- 0,
- 0,
- 0});
- this.numericUpDown_ATT_UL3.Minimum = new decimal(new int[] {
- 315,
- 0,
- 0,
- -2147418112});
- this.numericUpDown_ATT_UL3.Name = "numericUpDown_ATT_UL3";
- this.numericUpDown_ATT_UL3.Size = new System.Drawing.Size(65, 23);
- this.numericUpDown_ATT_UL3.TabIndex = 103;
- this.numericUpDown_ATT_UL3.Value = new decimal(new int[] {
- 315,
- 0,
- 0,
- -2147418112});
- this.numericUpDown_ATT_UL3.Enter += new System.EventHandler(this.Activi_Change__SettingComplete);
- this.numericUpDown_ATT_UL3.KeyDown += new System.Windows.Forms.KeyEventHandler(this.ATT_Enter);
- this.numericUpDown_ATT_UL3.Leave += new System.EventHandler(this.Activi_Change__Setting);
- //
- // numericUpDown_Temperature_Offset
- //
- this.numericUpDown_Temperature_Offset.Location = new System.Drawing.Point(483, 226);
- this.numericUpDown_Temperature_Offset.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
- this.numericUpDown_Temperature_Offset.Maximum = new decimal(new int[] {
- 20,
- 0,
- 0,
- 0});
- this.numericUpDown_Temperature_Offset.Minimum = new decimal(new int[] {
- 20,
- 0,
- 0,
- -2147483648});
- this.numericUpDown_Temperature_Offset.Name = "numericUpDown_Temperature_Offset";
- this.numericUpDown_Temperature_Offset.Size = new System.Drawing.Size(44, 23);
- this.numericUpDown_Temperature_Offset.TabIndex = 103;
- this.numericUpDown_Temperature_Offset.Enter += new System.EventHandler(this.Activi_Change__SettingComplete);
- this.numericUpDown_Temperature_Offset.KeyDown += new System.Windows.Forms.KeyEventHandler(this.numericUpDown_User_KeyDown);
- this.numericUpDown_Temperature_Offset.Leave += new System.EventHandler(this.Activi_Change__Setting);
- //
- // numericUpDown_Temp_Threshold
- //
- this.numericUpDown_Temp_Threshold.Location = new System.Drawing.Point(483, 177);
- this.numericUpDown_Temp_Threshold.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
- this.numericUpDown_Temp_Threshold.Maximum = new decimal(new int[] {
- 99,
- 0,
- 0,
- 0});
- this.numericUpDown_Temp_Threshold.Minimum = new decimal(new int[] {
- 30,
- 0,
- 0,
- -2147483648});
- this.numericUpDown_Temp_Threshold.Name = "numericUpDown_Temp_Threshold";
- this.numericUpDown_Temp_Threshold.Size = new System.Drawing.Size(44, 23);
- this.numericUpDown_Temp_Threshold.TabIndex = 103;
- this.numericUpDown_Temp_Threshold.Enter += new System.EventHandler(this.Activi_Change__SettingComplete);
- this.numericUpDown_Temp_Threshold.KeyDown += new System.Windows.Forms.KeyEventHandler(this.numericUpDown_User_KeyDown);
- this.numericUpDown_Temp_Threshold.Leave += new System.EventHandler(this.Activi_Change__Setting);
- //
- // numericUpDown_Temp_Threshold_Default
- //
- this.numericUpDown_Temp_Threshold_Default.Location = new System.Drawing.Point(483, 201);
- this.numericUpDown_Temp_Threshold_Default.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
- this.numericUpDown_Temp_Threshold_Default.Maximum = new decimal(new int[] {
- 200,
- 0,
- 0,
- 0});
- this.numericUpDown_Temp_Threshold_Default.Minimum = new decimal(new int[] {
- 200,
- 0,
- 0,
- -2147483648});
- this.numericUpDown_Temp_Threshold_Default.Name = "numericUpDown_Temp_Threshold_Default";
- this.numericUpDown_Temp_Threshold_Default.Size = new System.Drawing.Size(44, 23);
- this.numericUpDown_Temp_Threshold_Default.TabIndex = 103;
- this.numericUpDown_Temp_Threshold_Default.Enter += new System.EventHandler(this.Activi_Change__SettingComplete);
- this.numericUpDown_Temp_Threshold_Default.KeyDown += new System.Windows.Forms.KeyEventHandler(this.numericUpDown_User_KeyDown);
- this.numericUpDown_Temp_Threshold_Default.Leave += new System.EventHandler(this.Activi_Change__Setting);
- //
- // numericUpDown_ShutdownUL4
- //
- this.numericUpDown_ShutdownUL4.Location = new System.Drawing.Point(42, 279);
- this.numericUpDown_ShutdownUL4.Name = "numericUpDown_ShutdownUL4";
- this.numericUpDown_ShutdownUL4.Size = new System.Drawing.Size(36, 23);
- this.numericUpDown_ShutdownUL4.TabIndex = 155;
- //
- // numericUpDown_ShutdownDL4
- //
- this.numericUpDown_ShutdownDL4.Location = new System.Drawing.Point(45, 277);
- this.numericUpDown_ShutdownDL4.Name = "numericUpDown_ShutdownDL4";
- this.numericUpDown_ShutdownDL4.Size = new System.Drawing.Size(36, 23);
- this.numericUpDown_ShutdownDL4.TabIndex = 155;
- //
- // numericUpDown_ALC4
- //
- this.numericUpDown_ALC4.Location = new System.Drawing.Point(7, 110);
- this.numericUpDown_ALC4.Minimum = new decimal(new int[] {
- 40,
- 0,
- 0,
- -2147483648});
- this.numericUpDown_ALC4.Name = "numericUpDown_ALC4";
- this.numericUpDown_ALC4.Size = new System.Drawing.Size(65, 23);
- this.numericUpDown_ALC4.TabIndex = 152;
- this.numericUpDown_ALC4.Enter += new System.EventHandler(this.Activi_Change__SettingComplete);
- this.numericUpDown_ALC4.KeyDown += new System.Windows.Forms.KeyEventHandler(this.numericUpDown_User_KeyDown);
- this.numericUpDown_ALC4.Leave += new System.EventHandler(this.Activi_Change__Setting);
- //
- // numericUpDown_DL4_User
- //
- this.numericUpDown_DL4_User.DecimalPlaces = 2;
- this.numericUpDown_DL4_User.Increment = new decimal(new int[] {
- 5,
- 0,
- 0,
- 65536});
- this.numericUpDown_DL4_User.Location = new System.Drawing.Point(7, 87);
- this.numericUpDown_DL4_User.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
- this.numericUpDown_DL4_User.Maximum = new decimal(new int[] {
- 0,
- 0,
- 0,
- 0});
- this.numericUpDown_DL4_User.Minimum = new decimal(new int[] {
- 315,
- 0,
- 0,
- -2147418112});
- this.numericUpDown_DL4_User.Name = "numericUpDown_DL4_User";
- this.numericUpDown_DL4_User.Size = new System.Drawing.Size(65, 23);
- this.numericUpDown_DL4_User.TabIndex = 103;
- this.numericUpDown_DL4_User.Value = new decimal(new int[] {
- 315,
- 0,
- 0,
- -2147418112});
- this.numericUpDown_DL4_User.Enter += new System.EventHandler(this.Activi_Change__SettingComplete);
- this.numericUpDown_DL4_User.KeyDown += new System.Windows.Forms.KeyEventHandler(this.numericUpDown_User_KeyDown);
- this.numericUpDown_DL4_User.Leave += new System.EventHandler(this.Activi_Change__Setting);
- //
- // numericUpDown_UL4_User
- //
- this.numericUpDown_UL4_User.DecimalPlaces = 2;
- this.numericUpDown_UL4_User.Increment = new decimal(new int[] {
- 5,
- 0,
- 0,
- 65536});
- this.numericUpDown_UL4_User.Location = new System.Drawing.Point(7, 87);
- this.numericUpDown_UL4_User.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
- this.numericUpDown_UL4_User.Maximum = new decimal(new int[] {
- 0,
- 0,
- 0,
- 0});
- this.numericUpDown_UL4_User.Minimum = new decimal(new int[] {
- 315,
- 0,
- 0,
- -2147418112});
- this.numericUpDown_UL4_User.Name = "numericUpDown_UL4_User";
- this.numericUpDown_UL4_User.Size = new System.Drawing.Size(65, 23);
- this.numericUpDown_UL4_User.TabIndex = 103;
- this.numericUpDown_UL4_User.Value = new decimal(new int[] {
- 315,
- 0,
- 0,
- -2147418112});
- this.numericUpDown_UL4_User.Enter += new System.EventHandler(this.Activi_Change__SettingComplete);
- this.numericUpDown_UL4_User.KeyDown += new System.Windows.Forms.KeyEventHandler(this.numericUpDown_User_KeyDown);
- this.numericUpDown_UL4_User.Leave += new System.EventHandler(this.Activi_Change__Setting);
- //
- // numericUpDown_ATT_DL4
- //
- this.numericUpDown_ATT_DL4.DecimalPlaces = 2;
- this.numericUpDown_ATT_DL4.Increment = new decimal(new int[] {
- 5,
- 0,
- 0,
- 65536});
- this.numericUpDown_ATT_DL4.Location = new System.Drawing.Point(7, 60);
- this.numericUpDown_ATT_DL4.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
- this.numericUpDown_ATT_DL4.Maximum = new decimal(new int[] {
- 5,
- 0,
- 0,
- 0});
- this.numericUpDown_ATT_DL4.Minimum = new decimal(new int[] {
- 15,
- 0,
- 0,
- -2147483648});
- this.numericUpDown_ATT_DL4.Name = "numericUpDown_ATT_DL4";
- this.numericUpDown_ATT_DL4.Size = new System.Drawing.Size(65, 23);
- this.numericUpDown_ATT_DL4.TabIndex = 103;
- this.numericUpDown_ATT_DL4.Value = new decimal(new int[] {
- 15,
- 0,
- 0,
- -2147483648});
- this.numericUpDown_ATT_DL4.Enter += new System.EventHandler(this.Activi_Change__SettingComplete);
- this.numericUpDown_ATT_DL4.KeyDown += new System.Windows.Forms.KeyEventHandler(this.ATT_Enter);
- this.numericUpDown_ATT_DL4.Leave += new System.EventHandler(this.Activi_Change__Setting);
- //
- // numericUpDown_ATT_UL4
- //
- this.numericUpDown_ATT_UL4.DecimalPlaces = 2;
- this.numericUpDown_ATT_UL4.Increment = new decimal(new int[] {
- 5,
- 0,
- 0,
- 65536});
- this.numericUpDown_ATT_UL4.Location = new System.Drawing.Point(7, 60);
- this.numericUpDown_ATT_UL4.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
- this.numericUpDown_ATT_UL4.Maximum = new decimal(new int[] {
- 0,
- 0,
- 0,
- 0});
- this.numericUpDown_ATT_UL4.Minimum = new decimal(new int[] {
- 315,
- 0,
- 0,
- -2147418112});
- this.numericUpDown_ATT_UL4.Name = "numericUpDown_ATT_UL4";
- this.numericUpDown_ATT_UL4.Size = new System.Drawing.Size(65, 23);
- this.numericUpDown_ATT_UL4.TabIndex = 103;
- this.numericUpDown_ATT_UL4.Value = new decimal(new int[] {
- 315,
- 0,
- 0,
- -2147418112});
- this.numericUpDown_ATT_UL4.Enter += new System.EventHandler(this.Activi_Change__SettingComplete);
- this.numericUpDown_ATT_UL4.KeyDown += new System.Windows.Forms.KeyEventHandler(this.ATT_Enter);
- this.numericUpDown_ATT_UL4.Leave += new System.EventHandler(this.Activi_Change__Setting);
- //
- // numericUpDown_ShutdownDL1
- //
- this.numericUpDown_ShutdownDL1.Location = new System.Drawing.Point(40, 274);
- this.numericUpDown_ShutdownDL1.Name = "numericUpDown_ShutdownDL1";
- this.numericUpDown_ShutdownDL1.Size = new System.Drawing.Size(36, 23);
- this.numericUpDown_ShutdownDL1.TabIndex = 155;
- //
- // numericUpDown_ShutdownUL1
- //
- this.numericUpDown_ShutdownUL1.Location = new System.Drawing.Point(42, 279);
- this.numericUpDown_ShutdownUL1.Name = "numericUpDown_ShutdownUL1";
- this.numericUpDown_ShutdownUL1.Size = new System.Drawing.Size(36, 23);
- this.numericUpDown_ShutdownUL1.TabIndex = 155;
- //
- // numericUpDown_ALC1
- //
- this.numericUpDown_ALC1.Location = new System.Drawing.Point(9, 112);
- this.numericUpDown_ALC1.Maximum = new decimal(new int[] {
- 65535,
- 0,
- 0,
- 0});
- this.numericUpDown_ALC1.Minimum = new decimal(new int[] {
- 65535,
- 0,
- 0,
- -2147483648});
- this.numericUpDown_ALC1.Name = "numericUpDown_ALC1";
- this.numericUpDown_ALC1.Size = new System.Drawing.Size(65, 23);
- this.numericUpDown_ALC1.TabIndex = 149;
- this.numericUpDown_ALC1.Enter += new System.EventHandler(this.Activi_Change__SettingComplete);
- this.numericUpDown_ALC1.KeyDown += new System.Windows.Forms.KeyEventHandler(this.numericUpDown_User_KeyDown);
- this.numericUpDown_ALC1.Leave += new System.EventHandler(this.Activi_Change__Setting);
- //
- // numericUpDown_DL1_User
- //
- this.numericUpDown_DL1_User.DecimalPlaces = 2;
- this.numericUpDown_DL1_User.Increment = new decimal(new int[] {
- 5,
- 0,
- 0,
- 65536});
- this.numericUpDown_DL1_User.Location = new System.Drawing.Point(9, 87);
- this.numericUpDown_DL1_User.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
- this.numericUpDown_DL1_User.Maximum = new decimal(new int[] {
- 0,
- 0,
- 0,
- 0});
- this.numericUpDown_DL1_User.Minimum = new decimal(new int[] {
- 315,
- 0,
- 0,
- -2147418112});
- this.numericUpDown_DL1_User.Name = "numericUpDown_DL1_User";
- this.numericUpDown_DL1_User.Size = new System.Drawing.Size(65, 23);
- this.numericUpDown_DL1_User.TabIndex = 103;
- this.numericUpDown_DL1_User.Value = new decimal(new int[] {
- 315,
- 0,
- 0,
- -2147418112});
- this.numericUpDown_DL1_User.Enter += new System.EventHandler(this.Activi_Change__SettingComplete);
- this.numericUpDown_DL1_User.KeyDown += new System.Windows.Forms.KeyEventHandler(this.numericUpDown_User_KeyDown);
- this.numericUpDown_DL1_User.Leave += new System.EventHandler(this.Activi_Change__Setting);
- //
- // numericUpDown_UL1_User
- //
- this.numericUpDown_UL1_User.DecimalPlaces = 2;
- this.numericUpDown_UL1_User.Increment = new decimal(new int[] {
- 5,
- 0,
- 0,
- 65536});
- this.numericUpDown_UL1_User.Location = new System.Drawing.Point(9, 87);
- this.numericUpDown_UL1_User.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
- this.numericUpDown_UL1_User.Maximum = new decimal(new int[] {
- 0,
- 0,
- 0,
- 0});
- this.numericUpDown_UL1_User.Minimum = new decimal(new int[] {
- 315,
- 0,
- 0,
- -2147418112});
- this.numericUpDown_UL1_User.Name = "numericUpDown_UL1_User";
- this.numericUpDown_UL1_User.Size = new System.Drawing.Size(65, 23);
- this.numericUpDown_UL1_User.TabIndex = 103;
- this.numericUpDown_UL1_User.Value = new decimal(new int[] {
- 315,
- 0,
- 0,
- -2147418112});
- this.numericUpDown_UL1_User.Enter += new System.EventHandler(this.Activi_Change__SettingComplete);
- this.numericUpDown_UL1_User.KeyDown += new System.Windows.Forms.KeyEventHandler(this.numericUpDown_User_KeyDown);
- this.numericUpDown_UL1_User.Leave += new System.EventHandler(this.Activi_Change__Setting);
- //
- // numericUpDown_ATT_DL1
- //
- this.numericUpDown_ATT_DL1.DecimalPlaces = 2;
- this.numericUpDown_ATT_DL1.Increment = new decimal(new int[] {
- 5,
- 0,
- 0,
- 65536});
- this.numericUpDown_ATT_DL1.Location = new System.Drawing.Point(9, 60);
- this.numericUpDown_ATT_DL1.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
- this.numericUpDown_ATT_DL1.Maximum = new decimal(new int[] {
- 5,
- 0,
- 0,
- 0});
- this.numericUpDown_ATT_DL1.Minimum = new decimal(new int[] {
- 15,
- 0,
- 0,
- -2147483648});
- this.numericUpDown_ATT_DL1.Name = "numericUpDown_ATT_DL1";
- this.numericUpDown_ATT_DL1.Size = new System.Drawing.Size(65, 23);
- this.numericUpDown_ATT_DL1.TabIndex = 103;
- this.numericUpDown_ATT_DL1.Value = new decimal(new int[] {
- 15,
- 0,
- 0,
- -2147483648});
- this.numericUpDown_ATT_DL1.Enter += new System.EventHandler(this.Activi_Change__SettingComplete);
- this.numericUpDown_ATT_DL1.KeyDown += new System.Windows.Forms.KeyEventHandler(this.ATT_Enter);
- this.numericUpDown_ATT_DL1.Leave += new System.EventHandler(this.Activi_Change__Setting);
- //
- // numericUpDown_ATT_UL1
- //
- this.numericUpDown_ATT_UL1.DecimalPlaces = 2;
- this.numericUpDown_ATT_UL1.Increment = new decimal(new int[] {
- 5,
- 0,
- 0,
- 65536});
- this.numericUpDown_ATT_UL1.Location = new System.Drawing.Point(9, 60);
- this.numericUpDown_ATT_UL1.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
- this.numericUpDown_ATT_UL1.Maximum = new decimal(new int[] {
- 0,
- 0,
- 0,
- 0});
- this.numericUpDown_ATT_UL1.Minimum = new decimal(new int[] {
- 315,
- 0,
- 0,
- -2147418112});
- this.numericUpDown_ATT_UL1.Name = "numericUpDown_ATT_UL1";
- this.numericUpDown_ATT_UL1.Size = new System.Drawing.Size(65, 23);
- this.numericUpDown_ATT_UL1.TabIndex = 103;
- this.numericUpDown_ATT_UL1.Value = new decimal(new int[] {
- 315,
- 0,
- 0,
- -2147418112});
- this.numericUpDown_ATT_UL1.Enter += new System.EventHandler(this.Activi_Change__SettingComplete);
- this.numericUpDown_ATT_UL1.KeyDown += new System.Windows.Forms.KeyEventHandler(this.ATT_Enter);
- this.numericUpDown_ATT_UL1.Leave += new System.EventHandler(this.Activi_Change__Setting);
- //
- // button_FRBT_TimeSetting
- //
- this.button_FRBT_TimeSetting.Location = new System.Drawing.Point(780, 133);
- this.button_FRBT_TimeSetting.Name = "button_FRBT_TimeSetting";
- this.button_FRBT_TimeSetting.Size = new System.Drawing.Size(75, 23);
- this.button_FRBT_TimeSetting.TabIndex = 146;
- this.button_FRBT_TimeSetting.Text = "FRBT TIME SETTING";
- this.button_FRBT_TimeSetting.UseVisualStyleBackColor = true;
- this.button_FRBT_TimeSetting.Click += new System.EventHandler(this.button_FRBT_TimeSetting_Click);
- //
- // numericUpDown_ShutdownUL2
- //
- this.numericUpDown_ShutdownUL2.Location = new System.Drawing.Point(42, 278);
- this.numericUpDown_ShutdownUL2.Name = "numericUpDown_ShutdownUL2";
- this.numericUpDown_ShutdownUL2.Size = new System.Drawing.Size(36, 23);
- this.numericUpDown_ShutdownUL2.TabIndex = 155;
- //
- // numericUpDown_ShutdownDL2
- //
- this.numericUpDown_ShutdownDL2.Location = new System.Drawing.Point(43, 274);
- this.numericUpDown_ShutdownDL2.Name = "numericUpDown_ShutdownDL2";
- this.numericUpDown_ShutdownDL2.Size = new System.Drawing.Size(36, 23);
- this.numericUpDown_ShutdownDL2.TabIndex = 155;
- //
- // numericUpDown_ALC2
- //
- this.numericUpDown_ALC2.Location = new System.Drawing.Point(7, 110);
- this.numericUpDown_ALC2.Maximum = new decimal(new int[] {
- 65535,
- 0,
- 0,
- 0});
- this.numericUpDown_ALC2.Minimum = new decimal(new int[] {
- 65535,
- 0,
- 0,
- -2147483648});
- this.numericUpDown_ALC2.Name = "numericUpDown_ALC2";
- this.numericUpDown_ALC2.Size = new System.Drawing.Size(65, 23);
- this.numericUpDown_ALC2.TabIndex = 152;
- this.numericUpDown_ALC2.Enter += new System.EventHandler(this.Activi_Change__SettingComplete);
- this.numericUpDown_ALC2.KeyDown += new System.Windows.Forms.KeyEventHandler(this.numericUpDown_User_KeyDown);
- this.numericUpDown_ALC2.Leave += new System.EventHandler(this.Activi_Change__Setting);
- //
- // numericUpDown_DL2_User
- //
- this.numericUpDown_DL2_User.DecimalPlaces = 2;
- this.numericUpDown_DL2_User.Increment = new decimal(new int[] {
- 5,
- 0,
- 0,
- 65536});
- this.numericUpDown_DL2_User.Location = new System.Drawing.Point(9, 87);
- this.numericUpDown_DL2_User.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
- this.numericUpDown_DL2_User.Maximum = new decimal(new int[] {
- 0,
- 0,
- 0,
- 0});
- this.numericUpDown_DL2_User.Minimum = new decimal(new int[] {
- 315,
- 0,
- 0,
- -2147418112});
- this.numericUpDown_DL2_User.Name = "numericUpDown_DL2_User";
- this.numericUpDown_DL2_User.Size = new System.Drawing.Size(65, 23);
- this.numericUpDown_DL2_User.TabIndex = 103;
- this.numericUpDown_DL2_User.Value = new decimal(new int[] {
- 315,
- 0,
- 0,
- -2147418112});
- this.numericUpDown_DL2_User.Enter += new System.EventHandler(this.Activi_Change__SettingComplete);
- this.numericUpDown_DL2_User.KeyDown += new System.Windows.Forms.KeyEventHandler(this.numericUpDown_User_KeyDown);
- this.numericUpDown_DL2_User.Leave += new System.EventHandler(this.Activi_Change__Setting);
- //
- // numericUpDown_UL2_User
- //
- this.numericUpDown_UL2_User.DecimalPlaces = 2;
- this.numericUpDown_UL2_User.Increment = new decimal(new int[] {
- 5,
- 0,
- 0,
- 65536});
- this.numericUpDown_UL2_User.Location = new System.Drawing.Point(7, 87);
- this.numericUpDown_UL2_User.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
- this.numericUpDown_UL2_User.Maximum = new decimal(new int[] {
- 0,
- 0,
- 0,
- 0});
- this.numericUpDown_UL2_User.Minimum = new decimal(new int[] {
- 315,
- 0,
- 0,
- -2147418112});
- this.numericUpDown_UL2_User.Name = "numericUpDown_UL2_User";
- this.numericUpDown_UL2_User.Size = new System.Drawing.Size(65, 23);
- this.numericUpDown_UL2_User.TabIndex = 103;
- this.numericUpDown_UL2_User.Value = new decimal(new int[] {
- 315,
- 0,
- 0,
- -2147418112});
- this.numericUpDown_UL2_User.Enter += new System.EventHandler(this.Activi_Change__SettingComplete);
- this.numericUpDown_UL2_User.KeyDown += new System.Windows.Forms.KeyEventHandler(this.numericUpDown_User_KeyDown);
- this.numericUpDown_UL2_User.Leave += new System.EventHandler(this.Activi_Change__Setting);
- //
- // numericUpDown_ATT_DL2
- //
- this.numericUpDown_ATT_DL2.DecimalPlaces = 2;
- this.numericUpDown_ATT_DL2.Increment = new decimal(new int[] {
- 5,
- 0,
- 0,
- 65536});
- this.numericUpDown_ATT_DL2.Location = new System.Drawing.Point(8, 60);
- this.numericUpDown_ATT_DL2.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
- this.numericUpDown_ATT_DL2.Maximum = new decimal(new int[] {
- 5,
- 0,
- 0,
- 0});
- this.numericUpDown_ATT_DL2.Minimum = new decimal(new int[] {
- 15,
- 0,
- 0,
- -2147483648});
- this.numericUpDown_ATT_DL2.Name = "numericUpDown_ATT_DL2";
- this.numericUpDown_ATT_DL2.Size = new System.Drawing.Size(65, 23);
- this.numericUpDown_ATT_DL2.TabIndex = 103;
- this.numericUpDown_ATT_DL2.Value = new decimal(new int[] {
- 15,
- 0,
- 0,
- -2147483648});
- this.numericUpDown_ATT_DL2.Enter += new System.EventHandler(this.Activi_Change__SettingComplete);
- this.numericUpDown_ATT_DL2.KeyDown += new System.Windows.Forms.KeyEventHandler(this.ATT_Enter);
- this.numericUpDown_ATT_DL2.Leave += new System.EventHandler(this.Activi_Change__Setting);
- //
- // numericUpDown_ATT_UL2
- //
- this.numericUpDown_ATT_UL2.DecimalPlaces = 2;
- this.numericUpDown_ATT_UL2.Increment = new decimal(new int[] {
- 5,
- 0,
- 0,
- 65536});
- this.numericUpDown_ATT_UL2.Location = new System.Drawing.Point(7, 60);
- this.numericUpDown_ATT_UL2.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
- this.numericUpDown_ATT_UL2.Maximum = new decimal(new int[] {
- 0,
- 0,
- 0,
- 0});
- this.numericUpDown_ATT_UL2.Minimum = new decimal(new int[] {
- 315,
- 0,
- 0,
- -2147418112});
- this.numericUpDown_ATT_UL2.Name = "numericUpDown_ATT_UL2";
- this.numericUpDown_ATT_UL2.Size = new System.Drawing.Size(65, 23);
- this.numericUpDown_ATT_UL2.TabIndex = 103;
- this.numericUpDown_ATT_UL2.Value = new decimal(new int[] {
- 315,
- 0,
- 0,
- -2147418112});
- this.numericUpDown_ATT_UL2.Enter += new System.EventHandler(this.Activi_Change__SettingComplete);
- this.numericUpDown_ATT_UL2.KeyDown += new System.Windows.Forms.KeyEventHandler(this.ATT_Enter);
- this.numericUpDown_ATT_UL2.Leave += new System.EventHandler(this.Activi_Change__Setting);
- //
- // button_FirmwareUpdate
- //
- this.button_FirmwareUpdate.Location = new System.Drawing.Point(4, 194);
- this.button_FirmwareUpdate.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
- this.button_FirmwareUpdate.Name = "button_FirmwareUpdate";
- this.button_FirmwareUpdate.Size = new System.Drawing.Size(107, 34);
- this.button_FirmwareUpdate.TabIndex = 93;
- this.button_FirmwareUpdate.Text = "Firmware Update";
- this.button_FirmwareUpdate.UseVisualStyleBackColor = true;
- this.button_FirmwareUpdate.Click += new System.EventHandler(this.button_FirmwareUpdate_Click);
- //
- // button_terminal
- //
- this.button_terminal.Location = new System.Drawing.Point(4, 148);
- this.button_terminal.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
- this.button_terminal.Name = "button_terminal";
- this.button_terminal.Size = new System.Drawing.Size(107, 34);
- this.button_terminal.TabIndex = 94;
- this.button_terminal.Text = "Terminal";
- this.button_terminal.UseVisualStyleBackColor = true;
- this.button_terminal.Click += new System.EventHandler(this.button_terminal_Click);
- //
- // cmCom_Port
- //
- this.cmCom_Port.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
- | System.Windows.Forms.AnchorStyles.Left)
- | System.Windows.Forms.AnchorStyles.Right)));
- this.cmCom_Port.AutoSize = true;
- this.cmCom_Port.Location = new System.Drawing.Point(2, 12);
- this.cmCom_Port.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.cmCom_Port.Name = "cmCom_Port";
- this.cmCom_Port.Size = new System.Drawing.Size(59, 15);
- this.cmCom_Port.TabIndex = 89;
- this.cmCom_Port.Text = "Com Port";
- //
- // button_PortOpen
- //
- this.button_PortOpen.Location = new System.Drawing.Point(4, 104);
- this.button_PortOpen.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
- this.button_PortOpen.Name = "button_PortOpen";
- this.button_PortOpen.Size = new System.Drawing.Size(107, 34);
- this.button_PortOpen.TabIndex = 86;
- this.button_PortOpen.Text = "Port Open";
- this.button_PortOpen.UseVisualStyleBackColor = true;
- this.button_PortOpen.Click += new System.EventHandler(this.button_PortOpen_Click);
- //
- // comboBox_Port
- //
- this.comboBox_Port.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
- | System.Windows.Forms.AnchorStyles.Left)
- | System.Windows.Forms.AnchorStyles.Right)));
- this.comboBox_Port.Cursor = System.Windows.Forms.Cursors.Default;
- this.comboBox_Port.FormattingEnabled = true;
- this.comboBox_Port.Location = new System.Drawing.Point(5, 27);
- this.comboBox_Port.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
- this.comboBox_Port.Name = "comboBox_Port";
- this.comboBox_Port.Size = new System.Drawing.Size(91, 23);
- this.comboBox_Port.TabIndex = 88;
- //
- // cmBaudRate
- //
- this.cmBaudRate.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
- | System.Windows.Forms.AnchorStyles.Left)
- | System.Windows.Forms.AnchorStyles.Right)));
- this.cmBaudRate.AutoSize = true;
- this.cmBaudRate.Location = new System.Drawing.Point(2, 63);
- this.cmBaudRate.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.cmBaudRate.Name = "cmBaudRate";
- this.cmBaudRate.Size = new System.Drawing.Size(88, 15);
- this.cmBaudRate.TabIndex = 90;
- this.cmBaudRate.Text = "Baud Rate(bps)";
- //
- // comboBox_baudrate
- //
- this.comboBox_baudrate.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
- | System.Windows.Forms.AnchorStyles.Left)
- | System.Windows.Forms.AnchorStyles.Right)));
- this.comboBox_baudrate.FormattingEnabled = true;
- this.comboBox_baudrate.Items.AddRange(new object[] {
- "9600",
- "14400",
- "19200",
- "38400",
- "57600",
- "115200",
- "128000",
- "921600"});
- this.comboBox_baudrate.Location = new System.Drawing.Point(4, 78);
- this.comboBox_baudrate.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
- this.comboBox_baudrate.Name = "comboBox_baudrate";
- this.comboBox_baudrate.Size = new System.Drawing.Size(91, 23);
- this.comboBox_baudrate.TabIndex = 91;
- this.comboBox_baudrate.Text = "115200";
- //
- // textBox_DET_DL3_dBm
- //
- this.textBox_DET_DL3_dBm.Location = new System.Drawing.Point(6, 162);
- this.textBox_DET_DL3_dBm.Name = "textBox_DET_DL3_dBm";
- this.textBox_DET_DL3_dBm.ReadOnly = true;
- this.textBox_DET_DL3_dBm.Size = new System.Drawing.Size(65, 23);
- this.textBox_DET_DL3_dBm.TabIndex = 148;
- //
- // textBox_DET_UL3_dBm
- //
- this.textBox_DET_UL3_dBm.Location = new System.Drawing.Point(7, 166);
- this.textBox_DET_UL3_dBm.Name = "textBox_DET_UL3_dBm";
- this.textBox_DET_UL3_dBm.ReadOnly = true;
- this.textBox_DET_UL3_dBm.Size = new System.Drawing.Size(65, 23);
- this.textBox_DET_UL3_dBm.TabIndex = 149;
- //
- // textBox_DET_DL3
- //
- this.textBox_DET_DL3.Location = new System.Drawing.Point(5, 189);
- this.textBox_DET_DL3.Name = "textBox_DET_DL3";
- this.textBox_DET_DL3.ReadOnly = true;
- this.textBox_DET_DL3.Size = new System.Drawing.Size(65, 23);
- this.textBox_DET_DL3.TabIndex = 148;
- //
- // textBox_DET_UL3
- //
- this.textBox_DET_UL3.Location = new System.Drawing.Point(7, 193);
- this.textBox_DET_UL3.Name = "textBox_DET_UL3";
- this.textBox_DET_UL3.ReadOnly = true;
- this.textBox_DET_UL3.Size = new System.Drawing.Size(65, 23);
- this.textBox_DET_UL3.TabIndex = 149;
- //
- // textBox_DET_UL4_dBm
- //
- this.textBox_DET_UL4_dBm.Location = new System.Drawing.Point(7, 166);
- this.textBox_DET_UL4_dBm.Name = "textBox_DET_UL4_dBm";
- this.textBox_DET_UL4_dBm.ReadOnly = true;
- this.textBox_DET_UL4_dBm.Size = new System.Drawing.Size(65, 23);
- this.textBox_DET_UL4_dBm.TabIndex = 149;
- //
- // textBox_DET_UL4
- //
- this.textBox_DET_UL4.Location = new System.Drawing.Point(7, 193);
- this.textBox_DET_UL4.Name = "textBox_DET_UL4";
- this.textBox_DET_UL4.ReadOnly = true;
- this.textBox_DET_UL4.Size = new System.Drawing.Size(65, 23);
- this.textBox_DET_UL4.TabIndex = 149;
- //
- // textBox_DET_DL4_dBm
- //
- this.textBox_DET_DL4_dBm.Location = new System.Drawing.Point(4, 162);
- this.textBox_DET_DL4_dBm.Name = "textBox_DET_DL4_dBm";
- this.textBox_DET_DL4_dBm.ReadOnly = true;
- this.textBox_DET_DL4_dBm.Size = new System.Drawing.Size(65, 23);
- this.textBox_DET_DL4_dBm.TabIndex = 148;
- //
- // textBox_DET_DL4
- //
- this.textBox_DET_DL4.Location = new System.Drawing.Point(4, 189);
- this.textBox_DET_DL4.Name = "textBox_DET_DL4";
- this.textBox_DET_DL4.ReadOnly = true;
- this.textBox_DET_DL4.Size = new System.Drawing.Size(65, 23);
- this.textBox_DET_DL4.TabIndex = 148;
- //
- // textBox_DET_UL1_dBm
- //
- this.textBox_DET_UL1_dBm.Location = new System.Drawing.Point(7, 166);
- this.textBox_DET_UL1_dBm.Name = "textBox_DET_UL1_dBm";
- this.textBox_DET_UL1_dBm.ReadOnly = true;
- this.textBox_DET_UL1_dBm.Size = new System.Drawing.Size(65, 23);
- this.textBox_DET_UL1_dBm.TabIndex = 144;
- //
- // textBox_DET_UL1
- //
- this.textBox_DET_UL1.Location = new System.Drawing.Point(7, 193);
- this.textBox_DET_UL1.Name = "textBox_DET_UL1";
- this.textBox_DET_UL1.ReadOnly = true;
- this.textBox_DET_UL1.Size = new System.Drawing.Size(65, 23);
- this.textBox_DET_UL1.TabIndex = 144;
- //
- // textBox_DET_DL1_dBm
- //
- this.textBox_DET_DL1_dBm.Location = new System.Drawing.Point(9, 162);
- this.textBox_DET_DL1_dBm.Name = "textBox_DET_DL1_dBm";
- this.textBox_DET_DL1_dBm.ReadOnly = true;
- this.textBox_DET_DL1_dBm.Size = new System.Drawing.Size(65, 23);
- this.textBox_DET_DL1_dBm.TabIndex = 144;
- //
- // textBox_DET_DL1
- //
- this.textBox_DET_DL1.Location = new System.Drawing.Point(9, 189);
- this.textBox_DET_DL1.Name = "textBox_DET_DL1";
- this.textBox_DET_DL1.ReadOnly = true;
- this.textBox_DET_DL1.Size = new System.Drawing.Size(65, 23);
- this.textBox_DET_DL1.TabIndex = 144;
- //
- // textBox_DET_DL2_dBm
- //
- this.textBox_DET_DL2_dBm.Location = new System.Drawing.Point(7, 162);
- this.textBox_DET_DL2_dBm.Name = "textBox_DET_DL2_dBm";
- this.textBox_DET_DL2_dBm.ReadOnly = true;
- this.textBox_DET_DL2_dBm.Size = new System.Drawing.Size(65, 23);
- this.textBox_DET_DL2_dBm.TabIndex = 148;
- //
- // textBox_DET_UL2_dBm
- //
- this.textBox_DET_UL2_dBm.Location = new System.Drawing.Point(7, 166);
- this.textBox_DET_UL2_dBm.Name = "textBox_DET_UL2_dBm";
- this.textBox_DET_UL2_dBm.ReadOnly = true;
- this.textBox_DET_UL2_dBm.Size = new System.Drawing.Size(65, 23);
- this.textBox_DET_UL2_dBm.TabIndex = 149;
- //
- // textBox_DET_DL2
- //
- this.textBox_DET_DL2.Location = new System.Drawing.Point(7, 189);
- this.textBox_DET_DL2.Name = "textBox_DET_DL2";
- this.textBox_DET_DL2.ReadOnly = true;
- this.textBox_DET_DL2.Size = new System.Drawing.Size(65, 23);
- this.textBox_DET_DL2.TabIndex = 148;
- //
- // textBox_DET_UL2
- //
- this.textBox_DET_UL2.Location = new System.Drawing.Point(7, 193);
- this.textBox_DET_UL2.Name = "textBox_DET_UL2";
- this.textBox_DET_UL2.ReadOnly = true;
- this.textBox_DET_UL2.Size = new System.Drawing.Size(65, 23);
- this.textBox_DET_UL2.TabIndex = 149;
- //
- // numericUpDown_MASK
- //
- this.numericUpDown_MASK.Location = new System.Drawing.Point(820, 172);
- this.numericUpDown_MASK.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
- this.numericUpDown_MASK.Maximum = new decimal(new int[] {
- 1,
- 0,
- 0,
- 0});
- this.numericUpDown_MASK.Name = "numericUpDown_MASK";
- this.numericUpDown_MASK.Size = new System.Drawing.Size(65, 23);
- this.numericUpDown_MASK.TabIndex = 147;
- this.numericUpDown_MASK.Enter += new System.EventHandler(this.Activi_Change__SettingComplete);
- this.numericUpDown_MASK.KeyDown += new System.Windows.Forms.KeyEventHandler(this.numericUpDown_User_KeyDown);
- this.numericUpDown_MASK.Leave += new System.EventHandler(this.Activi_Change__Setting);
- //
- // label_MASK
- //
- this.label_MASK.AutoSize = true;
- this.label_MASK.Location = new System.Drawing.Point(776, 176);
- this.label_MASK.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.label_MASK.Name = "label_MASK";
- this.label_MASK.Size = new System.Drawing.Size(40, 15);
- this.label_MASK.TabIndex = 146;
- this.label_MASK.Text = "MASK";
- //
- // timer_JdasMbic
- //
- this.timer_JdasMbic.Interval = 166;
- this.timer_JdasMbic.Tick += new System.EventHandler(this.timer1_Tick);
- //
- // label_CurrBank
- //
- this.label_CurrBank.AutoSize = true;
- this.label_CurrBank.Location = new System.Drawing.Point(28, 127);
- this.label_CurrBank.Name = "label_CurrBank";
- this.label_CurrBank.Size = new System.Drawing.Size(33, 15);
- this.label_CurrBank.TabIndex = 150;
- this.label_CurrBank.Text = "Bank";
- //
- // button1
- //
- this.button1.Location = new System.Drawing.Point(17, 299);
- this.button1.Name = "button1";
- this.button1.Size = new System.Drawing.Size(75, 23);
- this.button1.TabIndex = 157;
- this.button1.Text = "Reset";
- this.button1.UseVisualStyleBackColor = true;
- this.button1.Click += new System.EventHandler(this.button1_Click);
- //
- // button_FactorySet
- //
- this.button_FactorySet.Location = new System.Drawing.Point(17, 329);
- this.button_FactorySet.Name = "button_FactorySet";
- this.button_FactorySet.Size = new System.Drawing.Size(75, 23);
- this.button_FactorySet.TabIndex = 158;
- this.button_FactorySet.Text = "Factory Set";
- this.button_FactorySet.UseVisualStyleBackColor = true;
- this.button_FactorySet.Click += new System.EventHandler(this.button_FactorySet_Click);
- //
- // panel1
- //
- this.panel1.BackColor = System.Drawing.Color.White;
- this.panel1.Controls.Add(this.textBox_UL4_TableOffset);
- this.panel1.Controls.Add(this.textBox_UL2_TableOffset);
- this.panel1.Controls.Add(this.textBox_DL4_TableOffset);
- this.panel1.Controls.Add(this.textBox_UL3_TableOffset);
- this.panel1.Controls.Add(this.textBox_DL2_TableOffset);
- this.panel1.Controls.Add(this.textBox_UL1_TableOffset);
- this.panel1.Controls.Add(this.textBox_DL3_TableOffset);
- this.panel1.Controls.Add(this.textBox_DL1_TableOffset);
- this.panel1.Controls.Add(this.textBox_Bank2Name);
- this.panel1.Controls.Add(this.label8);
- this.panel1.Controls.Add(this.textBox_Bank1Name);
- this.panel1.Controls.Add(this.label6);
- this.panel1.Controls.Add(this.textBox_CurrBank);
- this.panel1.Controls.Add(this.textBox_DLI_Level_Low_Threshold);
- this.panel1.Controls.Add(this.textBox_DLI_Level_High_Threshold);
- this.panel1.Controls.Add(this.textBox_ULO_Level_High_Threshold);
- this.panel1.Controls.Add(this.label4);
- this.panel1.Controls.Add(this.textBox_MunufactureDate);
- this.panel1.Controls.Add(this.label5);
- this.panel1.Controls.Add(this.label_SerialNumber);
- this.panel1.Controls.Add(this.textBox_PcbVersion);
- this.panel1.Controls.Add(this.textBox_SerialNumber);
- this.panel1.Controls.Add(this.label_CompileDate);
- this.panel1.Controls.Add(this.label7);
- this.panel1.Controls.Add(this.label_CurrBank);
- this.panel1.Controls.Add(this.button_SelfTest2);
- this.panel1.Controls.Add(this.button_SelfTest4);
- this.panel1.Controls.Add(this.button_SelfTest1);
- this.panel1.Controls.Add(this.numericUpDown_MASK);
- this.panel1.Controls.Add(this.label_MASK);
- this.panel1.Controls.Add(this.button_SelfTest3);
- this.panel1.Controls.Add(this.panel_Serial);
- this.panel1.Controls.Add(this.pictureBox1);
- this.panel1.Controls.Add(this.textBox_FRBT_TIME);
- this.panel1.Controls.Add(this.label_Temp);
- this.panel1.Controls.Add(this.label9);
- this.panel1.Controls.Add(this.label_TableOffset);
- this.panel1.Controls.Add(this.label111);
- this.panel1.Controls.Add(this.label66);
- this.panel1.Controls.Add(this.label13);
- this.panel1.Controls.Add(this.label100);
- this.panel1.Controls.Add(this.numericUpDown_Temperature_Offset);
- this.panel1.Controls.Add(this.label110);
- this.panel1.Controls.Add(this.label99);
- this.panel1.Controls.Add(this.numericUpDown_Temp_Threshold_Default);
- this.panel1.Controls.Add(this.label109);
- this.panel1.Controls.Add(this.label98);
- this.panel1.Controls.Add(this.label108);
- this.panel1.Controls.Add(this.label101);
- this.panel1.Controls.Add(this.label107);
- this.panel1.Controls.Add(this.label97);
- this.panel1.Controls.Add(this.label106);
- this.panel1.Controls.Add(this.label96);
- this.panel1.Controls.Add(this.label112);
- this.panel1.Controls.Add(this.label105);
- this.panel1.Controls.Add(this.button_FRBT_TimeSetting);
- this.panel1.Controls.Add(this.numericUpDown_Temp_Threshold);
- this.panel1.Controls.Add(this.label102);
- this.panel1.Controls.Add(this.label104);
- this.panel1.Controls.Add(this.label95);
- this.panel1.Controls.Add(this.label103);
- this.panel1.Controls.Add(this.label94);
- this.panel1.Controls.Add(this.button_DL_Shutdown);
- this.panel1.Controls.Add(this.button_UL_Shutdown);
- this.panel1.Controls.Add(this.button_AGC);
- this.panel1.Controls.Add(this.button_ALC);
- this.panel1.Controls.Add(this.textBox_DL_ShutdownLimit);
- this.panel1.Controls.Add(this.textBox_UL_ShutdownLimit);
- this.panel1.Controls.Add(this.textBox_DLI_AGC_Threshold);
- this.panel1.Controls.Add(this.textBox_ULO_ALC_Threshold);
- this.panel1.Controls.Add(this.textBox_DLI_FRBT_D_Day);
- this.panel1.Controls.Add(this.textBox_FRBT_Status);
- this.panel1.Controls.Add(this.textBox1_Carrier);
- this.panel1.Controls.Add(this.button_Carrier);
- this.panel1.Controls.Add(this.button_LedTest);
- this.panel1.Controls.Add(this.textBox_CardType);
- this.panel1.Controls.Add(this.textBox_CpuVersion);
- this.panel1.Controls.Add(this.panel17);
- this.panel1.Controls.Add(this.panel9);
- this.panel1.Controls.Add(this.panel15);
- this.panel1.Controls.Add(this.panel7);
- this.panel1.Controls.Add(this.panel13);
- this.panel1.Controls.Add(this.panel5);
- this.panel1.Controls.Add(this.panel11);
- this.panel1.Controls.Add(this.panel3);
- this.panel1.Controls.Add(this.label82);
- this.panel1.Controls.Add(this.label81);
- this.panel1.Controls.Add(this.label78);
- this.panel1.Controls.Add(this.label80);
- this.panel1.Controls.Add(this.label77);
- this.panel1.Controls.Add(this.label79);
- this.panel1.Controls.Add(this.label75);
- this.panel1.Controls.Add(this.label76);
- this.panel1.Controls.Add(this.label74);
- this.panel1.Controls.Add(this.label73);
- this.panel1.Controls.Add(this.label67);
- this.panel1.Controls.Add(this.label72);
- this.panel1.Controls.Add(this.label71);
- this.panel1.Controls.Add(this.label70);
- this.panel1.Controls.Add(this.label69);
- this.panel1.Controls.Add(this.label68);
- this.panel1.Controls.Add(this.label65);
- this.panel1.Controls.Add(this.panel_MainTitle);
- this.panel1.Controls.Add(this.pictureBox_TempHigh_Alarm_ON);
- this.panel1.Controls.Add(this.pictureBox_TempHigh_Alarm_OFF);
- this.panel1.Font = new System.Drawing.Font("맑은 고딕", 9F);
- this.panel1.Location = new System.Drawing.Point(1, 0);
- this.panel1.Name = "panel1";
- this.panel1.Size = new System.Drawing.Size(1136, 895);
- this.panel1.TabIndex = 159;
- //
- // textBox_UL4_TableOffset
- //
- this.textBox_UL4_TableOffset.Location = new System.Drawing.Point(1030, 741);
- this.textBox_UL4_TableOffset.Name = "textBox_UL4_TableOffset";
- this.textBox_UL4_TableOffset.Size = new System.Drawing.Size(75, 23);
- this.textBox_UL4_TableOffset.TabIndex = 178;
- this.textBox_UL4_TableOffset.Visible = false;
- //
- // textBox_UL2_TableOffset
- //
- this.textBox_UL2_TableOffset.Location = new System.Drawing.Point(824, 741);
- this.textBox_UL2_TableOffset.Name = "textBox_UL2_TableOffset";
- this.textBox_UL2_TableOffset.Size = new System.Drawing.Size(75, 23);
- this.textBox_UL2_TableOffset.TabIndex = 178;
- this.textBox_UL2_TableOffset.Visible = false;
- //
- // textBox_DL4_TableOffset
- //
- this.textBox_DL4_TableOffset.Location = new System.Drawing.Point(526, 746);
- this.textBox_DL4_TableOffset.Name = "textBox_DL4_TableOffset";
- this.textBox_DL4_TableOffset.Size = new System.Drawing.Size(75, 23);
- this.textBox_DL4_TableOffset.TabIndex = 178;
- this.textBox_DL4_TableOffset.Visible = false;
- //
- // textBox_UL3_TableOffset
- //
- this.textBox_UL3_TableOffset.Location = new System.Drawing.Point(931, 741);
- this.textBox_UL3_TableOffset.Name = "textBox_UL3_TableOffset";
- this.textBox_UL3_TableOffset.Size = new System.Drawing.Size(75, 23);
- this.textBox_UL3_TableOffset.TabIndex = 177;
- this.textBox_UL3_TableOffset.Visible = false;
- //
- // textBox_DL2_TableOffset
- //
- this.textBox_DL2_TableOffset.Location = new System.Drawing.Point(320, 746);
- this.textBox_DL2_TableOffset.Name = "textBox_DL2_TableOffset";
- this.textBox_DL2_TableOffset.Size = new System.Drawing.Size(75, 23);
- this.textBox_DL2_TableOffset.TabIndex = 178;
- this.textBox_DL2_TableOffset.Visible = false;
- //
- // textBox_UL1_TableOffset
- //
- this.textBox_UL1_TableOffset.Location = new System.Drawing.Point(718, 741);
- this.textBox_UL1_TableOffset.Name = "textBox_UL1_TableOffset";
- this.textBox_UL1_TableOffset.Size = new System.Drawing.Size(75, 23);
- this.textBox_UL1_TableOffset.TabIndex = 176;
- this.textBox_UL1_TableOffset.Visible = false;
- //
- // textBox_DL3_TableOffset
- //
- this.textBox_DL3_TableOffset.Location = new System.Drawing.Point(427, 746);
- this.textBox_DL3_TableOffset.Name = "textBox_DL3_TableOffset";
- this.textBox_DL3_TableOffset.Size = new System.Drawing.Size(75, 23);
- this.textBox_DL3_TableOffset.TabIndex = 177;
- this.textBox_DL3_TableOffset.Visible = false;
- //
- // textBox_DL1_TableOffset
- //
- this.textBox_DL1_TableOffset.Location = new System.Drawing.Point(214, 746);
- this.textBox_DL1_TableOffset.Name = "textBox_DL1_TableOffset";
- this.textBox_DL1_TableOffset.Size = new System.Drawing.Size(75, 23);
- this.textBox_DL1_TableOffset.TabIndex = 176;
- this.textBox_DL1_TableOffset.Visible = false;
- //
- // textBox_Bank2Name
- //
- this.textBox_Bank2Name.Location = new System.Drawing.Point(233, 103);
- this.textBox_Bank2Name.Name = "textBox_Bank2Name";
- this.textBox_Bank2Name.Size = new System.Drawing.Size(186, 23);
- this.textBox_Bank2Name.TabIndex = 172;
- //
- // label8
- //
- this.label8.AutoSize = true;
- this.label8.Location = new System.Drawing.Point(187, 106);
- this.label8.Name = "label8";
- this.label8.Size = new System.Drawing.Size(44, 15);
- this.label8.TabIndex = 171;
- this.label8.Text = "Bank 2";
- //
- // textBox_Bank1Name
- //
- this.textBox_Bank1Name.Location = new System.Drawing.Point(233, 79);
- this.textBox_Bank1Name.Name = "textBox_Bank1Name";
- this.textBox_Bank1Name.Size = new System.Drawing.Size(186, 23);
- this.textBox_Bank1Name.TabIndex = 172;
- //
- // label6
- //
- this.label6.AutoSize = true;
- this.label6.Location = new System.Drawing.Point(186, 82);
- this.label6.Name = "label6";
- this.label6.Size = new System.Drawing.Size(44, 15);
- this.label6.TabIndex = 171;
- this.label6.Text = "Bank 1";
- //
- // textBox_CurrBank
- //
- this.textBox_CurrBank.Location = new System.Drawing.Point(105, 124);
- this.textBox_CurrBank.Name = "textBox_CurrBank";
- this.textBox_CurrBank.Size = new System.Drawing.Size(63, 23);
- this.textBox_CurrBank.TabIndex = 170;
- //
- // textBox_DLI_Level_Low_Threshold
- //
- this.textBox_DLI_Level_Low_Threshold.Location = new System.Drawing.Point(403, 303);
- this.textBox_DLI_Level_Low_Threshold.Name = "textBox_DLI_Level_Low_Threshold";
- this.textBox_DLI_Level_Low_Threshold.Size = new System.Drawing.Size(65, 23);
- this.textBox_DLI_Level_Low_Threshold.TabIndex = 169;
- //
- // textBox_DLI_Level_High_Threshold
- //
- this.textBox_DLI_Level_High_Threshold.Location = new System.Drawing.Point(323, 304);
- this.textBox_DLI_Level_High_Threshold.Name = "textBox_DLI_Level_High_Threshold";
- this.textBox_DLI_Level_High_Threshold.Size = new System.Drawing.Size(65, 23);
- this.textBox_DLI_Level_High_Threshold.TabIndex = 168;
- //
- // textBox_ULO_Level_High_Threshold
- //
- this.textBox_ULO_Level_High_Threshold.Location = new System.Drawing.Point(824, 300);
- this.textBox_ULO_Level_High_Threshold.Name = "textBox_ULO_Level_High_Threshold";
- this.textBox_ULO_Level_High_Threshold.Size = new System.Drawing.Size(65, 23);
- this.textBox_ULO_Level_High_Threshold.TabIndex = 167;
- //
- // label4
- //
- this.label4.AutoSize = true;
- this.label4.Location = new System.Drawing.Point(919, 76);
- this.label4.Name = "label4";
- this.label4.Size = new System.Drawing.Size(59, 15);
- this.label4.TabIndex = 164;
- this.label4.Text = "제조 일자";
- //
- // textBox_MunufactureDate
- //
- this.textBox_MunufactureDate.Location = new System.Drawing.Point(1005, 73);
- this.textBox_MunufactureDate.Name = "textBox_MunufactureDate";
- this.textBox_MunufactureDate.Size = new System.Drawing.Size(115, 23);
- this.textBox_MunufactureDate.TabIndex = 163;
- //
- // label5
- //
- this.label5.AutoSize = true;
- this.label5.Location = new System.Drawing.Point(916, 135);
- this.label5.Name = "label5";
- this.label5.Size = new System.Drawing.Size(73, 15);
- this.label5.TabIndex = 162;
- this.label5.Text = "PCB Version";
- //
- // label_SerialNumber
- //
- this.label_SerialNumber.AutoSize = true;
- this.label_SerialNumber.Location = new System.Drawing.Point(912, 106);
- this.label_SerialNumber.Name = "label_SerialNumber";
- this.label_SerialNumber.Size = new System.Drawing.Size(71, 15);
- this.label_SerialNumber.TabIndex = 161;
- this.label_SerialNumber.Text = "시리얼 넘버";
- //
- // textBox_PcbVersion
- //
- this.textBox_PcbVersion.Location = new System.Drawing.Point(1005, 132);
- this.textBox_PcbVersion.Name = "textBox_PcbVersion";
- this.textBox_PcbVersion.Size = new System.Drawing.Size(115, 23);
- this.textBox_PcbVersion.TabIndex = 159;
- //
- // textBox_SerialNumber
- //
- this.textBox_SerialNumber.Location = new System.Drawing.Point(1005, 103);
- this.textBox_SerialNumber.Name = "textBox_SerialNumber";
- this.textBox_SerialNumber.Size = new System.Drawing.Size(115, 23);
- this.textBox_SerialNumber.TabIndex = 158;
- //
- // label_CompileDate
- //
- this.label_CompileDate.AutoSize = true;
- this.label_CompileDate.Location = new System.Drawing.Point(156, 864);
- this.label_CompileDate.Name = "label_CompileDate";
- this.label_CompileDate.Size = new System.Drawing.Size(39, 15);
- this.label_CompileDate.TabIndex = 157;
- this.label_CompileDate.Text = "label3";
- //
- // label7
- //
- this.label7.AutoSize = true;
- this.label7.Font = new System.Drawing.Font("맑은 고딕", 9F);
- this.label7.Location = new System.Drawing.Point(642, 774);
- this.label7.Name = "label7";
- this.label7.Size = new System.Drawing.Size(52, 15);
- this.label7.TabIndex = 156;
- this.label7.Text = "Self Test";
- //
- // button_SelfTest2
- //
- this.button_SelfTest2.Location = new System.Drawing.Point(825, 769);
- this.button_SelfTest2.Name = "button_SelfTest2";
- this.button_SelfTest2.Size = new System.Drawing.Size(75, 23);
- this.button_SelfTest2.TabIndex = 155;
- this.button_SelfTest2.Text = "OFF";
- this.button_SelfTest2.UseVisualStyleBackColor = true;
- this.button_SelfTest2.Click += new System.EventHandler(this.button_PATH_Ctrl_Click);
- //
- // button_SelfTest4
- //
- this.button_SelfTest4.Location = new System.Drawing.Point(1030, 769);
- this.button_SelfTest4.Name = "button_SelfTest4";
- this.button_SelfTest4.Size = new System.Drawing.Size(75, 23);
- this.button_SelfTest4.TabIndex = 155;
- this.button_SelfTest4.Text = "OFF";
- this.button_SelfTest4.UseVisualStyleBackColor = true;
- this.button_SelfTest4.Click += new System.EventHandler(this.button_PATH_Ctrl_Click);
- //
- // button_SelfTest1
- //
- this.button_SelfTest1.Location = new System.Drawing.Point(718, 769);
- this.button_SelfTest1.Name = "button_SelfTest1";
- this.button_SelfTest1.Size = new System.Drawing.Size(75, 23);
- this.button_SelfTest1.TabIndex = 155;
- this.button_SelfTest1.Text = "OFF";
- this.button_SelfTest1.UseVisualStyleBackColor = true;
- this.button_SelfTest1.Click += new System.EventHandler(this.button_PATH_Ctrl_Click);
- //
- // button_SelfTest3
- //
- this.button_SelfTest3.Location = new System.Drawing.Point(930, 769);
- this.button_SelfTest3.Name = "button_SelfTest3";
- this.button_SelfTest3.Size = new System.Drawing.Size(75, 23);
- this.button_SelfTest3.TabIndex = 155;
- this.button_SelfTest3.Text = "OFF";
- this.button_SelfTest3.UseVisualStyleBackColor = true;
- this.button_SelfTest3.Click += new System.EventHandler(this.button_PATH_Ctrl_Click);
- //
- // panel_Serial
- //
- this.panel_Serial.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;
- this.panel_Serial.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
- this.panel_Serial.Controls.Add(this.numericUpDown_Version);
- this.panel_Serial.Controls.Add(this.label_BankSel);
- this.panel_Serial.Controls.Add(this.label1);
- this.panel_Serial.Controls.Add(this.button_FirmwareUpdate);
- this.panel_Serial.Controls.Add(this.comboBox_BankSel);
- this.panel_Serial.Controls.Add(this.cmCom_Port);
- this.panel_Serial.Controls.Add(this.button1);
- this.panel_Serial.Controls.Add(this.button_terminal);
- this.panel_Serial.Controls.Add(this.button_FactorySet);
- this.panel_Serial.Controls.Add(this.comboBox_baudrate);
- this.panel_Serial.Controls.Add(this.cmBaudRate);
- this.panel_Serial.Controls.Add(this.button_PortOpen);
- this.panel_Serial.Controls.Add(this.comboBox_Port);
- this.panel_Serial.Controls.Add(this.button_Test);
- this.panel_Serial.Controls.Add(this.checkBox_Fix);
- this.panel_Serial.Controls.Add(this.button_MBICMake);
- this.panel_Serial.Controls.Add(this.pictureBox_R_TX);
- this.panel_Serial.Controls.Add(this.pictureBox_G_TX);
- this.panel_Serial.Controls.Add(this.pictureBox_R_RX);
- this.panel_Serial.Controls.Add(this.pictureBox_G_RX);
- this.panel_Serial.Location = new System.Drawing.Point(0, 165);
- this.panel_Serial.Name = "panel_Serial";
- this.panel_Serial.Size = new System.Drawing.Size(124, 729);
- this.panel_Serial.TabIndex = 154;
- this.panel_Serial.Paint += new System.Windows.Forms.PaintEventHandler(this.panel_Serial_Paint);
- //
- // numericUpDown_Version
- //
- this.numericUpDown_Version.Location = new System.Drawing.Point(25, 539);
- this.numericUpDown_Version.Name = "numericUpDown_Version";
- this.numericUpDown_Version.Size = new System.Drawing.Size(69, 23);
- this.numericUpDown_Version.TabIndex = 151;
- //
- // label1
- //
- this.label1.AutoSize = true;
- this.label1.Font = new System.Drawing.Font("맑은 고딕", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(129)));
- this.label1.Location = new System.Drawing.Point(61, 239);
- this.label1.Name = "label1";
- this.label1.Size = new System.Drawing.Size(21, 15);
- this.label1.TabIndex = 150;
- this.label1.Text = "Rx";
- //
- // pictureBox_R_TX
- //
- this.pictureBox_R_TX.Image = global::Jdas_Mbic.Properties.Resources.red;
- this.pictureBox_R_TX.Location = new System.Drawing.Point(19, 263);
- this.pictureBox_R_TX.Name = "pictureBox_R_TX";
- this.pictureBox_R_TX.Size = new System.Drawing.Size(29, 23);
- this.pictureBox_R_TX.TabIndex = 7;
- this.pictureBox_R_TX.TabStop = false;
- //
- // pictureBox_G_TX
- //
- this.pictureBox_G_TX.Image = global::Jdas_Mbic.Properties.Resources.green;
- this.pictureBox_G_TX.Location = new System.Drawing.Point(19, 263);
- this.pictureBox_G_TX.Name = "pictureBox_G_TX";
- this.pictureBox_G_TX.Size = new System.Drawing.Size(29, 23);
- this.pictureBox_G_TX.TabIndex = 6;
- this.pictureBox_G_TX.TabStop = false;
- //
- // pictureBox_R_RX
- //
- this.pictureBox_R_RX.Image = global::Jdas_Mbic.Properties.Resources.red;
- this.pictureBox_R_RX.Location = new System.Drawing.Point(57, 263);
- this.pictureBox_R_RX.Name = "pictureBox_R_RX";
- this.pictureBox_R_RX.Size = new System.Drawing.Size(29, 23);
- this.pictureBox_R_RX.TabIndex = 7;
- this.pictureBox_R_RX.TabStop = false;
- //
- // pictureBox_G_RX
- //
- this.pictureBox_G_RX.Image = global::Jdas_Mbic.Properties.Resources.green;
- this.pictureBox_G_RX.Location = new System.Drawing.Point(57, 263);
- this.pictureBox_G_RX.Name = "pictureBox_G_RX";
- this.pictureBox_G_RX.Size = new System.Drawing.Size(29, 23);
- this.pictureBox_G_RX.TabIndex = 6;
- this.pictureBox_G_RX.TabStop = false;
- //
- // pictureBox1
- //
- this.pictureBox1.Image = global::Jdas_Mbic.Properties.Resources.bluecell_logo;
- this.pictureBox1.Location = new System.Drawing.Point(966, 840);
- this.pictureBox1.Name = "pictureBox1";
- this.pictureBox1.Size = new System.Drawing.Size(165, 50);
- this.pictureBox1.TabIndex = 0;
- this.pictureBox1.TabStop = false;
- //
- // label9
- //
- this.label9.AutoSize = true;
- this.label9.Font = new System.Drawing.Font("맑은 고딕", 9F);
- this.label9.Location = new System.Drawing.Point(128, 754);
- this.label9.Name = "label9";
- this.label9.Size = new System.Drawing.Size(71, 15);
- this.label9.TabIndex = 105;
- this.label9.Text = "Table Offset";
- this.label9.Visible = false;
- //
- // label_TableOffset
- //
- this.label_TableOffset.AutoSize = true;
- this.label_TableOffset.Font = new System.Drawing.Font("맑은 고딕", 9F);
- this.label_TableOffset.Location = new System.Drawing.Point(639, 746);
- this.label_TableOffset.Name = "label_TableOffset";
- this.label_TableOffset.Size = new System.Drawing.Size(71, 15);
- this.label_TableOffset.TabIndex = 105;
- this.label_TableOffset.Text = "Table Offset";
- this.label_TableOffset.Visible = false;
- //
- // label111
- //
- this.label111.AutoSize = true;
- this.label111.Font = new System.Drawing.Font("맑은 고딕", 9F);
- this.label111.Location = new System.Drawing.Point(635, 717);
- this.label111.Name = "label111";
- this.label111.Size = new System.Drawing.Size(66, 15);
- this.label111.TabIndex = 105;
- this.label111.Text = "FRBT Atten";
- //
- // label100
- //
- this.label100.AutoSize = true;
- this.label100.Location = new System.Drawing.Point(129, 714);
- this.label100.Name = "label100";
- this.label100.Size = new System.Drawing.Size(66, 15);
- this.label100.TabIndex = 105;
- this.label100.Text = "FRBT Atten";
- //
- // label110
- //
- this.label110.AutoSize = true;
- this.label110.Font = new System.Drawing.Font("맑은 고딕", 9F);
- this.label110.Location = new System.Drawing.Point(639, 683);
- this.label110.Name = "label110";
- this.label110.Size = new System.Drawing.Size(62, 15);
- this.label110.TabIndex = 105;
- this.label110.Text = "Shutdown";
- //
- // label99
- //
- this.label99.AutoSize = true;
- this.label99.Location = new System.Drawing.Point(133, 680);
- this.label99.Name = "label99";
- this.label99.Size = new System.Drawing.Size(62, 15);
- this.label99.TabIndex = 105;
- this.label99.Text = "Shutdown";
- //
- // label109
- //
- this.label109.AutoSize = true;
- this.label109.Font = new System.Drawing.Font("맑은 고딕", 9F);
- this.label109.Location = new System.Drawing.Point(648, 639);
- this.label109.Name = "label109";
- this.label109.Size = new System.Drawing.Size(29, 15);
- this.label109.TabIndex = 105;
- this.label109.Text = "ALC";
- //
- // label98
- //
- this.label98.AutoSize = true;
- this.label98.Location = new System.Drawing.Point(142, 636);
- this.label98.Name = "label98";
- this.label98.Size = new System.Drawing.Size(31, 15);
- this.label98.TabIndex = 105;
- this.label98.Text = "AGC";
- //
- // label108
- //
- this.label108.AutoSize = true;
- this.label108.Font = new System.Drawing.Font("맑은 고딕", 9F);
- this.label108.Location = new System.Drawing.Point(647, 598);
- this.label108.Name = "label108";
- this.label108.Size = new System.Drawing.Size(32, 15);
- this.label108.TabIndex = 105;
- this.label108.Text = "ADC";
- //
- // label101
- //
- this.label101.AutoSize = true;
- this.label101.Location = new System.Drawing.Point(141, 595);
- this.label101.Name = "label101";
- this.label101.Size = new System.Drawing.Size(32, 15);
- this.label101.TabIndex = 105;
- this.label101.Text = "ADC";
- //
- // label107
- //
- this.label107.AutoSize = true;
- this.label107.Font = new System.Drawing.Font("맑은 고딕", 9F);
- this.label107.Location = new System.Drawing.Point(645, 572);
- this.label107.Name = "label107";
- this.label107.Size = new System.Drawing.Size(34, 15);
- this.label107.TabIndex = 105;
- this.label107.Text = "Level";
- //
- // label97
- //
- this.label97.AutoSize = true;
- this.label97.Location = new System.Drawing.Point(140, 569);
- this.label97.Name = "label97";
- this.label97.Size = new System.Drawing.Size(34, 15);
- this.label97.TabIndex = 105;
- this.label97.Text = "Level";
- //
- // label106
- //
- this.label106.AutoSize = true;
- this.label106.Font = new System.Drawing.Font("맑은 고딕", 9F);
- this.label106.Location = new System.Drawing.Point(648, 544);
- this.label106.Name = "label106";
- this.label106.Size = new System.Drawing.Size(37, 15);
- this.label106.TabIndex = 105;
- this.label106.Text = "High ";
- //
- // label96
- //
- this.label96.AutoSize = true;
- this.label96.Location = new System.Drawing.Point(129, 541);
- this.label96.Name = "label96";
- this.label96.Size = new System.Drawing.Size(68, 15);
- this.label96.TabIndex = 105;
- this.label96.Text = "High / Low";
- //
- // label112
- //
- this.label112.AutoSize = true;
- this.label112.Font = new System.Drawing.Font("맑은 고딕", 9F);
- this.label112.Location = new System.Drawing.Point(640, 517);
- this.label112.Name = "label112";
- this.label112.Size = new System.Drawing.Size(62, 15);
- this.label112.TabIndex = 105;
- this.label112.Text = "ALC Atten";
- //
- // label105
- //
- this.label105.AutoSize = true;
- this.label105.Font = new System.Drawing.Font("맑은 고딕", 9F);
- this.label105.Location = new System.Drawing.Point(642, 495);
- this.label105.Name = "label105";
- this.label105.Size = new System.Drawing.Size(63, 15);
- this.label105.TabIndex = 105;
- this.label105.Text = "User Atten";
- //
- // label102
- //
- this.label102.AutoSize = true;
- this.label102.Location = new System.Drawing.Point(136, 492);
- this.label102.Name = "label102";
- this.label102.Size = new System.Drawing.Size(63, 15);
- this.label102.TabIndex = 105;
- this.label102.Text = "User Atten";
- //
- // label104
- //
- this.label104.AutoSize = true;
- this.label104.Font = new System.Drawing.Font("맑은 고딕", 9F);
- this.label104.Location = new System.Drawing.Point(641, 468);
- this.label104.Name = "label104";
- this.label104.Size = new System.Drawing.Size(64, 15);
- this.label104.TabIndex = 105;
- this.label104.Text = "Gain Atten";
- //
- // label95
- //
- this.label95.AutoSize = true;
- this.label95.Location = new System.Drawing.Point(135, 465);
- this.label95.Name = "label95";
- this.label95.Size = new System.Drawing.Size(64, 15);
- this.label95.TabIndex = 105;
- this.label95.Text = "Gain Atten";
- //
- // label103
- //
- this.label103.AutoSize = true;
- this.label103.Font = new System.Drawing.Font("맑은 고딕", 9F);
- this.label103.Location = new System.Drawing.Point(654, 442);
- this.label103.Name = "label103";
- this.label103.Size = new System.Drawing.Size(20, 15);
- this.label103.TabIndex = 105;
- this.label103.Text = "RF";
- //
- // label94
- //
- this.label94.AutoSize = true;
- this.label94.Location = new System.Drawing.Point(148, 439);
- this.label94.Name = "label94";
- this.label94.Size = new System.Drawing.Size(20, 15);
- this.label94.TabIndex = 105;
- this.label94.Text = "RF";
- //
- // button_DL_Shutdown
- //
- this.button_DL_Shutdown.Location = new System.Drawing.Point(403, 351);
- this.button_DL_Shutdown.Name = "button_DL_Shutdown";
- this.button_DL_Shutdown.Size = new System.Drawing.Size(65, 23);
- this.button_DL_Shutdown.TabIndex = 104;
- this.button_DL_Shutdown.Text = "OFF";
- this.button_DL_Shutdown.UseVisualStyleBackColor = true;
- this.button_DL_Shutdown.Click += new System.EventHandler(this.button_PATH_Ctrl_Click);
- //
- // button_UL_Shutdown
- //
- this.button_UL_Shutdown.Location = new System.Drawing.Point(904, 348);
- this.button_UL_Shutdown.Name = "button_UL_Shutdown";
- this.button_UL_Shutdown.Size = new System.Drawing.Size(65, 23);
- this.button_UL_Shutdown.TabIndex = 104;
- this.button_UL_Shutdown.Text = "OFF";
- this.button_UL_Shutdown.UseVisualStyleBackColor = true;
- this.button_UL_Shutdown.Click += new System.EventHandler(this.button_PATH_Ctrl_Click);
- //
- // button_AGC
- //
- this.button_AGC.Location = new System.Drawing.Point(403, 327);
- this.button_AGC.Name = "button_AGC";
- this.button_AGC.Size = new System.Drawing.Size(65, 23);
- this.button_AGC.TabIndex = 104;
- this.button_AGC.Text = "OFF";
- this.button_AGC.UseVisualStyleBackColor = true;
- this.button_AGC.Click += new System.EventHandler(this.button_PATH_Ctrl_Click);
- //
- // button_ALC
- //
- this.button_ALC.Location = new System.Drawing.Point(904, 324);
- this.button_ALC.Name = "button_ALC";
- this.button_ALC.Size = new System.Drawing.Size(65, 23);
- this.button_ALC.TabIndex = 104;
- this.button_ALC.Text = "OFF";
- this.button_ALC.UseVisualStyleBackColor = true;
- this.button_ALC.Click += new System.EventHandler(this.button_PATH_Ctrl_Click);
- //
- // textBox_DL_ShutdownLimit
- //
- this.textBox_DL_ShutdownLimit.Location = new System.Drawing.Point(323, 353);
- this.textBox_DL_ShutdownLimit.Name = "textBox_DL_ShutdownLimit";
- this.textBox_DL_ShutdownLimit.Size = new System.Drawing.Size(65, 23);
- this.textBox_DL_ShutdownLimit.TabIndex = 12;
- //
- // textBox_UL_ShutdownLimit
- //
- this.textBox_UL_ShutdownLimit.Location = new System.Drawing.Point(824, 350);
- this.textBox_UL_ShutdownLimit.Name = "textBox_UL_ShutdownLimit";
- this.textBox_UL_ShutdownLimit.Size = new System.Drawing.Size(65, 23);
- this.textBox_UL_ShutdownLimit.TabIndex = 12;
- //
- // textBox_DLI_AGC_Threshold
- //
- this.textBox_DLI_AGC_Threshold.Location = new System.Drawing.Point(323, 329);
- this.textBox_DLI_AGC_Threshold.Name = "textBox_DLI_AGC_Threshold";
- this.textBox_DLI_AGC_Threshold.Size = new System.Drawing.Size(65, 23);
- this.textBox_DLI_AGC_Threshold.TabIndex = 12;
- //
- // textBox_ULO_ALC_Threshold
- //
- this.textBox_ULO_ALC_Threshold.Location = new System.Drawing.Point(824, 326);
- this.textBox_ULO_ALC_Threshold.Name = "textBox_ULO_ALC_Threshold";
- this.textBox_ULO_ALC_Threshold.Size = new System.Drawing.Size(65, 23);
- this.textBox_ULO_ALC_Threshold.TabIndex = 12;
- //
- // textBox_DLI_FRBT_D_Day
- //
- this.textBox_DLI_FRBT_D_Day.Location = new System.Drawing.Point(780, 76);
- this.textBox_DLI_FRBT_D_Day.Name = "textBox_DLI_FRBT_D_Day";
- this.textBox_DLI_FRBT_D_Day.Size = new System.Drawing.Size(75, 23);
- this.textBox_DLI_FRBT_D_Day.TabIndex = 11;
- //
- // textBox_FRBT_Status
- //
- this.textBox_FRBT_Status.Location = new System.Drawing.Point(780, 104);
- this.textBox_FRBT_Status.Name = "textBox_FRBT_Status";
- this.textBox_FRBT_Status.Size = new System.Drawing.Size(75, 23);
- this.textBox_FRBT_Status.TabIndex = 11;
- //
- // textBox1_Carrier
- //
- this.textBox1_Carrier.Location = new System.Drawing.Point(490, 99);
- this.textBox1_Carrier.Name = "textBox1_Carrier";
- this.textBox1_Carrier.Size = new System.Drawing.Size(75, 23);
- this.textBox1_Carrier.TabIndex = 9;
- //
- // button_Carrier
- //
- this.button_Carrier.Location = new System.Drawing.Point(575, 96);
- this.button_Carrier.Name = "button_Carrier";
- this.button_Carrier.Size = new System.Drawing.Size(75, 23);
- this.button_Carrier.TabIndex = 8;
- this.button_Carrier.Text = "OFF";
- this.button_Carrier.UseVisualStyleBackColor = true;
- this.button_Carrier.Click += new System.EventHandler(this.button_PATH_Ctrl_Click);
- //
- // button_LedTest
- //
- this.button_LedTest.Location = new System.Drawing.Point(490, 73);
- this.button_LedTest.Name = "button_LedTest";
- this.button_LedTest.Size = new System.Drawing.Size(75, 23);
- this.button_LedTest.TabIndex = 7;
- this.button_LedTest.Text = "LED TEST";
- this.button_LedTest.UseVisualStyleBackColor = true;
- this.button_LedTest.Click += new System.EventHandler(this.button_LedTest_Click);
- //
- // textBox_CardType
- //
- this.textBox_CardType.Location = new System.Drawing.Point(105, 76);
- this.textBox_CardType.Name = "textBox_CardType";
- this.textBox_CardType.Size = new System.Drawing.Size(63, 23);
- this.textBox_CardType.TabIndex = 6;
- //
- // textBox_CpuVersion
- //
- this.textBox_CpuVersion.Location = new System.Drawing.Point(105, 100);
- this.textBox_CpuVersion.Name = "textBox_CpuVersion";
- this.textBox_CpuVersion.Size = new System.Drawing.Size(63, 23);
- this.textBox_CpuVersion.TabIndex = 6;
- //
- // panel17
- //
- this.panel17.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
- this.panel17.Controls.Add(this.numericUpDown_ShutdownUL4);
- this.panel17.Controls.Add(this.textBox8);
- this.panel17.Controls.Add(this.textBox_DET_UL4);
- this.panel17.Controls.Add(this.numericUpDown_ALC4);
- this.panel17.Controls.Add(this.numericUpDown_UL4_User);
- this.panel17.Controls.Add(this.textBox_DET_UL4_dBm);
- this.panel17.Controls.Add(this.numericUpDown_ATT_UL4);
- this.panel17.Controls.Add(this.pictureBox_UL4_Shutdown_Alarm_ON);
- this.panel17.Controls.Add(this.pictureBox_ULO_Path4_High_Alarm_ON);
- this.panel17.Controls.Add(this.button_UL4_PATH);
- this.panel17.Controls.Add(this.panel18);
- this.panel17.Controls.Add(this.pictureBox_ULO_Path4_High_Alarm_OFF);
- this.panel17.Controls.Add(this.pictureBox_ALC4_Alarm_OFF);
- this.panel17.Controls.Add(this.pictureBox_ALC4_Alarm_ON);
- this.panel17.Controls.Add(this.pictureBox_UL4_Shutdown_Alarm_OFF);
- this.panel17.Location = new System.Drawing.Point(1026, 403);
- this.panel17.Name = "panel17";
- this.panel17.Size = new System.Drawing.Size(83, 335);
- this.panel17.TabIndex = 5;
- //
- // textBox8
- //
- this.textBox8.Location = new System.Drawing.Point(3, 310);
- this.textBox8.Name = "textBox8";
- this.textBox8.Size = new System.Drawing.Size(75, 23);
- this.textBox8.TabIndex = 8;
- //
- // pictureBox_UL4_Shutdown_Alarm_ON
- //
- this.pictureBox_UL4_Shutdown_Alarm_ON.Image = global::Jdas_Mbic.Properties.Resources.red;
- this.pictureBox_UL4_Shutdown_Alarm_ON.Location = new System.Drawing.Point(7, 276);
- this.pictureBox_UL4_Shutdown_Alarm_ON.Name = "pictureBox_UL4_Shutdown_Alarm_ON";
- this.pictureBox_UL4_Shutdown_Alarm_ON.Size = new System.Drawing.Size(29, 23);
- this.pictureBox_UL4_Shutdown_Alarm_ON.TabIndex = 7;
- this.pictureBox_UL4_Shutdown_Alarm_ON.TabStop = false;
- //
- // pictureBox_ULO_Path4_High_Alarm_ON
- //
- this.pictureBox_ULO_Path4_High_Alarm_ON.Image = global::Jdas_Mbic.Properties.Resources.red;
- this.pictureBox_ULO_Path4_High_Alarm_ON.Location = new System.Drawing.Point(7, 137);
- this.pictureBox_ULO_Path4_High_Alarm_ON.Name = "pictureBox_ULO_Path4_High_Alarm_ON";
- this.pictureBox_ULO_Path4_High_Alarm_ON.Size = new System.Drawing.Size(29, 23);
- this.pictureBox_ULO_Path4_High_Alarm_ON.TabIndex = 7;
- this.pictureBox_ULO_Path4_High_Alarm_ON.TabStop = false;
- //
- // button_UL4_PATH
- //
- this.button_UL4_PATH.Location = new System.Drawing.Point(4, 31);
- this.button_UL4_PATH.Name = "button_UL4_PATH";
- this.button_UL4_PATH.Size = new System.Drawing.Size(75, 23);
- this.button_UL4_PATH.TabIndex = 7;
- this.button_UL4_PATH.Text = "OFF";
- this.button_UL4_PATH.UseVisualStyleBackColor = true;
- this.button_UL4_PATH.Click += new System.EventHandler(this.button_PATH_Ctrl_Click);
- //
- // panel18
- //
- this.panel18.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
- this.panel18.Controls.Add(this.label93);
- this.panel18.Location = new System.Drawing.Point(0, 0);
- this.panel18.Name = "panel18";
- this.panel18.Size = new System.Drawing.Size(83, 25);
- this.panel18.TabIndex = 6;
- //
- // label93
- //
- this.label93.AutoSize = true;
- this.label93.Font = new System.Drawing.Font("맑은 고딕", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129)));
- this.label93.Location = new System.Drawing.Point(20, 5);
- this.label93.Name = "label93";
- this.label93.Size = new System.Drawing.Size(42, 15);
- this.label93.TabIndex = 0;
- this.label93.Text = "Path 4";
- //
- // pictureBox_ULO_Path4_High_Alarm_OFF
- //
- this.pictureBox_ULO_Path4_High_Alarm_OFF.Image = global::Jdas_Mbic.Properties.Resources.green;
- this.pictureBox_ULO_Path4_High_Alarm_OFF.Location = new System.Drawing.Point(7, 137);
- this.pictureBox_ULO_Path4_High_Alarm_OFF.Name = "pictureBox_ULO_Path4_High_Alarm_OFF";
- this.pictureBox_ULO_Path4_High_Alarm_OFF.Size = new System.Drawing.Size(29, 23);
- this.pictureBox_ULO_Path4_High_Alarm_OFF.TabIndex = 6;
- this.pictureBox_ULO_Path4_High_Alarm_OFF.TabStop = false;
- //
- // pictureBox_ALC4_Alarm_OFF
- //
- this.pictureBox_ALC4_Alarm_OFF.Image = global::Jdas_Mbic.Properties.Resources.green;
- this.pictureBox_ALC4_Alarm_OFF.Location = new System.Drawing.Point(7, 232);
- this.pictureBox_ALC4_Alarm_OFF.Name = "pictureBox_ALC4_Alarm_OFF";
- this.pictureBox_ALC4_Alarm_OFF.Size = new System.Drawing.Size(29, 23);
- this.pictureBox_ALC4_Alarm_OFF.TabIndex = 6;
- this.pictureBox_ALC4_Alarm_OFF.TabStop = false;
- //
- // pictureBox_ALC4_Alarm_ON
- //
- this.pictureBox_ALC4_Alarm_ON.Image = global::Jdas_Mbic.Properties.Resources.red;
- this.pictureBox_ALC4_Alarm_ON.Location = new System.Drawing.Point(7, 232);
- this.pictureBox_ALC4_Alarm_ON.Name = "pictureBox_ALC4_Alarm_ON";
- this.pictureBox_ALC4_Alarm_ON.Size = new System.Drawing.Size(29, 23);
- this.pictureBox_ALC4_Alarm_ON.TabIndex = 7;
- this.pictureBox_ALC4_Alarm_ON.TabStop = false;
- //
- // pictureBox_UL4_Shutdown_Alarm_OFF
- //
- this.pictureBox_UL4_Shutdown_Alarm_OFF.Image = global::Jdas_Mbic.Properties.Resources.green;
- this.pictureBox_UL4_Shutdown_Alarm_OFF.Location = new System.Drawing.Point(7, 276);
- this.pictureBox_UL4_Shutdown_Alarm_OFF.Name = "pictureBox_UL4_Shutdown_Alarm_OFF";
- this.pictureBox_UL4_Shutdown_Alarm_OFF.Size = new System.Drawing.Size(29, 23);
- this.pictureBox_UL4_Shutdown_Alarm_OFF.TabIndex = 6;
- this.pictureBox_UL4_Shutdown_Alarm_OFF.TabStop = false;
- //
- // panel9
- //
- this.panel9.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
- this.panel9.Controls.Add(this.textBox4);
- this.panel9.Controls.Add(this.numericUpDown_ShutdownDL4);
- this.panel9.Controls.Add(this.numericUpDown_DL4_User);
- this.panel9.Controls.Add(this.numericUpDown_ATT_DL4);
- this.panel9.Controls.Add(this.pictureBox_AGC4_Alarm_ON);
- this.panel9.Controls.Add(this.pictureBox_DLI_Path4_High_Alarm_ON);
- this.panel9.Controls.Add(this.button_DL4_PATH);
- this.panel9.Controls.Add(this.textBox_DET_DL4);
- this.panel9.Controls.Add(this.textBox_DET_DL4_dBm);
- this.panel9.Controls.Add(this.panel10);
- this.panel9.Controls.Add(this.pictureBox_DLI_Path4_High_Alarm_OFF);
- this.panel9.Controls.Add(this.pictureBox_DLI_Path4_Low_Alarm_ON);
- this.panel9.Controls.Add(this.pictureBox_DLI_Path4_Low_Alarm_OFF);
- this.panel9.Controls.Add(this.pictureBox_AGC4_Alarm_OFF);
- this.panel9.Controls.Add(this.pictureBox_DL4_Shutdown_Alarm_OFF);
- this.panel9.Controls.Add(this.pictureBox_DL4_Shutdown_Alarm_ON);
- this.panel9.Location = new System.Drawing.Point(522, 403);
- this.panel9.Name = "panel9";
- this.panel9.Size = new System.Drawing.Size(83, 335);
- this.panel9.TabIndex = 5;
- //
- // textBox4
- //
- this.textBox4.Location = new System.Drawing.Point(3, 306);
- this.textBox4.Name = "textBox4";
- this.textBox4.Size = new System.Drawing.Size(75, 23);
- this.textBox4.TabIndex = 8;
- //
- // pictureBox_AGC4_Alarm_ON
- //
- this.pictureBox_AGC4_Alarm_ON.Image = global::Jdas_Mbic.Properties.Resources.red;
- this.pictureBox_AGC4_Alarm_ON.Location = new System.Drawing.Point(7, 228);
- this.pictureBox_AGC4_Alarm_ON.Name = "pictureBox_AGC4_Alarm_ON";
- this.pictureBox_AGC4_Alarm_ON.Size = new System.Drawing.Size(29, 23);
- this.pictureBox_AGC4_Alarm_ON.TabIndex = 7;
- this.pictureBox_AGC4_Alarm_ON.TabStop = false;
- //
- // pictureBox_DLI_Path4_High_Alarm_ON
- //
- this.pictureBox_DLI_Path4_High_Alarm_ON.Image = global::Jdas_Mbic.Properties.Resources.red;
- this.pictureBox_DLI_Path4_High_Alarm_ON.Location = new System.Drawing.Point(7, 133);
- this.pictureBox_DLI_Path4_High_Alarm_ON.Name = "pictureBox_DLI_Path4_High_Alarm_ON";
- this.pictureBox_DLI_Path4_High_Alarm_ON.Size = new System.Drawing.Size(29, 23);
- this.pictureBox_DLI_Path4_High_Alarm_ON.TabIndex = 7;
- this.pictureBox_DLI_Path4_High_Alarm_ON.TabStop = false;
- //
- // button_DL4_PATH
- //
- this.button_DL4_PATH.Location = new System.Drawing.Point(4, 31);
- this.button_DL4_PATH.Name = "button_DL4_PATH";
- this.button_DL4_PATH.Size = new System.Drawing.Size(75, 23);
- this.button_DL4_PATH.TabIndex = 7;
- this.button_DL4_PATH.Text = "OFF";
- this.button_DL4_PATH.UseVisualStyleBackColor = true;
- this.button_DL4_PATH.Click += new System.EventHandler(this.button_PATH_Ctrl_Click);
- //
- // panel10
- //
- this.panel10.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
- this.panel10.Controls.Add(this.label86);
- this.panel10.Location = new System.Drawing.Point(0, 0);
- this.panel10.Name = "panel10";
- this.panel10.Size = new System.Drawing.Size(83, 25);
- this.panel10.TabIndex = 6;
- //
- // label86
- //
- this.label86.AutoSize = true;
- this.label86.Font = new System.Drawing.Font("맑은 고딕", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129)));
- this.label86.Location = new System.Drawing.Point(20, 5);
- this.label86.Name = "label86";
- this.label86.Size = new System.Drawing.Size(42, 15);
- this.label86.TabIndex = 0;
- this.label86.Text = "Path 4";
- //
- // pictureBox_DLI_Path4_High_Alarm_OFF
- //
- this.pictureBox_DLI_Path4_High_Alarm_OFF.Image = global::Jdas_Mbic.Properties.Resources.green;
- this.pictureBox_DLI_Path4_High_Alarm_OFF.Location = new System.Drawing.Point(7, 133);
- this.pictureBox_DLI_Path4_High_Alarm_OFF.Name = "pictureBox_DLI_Path4_High_Alarm_OFF";
- this.pictureBox_DLI_Path4_High_Alarm_OFF.Size = new System.Drawing.Size(29, 23);
- this.pictureBox_DLI_Path4_High_Alarm_OFF.TabIndex = 6;
- this.pictureBox_DLI_Path4_High_Alarm_OFF.TabStop = false;
- //
- // pictureBox_DLI_Path4_Low_Alarm_ON
- //
- this.pictureBox_DLI_Path4_Low_Alarm_ON.Image = global::Jdas_Mbic.Properties.Resources.red;
- this.pictureBox_DLI_Path4_Low_Alarm_ON.Location = new System.Drawing.Point(45, 133);
- this.pictureBox_DLI_Path4_Low_Alarm_ON.Name = "pictureBox_DLI_Path4_Low_Alarm_ON";
- this.pictureBox_DLI_Path4_Low_Alarm_ON.Size = new System.Drawing.Size(29, 23);
- this.pictureBox_DLI_Path4_Low_Alarm_ON.TabIndex = 7;
- this.pictureBox_DLI_Path4_Low_Alarm_ON.TabStop = false;
- //
- // pictureBox_DLI_Path4_Low_Alarm_OFF
- //
- this.pictureBox_DLI_Path4_Low_Alarm_OFF.Image = global::Jdas_Mbic.Properties.Resources.green;
- this.pictureBox_DLI_Path4_Low_Alarm_OFF.Location = new System.Drawing.Point(45, 133);
- this.pictureBox_DLI_Path4_Low_Alarm_OFF.Name = "pictureBox_DLI_Path4_Low_Alarm_OFF";
- this.pictureBox_DLI_Path4_Low_Alarm_OFF.Size = new System.Drawing.Size(29, 23);
- this.pictureBox_DLI_Path4_Low_Alarm_OFF.TabIndex = 6;
- this.pictureBox_DLI_Path4_Low_Alarm_OFF.TabStop = false;
- //
- // pictureBox_AGC4_Alarm_OFF
- //
- this.pictureBox_AGC4_Alarm_OFF.Image = global::Jdas_Mbic.Properties.Resources.green;
- this.pictureBox_AGC4_Alarm_OFF.Location = new System.Drawing.Point(7, 228);
- this.pictureBox_AGC4_Alarm_OFF.Name = "pictureBox_AGC4_Alarm_OFF";
- this.pictureBox_AGC4_Alarm_OFF.Size = new System.Drawing.Size(29, 23);
- this.pictureBox_AGC4_Alarm_OFF.TabIndex = 6;
- this.pictureBox_AGC4_Alarm_OFF.TabStop = false;
- //
- // pictureBox_DL4_Shutdown_Alarm_OFF
- //
- this.pictureBox_DL4_Shutdown_Alarm_OFF.Image = global::Jdas_Mbic.Properties.Resources.green;
- this.pictureBox_DL4_Shutdown_Alarm_OFF.Location = new System.Drawing.Point(7, 272);
- this.pictureBox_DL4_Shutdown_Alarm_OFF.Name = "pictureBox_DL4_Shutdown_Alarm_OFF";
- this.pictureBox_DL4_Shutdown_Alarm_OFF.Size = new System.Drawing.Size(29, 23);
- this.pictureBox_DL4_Shutdown_Alarm_OFF.TabIndex = 6;
- this.pictureBox_DL4_Shutdown_Alarm_OFF.TabStop = false;
- //
- // pictureBox_DL4_Shutdown_Alarm_ON
- //
- this.pictureBox_DL4_Shutdown_Alarm_ON.Image = global::Jdas_Mbic.Properties.Resources.red;
- this.pictureBox_DL4_Shutdown_Alarm_ON.Location = new System.Drawing.Point(7, 272);
- this.pictureBox_DL4_Shutdown_Alarm_ON.Name = "pictureBox_DL4_Shutdown_Alarm_ON";
- this.pictureBox_DL4_Shutdown_Alarm_ON.Size = new System.Drawing.Size(29, 23);
- this.pictureBox_DL4_Shutdown_Alarm_ON.TabIndex = 7;
- this.pictureBox_DL4_Shutdown_Alarm_ON.TabStop = false;
- //
- // panel15
- //
- this.panel15.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
- this.panel15.Controls.Add(this.numericUpDown_ShutdownUL3);
- this.panel15.Controls.Add(this.textBox7);
- this.panel15.Controls.Add(this.numericUpDown_ALC3);
- this.panel15.Controls.Add(this.numericUpDown_UL3_User);
- this.panel15.Controls.Add(this.numericUpDown_ATT_UL3);
- this.panel15.Controls.Add(this.textBox_DET_UL3);
- this.panel15.Controls.Add(this.textBox_DET_UL3_dBm);
- this.panel15.Controls.Add(this.pictureBox_UL3_Shutdown_Alarm_ON);
- this.panel15.Controls.Add(this.pictureBox_ULO_Path3_High_Alarm_ON);
- this.panel15.Controls.Add(this.button_UL3_PATH);
- this.panel15.Controls.Add(this.panel16);
- this.panel15.Controls.Add(this.pictureBox_ULO_Path3_High_Alarm_OFF);
- this.panel15.Controls.Add(this.pictureBox_ALC3_Alarm_OFF);
- this.panel15.Controls.Add(this.pictureBox_ALC3_Alarm_ON);
- this.panel15.Controls.Add(this.pictureBox_UL3_Shutdown_Alarm_OFF);
- this.panel15.Location = new System.Drawing.Point(926, 403);
- this.panel15.Name = "panel15";
- this.panel15.Size = new System.Drawing.Size(83, 335);
- this.panel15.TabIndex = 5;
- //
- // textBox7
- //
- this.textBox7.Location = new System.Drawing.Point(3, 310);
- this.textBox7.Name = "textBox7";
- this.textBox7.Size = new System.Drawing.Size(75, 23);
- this.textBox7.TabIndex = 8;
- //
- // pictureBox_UL3_Shutdown_Alarm_ON
- //
- this.pictureBox_UL3_Shutdown_Alarm_ON.Image = global::Jdas_Mbic.Properties.Resources.red;
- this.pictureBox_UL3_Shutdown_Alarm_ON.Location = new System.Drawing.Point(7, 276);
- this.pictureBox_UL3_Shutdown_Alarm_ON.Name = "pictureBox_UL3_Shutdown_Alarm_ON";
- this.pictureBox_UL3_Shutdown_Alarm_ON.Size = new System.Drawing.Size(29, 23);
- this.pictureBox_UL3_Shutdown_Alarm_ON.TabIndex = 7;
- this.pictureBox_UL3_Shutdown_Alarm_ON.TabStop = false;
- //
- // pictureBox_ULO_Path3_High_Alarm_ON
- //
- this.pictureBox_ULO_Path3_High_Alarm_ON.Image = global::Jdas_Mbic.Properties.Resources.red;
- this.pictureBox_ULO_Path3_High_Alarm_ON.Location = new System.Drawing.Point(7, 137);
- this.pictureBox_ULO_Path3_High_Alarm_ON.Name = "pictureBox_ULO_Path3_High_Alarm_ON";
- this.pictureBox_ULO_Path3_High_Alarm_ON.Size = new System.Drawing.Size(29, 23);
- this.pictureBox_ULO_Path3_High_Alarm_ON.TabIndex = 7;
- this.pictureBox_ULO_Path3_High_Alarm_ON.TabStop = false;
- //
- // button_UL3_PATH
- //
- this.button_UL3_PATH.Location = new System.Drawing.Point(4, 31);
- this.button_UL3_PATH.Name = "button_UL3_PATH";
- this.button_UL3_PATH.Size = new System.Drawing.Size(75, 23);
- this.button_UL3_PATH.TabIndex = 7;
- this.button_UL3_PATH.Text = "OFF";
- this.button_UL3_PATH.UseVisualStyleBackColor = true;
- this.button_UL3_PATH.Click += new System.EventHandler(this.button_PATH_Ctrl_Click);
- //
- // panel16
- //
- this.panel16.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
- this.panel16.Controls.Add(this.label92);
- this.panel16.Location = new System.Drawing.Point(0, 0);
- this.panel16.Name = "panel16";
- this.panel16.Size = new System.Drawing.Size(83, 25);
- this.panel16.TabIndex = 6;
- //
- // label92
- //
- this.label92.AutoSize = true;
- this.label92.Font = new System.Drawing.Font("맑은 고딕", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129)));
- this.label92.Location = new System.Drawing.Point(20, 5);
- this.label92.Name = "label92";
- this.label92.Size = new System.Drawing.Size(42, 15);
- this.label92.TabIndex = 0;
- this.label92.Text = "Path 3";
- //
- // pictureBox_ULO_Path3_High_Alarm_OFF
- //
- this.pictureBox_ULO_Path3_High_Alarm_OFF.Image = global::Jdas_Mbic.Properties.Resources.green;
- this.pictureBox_ULO_Path3_High_Alarm_OFF.Location = new System.Drawing.Point(7, 137);
- this.pictureBox_ULO_Path3_High_Alarm_OFF.Name = "pictureBox_ULO_Path3_High_Alarm_OFF";
- this.pictureBox_ULO_Path3_High_Alarm_OFF.Size = new System.Drawing.Size(29, 23);
- this.pictureBox_ULO_Path3_High_Alarm_OFF.TabIndex = 6;
- this.pictureBox_ULO_Path3_High_Alarm_OFF.TabStop = false;
- //
- // pictureBox_ALC3_Alarm_OFF
- //
- this.pictureBox_ALC3_Alarm_OFF.Image = global::Jdas_Mbic.Properties.Resources.green;
- this.pictureBox_ALC3_Alarm_OFF.Location = new System.Drawing.Point(7, 232);
- this.pictureBox_ALC3_Alarm_OFF.Name = "pictureBox_ALC3_Alarm_OFF";
- this.pictureBox_ALC3_Alarm_OFF.Size = new System.Drawing.Size(29, 23);
- this.pictureBox_ALC3_Alarm_OFF.TabIndex = 6;
- this.pictureBox_ALC3_Alarm_OFF.TabStop = false;
- //
- // pictureBox_ALC3_Alarm_ON
- //
- this.pictureBox_ALC3_Alarm_ON.Image = global::Jdas_Mbic.Properties.Resources.red;
- this.pictureBox_ALC3_Alarm_ON.Location = new System.Drawing.Point(7, 232);
- this.pictureBox_ALC3_Alarm_ON.Name = "pictureBox_ALC3_Alarm_ON";
- this.pictureBox_ALC3_Alarm_ON.Size = new System.Drawing.Size(29, 23);
- this.pictureBox_ALC3_Alarm_ON.TabIndex = 7;
- this.pictureBox_ALC3_Alarm_ON.TabStop = false;
- //
- // pictureBox_UL3_Shutdown_Alarm_OFF
- //
- this.pictureBox_UL3_Shutdown_Alarm_OFF.Image = global::Jdas_Mbic.Properties.Resources.green;
- this.pictureBox_UL3_Shutdown_Alarm_OFF.Location = new System.Drawing.Point(7, 276);
- this.pictureBox_UL3_Shutdown_Alarm_OFF.Name = "pictureBox_UL3_Shutdown_Alarm_OFF";
- this.pictureBox_UL3_Shutdown_Alarm_OFF.Size = new System.Drawing.Size(29, 23);
- this.pictureBox_UL3_Shutdown_Alarm_OFF.TabIndex = 6;
- this.pictureBox_UL3_Shutdown_Alarm_OFF.TabStop = false;
- //
- // panel7
- //
- this.panel7.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
- this.panel7.Controls.Add(this.textBox3);
- this.panel7.Controls.Add(this.numericUpDown_ShutdownDL3);
- this.panel7.Controls.Add(this.numericUpDown_DL3_User);
- this.panel7.Controls.Add(this.numericUpDown_ATT_DL3);
- this.panel7.Controls.Add(this.pictureBox_AGC3_Alarm_ON);
- this.panel7.Controls.Add(this.pictureBox_DLI_Path3_High_Alarm_ON);
- this.panel7.Controls.Add(this.button_DL3_PATH);
- this.panel7.Controls.Add(this.textBox_DET_DL3_dBm);
- this.panel7.Controls.Add(this.panel8);
- this.panel7.Controls.Add(this.textBox_DET_DL3);
- this.panel7.Controls.Add(this.pictureBox_DLI_Path3_High_Alarm_OFF);
- this.panel7.Controls.Add(this.pictureBox_DLI_Path3_Low_Alarm_ON);
- this.panel7.Controls.Add(this.pictureBox_DLI_Path3_Low_Alarm_OFF);
- this.panel7.Controls.Add(this.pictureBox_AGC3_Alarm_OFF);
- this.panel7.Controls.Add(this.pictureBox_DL3_Shutdown_Alarm_OFF);
- this.panel7.Controls.Add(this.pictureBox_DL3_Shutdown_Alarm_ON);
- this.panel7.Location = new System.Drawing.Point(422, 403);
- this.panel7.Name = "panel7";
- this.panel7.Size = new System.Drawing.Size(83, 335);
- this.panel7.TabIndex = 5;
- //
- // textBox3
- //
- this.textBox3.Location = new System.Drawing.Point(3, 306);
- this.textBox3.Name = "textBox3";
- this.textBox3.Size = new System.Drawing.Size(75, 23);
- this.textBox3.TabIndex = 8;
- //
- // pictureBox_AGC3_Alarm_ON
- //
- this.pictureBox_AGC3_Alarm_ON.Image = global::Jdas_Mbic.Properties.Resources.red;
- this.pictureBox_AGC3_Alarm_ON.Location = new System.Drawing.Point(7, 228);
- this.pictureBox_AGC3_Alarm_ON.Name = "pictureBox_AGC3_Alarm_ON";
- this.pictureBox_AGC3_Alarm_ON.Size = new System.Drawing.Size(29, 23);
- this.pictureBox_AGC3_Alarm_ON.TabIndex = 7;
- this.pictureBox_AGC3_Alarm_ON.TabStop = false;
- //
- // pictureBox_DLI_Path3_High_Alarm_ON
- //
- this.pictureBox_DLI_Path3_High_Alarm_ON.Image = global::Jdas_Mbic.Properties.Resources.red;
- this.pictureBox_DLI_Path3_High_Alarm_ON.Location = new System.Drawing.Point(7, 133);
- this.pictureBox_DLI_Path3_High_Alarm_ON.Name = "pictureBox_DLI_Path3_High_Alarm_ON";
- this.pictureBox_DLI_Path3_High_Alarm_ON.Size = new System.Drawing.Size(29, 23);
- this.pictureBox_DLI_Path3_High_Alarm_ON.TabIndex = 7;
- this.pictureBox_DLI_Path3_High_Alarm_ON.TabStop = false;
- //
- // button_DL3_PATH
- //
- this.button_DL3_PATH.Location = new System.Drawing.Point(4, 31);
- this.button_DL3_PATH.Name = "button_DL3_PATH";
- this.button_DL3_PATH.Size = new System.Drawing.Size(75, 23);
- this.button_DL3_PATH.TabIndex = 7;
- this.button_DL3_PATH.Text = "OFF";
- this.button_DL3_PATH.UseVisualStyleBackColor = true;
- this.button_DL3_PATH.Click += new System.EventHandler(this.button_PATH_Ctrl_Click);
- //
- // panel8
- //
- this.panel8.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
- this.panel8.Controls.Add(this.label85);
- this.panel8.Location = new System.Drawing.Point(0, 0);
- this.panel8.Name = "panel8";
- this.panel8.Size = new System.Drawing.Size(83, 25);
- this.panel8.TabIndex = 6;
- //
- // label85
- //
- this.label85.AutoSize = true;
- this.label85.Font = new System.Drawing.Font("맑은 고딕", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129)));
- this.label85.Location = new System.Drawing.Point(20, 5);
- this.label85.Name = "label85";
- this.label85.Size = new System.Drawing.Size(42, 15);
- this.label85.TabIndex = 0;
- this.label85.Text = "Path 3";
- //
- // pictureBox_DLI_Path3_High_Alarm_OFF
- //
- this.pictureBox_DLI_Path3_High_Alarm_OFF.Image = global::Jdas_Mbic.Properties.Resources.green;
- this.pictureBox_DLI_Path3_High_Alarm_OFF.Location = new System.Drawing.Point(7, 133);
- this.pictureBox_DLI_Path3_High_Alarm_OFF.Name = "pictureBox_DLI_Path3_High_Alarm_OFF";
- this.pictureBox_DLI_Path3_High_Alarm_OFF.Size = new System.Drawing.Size(29, 23);
- this.pictureBox_DLI_Path3_High_Alarm_OFF.TabIndex = 6;
- this.pictureBox_DLI_Path3_High_Alarm_OFF.TabStop = false;
- //
- // pictureBox_DLI_Path3_Low_Alarm_ON
- //
- this.pictureBox_DLI_Path3_Low_Alarm_ON.Image = global::Jdas_Mbic.Properties.Resources.red;
- this.pictureBox_DLI_Path3_Low_Alarm_ON.Location = new System.Drawing.Point(45, 133);
- this.pictureBox_DLI_Path3_Low_Alarm_ON.Name = "pictureBox_DLI_Path3_Low_Alarm_ON";
- this.pictureBox_DLI_Path3_Low_Alarm_ON.Size = new System.Drawing.Size(29, 23);
- this.pictureBox_DLI_Path3_Low_Alarm_ON.TabIndex = 7;
- this.pictureBox_DLI_Path3_Low_Alarm_ON.TabStop = false;
- //
- // pictureBox_DLI_Path3_Low_Alarm_OFF
- //
- this.pictureBox_DLI_Path3_Low_Alarm_OFF.Image = global::Jdas_Mbic.Properties.Resources.green;
- this.pictureBox_DLI_Path3_Low_Alarm_OFF.Location = new System.Drawing.Point(45, 133);
- this.pictureBox_DLI_Path3_Low_Alarm_OFF.Name = "pictureBox_DLI_Path3_Low_Alarm_OFF";
- this.pictureBox_DLI_Path3_Low_Alarm_OFF.Size = new System.Drawing.Size(29, 23);
- this.pictureBox_DLI_Path3_Low_Alarm_OFF.TabIndex = 6;
- this.pictureBox_DLI_Path3_Low_Alarm_OFF.TabStop = false;
- //
- // pictureBox_AGC3_Alarm_OFF
- //
- this.pictureBox_AGC3_Alarm_OFF.Image = global::Jdas_Mbic.Properties.Resources.green;
- this.pictureBox_AGC3_Alarm_OFF.Location = new System.Drawing.Point(7, 228);
- this.pictureBox_AGC3_Alarm_OFF.Name = "pictureBox_AGC3_Alarm_OFF";
- this.pictureBox_AGC3_Alarm_OFF.Size = new System.Drawing.Size(29, 23);
- this.pictureBox_AGC3_Alarm_OFF.TabIndex = 6;
- this.pictureBox_AGC3_Alarm_OFF.TabStop = false;
- //
- // pictureBox_DL3_Shutdown_Alarm_OFF
- //
- this.pictureBox_DL3_Shutdown_Alarm_OFF.Image = global::Jdas_Mbic.Properties.Resources.green;
- this.pictureBox_DL3_Shutdown_Alarm_OFF.Location = new System.Drawing.Point(7, 272);
- this.pictureBox_DL3_Shutdown_Alarm_OFF.Name = "pictureBox_DL3_Shutdown_Alarm_OFF";
- this.pictureBox_DL3_Shutdown_Alarm_OFF.Size = new System.Drawing.Size(29, 23);
- this.pictureBox_DL3_Shutdown_Alarm_OFF.TabIndex = 6;
- this.pictureBox_DL3_Shutdown_Alarm_OFF.TabStop = false;
- //
- // pictureBox_DL3_Shutdown_Alarm_ON
- //
- this.pictureBox_DL3_Shutdown_Alarm_ON.Image = global::Jdas_Mbic.Properties.Resources.red;
- this.pictureBox_DL3_Shutdown_Alarm_ON.Location = new System.Drawing.Point(7, 272);
- this.pictureBox_DL3_Shutdown_Alarm_ON.Name = "pictureBox_DL3_Shutdown_Alarm_ON";
- this.pictureBox_DL3_Shutdown_Alarm_ON.Size = new System.Drawing.Size(29, 23);
- this.pictureBox_DL3_Shutdown_Alarm_ON.TabIndex = 7;
- this.pictureBox_DL3_Shutdown_Alarm_ON.TabStop = false;
- //
- // panel13
- //
- this.panel13.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
- this.panel13.Controls.Add(this.numericUpDown_ShutdownUL2);
- this.panel13.Controls.Add(this.textBox6);
- this.panel13.Controls.Add(this.numericUpDown_ALC2);
- this.panel13.Controls.Add(this.numericUpDown_UL2_User);
- this.panel13.Controls.Add(this.numericUpDown_ATT_UL2);
- this.panel13.Controls.Add(this.pictureBox_UL2_Shutdown_Alarm_ON);
- this.panel13.Controls.Add(this.textBox_DET_UL2);
- this.panel13.Controls.Add(this.textBox_DET_UL2_dBm);
- this.panel13.Controls.Add(this.pictureBox_ULO_Path2_High_Alarm_ON);
- this.panel13.Controls.Add(this.button_UL2_PATH);
- this.panel13.Controls.Add(this.panel14);
- this.panel13.Controls.Add(this.pictureBox_ULO_Path2_High_Alarm_OFF);
- this.panel13.Controls.Add(this.pictureBox_ALC2_Alarm_OFF);
- this.panel13.Controls.Add(this.pictureBox_ALC2_Alarm_ON);
- this.panel13.Controls.Add(this.pictureBox_UL2_Shutdown_Alarm_OFF);
- this.panel13.Location = new System.Drawing.Point(820, 403);
- this.panel13.Name = "panel13";
- this.panel13.Size = new System.Drawing.Size(83, 335);
- this.panel13.TabIndex = 5;
- //
- // textBox6
- //
- this.textBox6.Location = new System.Drawing.Point(3, 310);
- this.textBox6.Name = "textBox6";
- this.textBox6.Size = new System.Drawing.Size(75, 23);
- this.textBox6.TabIndex = 8;
- //
- // pictureBox_UL2_Shutdown_Alarm_ON
- //
- this.pictureBox_UL2_Shutdown_Alarm_ON.Image = global::Jdas_Mbic.Properties.Resources.red;
- this.pictureBox_UL2_Shutdown_Alarm_ON.Location = new System.Drawing.Point(7, 276);
- this.pictureBox_UL2_Shutdown_Alarm_ON.Name = "pictureBox_UL2_Shutdown_Alarm_ON";
- this.pictureBox_UL2_Shutdown_Alarm_ON.Size = new System.Drawing.Size(29, 23);
- this.pictureBox_UL2_Shutdown_Alarm_ON.TabIndex = 7;
- this.pictureBox_UL2_Shutdown_Alarm_ON.TabStop = false;
- //
- // pictureBox_ULO_Path2_High_Alarm_ON
- //
- this.pictureBox_ULO_Path2_High_Alarm_ON.Image = global::Jdas_Mbic.Properties.Resources.red;
- this.pictureBox_ULO_Path2_High_Alarm_ON.Location = new System.Drawing.Point(7, 137);
- this.pictureBox_ULO_Path2_High_Alarm_ON.Name = "pictureBox_ULO_Path2_High_Alarm_ON";
- this.pictureBox_ULO_Path2_High_Alarm_ON.Size = new System.Drawing.Size(29, 23);
- this.pictureBox_ULO_Path2_High_Alarm_ON.TabIndex = 7;
- this.pictureBox_ULO_Path2_High_Alarm_ON.TabStop = false;
- //
- // button_UL2_PATH
- //
- this.button_UL2_PATH.Location = new System.Drawing.Point(4, 31);
- this.button_UL2_PATH.Name = "button_UL2_PATH";
- this.button_UL2_PATH.Size = new System.Drawing.Size(75, 23);
- this.button_UL2_PATH.TabIndex = 7;
- this.button_UL2_PATH.Text = "OFF";
- this.button_UL2_PATH.UseVisualStyleBackColor = true;
- this.button_UL2_PATH.Click += new System.EventHandler(this.button_PATH_Ctrl_Click);
- //
- // panel14
- //
- this.panel14.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
- this.panel14.Controls.Add(this.label90);
- this.panel14.Location = new System.Drawing.Point(0, 0);
- this.panel14.Name = "panel14";
- this.panel14.Size = new System.Drawing.Size(83, 25);
- this.panel14.TabIndex = 6;
- //
- // label90
- //
- this.label90.AutoSize = true;
- this.label90.Font = new System.Drawing.Font("맑은 고딕", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129)));
- this.label90.Location = new System.Drawing.Point(20, 5);
- this.label90.Name = "label90";
- this.label90.Size = new System.Drawing.Size(42, 15);
- this.label90.TabIndex = 0;
- this.label90.Text = "Path 2";
- //
- // pictureBox_ULO_Path2_High_Alarm_OFF
- //
- this.pictureBox_ULO_Path2_High_Alarm_OFF.Image = global::Jdas_Mbic.Properties.Resources.green;
- this.pictureBox_ULO_Path2_High_Alarm_OFF.Location = new System.Drawing.Point(7, 137);
- this.pictureBox_ULO_Path2_High_Alarm_OFF.Name = "pictureBox_ULO_Path2_High_Alarm_OFF";
- this.pictureBox_ULO_Path2_High_Alarm_OFF.Size = new System.Drawing.Size(29, 23);
- this.pictureBox_ULO_Path2_High_Alarm_OFF.TabIndex = 6;
- this.pictureBox_ULO_Path2_High_Alarm_OFF.TabStop = false;
- //
- // pictureBox_ALC2_Alarm_OFF
- //
- this.pictureBox_ALC2_Alarm_OFF.Image = global::Jdas_Mbic.Properties.Resources.green;
- this.pictureBox_ALC2_Alarm_OFF.Location = new System.Drawing.Point(7, 232);
- this.pictureBox_ALC2_Alarm_OFF.Name = "pictureBox_ALC2_Alarm_OFF";
- this.pictureBox_ALC2_Alarm_OFF.Size = new System.Drawing.Size(29, 23);
- this.pictureBox_ALC2_Alarm_OFF.TabIndex = 6;
- this.pictureBox_ALC2_Alarm_OFF.TabStop = false;
- //
- // pictureBox_ALC2_Alarm_ON
- //
- this.pictureBox_ALC2_Alarm_ON.Image = global::Jdas_Mbic.Properties.Resources.red;
- this.pictureBox_ALC2_Alarm_ON.Location = new System.Drawing.Point(7, 232);
- this.pictureBox_ALC2_Alarm_ON.Name = "pictureBox_ALC2_Alarm_ON";
- this.pictureBox_ALC2_Alarm_ON.Size = new System.Drawing.Size(29, 23);
- this.pictureBox_ALC2_Alarm_ON.TabIndex = 7;
- this.pictureBox_ALC2_Alarm_ON.TabStop = false;
- //
- // pictureBox_UL2_Shutdown_Alarm_OFF
- //
- this.pictureBox_UL2_Shutdown_Alarm_OFF.Image = global::Jdas_Mbic.Properties.Resources.green;
- this.pictureBox_UL2_Shutdown_Alarm_OFF.Location = new System.Drawing.Point(7, 276);
- this.pictureBox_UL2_Shutdown_Alarm_OFF.Name = "pictureBox_UL2_Shutdown_Alarm_OFF";
- this.pictureBox_UL2_Shutdown_Alarm_OFF.Size = new System.Drawing.Size(29, 23);
- this.pictureBox_UL2_Shutdown_Alarm_OFF.TabIndex = 6;
- this.pictureBox_UL2_Shutdown_Alarm_OFF.TabStop = false;
- //
- // panel5
- //
- this.panel5.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
- this.panel5.Controls.Add(this.textBox2);
- this.panel5.Controls.Add(this.numericUpDown_ShutdownDL2);
- this.panel5.Controls.Add(this.numericUpDown_DL2_User);
- this.panel5.Controls.Add(this.numericUpDown_ATT_DL2);
- this.panel5.Controls.Add(this.pictureBox_AGC2_Alarm_ON);
- this.panel5.Controls.Add(this.pictureBox_DLI_Path2_High_Alarm_ON);
- this.panel5.Controls.Add(this.button_DL2_PATH);
- this.panel5.Controls.Add(this.panel6);
- this.panel5.Controls.Add(this.textBox_DET_DL2_dBm);
- this.panel5.Controls.Add(this.textBox_DET_DL2);
- this.panel5.Controls.Add(this.pictureBox_DLI_Path2_High_Alarm_OFF);
- this.panel5.Controls.Add(this.pictureBox_DLI_Path2_Low_Alarm_ON);
- this.panel5.Controls.Add(this.pictureBox_DLI_Path2_Low_Alarm_OFF);
- this.panel5.Controls.Add(this.pictureBox_AGC2_Alarm_OFF);
- this.panel5.Controls.Add(this.pictureBox_DL2_Shutdown_Alarm_OFF);
- this.panel5.Controls.Add(this.pictureBox_DL2_Shutdown_Alarm_ON);
- this.panel5.Location = new System.Drawing.Point(316, 403);
- this.panel5.Name = "panel5";
- this.panel5.Size = new System.Drawing.Size(83, 335);
- this.panel5.TabIndex = 5;
- //
- // textBox2
- //
- this.textBox2.Location = new System.Drawing.Point(3, 306);
- this.textBox2.Name = "textBox2";
- this.textBox2.Size = new System.Drawing.Size(75, 23);
- this.textBox2.TabIndex = 8;
- //
- // pictureBox_AGC2_Alarm_ON
- //
- this.pictureBox_AGC2_Alarm_ON.Image = global::Jdas_Mbic.Properties.Resources.red;
- this.pictureBox_AGC2_Alarm_ON.Location = new System.Drawing.Point(7, 228);
- this.pictureBox_AGC2_Alarm_ON.Name = "pictureBox_AGC2_Alarm_ON";
- this.pictureBox_AGC2_Alarm_ON.Size = new System.Drawing.Size(29, 23);
- this.pictureBox_AGC2_Alarm_ON.TabIndex = 7;
- this.pictureBox_AGC2_Alarm_ON.TabStop = false;
- //
- // pictureBox_DLI_Path2_High_Alarm_ON
- //
- this.pictureBox_DLI_Path2_High_Alarm_ON.Image = global::Jdas_Mbic.Properties.Resources.red;
- this.pictureBox_DLI_Path2_High_Alarm_ON.Location = new System.Drawing.Point(7, 133);
- this.pictureBox_DLI_Path2_High_Alarm_ON.Name = "pictureBox_DLI_Path2_High_Alarm_ON";
- this.pictureBox_DLI_Path2_High_Alarm_ON.Size = new System.Drawing.Size(29, 23);
- this.pictureBox_DLI_Path2_High_Alarm_ON.TabIndex = 7;
- this.pictureBox_DLI_Path2_High_Alarm_ON.TabStop = false;
- //
- // button_DL2_PATH
- //
- this.button_DL2_PATH.Location = new System.Drawing.Point(4, 31);
- this.button_DL2_PATH.Name = "button_DL2_PATH";
- this.button_DL2_PATH.Size = new System.Drawing.Size(75, 23);
- this.button_DL2_PATH.TabIndex = 7;
- this.button_DL2_PATH.Text = "OFF";
- this.button_DL2_PATH.UseVisualStyleBackColor = true;
- this.button_DL2_PATH.Click += new System.EventHandler(this.button_PATH_Ctrl_Click);
- //
- // panel6
- //
- this.panel6.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
- this.panel6.Controls.Add(this.label84);
- this.panel6.Location = new System.Drawing.Point(0, 0);
- this.panel6.Name = "panel6";
- this.panel6.Size = new System.Drawing.Size(83, 25);
- this.panel6.TabIndex = 6;
- //
- // label84
- //
- this.label84.AutoSize = true;
- this.label84.Font = new System.Drawing.Font("맑은 고딕", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129)));
- this.label84.Location = new System.Drawing.Point(20, 5);
- this.label84.Name = "label84";
- this.label84.Size = new System.Drawing.Size(42, 15);
- this.label84.TabIndex = 0;
- this.label84.Text = "Path 2";
- //
- // pictureBox_DLI_Path2_High_Alarm_OFF
- //
- this.pictureBox_DLI_Path2_High_Alarm_OFF.Image = global::Jdas_Mbic.Properties.Resources.green;
- this.pictureBox_DLI_Path2_High_Alarm_OFF.Location = new System.Drawing.Point(7, 133);
- this.pictureBox_DLI_Path2_High_Alarm_OFF.Name = "pictureBox_DLI_Path2_High_Alarm_OFF";
- this.pictureBox_DLI_Path2_High_Alarm_OFF.Size = new System.Drawing.Size(29, 23);
- this.pictureBox_DLI_Path2_High_Alarm_OFF.TabIndex = 6;
- this.pictureBox_DLI_Path2_High_Alarm_OFF.TabStop = false;
- //
- // pictureBox_DLI_Path2_Low_Alarm_ON
- //
- this.pictureBox_DLI_Path2_Low_Alarm_ON.Image = global::Jdas_Mbic.Properties.Resources.red;
- this.pictureBox_DLI_Path2_Low_Alarm_ON.Location = new System.Drawing.Point(45, 133);
- this.pictureBox_DLI_Path2_Low_Alarm_ON.Name = "pictureBox_DLI_Path2_Low_Alarm_ON";
- this.pictureBox_DLI_Path2_Low_Alarm_ON.Size = new System.Drawing.Size(29, 23);
- this.pictureBox_DLI_Path2_Low_Alarm_ON.TabIndex = 7;
- this.pictureBox_DLI_Path2_Low_Alarm_ON.TabStop = false;
- //
- // pictureBox_DLI_Path2_Low_Alarm_OFF
- //
- this.pictureBox_DLI_Path2_Low_Alarm_OFF.Image = global::Jdas_Mbic.Properties.Resources.green;
- this.pictureBox_DLI_Path2_Low_Alarm_OFF.Location = new System.Drawing.Point(45, 133);
- this.pictureBox_DLI_Path2_Low_Alarm_OFF.Name = "pictureBox_DLI_Path2_Low_Alarm_OFF";
- this.pictureBox_DLI_Path2_Low_Alarm_OFF.Size = new System.Drawing.Size(29, 23);
- this.pictureBox_DLI_Path2_Low_Alarm_OFF.TabIndex = 6;
- this.pictureBox_DLI_Path2_Low_Alarm_OFF.TabStop = false;
- //
- // pictureBox_AGC2_Alarm_OFF
- //
- this.pictureBox_AGC2_Alarm_OFF.Image = global::Jdas_Mbic.Properties.Resources.green;
- this.pictureBox_AGC2_Alarm_OFF.Location = new System.Drawing.Point(7, 228);
- this.pictureBox_AGC2_Alarm_OFF.Name = "pictureBox_AGC2_Alarm_OFF";
- this.pictureBox_AGC2_Alarm_OFF.Size = new System.Drawing.Size(29, 23);
- this.pictureBox_AGC2_Alarm_OFF.TabIndex = 6;
- this.pictureBox_AGC2_Alarm_OFF.TabStop = false;
- //
- // pictureBox_DL2_Shutdown_Alarm_OFF
- //
- this.pictureBox_DL2_Shutdown_Alarm_OFF.Image = global::Jdas_Mbic.Properties.Resources.green;
- this.pictureBox_DL2_Shutdown_Alarm_OFF.Location = new System.Drawing.Point(7, 272);
- this.pictureBox_DL2_Shutdown_Alarm_OFF.Name = "pictureBox_DL2_Shutdown_Alarm_OFF";
- this.pictureBox_DL2_Shutdown_Alarm_OFF.Size = new System.Drawing.Size(29, 23);
- this.pictureBox_DL2_Shutdown_Alarm_OFF.TabIndex = 6;
- this.pictureBox_DL2_Shutdown_Alarm_OFF.TabStop = false;
- //
- // pictureBox_DL2_Shutdown_Alarm_ON
- //
- this.pictureBox_DL2_Shutdown_Alarm_ON.Image = global::Jdas_Mbic.Properties.Resources.red;
- this.pictureBox_DL2_Shutdown_Alarm_ON.Location = new System.Drawing.Point(7, 272);
- this.pictureBox_DL2_Shutdown_Alarm_ON.Name = "pictureBox_DL2_Shutdown_Alarm_ON";
- this.pictureBox_DL2_Shutdown_Alarm_ON.Size = new System.Drawing.Size(29, 23);
- this.pictureBox_DL2_Shutdown_Alarm_ON.TabIndex = 7;
- this.pictureBox_DL2_Shutdown_Alarm_ON.TabStop = false;
- //
- // panel11
- //
- this.panel11.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
- this.panel11.Controls.Add(this.numericUpDown_ShutdownUL1);
- this.panel11.Controls.Add(this.textBox5);
- this.panel11.Controls.Add(this.numericUpDown_ALC1);
- this.panel11.Controls.Add(this.numericUpDown_UL1_User);
- this.panel11.Controls.Add(this.numericUpDown_ATT_UL1);
- this.panel11.Controls.Add(this.pictureBox_UL1_Shutdown_Alarm_ON);
- this.panel11.Controls.Add(this.textBox_DET_UL1);
- this.panel11.Controls.Add(this.textBox_DET_UL1_dBm);
- this.panel11.Controls.Add(this.pictureBox_ULO_Path1_High_Alarm_ON);
- this.panel11.Controls.Add(this.button_UL1_PATH);
- this.panel11.Controls.Add(this.panel12);
- this.panel11.Controls.Add(this.pictureBox_ULO_Path1_High_Alarm_OFF);
- this.panel11.Controls.Add(this.pictureBox_ALC1_Alarm_OFF);
- this.panel11.Controls.Add(this.pictureBox_ALC1_Alarm_ON);
- this.panel11.Controls.Add(this.pictureBox_UL1_Shutdown_Alarm_OFF);
- this.panel11.Location = new System.Drawing.Point(714, 403);
- this.panel11.Name = "panel11";
- this.panel11.Size = new System.Drawing.Size(83, 335);
- this.panel11.TabIndex = 5;
- //
- // textBox5
- //
- this.textBox5.Location = new System.Drawing.Point(3, 310);
- this.textBox5.Name = "textBox5";
- this.textBox5.Size = new System.Drawing.Size(75, 23);
- this.textBox5.TabIndex = 8;
- //
- // pictureBox_UL1_Shutdown_Alarm_ON
- //
- this.pictureBox_UL1_Shutdown_Alarm_ON.Image = global::Jdas_Mbic.Properties.Resources.red;
- this.pictureBox_UL1_Shutdown_Alarm_ON.Location = new System.Drawing.Point(7, 276);
- this.pictureBox_UL1_Shutdown_Alarm_ON.Name = "pictureBox_UL1_Shutdown_Alarm_ON";
- this.pictureBox_UL1_Shutdown_Alarm_ON.Size = new System.Drawing.Size(29, 23);
- this.pictureBox_UL1_Shutdown_Alarm_ON.TabIndex = 7;
- this.pictureBox_UL1_Shutdown_Alarm_ON.TabStop = false;
- //
- // pictureBox_ULO_Path1_High_Alarm_ON
- //
- this.pictureBox_ULO_Path1_High_Alarm_ON.Image = global::Jdas_Mbic.Properties.Resources.red;
- this.pictureBox_ULO_Path1_High_Alarm_ON.Location = new System.Drawing.Point(7, 137);
- this.pictureBox_ULO_Path1_High_Alarm_ON.Name = "pictureBox_ULO_Path1_High_Alarm_ON";
- this.pictureBox_ULO_Path1_High_Alarm_ON.Size = new System.Drawing.Size(29, 23);
- this.pictureBox_ULO_Path1_High_Alarm_ON.TabIndex = 7;
- this.pictureBox_ULO_Path1_High_Alarm_ON.TabStop = false;
- //
- // button_UL1_PATH
- //
- this.button_UL1_PATH.Location = new System.Drawing.Point(4, 31);
- this.button_UL1_PATH.Name = "button_UL1_PATH";
- this.button_UL1_PATH.Size = new System.Drawing.Size(75, 23);
- this.button_UL1_PATH.TabIndex = 7;
- this.button_UL1_PATH.Text = "OFF";
- this.button_UL1_PATH.UseVisualStyleBackColor = true;
- this.button_UL1_PATH.Click += new System.EventHandler(this.button_PATH_Ctrl_Click);
- //
- // panel12
- //
- this.panel12.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
- this.panel12.Controls.Add(this.label87);
- this.panel12.Location = new System.Drawing.Point(0, 0);
- this.panel12.Name = "panel12";
- this.panel12.Size = new System.Drawing.Size(83, 25);
- this.panel12.TabIndex = 6;
- //
- // label87
- //
- this.label87.AutoSize = true;
- this.label87.Font = new System.Drawing.Font("맑은 고딕", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129)));
- this.label87.Location = new System.Drawing.Point(20, 5);
- this.label87.Name = "label87";
- this.label87.Size = new System.Drawing.Size(42, 15);
- this.label87.TabIndex = 0;
- this.label87.Text = "Path 1";
- //
- // pictureBox_ULO_Path1_High_Alarm_OFF
- //
- this.pictureBox_ULO_Path1_High_Alarm_OFF.Image = global::Jdas_Mbic.Properties.Resources.green;
- this.pictureBox_ULO_Path1_High_Alarm_OFF.Location = new System.Drawing.Point(7, 137);
- this.pictureBox_ULO_Path1_High_Alarm_OFF.Name = "pictureBox_ULO_Path1_High_Alarm_OFF";
- this.pictureBox_ULO_Path1_High_Alarm_OFF.Size = new System.Drawing.Size(29, 23);
- this.pictureBox_ULO_Path1_High_Alarm_OFF.TabIndex = 6;
- this.pictureBox_ULO_Path1_High_Alarm_OFF.TabStop = false;
- //
- // pictureBox_ALC1_Alarm_OFF
- //
- this.pictureBox_ALC1_Alarm_OFF.Image = global::Jdas_Mbic.Properties.Resources.green;
- this.pictureBox_ALC1_Alarm_OFF.Location = new System.Drawing.Point(7, 232);
- this.pictureBox_ALC1_Alarm_OFF.Name = "pictureBox_ALC1_Alarm_OFF";
- this.pictureBox_ALC1_Alarm_OFF.Size = new System.Drawing.Size(29, 23);
- this.pictureBox_ALC1_Alarm_OFF.TabIndex = 6;
- this.pictureBox_ALC1_Alarm_OFF.TabStop = false;
- //
- // pictureBox_ALC1_Alarm_ON
- //
- this.pictureBox_ALC1_Alarm_ON.Image = global::Jdas_Mbic.Properties.Resources.red;
- this.pictureBox_ALC1_Alarm_ON.Location = new System.Drawing.Point(7, 232);
- this.pictureBox_ALC1_Alarm_ON.Name = "pictureBox_ALC1_Alarm_ON";
- this.pictureBox_ALC1_Alarm_ON.Size = new System.Drawing.Size(29, 23);
- this.pictureBox_ALC1_Alarm_ON.TabIndex = 7;
- this.pictureBox_ALC1_Alarm_ON.TabStop = false;
- //
- // pictureBox_UL1_Shutdown_Alarm_OFF
- //
- this.pictureBox_UL1_Shutdown_Alarm_OFF.Image = global::Jdas_Mbic.Properties.Resources.green;
- this.pictureBox_UL1_Shutdown_Alarm_OFF.Location = new System.Drawing.Point(7, 276);
- this.pictureBox_UL1_Shutdown_Alarm_OFF.Name = "pictureBox_UL1_Shutdown_Alarm_OFF";
- this.pictureBox_UL1_Shutdown_Alarm_OFF.Size = new System.Drawing.Size(29, 23);
- this.pictureBox_UL1_Shutdown_Alarm_OFF.TabIndex = 6;
- this.pictureBox_UL1_Shutdown_Alarm_OFF.TabStop = false;
- //
- // panel3
- //
- this.panel3.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
- this.panel3.Controls.Add(this.numericUpDown_ShutdownDL1);
- this.panel3.Controls.Add(this.textBox1);
- this.panel3.Controls.Add(this.numericUpDown_DL1_User);
- this.panel3.Controls.Add(this.numericUpDown_ATT_DL1);
- this.panel3.Controls.Add(this.pictureBox_AGC1_Alarm_ON);
- this.panel3.Controls.Add(this.pictureBox_DLI_Path1_High_Alarm_ON);
- this.panel3.Controls.Add(this.button_DL1_PATH);
- this.panel3.Controls.Add(this.panel4);
- this.panel3.Controls.Add(this.textBox_DET_DL1_dBm);
- this.panel3.Controls.Add(this.textBox_DET_DL1);
- this.panel3.Controls.Add(this.pictureBox_DLI_Path1_High_Alarm_OFF);
- this.panel3.Controls.Add(this.pictureBox_DLI_Path1_Low_Alarm_ON);
- this.panel3.Controls.Add(this.pictureBox_DLI_Path1_Low_Alarm_OFF);
- this.panel3.Controls.Add(this.pictureBox_AGC1_Alarm_OFF);
- this.panel3.Controls.Add(this.pictureBox_DL1_Shutdown_Alarm_OFF);
- this.panel3.Controls.Add(this.pictureBox_DL1_Shutdown_Alarm_ON);
- this.panel3.Location = new System.Drawing.Point(210, 403);
- this.panel3.Name = "panel3";
- this.panel3.Size = new System.Drawing.Size(83, 335);
- this.panel3.TabIndex = 5;
- //
- // textBox1
- //
- this.textBox1.Location = new System.Drawing.Point(3, 306);
- this.textBox1.Name = "textBox1";
- this.textBox1.Size = new System.Drawing.Size(75, 23);
- this.textBox1.TabIndex = 8;
- //
- // pictureBox_AGC1_Alarm_ON
- //
- this.pictureBox_AGC1_Alarm_ON.Image = global::Jdas_Mbic.Properties.Resources.red;
- this.pictureBox_AGC1_Alarm_ON.Location = new System.Drawing.Point(7, 228);
- this.pictureBox_AGC1_Alarm_ON.Name = "pictureBox_AGC1_Alarm_ON";
- this.pictureBox_AGC1_Alarm_ON.Size = new System.Drawing.Size(29, 23);
- this.pictureBox_AGC1_Alarm_ON.TabIndex = 7;
- this.pictureBox_AGC1_Alarm_ON.TabStop = false;
- //
- // pictureBox_DLI_Path1_High_Alarm_ON
- //
- this.pictureBox_DLI_Path1_High_Alarm_ON.Image = global::Jdas_Mbic.Properties.Resources.red;
- this.pictureBox_DLI_Path1_High_Alarm_ON.Location = new System.Drawing.Point(7, 133);
- this.pictureBox_DLI_Path1_High_Alarm_ON.Name = "pictureBox_DLI_Path1_High_Alarm_ON";
- this.pictureBox_DLI_Path1_High_Alarm_ON.Size = new System.Drawing.Size(29, 23);
- this.pictureBox_DLI_Path1_High_Alarm_ON.TabIndex = 7;
- this.pictureBox_DLI_Path1_High_Alarm_ON.TabStop = false;
- //
- // button_DL1_PATH
- //
- this.button_DL1_PATH.Location = new System.Drawing.Point(4, 31);
- this.button_DL1_PATH.Name = "button_DL1_PATH";
- this.button_DL1_PATH.Size = new System.Drawing.Size(75, 23);
- this.button_DL1_PATH.TabIndex = 7;
- this.button_DL1_PATH.Text = "OFF";
- this.button_DL1_PATH.UseVisualStyleBackColor = true;
- this.button_DL1_PATH.Click += new System.EventHandler(this.button_PATH_Ctrl_Click);
- //
- // panel4
- //
- this.panel4.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
- this.panel4.Controls.Add(this.label83);
- this.panel4.Location = new System.Drawing.Point(0, 0);
- this.panel4.Name = "panel4";
- this.panel4.Size = new System.Drawing.Size(83, 25);
- this.panel4.TabIndex = 6;
- //
- // label83
- //
- this.label83.AutoSize = true;
- this.label83.Font = new System.Drawing.Font("맑은 고딕", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129)));
- this.label83.Location = new System.Drawing.Point(20, 5);
- this.label83.Name = "label83";
- this.label83.Size = new System.Drawing.Size(42, 15);
- this.label83.TabIndex = 0;
- this.label83.Text = "Path 1";
- //
- // pictureBox_DLI_Path1_High_Alarm_OFF
- //
- this.pictureBox_DLI_Path1_High_Alarm_OFF.Image = global::Jdas_Mbic.Properties.Resources.green;
- this.pictureBox_DLI_Path1_High_Alarm_OFF.Location = new System.Drawing.Point(7, 133);
- this.pictureBox_DLI_Path1_High_Alarm_OFF.Name = "pictureBox_DLI_Path1_High_Alarm_OFF";
- this.pictureBox_DLI_Path1_High_Alarm_OFF.Size = new System.Drawing.Size(29, 23);
- this.pictureBox_DLI_Path1_High_Alarm_OFF.TabIndex = 6;
- this.pictureBox_DLI_Path1_High_Alarm_OFF.TabStop = false;
- //
- // pictureBox_DLI_Path1_Low_Alarm_ON
- //
- this.pictureBox_DLI_Path1_Low_Alarm_ON.Image = global::Jdas_Mbic.Properties.Resources.red;
- this.pictureBox_DLI_Path1_Low_Alarm_ON.Location = new System.Drawing.Point(45, 133);
- this.pictureBox_DLI_Path1_Low_Alarm_ON.Name = "pictureBox_DLI_Path1_Low_Alarm_ON";
- this.pictureBox_DLI_Path1_Low_Alarm_ON.Size = new System.Drawing.Size(29, 23);
- this.pictureBox_DLI_Path1_Low_Alarm_ON.TabIndex = 7;
- this.pictureBox_DLI_Path1_Low_Alarm_ON.TabStop = false;
- //
- // pictureBox_DLI_Path1_Low_Alarm_OFF
- //
- this.pictureBox_DLI_Path1_Low_Alarm_OFF.Image = global::Jdas_Mbic.Properties.Resources.green;
- this.pictureBox_DLI_Path1_Low_Alarm_OFF.Location = new System.Drawing.Point(45, 133);
- this.pictureBox_DLI_Path1_Low_Alarm_OFF.Name = "pictureBox_DLI_Path1_Low_Alarm_OFF";
- this.pictureBox_DLI_Path1_Low_Alarm_OFF.Size = new System.Drawing.Size(29, 23);
- this.pictureBox_DLI_Path1_Low_Alarm_OFF.TabIndex = 6;
- this.pictureBox_DLI_Path1_Low_Alarm_OFF.TabStop = false;
- //
- // pictureBox_AGC1_Alarm_OFF
- //
- this.pictureBox_AGC1_Alarm_OFF.Image = global::Jdas_Mbic.Properties.Resources.green;
- this.pictureBox_AGC1_Alarm_OFF.Location = new System.Drawing.Point(7, 228);
- this.pictureBox_AGC1_Alarm_OFF.Name = "pictureBox_AGC1_Alarm_OFF";
- this.pictureBox_AGC1_Alarm_OFF.Size = new System.Drawing.Size(29, 23);
- this.pictureBox_AGC1_Alarm_OFF.TabIndex = 6;
- this.pictureBox_AGC1_Alarm_OFF.TabStop = false;
- //
- // pictureBox_DL1_Shutdown_Alarm_OFF
- //
- this.pictureBox_DL1_Shutdown_Alarm_OFF.Image = global::Jdas_Mbic.Properties.Resources.green;
- this.pictureBox_DL1_Shutdown_Alarm_OFF.Location = new System.Drawing.Point(7, 272);
- this.pictureBox_DL1_Shutdown_Alarm_OFF.Name = "pictureBox_DL1_Shutdown_Alarm_OFF";
- this.pictureBox_DL1_Shutdown_Alarm_OFF.Size = new System.Drawing.Size(29, 23);
- this.pictureBox_DL1_Shutdown_Alarm_OFF.TabIndex = 6;
- this.pictureBox_DL1_Shutdown_Alarm_OFF.TabStop = false;
- //
- // pictureBox_DL1_Shutdown_Alarm_ON
- //
- this.pictureBox_DL1_Shutdown_Alarm_ON.Image = global::Jdas_Mbic.Properties.Resources.red;
- this.pictureBox_DL1_Shutdown_Alarm_ON.Location = new System.Drawing.Point(7, 272);
- this.pictureBox_DL1_Shutdown_Alarm_ON.Name = "pictureBox_DL1_Shutdown_Alarm_ON";
- this.pictureBox_DL1_Shutdown_Alarm_ON.Size = new System.Drawing.Size(29, 23);
- this.pictureBox_DL1_Shutdown_Alarm_ON.TabIndex = 7;
- this.pictureBox_DL1_Shutdown_Alarm_ON.TabStop = false;
- //
- // label82
- //
- this.label82.AutoSize = true;
- this.label82.Font = new System.Drawing.Font("맑은 고딕", 14F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(129)));
- this.label82.Location = new System.Drawing.Point(710, 263);
- this.label82.Name = "label82";
- this.label82.Size = new System.Drawing.Size(120, 25);
- this.label82.TabIndex = 3;
- this.label82.Text = "UL OUTPUT";
- //
- // label81
- //
- this.label81.AutoSize = true;
- this.label81.Font = new System.Drawing.Font("맑은 고딕", 9F);
- this.label81.Location = new System.Drawing.Point(713, 308);
- this.label81.Name = "label81";
- this.label81.Size = new System.Drawing.Size(68, 15);
- this.label81.TabIndex = 4;
- this.label81.Text = "High Limit";
- //
- // label78
- //
- this.label78.AutoSize = true;
- this.label78.Font = new System.Drawing.Font("맑은 고딕", 14F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(129)));
- this.label78.Location = new System.Drawing.Point(205, 263);
- this.label78.Name = "label78";
- this.label78.Size = new System.Drawing.Size(92, 25);
- this.label78.TabIndex = 3;
- this.label78.Text = "DL Input";
- //
- // label80
- //
- this.label80.AutoSize = true;
- this.label80.Font = new System.Drawing.Font("맑은 고딕", 9F);
- this.label80.Location = new System.Drawing.Point(712, 335);
- this.label80.Name = "label80";
- this.label80.Size = new System.Drawing.Size(60, 15);
- this.label80.TabIndex = 3;
- this.label80.Text = "ALC Limit";
- //
- // label77
- //
- this.label77.AutoSize = true;
- this.label77.Location = new System.Drawing.Point(208, 308);
- this.label77.Name = "label77";
- this.label77.Size = new System.Drawing.Size(99, 15);
- this.label77.TabIndex = 4;
- this.label77.Text = "High / Low Limit";
- //
- // label79
- //
- this.label79.AutoSize = true;
- this.label79.Font = new System.Drawing.Font("맑은 고딕", 9F);
- this.label79.Location = new System.Drawing.Point(712, 358);
- this.label79.Name = "label79";
- this.label79.Size = new System.Drawing.Size(95, 15);
- this.label79.TabIndex = 4;
- this.label79.Text = "ShutDown Limit";
- //
- // label75
- //
- this.label75.AutoSize = true;
- this.label75.Location = new System.Drawing.Point(207, 335);
- this.label75.Name = "label75";
- this.label75.Size = new System.Drawing.Size(62, 15);
- this.label75.TabIndex = 3;
- this.label75.Text = "AGC Limit";
- //
- // label76
- //
- this.label76.AutoSize = true;
- this.label76.Location = new System.Drawing.Point(207, 358);
- this.label76.Name = "label76";
- this.label76.Size = new System.Drawing.Size(95, 15);
- this.label76.TabIndex = 4;
- this.label76.Text = "ShutDown Limit";
- //
- // label74
- //
- this.label74.AutoSize = true;
- this.label74.Location = new System.Drawing.Point(318, 184);
- this.label74.Name = "label74";
- this.label74.Size = new System.Drawing.Size(98, 15);
- this.label74.TabIndex = 2;
- this.label74.Text = "Temp High Limit";
- //
- // label73
- //
- this.label73.AutoSize = true;
- this.label73.Location = new System.Drawing.Point(170, 184);
- this.label73.Name = "label73";
- this.label73.Size = new System.Drawing.Size(37, 15);
- this.label73.TabIndex = 2;
- this.label73.Text = "Temp";
- //
- // label67
- //
- this.label67.AutoSize = true;
- this.label67.Location = new System.Drawing.Point(17, 79);
- this.label67.Name = "label67";
- this.label67.Size = new System.Drawing.Size(61, 15);
- this.label67.TabIndex = 1;
- this.label67.Text = "Card Type";
- //
- // label72
- //
- this.label72.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
- this.label72.Location = new System.Drawing.Point(0, 165);
- this.label72.Name = "label72";
- this.label72.Size = new System.Drawing.Size(1150, 2);
- this.label72.TabIndex = 1;
- //
- // label71
- //
- this.label71.AutoSize = true;
- this.label71.Location = new System.Drawing.Point(697, 108);
- this.label71.Name = "label71";
- this.label71.Size = new System.Drawing.Size(70, 15);
- this.label71.TabIndex = 1;
- this.label71.Text = "FRBT Status";
- //
- // label70
- //
- this.label70.AutoSize = true;
- this.label70.Location = new System.Drawing.Point(697, 79);
- this.label70.Name = "label70";
- this.label70.Size = new System.Drawing.Size(72, 15);
- this.label70.TabIndex = 1;
- this.label70.Text = "FRBT D-Day";
- //
- // label69
- //
- this.label69.AutoSize = true;
- this.label69.Location = new System.Drawing.Point(425, 102);
- this.label69.Name = "label69";
- this.label69.Size = new System.Drawing.Size(42, 15);
- this.label69.TabIndex = 1;
- this.label69.Text = "Carrier";
- //
- // label68
- //
- this.label68.AutoSize = true;
- this.label68.Location = new System.Drawing.Point(425, 79);
- this.label68.Name = "label68";
- this.label68.Size = new System.Drawing.Size(53, 15);
- this.label68.TabIndex = 1;
- this.label68.Text = "LED Test";
- //
- // label65
- //
- this.label65.AutoSize = true;
- this.label65.Location = new System.Drawing.Point(17, 102);
- this.label65.Name = "label65";
- this.label65.Size = new System.Drawing.Size(74, 15);
- this.label65.TabIndex = 1;
- this.label65.Text = "CPU Version";
- //
- // panel_MainTitle
- //
- this.panel_MainTitle.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(65)))), ((int)(((byte)(97)))), ((int)(((byte)(146)))));
- this.panel_MainTitle.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
- this.panel_MainTitle.Controls.Add(this.button_Exit);
- this.panel_MainTitle.Controls.Add(this.label64);
- this.panel_MainTitle.Location = new System.Drawing.Point(0, 0);
- this.panel_MainTitle.Name = "panel_MainTitle";
- this.panel_MainTitle.Size = new System.Drawing.Size(1135, 60);
- this.panel_MainTitle.TabIndex = 0;
- this.panel_MainTitle.DragEnter += new System.Windows.Forms.DragEventHandler(this.panel_MainTitle_DragEnter);
- this.panel_MainTitle.Paint += new System.Windows.Forms.PaintEventHandler(this.panel_MainTitle_Paint);
- this.panel_MainTitle.MouseDown += new System.Windows.Forms.MouseEventHandler(this.panel_MainTitle_MouseDown);
- this.panel_MainTitle.MouseMove += new System.Windows.Forms.MouseEventHandler(this.panel_MainTitle_MouseMove);
- //
- // button_Exit
- //
- this.button_Exit.Location = new System.Drawing.Point(1055, 3);
- this.button_Exit.Name = "button_Exit";
- this.button_Exit.Size = new System.Drawing.Size(75, 23);
- this.button_Exit.TabIndex = 1;
- this.button_Exit.Text = "Exit";
- this.button_Exit.UseVisualStyleBackColor = true;
- this.button_Exit.Click += new System.EventHandler(this.button_Exit_Click);
- //
- // label64
- //
- this.label64.AutoSize = true;
- this.label64.BackColor = System.Drawing.Color.Transparent;
- this.label64.Font = new System.Drawing.Font("나눔고딕", 24F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(129)));
- this.label64.ForeColor = System.Drawing.Color.White;
- this.label64.Location = new System.Drawing.Point(17, 9);
- this.label64.Name = "label64";
- this.label64.Size = new System.Drawing.Size(95, 36);
- this.label64.TabIndex = 0;
- this.label64.Text = "MBIC";
- //
- // pictureBox_TempHigh_Alarm_ON
- //
- this.pictureBox_TempHigh_Alarm_ON.Image = global::Jdas_Mbic.Properties.Resources.red;
- this.pictureBox_TempHigh_Alarm_ON.Location = new System.Drawing.Point(135, 184);
- this.pictureBox_TempHigh_Alarm_ON.Name = "pictureBox_TempHigh_Alarm_ON";
- this.pictureBox_TempHigh_Alarm_ON.Size = new System.Drawing.Size(29, 23);
- this.pictureBox_TempHigh_Alarm_ON.TabIndex = 7;
- this.pictureBox_TempHigh_Alarm_ON.TabStop = false;
- //
- // pictureBox_TempHigh_Alarm_OFF
- //
- this.pictureBox_TempHigh_Alarm_OFF.Image = global::Jdas_Mbic.Properties.Resources.green;
- this.pictureBox_TempHigh_Alarm_OFF.Location = new System.Drawing.Point(135, 184);
- this.pictureBox_TempHigh_Alarm_OFF.Name = "pictureBox_TempHigh_Alarm_OFF";
- this.pictureBox_TempHigh_Alarm_OFF.Size = new System.Drawing.Size(29, 23);
- this.pictureBox_TempHigh_Alarm_OFF.TabIndex = 6;
- this.pictureBox_TempHigh_Alarm_OFF.TabStop = false;
- //
- // label2
- //
- this.label2.AutoSize = true;
- this.label2.Font = new System.Drawing.Font("맑은 고딕", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(129)));
- this.label2.Location = new System.Drawing.Point(31, 25);
- this.label2.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.label2.Name = "label2";
- this.label2.Size = new System.Drawing.Size(145, 15);
- this.label2.TabIndex = 100;
- this.label2.Text = "DL Shutdown Threshold";
- //
- // numericUpDown1
- //
- this.numericUpDown1.Location = new System.Drawing.Point(177, 54);
- this.numericUpDown1.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
- this.numericUpDown1.Maximum = new decimal(new int[] {
- 1,
- 0,
- 0,
- 0});
- this.numericUpDown1.Name = "numericUpDown1";
- this.numericUpDown1.Size = new System.Drawing.Size(65, 21);
- this.numericUpDown1.TabIndex = 145;
- //
- // label3
- //
- this.label3.AutoSize = true;
- this.label3.Location = new System.Drawing.Point(32, 58);
- this.label3.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.label3.Name = "label3";
- this.label3.Size = new System.Drawing.Size(43, 12);
- this.label3.TabIndex = 100;
- this.label3.Text = "Default";
- //
- // numericUpDown2
- //
- this.numericUpDown2.DecimalPlaces = 2;
- this.numericUpDown2.Location = new System.Drawing.Point(176, 16);
- this.numericUpDown2.Margin = new System.Windows.Forms.Padding(2, 3, 2, 3);
- this.numericUpDown2.Maximum = new decimal(new int[] {
- 7,
- 0,
- 0,
- 0});
- this.numericUpDown2.Minimum = new decimal(new int[] {
- 22,
- 0,
- 0,
- -2147483648});
- this.numericUpDown2.Name = "numericUpDown2";
- this.numericUpDown2.Size = new System.Drawing.Size(65, 21);
- this.numericUpDown2.TabIndex = 145;
- this.numericUpDown2.Value = new decimal(new int[] {
- 1,
- 0,
- 0,
- -2147483648});
- //
- // JdasMbic
- //
- this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 12F);
- this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
- this.AutoScroll = true;
- this.AutoSize = true;
- this.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
- this.ClientSize = new System.Drawing.Size(1137, 895);
- this.Controls.Add(this.panel1);
- this.DoubleBuffered = true;
- this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
- this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
- this.MaximizeBox = false;
- this.Name = "JdasMbic";
- this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
- this.Text = "Jdas Mbic";
- this.Load += new System.EventHandler(this.JdasMbic_Load);
- ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_ShutdownUL3)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_ShutdownDL3)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_ALC3)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_DL3_User)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_UL3_User)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_ATT_DL3)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_ATT_UL3)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_Temperature_Offset)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_Temp_Threshold)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_Temp_Threshold_Default)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_ShutdownUL4)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_ShutdownDL4)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_ALC4)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_DL4_User)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_UL4_User)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_ATT_DL4)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_ATT_UL4)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_ShutdownDL1)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_ShutdownUL1)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_ALC1)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_DL1_User)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_UL1_User)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_ATT_DL1)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_ATT_UL1)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_ShutdownUL2)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_ShutdownDL2)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_ALC2)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_DL2_User)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_UL2_User)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_ATT_DL2)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_ATT_UL2)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_MASK)).EndInit();
- this.panel1.ResumeLayout(false);
- this.panel1.PerformLayout();
- this.panel_Serial.ResumeLayout(false);
- this.panel_Serial.PerformLayout();
- ((System.ComponentModel.ISupportInitialize)(this.numericUpDown_Version)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.pictureBox_R_TX)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.pictureBox_G_TX)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.pictureBox_R_RX)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.pictureBox_G_RX)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
- this.panel17.ResumeLayout(false);
- this.panel17.PerformLayout();
- ((System.ComponentModel.ISupportInitialize)(this.pictureBox_UL4_Shutdown_Alarm_ON)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.pictureBox_ULO_Path4_High_Alarm_ON)).EndInit();
- this.panel18.ResumeLayout(false);
- this.panel18.PerformLayout();
- ((System.ComponentModel.ISupportInitialize)(this.pictureBox_ULO_Path4_High_Alarm_OFF)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.pictureBox_ALC4_Alarm_OFF)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.pictureBox_ALC4_Alarm_ON)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.pictureBox_UL4_Shutdown_Alarm_OFF)).EndInit();
- this.panel9.ResumeLayout(false);
- this.panel9.PerformLayout();
- ((System.ComponentModel.ISupportInitialize)(this.pictureBox_AGC4_Alarm_ON)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.pictureBox_DLI_Path4_High_Alarm_ON)).EndInit();
- this.panel10.ResumeLayout(false);
- this.panel10.PerformLayout();
- ((System.ComponentModel.ISupportInitialize)(this.pictureBox_DLI_Path4_High_Alarm_OFF)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.pictureBox_DLI_Path4_Low_Alarm_ON)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.pictureBox_DLI_Path4_Low_Alarm_OFF)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.pictureBox_AGC4_Alarm_OFF)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.pictureBox_DL4_Shutdown_Alarm_OFF)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.pictureBox_DL4_Shutdown_Alarm_ON)).EndInit();
- this.panel15.ResumeLayout(false);
- this.panel15.PerformLayout();
- ((System.ComponentModel.ISupportInitialize)(this.pictureBox_UL3_Shutdown_Alarm_ON)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.pictureBox_ULO_Path3_High_Alarm_ON)).EndInit();
- this.panel16.ResumeLayout(false);
- this.panel16.PerformLayout();
- ((System.ComponentModel.ISupportInitialize)(this.pictureBox_ULO_Path3_High_Alarm_OFF)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.pictureBox_ALC3_Alarm_OFF)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.pictureBox_ALC3_Alarm_ON)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.pictureBox_UL3_Shutdown_Alarm_OFF)).EndInit();
- this.panel7.ResumeLayout(false);
- this.panel7.PerformLayout();
- ((System.ComponentModel.ISupportInitialize)(this.pictureBox_AGC3_Alarm_ON)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.pictureBox_DLI_Path3_High_Alarm_ON)).EndInit();
- this.panel8.ResumeLayout(false);
- this.panel8.PerformLayout();
- ((System.ComponentModel.ISupportInitialize)(this.pictureBox_DLI_Path3_High_Alarm_OFF)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.pictureBox_DLI_Path3_Low_Alarm_ON)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.pictureBox_DLI_Path3_Low_Alarm_OFF)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.pictureBox_AGC3_Alarm_OFF)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.pictureBox_DL3_Shutdown_Alarm_OFF)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.pictureBox_DL3_Shutdown_Alarm_ON)).EndInit();
- this.panel13.ResumeLayout(false);
- this.panel13.PerformLayout();
- ((System.ComponentModel.ISupportInitialize)(this.pictureBox_UL2_Shutdown_Alarm_ON)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.pictureBox_ULO_Path2_High_Alarm_ON)).EndInit();
- this.panel14.ResumeLayout(false);
- this.panel14.PerformLayout();
- ((System.ComponentModel.ISupportInitialize)(this.pictureBox_ULO_Path2_High_Alarm_OFF)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.pictureBox_ALC2_Alarm_OFF)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.pictureBox_ALC2_Alarm_ON)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.pictureBox_UL2_Shutdown_Alarm_OFF)).EndInit();
- this.panel5.ResumeLayout(false);
- this.panel5.PerformLayout();
- ((System.ComponentModel.ISupportInitialize)(this.pictureBox_AGC2_Alarm_ON)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.pictureBox_DLI_Path2_High_Alarm_ON)).EndInit();
- this.panel6.ResumeLayout(false);
- this.panel6.PerformLayout();
- ((System.ComponentModel.ISupportInitialize)(this.pictureBox_DLI_Path2_High_Alarm_OFF)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.pictureBox_DLI_Path2_Low_Alarm_ON)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.pictureBox_DLI_Path2_Low_Alarm_OFF)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.pictureBox_AGC2_Alarm_OFF)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.pictureBox_DL2_Shutdown_Alarm_OFF)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.pictureBox_DL2_Shutdown_Alarm_ON)).EndInit();
- this.panel11.ResumeLayout(false);
- this.panel11.PerformLayout();
- ((System.ComponentModel.ISupportInitialize)(this.pictureBox_UL1_Shutdown_Alarm_ON)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.pictureBox_ULO_Path1_High_Alarm_ON)).EndInit();
- this.panel12.ResumeLayout(false);
- this.panel12.PerformLayout();
- ((System.ComponentModel.ISupportInitialize)(this.pictureBox_ULO_Path1_High_Alarm_OFF)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.pictureBox_ALC1_Alarm_OFF)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.pictureBox_ALC1_Alarm_ON)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.pictureBox_UL1_Shutdown_Alarm_OFF)).EndInit();
- this.panel3.ResumeLayout(false);
- this.panel3.PerformLayout();
- ((System.ComponentModel.ISupportInitialize)(this.pictureBox_AGC1_Alarm_ON)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.pictureBox_DLI_Path1_High_Alarm_ON)).EndInit();
- this.panel4.ResumeLayout(false);
- this.panel4.PerformLayout();
- ((System.ComponentModel.ISupportInitialize)(this.pictureBox_DLI_Path1_High_Alarm_OFF)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.pictureBox_DLI_Path1_Low_Alarm_ON)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.pictureBox_DLI_Path1_Low_Alarm_OFF)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.pictureBox_AGC1_Alarm_OFF)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.pictureBox_DL1_Shutdown_Alarm_OFF)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.pictureBox_DL1_Shutdown_Alarm_ON)).EndInit();
- this.panel_MainTitle.ResumeLayout(false);
- this.panel_MainTitle.PerformLayout();
- ((System.ComponentModel.ISupportInitialize)(this.pictureBox_TempHigh_Alarm_ON)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.pictureBox_TempHigh_Alarm_OFF)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.numericUpDown1)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.numericUpDown2)).EndInit();
- this.ResumeLayout(false);
- }
- #endregion
- private System.Windows.Forms.PictureBox pictureBox1;
- public System.Windows.Forms.NumericUpDown numericUpDown_ATT_UL3;
- public System.Windows.Forms.NumericUpDown numericUpDown_ATT_DL3;
- public System.Windows.Forms.NumericUpDown numericUpDown_ATT_UL4;
- public System.Windows.Forms.NumericUpDown numericUpDown_ATT_DL4;
- public System.Windows.Forms.NumericUpDown numericUpDown_ATT_UL1;
- public System.Windows.Forms.NumericUpDown numericUpDown_ATT_DL1;
- public System.Windows.Forms.NumericUpDown numericUpDown_ATT_UL2;
- private System.Windows.Forms.Label label13;
- public System.Windows.Forms.NumericUpDown numericUpDown_ATT_DL2;
- private System.Windows.Forms.Button button_FirmwareUpdate;
- private System.Windows.Forms.Button button_terminal;
- private System.Windows.Forms.Label cmCom_Port;
- private System.Windows.Forms.Button button_PortOpen;
- public System.Windows.Forms.ComboBox comboBox_Port;
- private System.Windows.Forms.Label cmBaudRate;
- private System.Windows.Forms.Button button_FRBT_TimeSetting;
- private System.Windows.Forms.SaveFileDialog saveFileDialog1;
- public System.Windows.Forms.Label label_Temp;
- private System.Windows.Forms.CheckBox checkBox_Fix;
- private System.Windows.Forms.TextBox textBox_DET_DL3_dBm;
- private System.Windows.Forms.TextBox textBox_DET_UL3_dBm;
- private System.Windows.Forms.TextBox textBox_DET_UL4_dBm;
- private System.Windows.Forms.TextBox textBox_DET_DL4_dBm;
- private System.Windows.Forms.TextBox textBox_DET_UL1_dBm;
- private System.Windows.Forms.TextBox textBox_DET_DL1_dBm;
- private System.Windows.Forms.TextBox textBox_DET_DL2_dBm;
- private System.Windows.Forms.TextBox textBox_DET_UL2_dBm;
- public System.Windows.Forms.ComboBox comboBox_baudrate;
- public System.Windows.Forms.NumericUpDown numericUpDown_DL3_User;
- public System.Windows.Forms.NumericUpDown numericUpDown_UL3_User;
- public System.Windows.Forms.NumericUpDown numericUpDown_DL4_User;
- public System.Windows.Forms.NumericUpDown numericUpDown_UL4_User;
- public System.Windows.Forms.NumericUpDown numericUpDown_DL1_User;
- public System.Windows.Forms.NumericUpDown numericUpDown_UL1_User;
- public System.Windows.Forms.NumericUpDown numericUpDown_DL2_User;
- public System.Windows.Forms.NumericUpDown numericUpDown_UL2_User;
- public System.Windows.Forms.NumericUpDown numericUpDown_Temp_Threshold_Default;
- public System.Windows.Forms.NumericUpDown numericUpDown_Temp_Threshold;
- private System.Windows.Forms.Label label66;
- public System.Windows.Forms.NumericUpDown numericUpDown_Temperature_Offset;
- public System.Windows.Forms.NumericUpDown numericUpDown_MASK;
- private System.Windows.Forms.Label label_MASK;
- private System.Windows.Forms.Button button_Test;
- private System.Windows.Forms.Button button_MBICMake;
- private System.Windows.Forms.Label label_CurrBank;
- private System.Windows.Forms.NumericUpDown numericUpDown_ALC3;
- private System.Windows.Forms.NumericUpDown numericUpDown_ALC4;
- private System.Windows.Forms.NumericUpDown numericUpDown_ALC1;
- private System.Windows.Forms.NumericUpDown numericUpDown_ALC2;
- private System.Windows.Forms.NumericUpDown numericUpDown_ShutdownUL1;
- private System.Windows.Forms.NumericUpDown numericUpDown_ShutdownUL4;
- private System.Windows.Forms.NumericUpDown numericUpDown_ShutdownUL3;
- private System.Windows.Forms.NumericUpDown numericUpDown_ShutdownUL2;
- private System.Windows.Forms.NumericUpDown numericUpDown_ShutdownDL4;
- private System.Windows.Forms.NumericUpDown numericUpDown_ShutdownDL3;
- private System.Windows.Forms.NumericUpDown numericUpDown_ShutdownDL2;
- private System.Windows.Forms.NumericUpDown numericUpDown_ShutdownDL1;
- private System.Windows.Forms.Label label_BankSel;
- private System.Windows.Forms.ComboBox comboBox_BankSel;
- private System.Windows.Forms.Button button1;
- private System.Windows.Forms.TextBox textBox_FRBT_TIME;
- private System.Windows.Forms.Button button_FactorySet;
- private System.Windows.Forms.Panel panel1;
- private System.Windows.Forms.PictureBox pictureBox_DLI_Path1_High_Alarm_OFF;
- private System.Windows.Forms.Panel panel3;
- private System.Windows.Forms.Button button_DL1_PATH;
- private System.Windows.Forms.Panel panel4;
- private System.Windows.Forms.Label label83;
- private System.Windows.Forms.Label label82;
- private System.Windows.Forms.Label label81;
- private System.Windows.Forms.Label label78;
- private System.Windows.Forms.Label label80;
- private System.Windows.Forms.Label label77;
- private System.Windows.Forms.Label label79;
- private System.Windows.Forms.Label label75;
- private System.Windows.Forms.Label label76;
- private System.Windows.Forms.Label label74;
- private System.Windows.Forms.Label label73;
- private System.Windows.Forms.Label label67;
- private System.Windows.Forms.Label label72;
- private System.Windows.Forms.Label label71;
- private System.Windows.Forms.Label label70;
- private System.Windows.Forms.Label label69;
- private System.Windows.Forms.Label label68;
- private System.Windows.Forms.Label label65;
- private System.Windows.Forms.Panel panel_MainTitle;
- private System.Windows.Forms.Label label64;
- private System.Windows.Forms.PictureBox pictureBox_DLI_Path1_High_Alarm_ON;
- private System.Windows.Forms.Label label111;
- private System.Windows.Forms.Label label100;
- private System.Windows.Forms.Label label110;
- private System.Windows.Forms.Label label99;
- private System.Windows.Forms.Label label109;
- private System.Windows.Forms.Label label98;
- private System.Windows.Forms.Label label108;
- private System.Windows.Forms.Label label101;
- private System.Windows.Forms.Label label107;
- private System.Windows.Forms.Label label97;
- private System.Windows.Forms.Label label106;
- private System.Windows.Forms.Label label96;
- private System.Windows.Forms.Label label112;
- private System.Windows.Forms.Label label105;
- private System.Windows.Forms.Label label102;
- private System.Windows.Forms.Label label104;
- private System.Windows.Forms.Label label95;
- private System.Windows.Forms.Label label103;
- private System.Windows.Forms.Label label94;
- private System.Windows.Forms.Button button_DL_Shutdown;
- private System.Windows.Forms.Button button_UL_Shutdown;
- private System.Windows.Forms.Button button_AGC;
- private System.Windows.Forms.Button button_ALC;
- private System.Windows.Forms.TextBox textBox_DL_ShutdownLimit;
- private System.Windows.Forms.TextBox textBox_UL_ShutdownLimit;
- private System.Windows.Forms.TextBox textBox_DLI_AGC_Threshold;
- private System.Windows.Forms.TextBox textBox_ULO_ALC_Threshold;
- private System.Windows.Forms.TextBox textBox_FRBT_Status;
- private System.Windows.Forms.NumericUpDown numericUpDown1;
- private System.Windows.Forms.TextBox textBox1_Carrier;
- private System.Windows.Forms.Button button_Carrier;
- private System.Windows.Forms.Button button_LedTest;
- private System.Windows.Forms.TextBox textBox_CardType;
- private System.Windows.Forms.TextBox textBox_CpuVersion;
- private System.Windows.Forms.Panel panel17;
- private System.Windows.Forms.TextBox textBox8;
- private System.Windows.Forms.PictureBox pictureBox_UL4_Shutdown_Alarm_OFF;
- private System.Windows.Forms.PictureBox pictureBox_UL4_Shutdown_Alarm_ON;
- private System.Windows.Forms.PictureBox pictureBox_ALC4_Alarm_OFF;
- private System.Windows.Forms.PictureBox pictureBox_ALC4_Alarm_ON;
- private System.Windows.Forms.PictureBox pictureBox_ULO_Path4_High_Alarm_OFF;
- private System.Windows.Forms.PictureBox pictureBox_ULO_Path4_High_Alarm_ON;
- private System.Windows.Forms.Button button_UL4_PATH;
- private System.Windows.Forms.Panel panel18;
- private System.Windows.Forms.Label label93;
- private System.Windows.Forms.Panel panel9;
- private System.Windows.Forms.TextBox textBox4;
- private System.Windows.Forms.PictureBox pictureBox_DLI_Path4_Low_Alarm_OFF;
- private System.Windows.Forms.PictureBox pictureBox_DLI_Path4_Low_Alarm_ON;
- private System.Windows.Forms.PictureBox pictureBox_DL4_Shutdown_Alarm_OFF;
- private System.Windows.Forms.PictureBox pictureBox_DL4_Shutdown_Alarm_ON;
- private System.Windows.Forms.PictureBox pictureBox_AGC4_Alarm_OFF;
- private System.Windows.Forms.PictureBox pictureBox_AGC4_Alarm_ON;
- private System.Windows.Forms.PictureBox pictureBox_DLI_Path4_High_Alarm_OFF;
- private System.Windows.Forms.PictureBox pictureBox_DLI_Path4_High_Alarm_ON;
- private System.Windows.Forms.Button button_DL4_PATH;
- private System.Windows.Forms.Panel panel10;
- private System.Windows.Forms.Label label86;
- private System.Windows.Forms.Panel panel15;
- private System.Windows.Forms.TextBox textBox7;
- private System.Windows.Forms.PictureBox pictureBox_UL3_Shutdown_Alarm_OFF;
- private System.Windows.Forms.PictureBox pictureBox_UL3_Shutdown_Alarm_ON;
- private System.Windows.Forms.PictureBox pictureBox_ALC3_Alarm_OFF;
- private System.Windows.Forms.PictureBox pictureBox_ALC3_Alarm_ON;
- private System.Windows.Forms.PictureBox pictureBox_ULO_Path3_High_Alarm_OFF;
- private System.Windows.Forms.PictureBox pictureBox_ULO_Path3_High_Alarm_ON;
- private System.Windows.Forms.Button button_UL3_PATH;
- private System.Windows.Forms.Panel panel16;
- private System.Windows.Forms.Label label92;
- private System.Windows.Forms.Panel panel7;
- private System.Windows.Forms.TextBox textBox3;
- private System.Windows.Forms.PictureBox pictureBox_DLI_Path3_Low_Alarm_OFF;
- private System.Windows.Forms.PictureBox pictureBox_DLI_Path3_Low_Alarm_ON;
- private System.Windows.Forms.PictureBox pictureBox_DL3_Shutdown_Alarm_OFF;
- private System.Windows.Forms.PictureBox pictureBox_DL3_Shutdown_Alarm_ON;
- private System.Windows.Forms.PictureBox pictureBox_AGC3_Alarm_OFF;
- private System.Windows.Forms.PictureBox pictureBox_AGC3_Alarm_ON;
- private System.Windows.Forms.PictureBox pictureBox_DLI_Path3_High_Alarm_OFF;
- private System.Windows.Forms.PictureBox pictureBox_DLI_Path3_High_Alarm_ON;
- private System.Windows.Forms.Button button_DL3_PATH;
- private System.Windows.Forms.Panel panel8;
- private System.Windows.Forms.Label label85;
- private System.Windows.Forms.Panel panel13;
- private System.Windows.Forms.TextBox textBox6;
- private System.Windows.Forms.PictureBox pictureBox_UL2_Shutdown_Alarm_OFF;
- private System.Windows.Forms.PictureBox pictureBox_UL2_Shutdown_Alarm_ON;
- private System.Windows.Forms.PictureBox pictureBox_ALC2_Alarm_OFF;
- private System.Windows.Forms.PictureBox pictureBox_ALC2_Alarm_ON;
- private System.Windows.Forms.PictureBox pictureBox_ULO_Path2_High_Alarm_OFF;
- private System.Windows.Forms.PictureBox pictureBox_ULO_Path2_High_Alarm_ON;
- private System.Windows.Forms.Button button_UL2_PATH;
- private System.Windows.Forms.Panel panel14;
- private System.Windows.Forms.Label label90;
- private System.Windows.Forms.Panel panel5;
- private System.Windows.Forms.TextBox textBox2;
- private System.Windows.Forms.PictureBox pictureBox_DLI_Path2_Low_Alarm_OFF;
- private System.Windows.Forms.PictureBox pictureBox_DLI_Path2_Low_Alarm_ON;
- private System.Windows.Forms.PictureBox pictureBox_DL2_Shutdown_Alarm_OFF;
- private System.Windows.Forms.PictureBox pictureBox_DL2_Shutdown_Alarm_ON;
- private System.Windows.Forms.PictureBox pictureBox_AGC2_Alarm_OFF;
- private System.Windows.Forms.PictureBox pictureBox_AGC2_Alarm_ON;
- private System.Windows.Forms.PictureBox pictureBox_DLI_Path2_High_Alarm_OFF;
- private System.Windows.Forms.PictureBox pictureBox_DLI_Path2_High_Alarm_ON;
- private System.Windows.Forms.Button button_DL2_PATH;
- private System.Windows.Forms.Panel panel6;
- private System.Windows.Forms.Label label84;
- private System.Windows.Forms.Panel panel11;
- private System.Windows.Forms.TextBox textBox5;
- private System.Windows.Forms.PictureBox pictureBox_UL1_Shutdown_Alarm_OFF;
- private System.Windows.Forms.PictureBox pictureBox_UL1_Shutdown_Alarm_ON;
- private System.Windows.Forms.PictureBox pictureBox_ALC1_Alarm_OFF;
- private System.Windows.Forms.PictureBox pictureBox_ALC1_Alarm_ON;
- private System.Windows.Forms.PictureBox pictureBox_ULO_Path1_High_Alarm_OFF;
- private System.Windows.Forms.PictureBox pictureBox_ULO_Path1_High_Alarm_ON;
- private System.Windows.Forms.Button button_UL1_PATH;
- private System.Windows.Forms.Panel panel12;
- private System.Windows.Forms.Label label87;
- private System.Windows.Forms.TextBox textBox1;
- private System.Windows.Forms.PictureBox pictureBox_DLI_Path1_Low_Alarm_OFF;
- private System.Windows.Forms.PictureBox pictureBox_DLI_Path1_Low_Alarm_ON;
- private System.Windows.Forms.PictureBox pictureBox_DL1_Shutdown_Alarm_ON;
- private System.Windows.Forms.PictureBox pictureBox_AGC1_Alarm_OFF;
- private System.Windows.Forms.PictureBox pictureBox_AGC1_Alarm_ON;
- private System.Windows.Forms.Panel panel_Serial;
- private System.Windows.Forms.Label label7;
- private System.Windows.Forms.Button button_SelfTest2;
- private System.Windows.Forms.Button button_SelfTest4;
- private System.Windows.Forms.Button button_SelfTest1;
- private System.Windows.Forms.Button button_SelfTest3;
- private System.Windows.Forms.PictureBox pictureBox_G_RX;
- private System.Windows.Forms.PictureBox pictureBox_R_RX;
- private System.Windows.Forms.PictureBox pictureBox_G_TX;
- private System.Windows.Forms.PictureBox pictureBox_R_TX;
- private System.Windows.Forms.Label label2;
- private System.Windows.Forms.Label label1;
- private System.Windows.Forms.PictureBox pictureBox_TempHigh_Alarm_OFF;
- private System.Windows.Forms.PictureBox pictureBox_TempHigh_Alarm_ON;
- private System.Windows.Forms.PictureBox pictureBox_DL1_Shutdown_Alarm_OFF;
- private System.Windows.Forms.Label label_CompileDate;
- private System.Windows.Forms.Label label3;
- private System.Windows.Forms.NumericUpDown numericUpDown2;
- public System.Windows.Forms.TextBox textBox_DET_DL3;
- public System.Windows.Forms.TextBox textBox_DET_UL3;
- public System.Windows.Forms.TextBox textBox_DET_DL4;
- public System.Windows.Forms.TextBox textBox_DET_UL4;
- public System.Windows.Forms.TextBox textBox_DET_DL1;
- public System.Windows.Forms.TextBox textBox_DET_UL1;
- public System.Windows.Forms.TextBox textBox_DET_DL2;
- public System.Windows.Forms.TextBox textBox_DET_UL2;
- private System.Windows.Forms.Button button_Exit;
- private System.Windows.Forms.TextBox textBox_DLI_FRBT_D_Day;
- private System.Windows.Forms.Label label5;
- private System.Windows.Forms.Label label_SerialNumber;
- private System.Windows.Forms.TextBox textBox_PcbVersion;
- private System.Windows.Forms.TextBox textBox_SerialNumber;
- private System.Windows.Forms.Label label4;
- private System.Windows.Forms.TextBox textBox_MunufactureDate;
- private System.Windows.Forms.TextBox textBox_DLI_Level_Low_Threshold;
- private System.Windows.Forms.TextBox textBox_DLI_Level_High_Threshold;
- private System.Windows.Forms.TextBox textBox_ULO_Level_High_Threshold;
- private System.Windows.Forms.TextBox textBox_CurrBank;
- private System.Windows.Forms.TextBox textBox_Bank2Name;
- private System.Windows.Forms.Label label8;
- private System.Windows.Forms.TextBox textBox_Bank1Name;
- private System.Windows.Forms.Label label6;
- private System.Windows.Forms.TextBox textBox_UL4_TableOffset;
- private System.Windows.Forms.TextBox textBox_UL2_TableOffset;
- private System.Windows.Forms.TextBox textBox_DL4_TableOffset;
- private System.Windows.Forms.TextBox textBox_UL3_TableOffset;
- private System.Windows.Forms.TextBox textBox_DL2_TableOffset;
- private System.Windows.Forms.TextBox textBox_UL1_TableOffset;
- private System.Windows.Forms.TextBox textBox_DL3_TableOffset;
- private System.Windows.Forms.TextBox textBox_DL1_TableOffset;
- private System.Windows.Forms.Label label_TableOffset;
- private System.Windows.Forms.Label label9;
- public System.Windows.Forms.Timer timer_JdasMbic;
- public System.Windows.Forms.NumericUpDown numericUpDown_Version;
- }
- }
|