No Description
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

個人班表.Designer.vb 420KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155
  1. <Global.Microsoft.VisualBasic.CompilerServices.DesignerGenerated()> _
  2. Partial Class 個人班表
  3. Inherits System.Windows.Forms.Form
  4. 'Form 覆寫 Dispose 以清除元件清單。
  5. <System.Diagnostics.DebuggerNonUserCode()> _
  6. Protected Overrides Sub Dispose(ByVal disposing As Boolean)
  7. Try
  8. If disposing AndAlso components IsNot Nothing Then
  9. components.Dispose()
  10. End If
  11. Finally
  12. MyBase.Dispose(disposing)
  13. End Try
  14. End Sub
  15. '為 Windows Form 設計工具的必要項
  16. Private components As System.ComponentModel.IContainer
  17. '注意: 以下為 Windows Form 設計工具所需的程序
  18. '可以使用 Windows Form 設計工具進行修改。
  19. '請勿使用程式碼編輯器進行修改。
  20. <System.Diagnostics.DebuggerStepThrough()> _
  21. Private Sub InitializeComponent()
  22. Dim DataGridViewCellStyle1 As System.Windows.Forms.DataGridViewCellStyle = New System.Windows.Forms.DataGridViewCellStyle()
  23. Dim DataGridViewCellStyle2 As System.Windows.Forms.DataGridViewCellStyle = New System.Windows.Forms.DataGridViewCellStyle()
  24. Dim resources As System.ComponentModel.ComponentResourceManager = New System.ComponentModel.ComponentResourceManager(GetType(個人班表))
  25. Me.TextBox62 = New System.Windows.Forms.TextBox()
  26. Me.TextBox61 = New System.Windows.Forms.TextBox()
  27. Me.TextBox60 = New System.Windows.Forms.TextBox()
  28. Me.TextBox59 = New System.Windows.Forms.TextBox()
  29. Me.TextBox58 = New System.Windows.Forms.TextBox()
  30. Me.TextBox57 = New System.Windows.Forms.TextBox()
  31. Me.TextBox56 = New System.Windows.Forms.TextBox()
  32. Me.TextBox55 = New System.Windows.Forms.TextBox()
  33. Me.TextBox54 = New System.Windows.Forms.TextBox()
  34. Me.TextBox53 = New System.Windows.Forms.TextBox()
  35. Me.TextBox52 = New System.Windows.Forms.TextBox()
  36. Me.TextBox51 = New System.Windows.Forms.TextBox()
  37. Me.TextBox50 = New System.Windows.Forms.TextBox()
  38. Me.TextBox49 = New System.Windows.Forms.TextBox()
  39. Me.TextBox48 = New System.Windows.Forms.TextBox()
  40. Me.TextBox47 = New System.Windows.Forms.TextBox()
  41. Me.TextBox46 = New System.Windows.Forms.TextBox()
  42. Me.TextBox45 = New System.Windows.Forms.TextBox()
  43. Me.TextBox44 = New System.Windows.Forms.TextBox()
  44. Me.TextBox43 = New System.Windows.Forms.TextBox()
  45. Me.TextBox42 = New System.Windows.Forms.TextBox()
  46. Me.TextBox41 = New System.Windows.Forms.TextBox()
  47. Me.TextBox40 = New System.Windows.Forms.TextBox()
  48. Me.TextBox39 = New System.Windows.Forms.TextBox()
  49. Me.TextBox38 = New System.Windows.Forms.TextBox()
  50. Me.TextBox37 = New System.Windows.Forms.TextBox()
  51. Me.TextBox36 = New System.Windows.Forms.TextBox()
  52. Me.TextBox35 = New System.Windows.Forms.TextBox()
  53. Me.TextBox34 = New System.Windows.Forms.TextBox()
  54. Me.TextBox33 = New System.Windows.Forms.TextBox()
  55. Me.TextBox32 = New System.Windows.Forms.TextBox()
  56. Me.ComboBox124 = New System.Windows.Forms.ComboBox()
  57. Me.ComboBox123 = New System.Windows.Forms.ComboBox()
  58. Me.ComboBox122 = New System.Windows.Forms.ComboBox()
  59. Me.ComboBox121 = New System.Windows.Forms.ComboBox()
  60. Me.ComboBox120 = New System.Windows.Forms.ComboBox()
  61. Me.ComboBox119 = New System.Windows.Forms.ComboBox()
  62. Me.ComboBox118 = New System.Windows.Forms.ComboBox()
  63. Me.ComboBox117 = New System.Windows.Forms.ComboBox()
  64. Me.ComboBox116 = New System.Windows.Forms.ComboBox()
  65. Me.ComboBox115 = New System.Windows.Forms.ComboBox()
  66. Me.ComboBox114 = New System.Windows.Forms.ComboBox()
  67. Me.ComboBox113 = New System.Windows.Forms.ComboBox()
  68. Me.ComboBox112 = New System.Windows.Forms.ComboBox()
  69. Me.ComboBox111 = New System.Windows.Forms.ComboBox()
  70. Me.ComboBox110 = New System.Windows.Forms.ComboBox()
  71. Me.ComboBox109 = New System.Windows.Forms.ComboBox()
  72. Me.ComboBox108 = New System.Windows.Forms.ComboBox()
  73. Me.ComboBox107 = New System.Windows.Forms.ComboBox()
  74. Me.ComboBox106 = New System.Windows.Forms.ComboBox()
  75. Me.ComboBox105 = New System.Windows.Forms.ComboBox()
  76. Me.ComboBox104 = New System.Windows.Forms.ComboBox()
  77. Me.ComboBox103 = New System.Windows.Forms.ComboBox()
  78. Me.ComboBox102 = New System.Windows.Forms.ComboBox()
  79. Me.ComboBox101 = New System.Windows.Forms.ComboBox()
  80. Me.ComboBox100 = New System.Windows.Forms.ComboBox()
  81. Me.ComboBox99 = New System.Windows.Forms.ComboBox()
  82. Me.ComboBox98 = New System.Windows.Forms.ComboBox()
  83. Me.ComboBox97 = New System.Windows.Forms.ComboBox()
  84. Me.ComboBox96 = New System.Windows.Forms.ComboBox()
  85. Me.ComboBox95 = New System.Windows.Forms.ComboBox()
  86. Me.ComboBox94 = New System.Windows.Forms.ComboBox()
  87. Me.ComboBox93 = New System.Windows.Forms.ComboBox()
  88. Me.ComboBox92 = New System.Windows.Forms.ComboBox()
  89. Me.ComboBox91 = New System.Windows.Forms.ComboBox()
  90. Me.ComboBox90 = New System.Windows.Forms.ComboBox()
  91. Me.ComboBox89 = New System.Windows.Forms.ComboBox()
  92. Me.ComboBox88 = New System.Windows.Forms.ComboBox()
  93. Me.ComboBox87 = New System.Windows.Forms.ComboBox()
  94. Me.ComboBox86 = New System.Windows.Forms.ComboBox()
  95. Me.ComboBox85 = New System.Windows.Forms.ComboBox()
  96. Me.ComboBox84 = New System.Windows.Forms.ComboBox()
  97. Me.ComboBox83 = New System.Windows.Forms.ComboBox()
  98. Me.ComboBox82 = New System.Windows.Forms.ComboBox()
  99. Me.ComboBox81 = New System.Windows.Forms.ComboBox()
  100. Me.ComboBox80 = New System.Windows.Forms.ComboBox()
  101. Me.ComboBox79 = New System.Windows.Forms.ComboBox()
  102. Me.ComboBox78 = New System.Windows.Forms.ComboBox()
  103. Me.ComboBox77 = New System.Windows.Forms.ComboBox()
  104. Me.ComboBox76 = New System.Windows.Forms.ComboBox()
  105. Me.ComboBox75 = New System.Windows.Forms.ComboBox()
  106. Me.ComboBox74 = New System.Windows.Forms.ComboBox()
  107. Me.ComboBox73 = New System.Windows.Forms.ComboBox()
  108. Me.ComboBox72 = New System.Windows.Forms.ComboBox()
  109. Me.ComboBox71 = New System.Windows.Forms.ComboBox()
  110. Me.ComboBox70 = New System.Windows.Forms.ComboBox()
  111. Me.ComboBox69 = New System.Windows.Forms.ComboBox()
  112. Me.ComboBox68 = New System.Windows.Forms.ComboBox()
  113. Me.ComboBox67 = New System.Windows.Forms.ComboBox()
  114. Me.ComboBox66 = New System.Windows.Forms.ComboBox()
  115. Me.ComboBox65 = New System.Windows.Forms.ComboBox()
  116. Me.ComboBox64 = New System.Windows.Forms.ComboBox()
  117. Me.ComboBox63 = New System.Windows.Forms.ComboBox()
  118. Me.星期_dgv = New System.Windows.Forms.DataGridView()
  119. Me.TextBox31 = New System.Windows.Forms.TextBox()
  120. Me.TextBox30 = New System.Windows.Forms.TextBox()
  121. Me.TextBox29 = New System.Windows.Forms.TextBox()
  122. Me.TextBox28 = New System.Windows.Forms.TextBox()
  123. Me.TextBox27 = New System.Windows.Forms.TextBox()
  124. Me.TextBox26 = New System.Windows.Forms.TextBox()
  125. Me.TextBox25 = New System.Windows.Forms.TextBox()
  126. Me.TextBox24 = New System.Windows.Forms.TextBox()
  127. Me.TextBox23 = New System.Windows.Forms.TextBox()
  128. Me.TextBox22 = New System.Windows.Forms.TextBox()
  129. Me.TextBox21 = New System.Windows.Forms.TextBox()
  130. Me.TextBox20 = New System.Windows.Forms.TextBox()
  131. Me.TextBox19 = New System.Windows.Forms.TextBox()
  132. Me.TextBox18 = New System.Windows.Forms.TextBox()
  133. Me.TextBox17 = New System.Windows.Forms.TextBox()
  134. Me.TextBox16 = New System.Windows.Forms.TextBox()
  135. Me.TextBox15 = New System.Windows.Forms.TextBox()
  136. Me.TextBox14 = New System.Windows.Forms.TextBox()
  137. Me.TextBox13 = New System.Windows.Forms.TextBox()
  138. Me.TextBox12 = New System.Windows.Forms.TextBox()
  139. Me.TextBox11 = New System.Windows.Forms.TextBox()
  140. Me.TextBox10 = New System.Windows.Forms.TextBox()
  141. Me.TextBox9 = New System.Windows.Forms.TextBox()
  142. Me.TextBox8 = New System.Windows.Forms.TextBox()
  143. Me.TextBox7 = New System.Windows.Forms.TextBox()
  144. Me.TextBox6 = New System.Windows.Forms.TextBox()
  145. Me.TextBox5 = New System.Windows.Forms.TextBox()
  146. Me.TextBox4 = New System.Windows.Forms.TextBox()
  147. Me.TextBox3 = New System.Windows.Forms.TextBox()
  148. Me.TextBox2 = New System.Windows.Forms.TextBox()
  149. Me.TextBox1 = New System.Windows.Forms.TextBox()
  150. Me.排班明細_dgv = New System.Windows.Forms.DataGridView()
  151. Me.月_lb = New System.Windows.Forms.Label()
  152. Me.Label103 = New System.Windows.Forms.Label()
  153. Me.年_lb = New System.Windows.Forms.Label()
  154. Me.姓名_tb31 = New System.Windows.Forms.TextBox()
  155. Me.姓名_tb30 = New System.Windows.Forms.TextBox()
  156. Me.姓名_tb29 = New System.Windows.Forms.TextBox()
  157. Me.姓名_tb28 = New System.Windows.Forms.TextBox()
  158. Me.姓名_tb27 = New System.Windows.Forms.TextBox()
  159. Me.姓名_tb26 = New System.Windows.Forms.TextBox()
  160. Me.姓名_tb25 = New System.Windows.Forms.TextBox()
  161. Me.姓名_tb24 = New System.Windows.Forms.TextBox()
  162. Me.姓名_tb23 = New System.Windows.Forms.TextBox()
  163. Me.姓名_tb22 = New System.Windows.Forms.TextBox()
  164. Me.姓名_tb21 = New System.Windows.Forms.TextBox()
  165. Me.NUP31 = New System.Windows.Forms.NumericUpDown()
  166. Me.NUP30 = New System.Windows.Forms.NumericUpDown()
  167. Me.NUP29 = New System.Windows.Forms.NumericUpDown()
  168. Me.NUP28 = New System.Windows.Forms.NumericUpDown()
  169. Me.NUP27 = New System.Windows.Forms.NumericUpDown()
  170. Me.NUP26 = New System.Windows.Forms.NumericUpDown()
  171. Me.NUP25 = New System.Windows.Forms.NumericUpDown()
  172. Me.NUP24 = New System.Windows.Forms.NumericUpDown()
  173. Me.NUP23 = New System.Windows.Forms.NumericUpDown()
  174. Me.NUP22 = New System.Windows.Forms.NumericUpDown()
  175. Me.NUP21 = New System.Windows.Forms.NumericUpDown()
  176. Me.班別_cb31 = New System.Windows.Forms.ComboBox()
  177. Me.班別_cb30 = New System.Windows.Forms.ComboBox()
  178. Me.班別_cb29 = New System.Windows.Forms.ComboBox()
  179. Me.班別_cb28 = New System.Windows.Forms.ComboBox()
  180. Me.班別_cb27 = New System.Windows.Forms.ComboBox()
  181. Me.班別_cb26 = New System.Windows.Forms.ComboBox()
  182. Me.班別_cb25 = New System.Windows.Forms.ComboBox()
  183. Me.班別_cb24 = New System.Windows.Forms.ComboBox()
  184. Me.班別_cb23 = New System.Windows.Forms.ComboBox()
  185. Me.班別_cb22 = New System.Windows.Forms.ComboBox()
  186. Me.班別_cb21 = New System.Windows.Forms.ComboBox()
  187. Me.NumericUpDown31 = New System.Windows.Forms.NumericUpDown()
  188. Me.NumericUpDown30 = New System.Windows.Forms.NumericUpDown()
  189. Me.NumericUpDown29 = New System.Windows.Forms.NumericUpDown()
  190. Me.NumericUpDown28 = New System.Windows.Forms.NumericUpDown()
  191. Me.NumericUpDown27 = New System.Windows.Forms.NumericUpDown()
  192. Me.NumericUpDown26 = New System.Windows.Forms.NumericUpDown()
  193. Me.NumericUpDown25 = New System.Windows.Forms.NumericUpDown()
  194. Me.NumericUpDown24 = New System.Windows.Forms.NumericUpDown()
  195. Me.NumericUpDown23 = New System.Windows.Forms.NumericUpDown()
  196. Me.NumericUpDown22 = New System.Windows.Forms.NumericUpDown()
  197. Me.NumericUpDown21 = New System.Windows.Forms.NumericUpDown()
  198. Me.ComboBox62 = New System.Windows.Forms.ComboBox()
  199. Me.ComboBox61 = New System.Windows.Forms.ComboBox()
  200. Me.ComboBox60 = New System.Windows.Forms.ComboBox()
  201. Me.ComboBox59 = New System.Windows.Forms.ComboBox()
  202. Me.ComboBox58 = New System.Windows.Forms.ComboBox()
  203. Me.ComboBox57 = New System.Windows.Forms.ComboBox()
  204. Me.ComboBox56 = New System.Windows.Forms.ComboBox()
  205. Me.ComboBox55 = New System.Windows.Forms.ComboBox()
  206. Me.ComboBox54 = New System.Windows.Forms.ComboBox()
  207. Me.ComboBox53 = New System.Windows.Forms.ComboBox()
  208. Me.ComboBox52 = New System.Windows.Forms.ComboBox()
  209. Me.ComboBox51 = New System.Windows.Forms.ComboBox()
  210. Me.ComboBox50 = New System.Windows.Forms.ComboBox()
  211. Me.ComboBox49 = New System.Windows.Forms.ComboBox()
  212. Me.ComboBox48 = New System.Windows.Forms.ComboBox()
  213. Me.ComboBox47 = New System.Windows.Forms.ComboBox()
  214. Me.ComboBox46 = New System.Windows.Forms.ComboBox()
  215. Me.ComboBox45 = New System.Windows.Forms.ComboBox()
  216. Me.ComboBox44 = New System.Windows.Forms.ComboBox()
  217. Me.ComboBox43 = New System.Windows.Forms.ComboBox()
  218. Me.ComboBox42 = New System.Windows.Forms.ComboBox()
  219. Me.ComboBox41 = New System.Windows.Forms.ComboBox()
  220. Me.A_pb62 = New System.Windows.Forms.ProgressBar()
  221. Me.A_pb61 = New System.Windows.Forms.ProgressBar()
  222. Me.A_pb60 = New System.Windows.Forms.ProgressBar()
  223. Me.A_pb59 = New System.Windows.Forms.ProgressBar()
  224. Me.A_pb58 = New System.Windows.Forms.ProgressBar()
  225. Me.A_pb57 = New System.Windows.Forms.ProgressBar()
  226. Me.A_pb56 = New System.Windows.Forms.ProgressBar()
  227. Me.A_pb55 = New System.Windows.Forms.ProgressBar()
  228. Me.A_pb54 = New System.Windows.Forms.ProgressBar()
  229. Me.A_pb53 = New System.Windows.Forms.ProgressBar()
  230. Me.A_pb52 = New System.Windows.Forms.ProgressBar()
  231. Me.A_pb51 = New System.Windows.Forms.ProgressBar()
  232. Me.A_pb50 = New System.Windows.Forms.ProgressBar()
  233. Me.A_pb49 = New System.Windows.Forms.ProgressBar()
  234. Me.A_pb48 = New System.Windows.Forms.ProgressBar()
  235. Me.A_pb47 = New System.Windows.Forms.ProgressBar()
  236. Me.A_pb46 = New System.Windows.Forms.ProgressBar()
  237. Me.A_pb45 = New System.Windows.Forms.ProgressBar()
  238. Me.A_pb44 = New System.Windows.Forms.ProgressBar()
  239. Me.A_pb43 = New System.Windows.Forms.ProgressBar()
  240. Me.A_pb42 = New System.Windows.Forms.ProgressBar()
  241. Me.A_pb41 = New System.Windows.Forms.ProgressBar()
  242. Me.ComboBox40 = New System.Windows.Forms.ComboBox()
  243. Me.ComboBox39 = New System.Windows.Forms.ComboBox()
  244. Me.ComboBox38 = New System.Windows.Forms.ComboBox()
  245. Me.ComboBox37 = New System.Windows.Forms.ComboBox()
  246. Me.ComboBox36 = New System.Windows.Forms.ComboBox()
  247. Me.ComboBox35 = New System.Windows.Forms.ComboBox()
  248. Me.ComboBox34 = New System.Windows.Forms.ComboBox()
  249. Me.ComboBox33 = New System.Windows.Forms.ComboBox()
  250. Me.ComboBox32 = New System.Windows.Forms.ComboBox()
  251. Me.ComboBox31 = New System.Windows.Forms.ComboBox()
  252. Me.ComboBox30 = New System.Windows.Forms.ComboBox()
  253. Me.ComboBox29 = New System.Windows.Forms.ComboBox()
  254. Me.ComboBox28 = New System.Windows.Forms.ComboBox()
  255. Me.ComboBox27 = New System.Windows.Forms.ComboBox()
  256. Me.ComboBox26 = New System.Windows.Forms.ComboBox()
  257. Me.ComboBox25 = New System.Windows.Forms.ComboBox()
  258. Me.ComboBox24 = New System.Windows.Forms.ComboBox()
  259. Me.ComboBox23 = New System.Windows.Forms.ComboBox()
  260. Me.ComboBox22 = New System.Windows.Forms.ComboBox()
  261. Me.ComboBox21 = New System.Windows.Forms.ComboBox()
  262. Me.ComboBox20 = New System.Windows.Forms.ComboBox()
  263. Me.ComboBox19 = New System.Windows.Forms.ComboBox()
  264. Me.ComboBox18 = New System.Windows.Forms.ComboBox()
  265. Me.ComboBox17 = New System.Windows.Forms.ComboBox()
  266. Me.ComboBox16 = New System.Windows.Forms.ComboBox()
  267. Me.ComboBox15 = New System.Windows.Forms.ComboBox()
  268. Me.ComboBox14 = New System.Windows.Forms.ComboBox()
  269. Me.ComboBox13 = New System.Windows.Forms.ComboBox()
  270. Me.ComboBox12 = New System.Windows.Forms.ComboBox()
  271. Me.ComboBox11 = New System.Windows.Forms.ComboBox()
  272. Me.ComboBox10 = New System.Windows.Forms.ComboBox()
  273. Me.ComboBox9 = New System.Windows.Forms.ComboBox()
  274. Me.ComboBox8 = New System.Windows.Forms.ComboBox()
  275. Me.ComboBox7 = New System.Windows.Forms.ComboBox()
  276. Me.ComboBox6 = New System.Windows.Forms.ComboBox()
  277. Me.ComboBox5 = New System.Windows.Forms.ComboBox()
  278. Me.ComboBox4 = New System.Windows.Forms.ComboBox()
  279. Me.ComboBox3 = New System.Windows.Forms.ComboBox()
  280. Me.ComboBox2 = New System.Windows.Forms.ComboBox()
  281. Me.ComboBox1 = New System.Windows.Forms.ComboBox()
  282. Me.Label93 = New System.Windows.Forms.Label()
  283. Me.Label92 = New System.Windows.Forms.Label()
  284. Me.Label90 = New System.Windows.Forms.Label()
  285. Me.NUP20 = New System.Windows.Forms.NumericUpDown()
  286. Me.NUP19 = New System.Windows.Forms.NumericUpDown()
  287. Me.NUP18 = New System.Windows.Forms.NumericUpDown()
  288. Me.NUP17 = New System.Windows.Forms.NumericUpDown()
  289. Me.NUP16 = New System.Windows.Forms.NumericUpDown()
  290. Me.NUP15 = New System.Windows.Forms.NumericUpDown()
  291. Me.NUP14 = New System.Windows.Forms.NumericUpDown()
  292. Me.NUP13 = New System.Windows.Forms.NumericUpDown()
  293. Me.NUP12 = New System.Windows.Forms.NumericUpDown()
  294. Me.NUP11 = New System.Windows.Forms.NumericUpDown()
  295. Me.NUP10 = New System.Windows.Forms.NumericUpDown()
  296. Me.NUP9 = New System.Windows.Forms.NumericUpDown()
  297. Me.NUP8 = New System.Windows.Forms.NumericUpDown()
  298. Me.NUP7 = New System.Windows.Forms.NumericUpDown()
  299. Me.NUP6 = New System.Windows.Forms.NumericUpDown()
  300. Me.NUP5 = New System.Windows.Forms.NumericUpDown()
  301. Me.NUP4 = New System.Windows.Forms.NumericUpDown()
  302. Me.NUP3 = New System.Windows.Forms.NumericUpDown()
  303. Me.NUP2 = New System.Windows.Forms.NumericUpDown()
  304. Me.NumericUpDown20 = New System.Windows.Forms.NumericUpDown()
  305. Me.CheckBox20 = New System.Windows.Forms.CheckBox()
  306. Me.NumericUpDown19 = New System.Windows.Forms.NumericUpDown()
  307. Me.CheckBox19 = New System.Windows.Forms.CheckBox()
  308. Me.NumericUpDown18 = New System.Windows.Forms.NumericUpDown()
  309. Me.CheckBox18 = New System.Windows.Forms.CheckBox()
  310. Me.NumericUpDown17 = New System.Windows.Forms.NumericUpDown()
  311. Me.CheckBox17 = New System.Windows.Forms.CheckBox()
  312. Me.NumericUpDown16 = New System.Windows.Forms.NumericUpDown()
  313. Me.CheckBox16 = New System.Windows.Forms.CheckBox()
  314. Me.NumericUpDown15 = New System.Windows.Forms.NumericUpDown()
  315. Me.CheckBox15 = New System.Windows.Forms.CheckBox()
  316. Me.NumericUpDown14 = New System.Windows.Forms.NumericUpDown()
  317. Me.CheckBox14 = New System.Windows.Forms.CheckBox()
  318. Me.NumericUpDown13 = New System.Windows.Forms.NumericUpDown()
  319. Me.CheckBox13 = New System.Windows.Forms.CheckBox()
  320. Me.NumericUpDown12 = New System.Windows.Forms.NumericUpDown()
  321. Me.CheckBox12 = New System.Windows.Forms.CheckBox()
  322. Me.NumericUpDown11 = New System.Windows.Forms.NumericUpDown()
  323. Me.CheckBox11 = New System.Windows.Forms.CheckBox()
  324. Me.NumericUpDown10 = New System.Windows.Forms.NumericUpDown()
  325. Me.CheckBox10 = New System.Windows.Forms.CheckBox()
  326. Me.NumericUpDown9 = New System.Windows.Forms.NumericUpDown()
  327. Me.CheckBox9 = New System.Windows.Forms.CheckBox()
  328. Me.NumericUpDown8 = New System.Windows.Forms.NumericUpDown()
  329. Me.CheckBox8 = New System.Windows.Forms.CheckBox()
  330. Me.NumericUpDown7 = New System.Windows.Forms.NumericUpDown()
  331. Me.CheckBox7 = New System.Windows.Forms.CheckBox()
  332. Me.NumericUpDown6 = New System.Windows.Forms.NumericUpDown()
  333. Me.CheckBox6 = New System.Windows.Forms.CheckBox()
  334. Me.NumericUpDown5 = New System.Windows.Forms.NumericUpDown()
  335. Me.CheckBox5 = New System.Windows.Forms.CheckBox()
  336. Me.NumericUpDown4 = New System.Windows.Forms.NumericUpDown()
  337. Me.CheckBox4 = New System.Windows.Forms.CheckBox()
  338. Me.NumericUpDown3 = New System.Windows.Forms.NumericUpDown()
  339. Me.CheckBox3 = New System.Windows.Forms.CheckBox()
  340. Me.NumericUpDown2 = New System.Windows.Forms.NumericUpDown()
  341. Me.CheckBox2 = New System.Windows.Forms.CheckBox()
  342. Me.NumericUpDown1 = New System.Windows.Forms.NumericUpDown()
  343. Me.CheckBox1 = New System.Windows.Forms.CheckBox()
  344. Me.姓名_tb20 = New System.Windows.Forms.TextBox()
  345. Me.姓名_tb19 = New System.Windows.Forms.TextBox()
  346. Me.姓名_tb18 = New System.Windows.Forms.TextBox()
  347. Me.姓名_tb17 = New System.Windows.Forms.TextBox()
  348. Me.姓名_tb16 = New System.Windows.Forms.TextBox()
  349. Me.姓名_tb15 = New System.Windows.Forms.TextBox()
  350. Me.姓名_tb14 = New System.Windows.Forms.TextBox()
  351. Me.姓名_tb13 = New System.Windows.Forms.TextBox()
  352. Me.姓名_tb12 = New System.Windows.Forms.TextBox()
  353. Me.姓名_tb11 = New System.Windows.Forms.TextBox()
  354. Me.姓名_tb10 = New System.Windows.Forms.TextBox()
  355. Me.姓名_tb9 = New System.Windows.Forms.TextBox()
  356. Me.姓名_tb8 = New System.Windows.Forms.TextBox()
  357. Me.姓名_tb7 = New System.Windows.Forms.TextBox()
  358. Me.姓名_tb6 = New System.Windows.Forms.TextBox()
  359. Me.姓名_tb5 = New System.Windows.Forms.TextBox()
  360. Me.姓名_tb4 = New System.Windows.Forms.TextBox()
  361. Me.姓名_tb3 = New System.Windows.Forms.TextBox()
  362. Me.姓名_tb2 = New System.Windows.Forms.TextBox()
  363. Me.姓名_tb1 = New System.Windows.Forms.TextBox()
  364. Me.班別_cb20 = New System.Windows.Forms.ComboBox()
  365. Me.班別_cb19 = New System.Windows.Forms.ComboBox()
  366. Me.班別_cb18 = New System.Windows.Forms.ComboBox()
  367. Me.班別_cb17 = New System.Windows.Forms.ComboBox()
  368. Me.班別_cb16 = New System.Windows.Forms.ComboBox()
  369. Me.班別_cb15 = New System.Windows.Forms.ComboBox()
  370. Me.班別_cb14 = New System.Windows.Forms.ComboBox()
  371. Me.班別_cb13 = New System.Windows.Forms.ComboBox()
  372. Me.班別_cb12 = New System.Windows.Forms.ComboBox()
  373. Me.班別_cb11 = New System.Windows.Forms.ComboBox()
  374. Me.班別_cb10 = New System.Windows.Forms.ComboBox()
  375. Me.班別_cb9 = New System.Windows.Forms.ComboBox()
  376. Me.班別_cb8 = New System.Windows.Forms.ComboBox()
  377. Me.班別_cb7 = New System.Windows.Forms.ComboBox()
  378. Me.班別_cb6 = New System.Windows.Forms.ComboBox()
  379. Me.班別_cb5 = New System.Windows.Forms.ComboBox()
  380. Me.班別_cb4 = New System.Windows.Forms.ComboBox()
  381. Me.班別_cb3 = New System.Windows.Forms.ComboBox()
  382. Me.班別_cb2 = New System.Windows.Forms.ComboBox()
  383. Me.班別_cb1 = New System.Windows.Forms.ComboBox()
  384. Me.Label69 = New System.Windows.Forms.Label()
  385. Me.A_pb40 = New System.Windows.Forms.ProgressBar()
  386. Me.A_pb39 = New System.Windows.Forms.ProgressBar()
  387. Me.A_pb38 = New System.Windows.Forms.ProgressBar()
  388. Me.A_pb37 = New System.Windows.Forms.ProgressBar()
  389. Me.A_pb36 = New System.Windows.Forms.ProgressBar()
  390. Me.A_pb35 = New System.Windows.Forms.ProgressBar()
  391. Me.A_pb34 = New System.Windows.Forms.ProgressBar()
  392. Me.A_pb33 = New System.Windows.Forms.ProgressBar()
  393. Me.A_pb32 = New System.Windows.Forms.ProgressBar()
  394. Me.A_pb31 = New System.Windows.Forms.ProgressBar()
  395. Me.A_pb30 = New System.Windows.Forms.ProgressBar()
  396. Me.A_pb29 = New System.Windows.Forms.ProgressBar()
  397. Me.A_pb28 = New System.Windows.Forms.ProgressBar()
  398. Me.A_pb27 = New System.Windows.Forms.ProgressBar()
  399. Me.A_pb26 = New System.Windows.Forms.ProgressBar()
  400. Me.A_pb25 = New System.Windows.Forms.ProgressBar()
  401. Me.A_pb24 = New System.Windows.Forms.ProgressBar()
  402. Me.A_pb23 = New System.Windows.Forms.ProgressBar()
  403. Me.A_pb22 = New System.Windows.Forms.ProgressBar()
  404. Me.A_pb21 = New System.Windows.Forms.ProgressBar()
  405. Me.A_pb20 = New System.Windows.Forms.ProgressBar()
  406. Me.A_pb19 = New System.Windows.Forms.ProgressBar()
  407. Me.A_pb18 = New System.Windows.Forms.ProgressBar()
  408. Me.A_pb17 = New System.Windows.Forms.ProgressBar()
  409. Me.A_pb16 = New System.Windows.Forms.ProgressBar()
  410. Me.A_pb15 = New System.Windows.Forms.ProgressBar()
  411. Me.A_pb14 = New System.Windows.Forms.ProgressBar()
  412. Me.A_pb13 = New System.Windows.Forms.ProgressBar()
  413. Me.A_pb12 = New System.Windows.Forms.ProgressBar()
  414. Me.A_pb11 = New System.Windows.Forms.ProgressBar()
  415. Me.A_pb10 = New System.Windows.Forms.ProgressBar()
  416. Me.A_pb9 = New System.Windows.Forms.ProgressBar()
  417. Me.A_pb8 = New System.Windows.Forms.ProgressBar()
  418. Me.A_pb7 = New System.Windows.Forms.ProgressBar()
  419. Me.A_pb6 = New System.Windows.Forms.ProgressBar()
  420. Me.A_pb5 = New System.Windows.Forms.ProgressBar()
  421. Me.A_pb4 = New System.Windows.Forms.ProgressBar()
  422. Me.A_pb3 = New System.Windows.Forms.ProgressBar()
  423. Me.A_pb2 = New System.Windows.Forms.ProgressBar()
  424. Me.A_pb1 = New System.Windows.Forms.ProgressBar()
  425. Me.Label68 = New System.Windows.Forms.Label()
  426. Me.Label67 = New System.Windows.Forms.Label()
  427. Me.Label66 = New System.Windows.Forms.Label()
  428. Me.Label65 = New System.Windows.Forms.Label()
  429. Me.Label64 = New System.Windows.Forms.Label()
  430. Me.Label63 = New System.Windows.Forms.Label()
  431. Me.Label62 = New System.Windows.Forms.Label()
  432. Me.Label61 = New System.Windows.Forms.Label()
  433. Me.Label60 = New System.Windows.Forms.Label()
  434. Me.Label59 = New System.Windows.Forms.Label()
  435. Me.Label58 = New System.Windows.Forms.Label()
  436. Me.Label57 = New System.Windows.Forms.Label()
  437. Me.Label56 = New System.Windows.Forms.Label()
  438. Me.Label55 = New System.Windows.Forms.Label()
  439. Me.Label54 = New System.Windows.Forms.Label()
  440. Me.Label53 = New System.Windows.Forms.Label()
  441. Me.Label52 = New System.Windows.Forms.Label()
  442. Me.Label50 = New System.Windows.Forms.Label()
  443. Me.Label49 = New System.Windows.Forms.Label()
  444. Me.Label48 = New System.Windows.Forms.Label()
  445. Me.Label47 = New System.Windows.Forms.Label()
  446. Me.Label46 = New System.Windows.Forms.Label()
  447. Me.Label45 = New System.Windows.Forms.Label()
  448. Me.Label44 = New System.Windows.Forms.Label()
  449. Me.Label43 = New System.Windows.Forms.Label()
  450. Me.Label42 = New System.Windows.Forms.Label()
  451. Me.Label41 = New System.Windows.Forms.Label()
  452. Me.Label40 = New System.Windows.Forms.Label()
  453. Me.Label39 = New System.Windows.Forms.Label()
  454. Me.Label38 = New System.Windows.Forms.Label()
  455. Me.Label37 = New System.Windows.Forms.Label()
  456. Me.Label36 = New System.Windows.Forms.Label()
  457. Me.Label35 = New System.Windows.Forms.Label()
  458. Me.Label34 = New System.Windows.Forms.Label()
  459. Me.Label33 = New System.Windows.Forms.Label()
  460. Me.Label32 = New System.Windows.Forms.Label()
  461. Me.Label31 = New System.Windows.Forms.Label()
  462. Me.Label30 = New System.Windows.Forms.Label()
  463. Me.Label29 = New System.Windows.Forms.Label()
  464. Me.Label28 = New System.Windows.Forms.Label()
  465. Me.Label27 = New System.Windows.Forms.Label()
  466. Me.Label26 = New System.Windows.Forms.Label()
  467. Me.Label25 = New System.Windows.Forms.Label()
  468. Me.Label24 = New System.Windows.Forms.Label()
  469. Me.Label23 = New System.Windows.Forms.Label()
  470. Me.Label22 = New System.Windows.Forms.Label()
  471. Me.Label21 = New System.Windows.Forms.Label()
  472. Me.Label20 = New System.Windows.Forms.Label()
  473. Me.Label19 = New System.Windows.Forms.Label()
  474. Me.Label18 = New System.Windows.Forms.Label()
  475. Me.Label17 = New System.Windows.Forms.Label()
  476. Me.Label16 = New System.Windows.Forms.Label()
  477. Me.Label15 = New System.Windows.Forms.Label()
  478. Me.Label14 = New System.Windows.Forms.Label()
  479. Me.Label13 = New System.Windows.Forms.Label()
  480. Me.Label12 = New System.Windows.Forms.Label()
  481. Me.Label11 = New System.Windows.Forms.Label()
  482. Me.Label10 = New System.Windows.Forms.Label()
  483. Me.Label9 = New System.Windows.Forms.Label()
  484. Me.Label8 = New System.Windows.Forms.Label()
  485. Me.Label7 = New System.Windows.Forms.Label()
  486. Me.Label6 = New System.Windows.Forms.Label()
  487. Me.Label5 = New System.Windows.Forms.Label()
  488. Me.Label4 = New System.Windows.Forms.Label()
  489. Me.Label3 = New System.Windows.Forms.Label()
  490. Me.Label2 = New System.Windows.Forms.Label()
  491. Me.Label1 = New System.Windows.Forms.Label()
  492. Me.Label51 = New System.Windows.Forms.Label()
  493. Me.Label70 = New System.Windows.Forms.Label()
  494. Me.Label71 = New System.Windows.Forms.Label()
  495. Me.Label72 = New System.Windows.Forms.Label()
  496. Me.Label73 = New System.Windows.Forms.Label()
  497. Me.Label74 = New System.Windows.Forms.Label()
  498. Me.Label75 = New System.Windows.Forms.Label()
  499. Me.Label76 = New System.Windows.Forms.Label()
  500. Me.Label77 = New System.Windows.Forms.Label()
  501. Me.Label78 = New System.Windows.Forms.Label()
  502. Me.Label79 = New System.Windows.Forms.Label()
  503. Me.Label80 = New System.Windows.Forms.Label()
  504. Me.Label81 = New System.Windows.Forms.Label()
  505. Me.Label82 = New System.Windows.Forms.Label()
  506. Me.Label83 = New System.Windows.Forms.Label()
  507. Me.Label84 = New System.Windows.Forms.Label()
  508. Me.Label85 = New System.Windows.Forms.Label()
  509. Me.Label86 = New System.Windows.Forms.Label()
  510. Me.Label87 = New System.Windows.Forms.Label()
  511. Me.Label88 = New System.Windows.Forms.Label()
  512. Me.A_lb9 = New System.Windows.Forms.Label()
  513. Me.A_lb8 = New System.Windows.Forms.Label()
  514. Me.A_lb7 = New System.Windows.Forms.Label()
  515. Me.A_lb6 = New System.Windows.Forms.Label()
  516. Me.A_lb5 = New System.Windows.Forms.Label()
  517. Me.A_lb4 = New System.Windows.Forms.Label()
  518. Me.A_lb3 = New System.Windows.Forms.Label()
  519. Me.A_lb2 = New System.Windows.Forms.Label()
  520. Me.A_lb1 = New System.Windows.Forms.Label()
  521. Me.NUP1 = New System.Windows.Forms.NumericUpDown()
  522. Me.Label89 = New System.Windows.Forms.Label()
  523. Me.Label91 = New System.Windows.Forms.Label()
  524. Me.Label94 = New System.Windows.Forms.Label()
  525. Me.Label95 = New System.Windows.Forms.Label()
  526. Me.Label96 = New System.Windows.Forms.Label()
  527. Me.Label97 = New System.Windows.Forms.Label()
  528. Me.Label98 = New System.Windows.Forms.Label()
  529. Me.Label99 = New System.Windows.Forms.Label()
  530. Me.Label100 = New System.Windows.Forms.Label()
  531. Me.Label101 = New System.Windows.Forms.Label()
  532. Me.Label102 = New System.Windows.Forms.Label()
  533. Me.CheckBox31 = New System.Windows.Forms.CheckBox()
  534. Me.CheckBox30 = New System.Windows.Forms.CheckBox()
  535. Me.CheckBox29 = New System.Windows.Forms.CheckBox()
  536. Me.CheckBox28 = New System.Windows.Forms.CheckBox()
  537. Me.CheckBox27 = New System.Windows.Forms.CheckBox()
  538. Me.CheckBox26 = New System.Windows.Forms.CheckBox()
  539. Me.CheckBox25 = New System.Windows.Forms.CheckBox()
  540. Me.CheckBox24 = New System.Windows.Forms.CheckBox()
  541. Me.CheckBox23 = New System.Windows.Forms.CheckBox()
  542. Me.CheckBox22 = New System.Windows.Forms.CheckBox()
  543. Me.CheckBox21 = New System.Windows.Forms.CheckBox()
  544. Me.Label104 = New System.Windows.Forms.Label()
  545. Me.A_lb31 = New System.Windows.Forms.Label()
  546. Me.A_lb30 = New System.Windows.Forms.Label()
  547. Me.A_lb29 = New System.Windows.Forms.Label()
  548. Me.A_lb28 = New System.Windows.Forms.Label()
  549. Me.A_lb27 = New System.Windows.Forms.Label()
  550. Me.A_lb26 = New System.Windows.Forms.Label()
  551. Me.A_lb25 = New System.Windows.Forms.Label()
  552. Me.A_lb24 = New System.Windows.Forms.Label()
  553. Me.A_lb23 = New System.Windows.Forms.Label()
  554. Me.A_lb22 = New System.Windows.Forms.Label()
  555. Me.A_lb21 = New System.Windows.Forms.Label()
  556. Me.A_lb20 = New System.Windows.Forms.Label()
  557. Me.A_lb19 = New System.Windows.Forms.Label()
  558. Me.A_lb18 = New System.Windows.Forms.Label()
  559. Me.A_lb17 = New System.Windows.Forms.Label()
  560. Me.A_lb16 = New System.Windows.Forms.Label()
  561. Me.A_lb15 = New System.Windows.Forms.Label()
  562. Me.A_lb14 = New System.Windows.Forms.Label()
  563. Me.A_lb13 = New System.Windows.Forms.Label()
  564. Me.A_lb12 = New System.Windows.Forms.Label()
  565. Me.A_lb11 = New System.Windows.Forms.Label()
  566. Me.A_lb10 = New System.Windows.Forms.Label()
  567. CType(Me.星期_dgv, System.ComponentModel.ISupportInitialize).BeginInit()
  568. CType(Me.排班明細_dgv, System.ComponentModel.ISupportInitialize).BeginInit()
  569. CType(Me.NUP31, System.ComponentModel.ISupportInitialize).BeginInit()
  570. CType(Me.NUP30, System.ComponentModel.ISupportInitialize).BeginInit()
  571. CType(Me.NUP29, System.ComponentModel.ISupportInitialize).BeginInit()
  572. CType(Me.NUP28, System.ComponentModel.ISupportInitialize).BeginInit()
  573. CType(Me.NUP27, System.ComponentModel.ISupportInitialize).BeginInit()
  574. CType(Me.NUP26, System.ComponentModel.ISupportInitialize).BeginInit()
  575. CType(Me.NUP25, System.ComponentModel.ISupportInitialize).BeginInit()
  576. CType(Me.NUP24, System.ComponentModel.ISupportInitialize).BeginInit()
  577. CType(Me.NUP23, System.ComponentModel.ISupportInitialize).BeginInit()
  578. CType(Me.NUP22, System.ComponentModel.ISupportInitialize).BeginInit()
  579. CType(Me.NUP21, System.ComponentModel.ISupportInitialize).BeginInit()
  580. CType(Me.NumericUpDown31, System.ComponentModel.ISupportInitialize).BeginInit()
  581. CType(Me.NumericUpDown30, System.ComponentModel.ISupportInitialize).BeginInit()
  582. CType(Me.NumericUpDown29, System.ComponentModel.ISupportInitialize).BeginInit()
  583. CType(Me.NumericUpDown28, System.ComponentModel.ISupportInitialize).BeginInit()
  584. CType(Me.NumericUpDown27, System.ComponentModel.ISupportInitialize).BeginInit()
  585. CType(Me.NumericUpDown26, System.ComponentModel.ISupportInitialize).BeginInit()
  586. CType(Me.NumericUpDown25, System.ComponentModel.ISupportInitialize).BeginInit()
  587. CType(Me.NumericUpDown24, System.ComponentModel.ISupportInitialize).BeginInit()
  588. CType(Me.NumericUpDown23, System.ComponentModel.ISupportInitialize).BeginInit()
  589. CType(Me.NumericUpDown22, System.ComponentModel.ISupportInitialize).BeginInit()
  590. CType(Me.NumericUpDown21, System.ComponentModel.ISupportInitialize).BeginInit()
  591. CType(Me.NUP20, System.ComponentModel.ISupportInitialize).BeginInit()
  592. CType(Me.NUP19, System.ComponentModel.ISupportInitialize).BeginInit()
  593. CType(Me.NUP18, System.ComponentModel.ISupportInitialize).BeginInit()
  594. CType(Me.NUP17, System.ComponentModel.ISupportInitialize).BeginInit()
  595. CType(Me.NUP16, System.ComponentModel.ISupportInitialize).BeginInit()
  596. CType(Me.NUP15, System.ComponentModel.ISupportInitialize).BeginInit()
  597. CType(Me.NUP14, System.ComponentModel.ISupportInitialize).BeginInit()
  598. CType(Me.NUP13, System.ComponentModel.ISupportInitialize).BeginInit()
  599. CType(Me.NUP12, System.ComponentModel.ISupportInitialize).BeginInit()
  600. CType(Me.NUP11, System.ComponentModel.ISupportInitialize).BeginInit()
  601. CType(Me.NUP10, System.ComponentModel.ISupportInitialize).BeginInit()
  602. CType(Me.NUP9, System.ComponentModel.ISupportInitialize).BeginInit()
  603. CType(Me.NUP8, System.ComponentModel.ISupportInitialize).BeginInit()
  604. CType(Me.NUP7, System.ComponentModel.ISupportInitialize).BeginInit()
  605. CType(Me.NUP6, System.ComponentModel.ISupportInitialize).BeginInit()
  606. CType(Me.NUP5, System.ComponentModel.ISupportInitialize).BeginInit()
  607. CType(Me.NUP4, System.ComponentModel.ISupportInitialize).BeginInit()
  608. CType(Me.NUP3, System.ComponentModel.ISupportInitialize).BeginInit()
  609. CType(Me.NUP2, System.ComponentModel.ISupportInitialize).BeginInit()
  610. CType(Me.NumericUpDown20, System.ComponentModel.ISupportInitialize).BeginInit()
  611. CType(Me.NumericUpDown19, System.ComponentModel.ISupportInitialize).BeginInit()
  612. CType(Me.NumericUpDown18, System.ComponentModel.ISupportInitialize).BeginInit()
  613. CType(Me.NumericUpDown17, System.ComponentModel.ISupportInitialize).BeginInit()
  614. CType(Me.NumericUpDown16, System.ComponentModel.ISupportInitialize).BeginInit()
  615. CType(Me.NumericUpDown15, System.ComponentModel.ISupportInitialize).BeginInit()
  616. CType(Me.NumericUpDown14, System.ComponentModel.ISupportInitialize).BeginInit()
  617. CType(Me.NumericUpDown13, System.ComponentModel.ISupportInitialize).BeginInit()
  618. CType(Me.NumericUpDown12, System.ComponentModel.ISupportInitialize).BeginInit()
  619. CType(Me.NumericUpDown11, System.ComponentModel.ISupportInitialize).BeginInit()
  620. CType(Me.NumericUpDown10, System.ComponentModel.ISupportInitialize).BeginInit()
  621. CType(Me.NumericUpDown9, System.ComponentModel.ISupportInitialize).BeginInit()
  622. CType(Me.NumericUpDown8, System.ComponentModel.ISupportInitialize).BeginInit()
  623. CType(Me.NumericUpDown7, System.ComponentModel.ISupportInitialize).BeginInit()
  624. CType(Me.NumericUpDown6, System.ComponentModel.ISupportInitialize).BeginInit()
  625. CType(Me.NumericUpDown5, System.ComponentModel.ISupportInitialize).BeginInit()
  626. CType(Me.NumericUpDown4, System.ComponentModel.ISupportInitialize).BeginInit()
  627. CType(Me.NumericUpDown3, System.ComponentModel.ISupportInitialize).BeginInit()
  628. CType(Me.NumericUpDown2, System.ComponentModel.ISupportInitialize).BeginInit()
  629. CType(Me.NumericUpDown1, System.ComponentModel.ISupportInitialize).BeginInit()
  630. CType(Me.NUP1, System.ComponentModel.ISupportInitialize).BeginInit()
  631. Me.SuspendLayout()
  632. '
  633. 'TextBox62
  634. '
  635. Me.TextBox62.Location = New System.Drawing.Point(401, 977)
  636. Me.TextBox62.Name = "TextBox62"
  637. Me.TextBox62.Size = New System.Drawing.Size(50, 23)
  638. Me.TextBox62.TabIndex = 2038
  639. '
  640. 'TextBox61
  641. '
  642. Me.TextBox61.Location = New System.Drawing.Point(401, 944)
  643. Me.TextBox61.Name = "TextBox61"
  644. Me.TextBox61.Size = New System.Drawing.Size(50, 23)
  645. Me.TextBox61.TabIndex = 2037
  646. '
  647. 'TextBox60
  648. '
  649. Me.TextBox60.Location = New System.Drawing.Point(401, 914)
  650. Me.TextBox60.Name = "TextBox60"
  651. Me.TextBox60.Size = New System.Drawing.Size(50, 23)
  652. Me.TextBox60.TabIndex = 2036
  653. '
  654. 'TextBox59
  655. '
  656. Me.TextBox59.Location = New System.Drawing.Point(401, 883)
  657. Me.TextBox59.Name = "TextBox59"
  658. Me.TextBox59.Size = New System.Drawing.Size(50, 23)
  659. Me.TextBox59.TabIndex = 2035
  660. '
  661. 'TextBox58
  662. '
  663. Me.TextBox58.Location = New System.Drawing.Point(401, 853)
  664. Me.TextBox58.Name = "TextBox58"
  665. Me.TextBox58.Size = New System.Drawing.Size(50, 23)
  666. Me.TextBox58.TabIndex = 2034
  667. '
  668. 'TextBox57
  669. '
  670. Me.TextBox57.Location = New System.Drawing.Point(401, 823)
  671. Me.TextBox57.Name = "TextBox57"
  672. Me.TextBox57.Size = New System.Drawing.Size(50, 23)
  673. Me.TextBox57.TabIndex = 2033
  674. '
  675. 'TextBox56
  676. '
  677. Me.TextBox56.Location = New System.Drawing.Point(401, 792)
  678. Me.TextBox56.Name = "TextBox56"
  679. Me.TextBox56.Size = New System.Drawing.Size(50, 23)
  680. Me.TextBox56.TabIndex = 2032
  681. '
  682. 'TextBox55
  683. '
  684. Me.TextBox55.Location = New System.Drawing.Point(401, 761)
  685. Me.TextBox55.Name = "TextBox55"
  686. Me.TextBox55.Size = New System.Drawing.Size(50, 23)
  687. Me.TextBox55.TabIndex = 2031
  688. '
  689. 'TextBox54
  690. '
  691. Me.TextBox54.Location = New System.Drawing.Point(401, 729)
  692. Me.TextBox54.Name = "TextBox54"
  693. Me.TextBox54.Size = New System.Drawing.Size(50, 23)
  694. Me.TextBox54.TabIndex = 2030
  695. '
  696. 'TextBox53
  697. '
  698. Me.TextBox53.Location = New System.Drawing.Point(401, 698)
  699. Me.TextBox53.Name = "TextBox53"
  700. Me.TextBox53.Size = New System.Drawing.Size(50, 23)
  701. Me.TextBox53.TabIndex = 2029
  702. '
  703. 'TextBox52
  704. '
  705. Me.TextBox52.Location = New System.Drawing.Point(401, 665)
  706. Me.TextBox52.Name = "TextBox52"
  707. Me.TextBox52.Size = New System.Drawing.Size(50, 23)
  708. Me.TextBox52.TabIndex = 2028
  709. '
  710. 'TextBox51
  711. '
  712. Me.TextBox51.Location = New System.Drawing.Point(401, 634)
  713. Me.TextBox51.Name = "TextBox51"
  714. Me.TextBox51.Size = New System.Drawing.Size(50, 23)
  715. Me.TextBox51.TabIndex = 2027
  716. '
  717. 'TextBox50
  718. '
  719. Me.TextBox50.Location = New System.Drawing.Point(401, 603)
  720. Me.TextBox50.Name = "TextBox50"
  721. Me.TextBox50.Size = New System.Drawing.Size(50, 23)
  722. Me.TextBox50.TabIndex = 2026
  723. '
  724. 'TextBox49
  725. '
  726. Me.TextBox49.Location = New System.Drawing.Point(401, 573)
  727. Me.TextBox49.Name = "TextBox49"
  728. Me.TextBox49.Size = New System.Drawing.Size(50, 23)
  729. Me.TextBox49.TabIndex = 2025
  730. '
  731. 'TextBox48
  732. '
  733. Me.TextBox48.Location = New System.Drawing.Point(401, 542)
  734. Me.TextBox48.Name = "TextBox48"
  735. Me.TextBox48.Size = New System.Drawing.Size(50, 23)
  736. Me.TextBox48.TabIndex = 2024
  737. '
  738. 'TextBox47
  739. '
  740. Me.TextBox47.Location = New System.Drawing.Point(401, 509)
  741. Me.TextBox47.Name = "TextBox47"
  742. Me.TextBox47.Size = New System.Drawing.Size(50, 23)
  743. Me.TextBox47.TabIndex = 2023
  744. '
  745. 'TextBox46
  746. '
  747. Me.TextBox46.Location = New System.Drawing.Point(401, 479)
  748. Me.TextBox46.Name = "TextBox46"
  749. Me.TextBox46.Size = New System.Drawing.Size(50, 23)
  750. Me.TextBox46.TabIndex = 2022
  751. '
  752. 'TextBox45
  753. '
  754. Me.TextBox45.Location = New System.Drawing.Point(401, 447)
  755. Me.TextBox45.Name = "TextBox45"
  756. Me.TextBox45.Size = New System.Drawing.Size(50, 23)
  757. Me.TextBox45.TabIndex = 2021
  758. '
  759. 'TextBox44
  760. '
  761. Me.TextBox44.Location = New System.Drawing.Point(401, 417)
  762. Me.TextBox44.Name = "TextBox44"
  763. Me.TextBox44.Size = New System.Drawing.Size(50, 23)
  764. Me.TextBox44.TabIndex = 2020
  765. '
  766. 'TextBox43
  767. '
  768. Me.TextBox43.Location = New System.Drawing.Point(401, 385)
  769. Me.TextBox43.Name = "TextBox43"
  770. Me.TextBox43.Size = New System.Drawing.Size(50, 23)
  771. Me.TextBox43.TabIndex = 2019
  772. '
  773. 'TextBox42
  774. '
  775. Me.TextBox42.Location = New System.Drawing.Point(401, 355)
  776. Me.TextBox42.Name = "TextBox42"
  777. Me.TextBox42.Size = New System.Drawing.Size(50, 23)
  778. Me.TextBox42.TabIndex = 2018
  779. '
  780. 'TextBox41
  781. '
  782. Me.TextBox41.Location = New System.Drawing.Point(401, 323)
  783. Me.TextBox41.Name = "TextBox41"
  784. Me.TextBox41.Size = New System.Drawing.Size(50, 23)
  785. Me.TextBox41.TabIndex = 2017
  786. '
  787. 'TextBox40
  788. '
  789. Me.TextBox40.Location = New System.Drawing.Point(401, 292)
  790. Me.TextBox40.Name = "TextBox40"
  791. Me.TextBox40.Size = New System.Drawing.Size(50, 23)
  792. Me.TextBox40.TabIndex = 2016
  793. '
  794. 'TextBox39
  795. '
  796. Me.TextBox39.Location = New System.Drawing.Point(401, 262)
  797. Me.TextBox39.Name = "TextBox39"
  798. Me.TextBox39.Size = New System.Drawing.Size(50, 23)
  799. Me.TextBox39.TabIndex = 2015
  800. '
  801. 'TextBox38
  802. '
  803. Me.TextBox38.Location = New System.Drawing.Point(401, 231)
  804. Me.TextBox38.Name = "TextBox38"
  805. Me.TextBox38.Size = New System.Drawing.Size(50, 23)
  806. Me.TextBox38.TabIndex = 2014
  807. '
  808. 'TextBox37
  809. '
  810. Me.TextBox37.Location = New System.Drawing.Point(401, 200)
  811. Me.TextBox37.Name = "TextBox37"
  812. Me.TextBox37.Size = New System.Drawing.Size(50, 23)
  813. Me.TextBox37.TabIndex = 2013
  814. '
  815. 'TextBox36
  816. '
  817. Me.TextBox36.Location = New System.Drawing.Point(401, 169)
  818. Me.TextBox36.Name = "TextBox36"
  819. Me.TextBox36.Size = New System.Drawing.Size(50, 23)
  820. Me.TextBox36.TabIndex = 2012
  821. '
  822. 'TextBox35
  823. '
  824. Me.TextBox35.Location = New System.Drawing.Point(401, 138)
  825. Me.TextBox35.Name = "TextBox35"
  826. Me.TextBox35.Size = New System.Drawing.Size(50, 23)
  827. Me.TextBox35.TabIndex = 2011
  828. '
  829. 'TextBox34
  830. '
  831. Me.TextBox34.Location = New System.Drawing.Point(401, 106)
  832. Me.TextBox34.Name = "TextBox34"
  833. Me.TextBox34.Size = New System.Drawing.Size(50, 23)
  834. Me.TextBox34.TabIndex = 2010
  835. '
  836. 'TextBox33
  837. '
  838. Me.TextBox33.BackColor = System.Drawing.Color.Pink
  839. Me.TextBox33.Location = New System.Drawing.Point(401, 76)
  840. Me.TextBox33.Name = "TextBox33"
  841. Me.TextBox33.Size = New System.Drawing.Size(50, 23)
  842. Me.TextBox33.TabIndex = 2009
  843. Me.TextBox33.Text = "會變動"
  844. '
  845. 'TextBox32
  846. '
  847. Me.TextBox32.BackColor = System.Drawing.Color.PaleGreen
  848. Me.TextBox32.Location = New System.Drawing.Point(401, 45)
  849. Me.TextBox32.Name = "TextBox32"
  850. Me.TextBox32.Size = New System.Drawing.Size(50, 23)
  851. Me.TextBox32.TabIndex = 2008
  852. Me.TextBox32.Text = "已鎖定"
  853. '
  854. 'ComboBox124
  855. '
  856. Me.ComboBox124.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
  857. Me.ComboBox124.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  858. Me.ComboBox124.FormattingEnabled = True
  859. Me.ComboBox124.Items.AddRange(New Object() {"0", "1", "2", "3", "4", "5", "6", "7", "8", "9"})
  860. Me.ComboBox124.Location = New System.Drawing.Point(370, 976)
  861. Me.ComboBox124.Name = "ComboBox124"
  862. Me.ComboBox124.Size = New System.Drawing.Size(30, 24)
  863. Me.ComboBox124.TabIndex = 2007
  864. '
  865. 'ComboBox123
  866. '
  867. Me.ComboBox123.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
  868. Me.ComboBox123.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  869. Me.ComboBox123.FormattingEnabled = True
  870. Me.ComboBox123.Items.AddRange(New Object() {"0", "1", "2", "3", "4", "5", "6", "7", "8", "9"})
  871. Me.ComboBox123.Location = New System.Drawing.Point(338, 976)
  872. Me.ComboBox123.Name = "ComboBox123"
  873. Me.ComboBox123.Size = New System.Drawing.Size(30, 24)
  874. Me.ComboBox123.TabIndex = 2006
  875. '
  876. 'ComboBox122
  877. '
  878. Me.ComboBox122.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
  879. Me.ComboBox122.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  880. Me.ComboBox122.FormattingEnabled = True
  881. Me.ComboBox122.Items.AddRange(New Object() {"0", "1", "2", "3", "4", "5", "6", "7", "8", "9"})
  882. Me.ComboBox122.Location = New System.Drawing.Point(370, 943)
  883. Me.ComboBox122.Name = "ComboBox122"
  884. Me.ComboBox122.Size = New System.Drawing.Size(30, 24)
  885. Me.ComboBox122.TabIndex = 2005
  886. '
  887. 'ComboBox121
  888. '
  889. Me.ComboBox121.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
  890. Me.ComboBox121.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  891. Me.ComboBox121.FormattingEnabled = True
  892. Me.ComboBox121.Items.AddRange(New Object() {"0", "1", "2", "3", "4", "5", "6", "7", "8", "9"})
  893. Me.ComboBox121.Location = New System.Drawing.Point(338, 943)
  894. Me.ComboBox121.Name = "ComboBox121"
  895. Me.ComboBox121.Size = New System.Drawing.Size(30, 24)
  896. Me.ComboBox121.TabIndex = 2004
  897. '
  898. 'ComboBox120
  899. '
  900. Me.ComboBox120.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
  901. Me.ComboBox120.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  902. Me.ComboBox120.FormattingEnabled = True
  903. Me.ComboBox120.Items.AddRange(New Object() {"0", "1", "2", "3", "4", "5", "6", "7", "8", "9"})
  904. Me.ComboBox120.Location = New System.Drawing.Point(370, 913)
  905. Me.ComboBox120.Name = "ComboBox120"
  906. Me.ComboBox120.Size = New System.Drawing.Size(30, 24)
  907. Me.ComboBox120.TabIndex = 2003
  908. '
  909. 'ComboBox119
  910. '
  911. Me.ComboBox119.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
  912. Me.ComboBox119.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  913. Me.ComboBox119.FormattingEnabled = True
  914. Me.ComboBox119.Items.AddRange(New Object() {"0", "1", "2", "3", "4", "5", "6", "7", "8", "9"})
  915. Me.ComboBox119.Location = New System.Drawing.Point(338, 913)
  916. Me.ComboBox119.Name = "ComboBox119"
  917. Me.ComboBox119.Size = New System.Drawing.Size(30, 24)
  918. Me.ComboBox119.TabIndex = 2002
  919. '
  920. 'ComboBox118
  921. '
  922. Me.ComboBox118.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
  923. Me.ComboBox118.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  924. Me.ComboBox118.FormattingEnabled = True
  925. Me.ComboBox118.Items.AddRange(New Object() {"0", "1", "2", "3", "4", "5", "6", "7", "8", "9"})
  926. Me.ComboBox118.Location = New System.Drawing.Point(370, 882)
  927. Me.ComboBox118.Name = "ComboBox118"
  928. Me.ComboBox118.Size = New System.Drawing.Size(30, 24)
  929. Me.ComboBox118.TabIndex = 2001
  930. '
  931. 'ComboBox117
  932. '
  933. Me.ComboBox117.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
  934. Me.ComboBox117.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  935. Me.ComboBox117.FormattingEnabled = True
  936. Me.ComboBox117.Items.AddRange(New Object() {"0", "1", "2", "3", "4", "5", "6", "7", "8", "9"})
  937. Me.ComboBox117.Location = New System.Drawing.Point(338, 882)
  938. Me.ComboBox117.Name = "ComboBox117"
  939. Me.ComboBox117.Size = New System.Drawing.Size(30, 24)
  940. Me.ComboBox117.TabIndex = 2000
  941. '
  942. 'ComboBox116
  943. '
  944. Me.ComboBox116.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
  945. Me.ComboBox116.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  946. Me.ComboBox116.FormattingEnabled = True
  947. Me.ComboBox116.Items.AddRange(New Object() {"0", "1", "2", "3", "4", "5", "6", "7", "8", "9"})
  948. Me.ComboBox116.Location = New System.Drawing.Point(370, 852)
  949. Me.ComboBox116.Name = "ComboBox116"
  950. Me.ComboBox116.Size = New System.Drawing.Size(30, 24)
  951. Me.ComboBox116.TabIndex = 1999
  952. '
  953. 'ComboBox115
  954. '
  955. Me.ComboBox115.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
  956. Me.ComboBox115.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  957. Me.ComboBox115.FormattingEnabled = True
  958. Me.ComboBox115.Items.AddRange(New Object() {"0", "1", "2", "3", "4", "5", "6", "7", "8", "9"})
  959. Me.ComboBox115.Location = New System.Drawing.Point(338, 852)
  960. Me.ComboBox115.Name = "ComboBox115"
  961. Me.ComboBox115.Size = New System.Drawing.Size(30, 24)
  962. Me.ComboBox115.TabIndex = 1998
  963. '
  964. 'ComboBox114
  965. '
  966. Me.ComboBox114.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
  967. Me.ComboBox114.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  968. Me.ComboBox114.FormattingEnabled = True
  969. Me.ComboBox114.Items.AddRange(New Object() {"0", "1", "2", "3", "4", "5", "6", "7", "8", "9"})
  970. Me.ComboBox114.Location = New System.Drawing.Point(370, 822)
  971. Me.ComboBox114.Name = "ComboBox114"
  972. Me.ComboBox114.Size = New System.Drawing.Size(30, 24)
  973. Me.ComboBox114.TabIndex = 1997
  974. '
  975. 'ComboBox113
  976. '
  977. Me.ComboBox113.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
  978. Me.ComboBox113.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  979. Me.ComboBox113.FormattingEnabled = True
  980. Me.ComboBox113.Items.AddRange(New Object() {"0", "1", "2", "3", "4", "5", "6", "7", "8", "9"})
  981. Me.ComboBox113.Location = New System.Drawing.Point(338, 822)
  982. Me.ComboBox113.Name = "ComboBox113"
  983. Me.ComboBox113.Size = New System.Drawing.Size(30, 24)
  984. Me.ComboBox113.TabIndex = 1996
  985. '
  986. 'ComboBox112
  987. '
  988. Me.ComboBox112.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
  989. Me.ComboBox112.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  990. Me.ComboBox112.FormattingEnabled = True
  991. Me.ComboBox112.Items.AddRange(New Object() {"0", "1", "2", "3", "4", "5", "6", "7", "8", "9"})
  992. Me.ComboBox112.Location = New System.Drawing.Point(370, 791)
  993. Me.ComboBox112.Name = "ComboBox112"
  994. Me.ComboBox112.Size = New System.Drawing.Size(30, 24)
  995. Me.ComboBox112.TabIndex = 1995
  996. '
  997. 'ComboBox111
  998. '
  999. Me.ComboBox111.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
  1000. Me.ComboBox111.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1001. Me.ComboBox111.FormattingEnabled = True
  1002. Me.ComboBox111.Items.AddRange(New Object() {"0", "1", "2", "3", "4", "5", "6", "7", "8", "9"})
  1003. Me.ComboBox111.Location = New System.Drawing.Point(338, 791)
  1004. Me.ComboBox111.Name = "ComboBox111"
  1005. Me.ComboBox111.Size = New System.Drawing.Size(30, 24)
  1006. Me.ComboBox111.TabIndex = 1994
  1007. '
  1008. 'ComboBox110
  1009. '
  1010. Me.ComboBox110.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
  1011. Me.ComboBox110.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1012. Me.ComboBox110.FormattingEnabled = True
  1013. Me.ComboBox110.Items.AddRange(New Object() {"0", "1", "2", "3", "4", "5", "6", "7", "8", "9"})
  1014. Me.ComboBox110.Location = New System.Drawing.Point(370, 760)
  1015. Me.ComboBox110.Name = "ComboBox110"
  1016. Me.ComboBox110.Size = New System.Drawing.Size(30, 24)
  1017. Me.ComboBox110.TabIndex = 1993
  1018. '
  1019. 'ComboBox109
  1020. '
  1021. Me.ComboBox109.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
  1022. Me.ComboBox109.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1023. Me.ComboBox109.FormattingEnabled = True
  1024. Me.ComboBox109.Items.AddRange(New Object() {"0", "1", "2", "3", "4", "5", "6", "7", "8", "9"})
  1025. Me.ComboBox109.Location = New System.Drawing.Point(338, 760)
  1026. Me.ComboBox109.Name = "ComboBox109"
  1027. Me.ComboBox109.Size = New System.Drawing.Size(30, 24)
  1028. Me.ComboBox109.TabIndex = 1992
  1029. '
  1030. 'ComboBox108
  1031. '
  1032. Me.ComboBox108.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
  1033. Me.ComboBox108.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1034. Me.ComboBox108.FormattingEnabled = True
  1035. Me.ComboBox108.Items.AddRange(New Object() {"0", "1", "2", "3", "4", "5", "6", "7", "8", "9"})
  1036. Me.ComboBox108.Location = New System.Drawing.Point(370, 728)
  1037. Me.ComboBox108.Name = "ComboBox108"
  1038. Me.ComboBox108.Size = New System.Drawing.Size(30, 24)
  1039. Me.ComboBox108.TabIndex = 1991
  1040. '
  1041. 'ComboBox107
  1042. '
  1043. Me.ComboBox107.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
  1044. Me.ComboBox107.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1045. Me.ComboBox107.FormattingEnabled = True
  1046. Me.ComboBox107.Items.AddRange(New Object() {"0", "1", "2", "3", "4", "5", "6", "7", "8", "9"})
  1047. Me.ComboBox107.Location = New System.Drawing.Point(338, 728)
  1048. Me.ComboBox107.Name = "ComboBox107"
  1049. Me.ComboBox107.Size = New System.Drawing.Size(30, 24)
  1050. Me.ComboBox107.TabIndex = 1990
  1051. '
  1052. 'ComboBox106
  1053. '
  1054. Me.ComboBox106.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
  1055. Me.ComboBox106.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1056. Me.ComboBox106.FormattingEnabled = True
  1057. Me.ComboBox106.Items.AddRange(New Object() {"0", "1", "2", "3", "4", "5", "6", "7", "8", "9"})
  1058. Me.ComboBox106.Location = New System.Drawing.Point(370, 697)
  1059. Me.ComboBox106.Name = "ComboBox106"
  1060. Me.ComboBox106.Size = New System.Drawing.Size(30, 24)
  1061. Me.ComboBox106.TabIndex = 1989
  1062. '
  1063. 'ComboBox105
  1064. '
  1065. Me.ComboBox105.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
  1066. Me.ComboBox105.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1067. Me.ComboBox105.FormattingEnabled = True
  1068. Me.ComboBox105.Items.AddRange(New Object() {"0", "1", "2", "3", "4", "5", "6", "7", "8", "9"})
  1069. Me.ComboBox105.Location = New System.Drawing.Point(338, 697)
  1070. Me.ComboBox105.Name = "ComboBox105"
  1071. Me.ComboBox105.Size = New System.Drawing.Size(30, 24)
  1072. Me.ComboBox105.TabIndex = 1988
  1073. '
  1074. 'ComboBox104
  1075. '
  1076. Me.ComboBox104.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
  1077. Me.ComboBox104.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1078. Me.ComboBox104.FormattingEnabled = True
  1079. Me.ComboBox104.Items.AddRange(New Object() {"0", "1", "2", "3", "4", "5", "6", "7", "8", "9"})
  1080. Me.ComboBox104.Location = New System.Drawing.Point(370, 664)
  1081. Me.ComboBox104.Name = "ComboBox104"
  1082. Me.ComboBox104.Size = New System.Drawing.Size(30, 24)
  1083. Me.ComboBox104.TabIndex = 1987
  1084. '
  1085. 'ComboBox103
  1086. '
  1087. Me.ComboBox103.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
  1088. Me.ComboBox103.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1089. Me.ComboBox103.FormattingEnabled = True
  1090. Me.ComboBox103.Items.AddRange(New Object() {"0", "1", "2", "3", "4", "5", "6", "7", "8", "9"})
  1091. Me.ComboBox103.Location = New System.Drawing.Point(338, 664)
  1092. Me.ComboBox103.Name = "ComboBox103"
  1093. Me.ComboBox103.Size = New System.Drawing.Size(30, 24)
  1094. Me.ComboBox103.TabIndex = 1986
  1095. '
  1096. 'ComboBox102
  1097. '
  1098. Me.ComboBox102.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
  1099. Me.ComboBox102.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1100. Me.ComboBox102.FormattingEnabled = True
  1101. Me.ComboBox102.Items.AddRange(New Object() {"0", "1", "2", "3", "4", "5", "6", "7", "8", "9"})
  1102. Me.ComboBox102.Location = New System.Drawing.Point(370, 633)
  1103. Me.ComboBox102.Name = "ComboBox102"
  1104. Me.ComboBox102.Size = New System.Drawing.Size(30, 24)
  1105. Me.ComboBox102.TabIndex = 1985
  1106. '
  1107. 'ComboBox101
  1108. '
  1109. Me.ComboBox101.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
  1110. Me.ComboBox101.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1111. Me.ComboBox101.FormattingEnabled = True
  1112. Me.ComboBox101.Items.AddRange(New Object() {"0", "1", "2", "3", "4", "5", "6", "7", "8", "9"})
  1113. Me.ComboBox101.Location = New System.Drawing.Point(338, 633)
  1114. Me.ComboBox101.Name = "ComboBox101"
  1115. Me.ComboBox101.Size = New System.Drawing.Size(30, 24)
  1116. Me.ComboBox101.TabIndex = 1984
  1117. '
  1118. 'ComboBox100
  1119. '
  1120. Me.ComboBox100.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
  1121. Me.ComboBox100.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1122. Me.ComboBox100.FormattingEnabled = True
  1123. Me.ComboBox100.Items.AddRange(New Object() {"0", "1", "2", "3", "4", "5", "6", "7", "8", "9"})
  1124. Me.ComboBox100.Location = New System.Drawing.Point(370, 602)
  1125. Me.ComboBox100.Name = "ComboBox100"
  1126. Me.ComboBox100.Size = New System.Drawing.Size(30, 24)
  1127. Me.ComboBox100.TabIndex = 1983
  1128. '
  1129. 'ComboBox99
  1130. '
  1131. Me.ComboBox99.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
  1132. Me.ComboBox99.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1133. Me.ComboBox99.FormattingEnabled = True
  1134. Me.ComboBox99.Items.AddRange(New Object() {"0", "1", "2", "3", "4", "5", "6", "7", "8", "9"})
  1135. Me.ComboBox99.Location = New System.Drawing.Point(338, 602)
  1136. Me.ComboBox99.Name = "ComboBox99"
  1137. Me.ComboBox99.Size = New System.Drawing.Size(30, 24)
  1138. Me.ComboBox99.TabIndex = 1982
  1139. '
  1140. 'ComboBox98
  1141. '
  1142. Me.ComboBox98.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
  1143. Me.ComboBox98.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1144. Me.ComboBox98.FormattingEnabled = True
  1145. Me.ComboBox98.Items.AddRange(New Object() {"0", "1", "2", "3", "4", "5", "6", "7", "8", "9"})
  1146. Me.ComboBox98.Location = New System.Drawing.Point(370, 572)
  1147. Me.ComboBox98.Name = "ComboBox98"
  1148. Me.ComboBox98.Size = New System.Drawing.Size(30, 24)
  1149. Me.ComboBox98.TabIndex = 1981
  1150. '
  1151. 'ComboBox97
  1152. '
  1153. Me.ComboBox97.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
  1154. Me.ComboBox97.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1155. Me.ComboBox97.FormattingEnabled = True
  1156. Me.ComboBox97.Items.AddRange(New Object() {"0", "1", "2", "3", "4", "5", "6", "7", "8", "9"})
  1157. Me.ComboBox97.Location = New System.Drawing.Point(338, 572)
  1158. Me.ComboBox97.Name = "ComboBox97"
  1159. Me.ComboBox97.Size = New System.Drawing.Size(30, 24)
  1160. Me.ComboBox97.TabIndex = 1980
  1161. '
  1162. 'ComboBox96
  1163. '
  1164. Me.ComboBox96.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
  1165. Me.ComboBox96.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1166. Me.ComboBox96.FormattingEnabled = True
  1167. Me.ComboBox96.Items.AddRange(New Object() {"0", "1", "2", "3", "4", "5", "6", "7", "8", "9"})
  1168. Me.ComboBox96.Location = New System.Drawing.Point(370, 541)
  1169. Me.ComboBox96.Name = "ComboBox96"
  1170. Me.ComboBox96.Size = New System.Drawing.Size(30, 24)
  1171. Me.ComboBox96.TabIndex = 1979
  1172. '
  1173. 'ComboBox95
  1174. '
  1175. Me.ComboBox95.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
  1176. Me.ComboBox95.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1177. Me.ComboBox95.FormattingEnabled = True
  1178. Me.ComboBox95.Items.AddRange(New Object() {"0", "1", "2", "3", "4", "5", "6", "7", "8", "9"})
  1179. Me.ComboBox95.Location = New System.Drawing.Point(338, 541)
  1180. Me.ComboBox95.Name = "ComboBox95"
  1181. Me.ComboBox95.Size = New System.Drawing.Size(30, 24)
  1182. Me.ComboBox95.TabIndex = 1978
  1183. '
  1184. 'ComboBox94
  1185. '
  1186. Me.ComboBox94.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
  1187. Me.ComboBox94.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1188. Me.ComboBox94.FormattingEnabled = True
  1189. Me.ComboBox94.Items.AddRange(New Object() {"0", "1", "2", "3", "4", "5", "6", "7", "8", "9"})
  1190. Me.ComboBox94.Location = New System.Drawing.Point(370, 508)
  1191. Me.ComboBox94.Name = "ComboBox94"
  1192. Me.ComboBox94.Size = New System.Drawing.Size(30, 24)
  1193. Me.ComboBox94.TabIndex = 1977
  1194. '
  1195. 'ComboBox93
  1196. '
  1197. Me.ComboBox93.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
  1198. Me.ComboBox93.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1199. Me.ComboBox93.FormattingEnabled = True
  1200. Me.ComboBox93.Items.AddRange(New Object() {"0", "1", "2", "3", "4", "5", "6", "7", "8", "9"})
  1201. Me.ComboBox93.Location = New System.Drawing.Point(338, 508)
  1202. Me.ComboBox93.Name = "ComboBox93"
  1203. Me.ComboBox93.Size = New System.Drawing.Size(30, 24)
  1204. Me.ComboBox93.TabIndex = 1976
  1205. '
  1206. 'ComboBox92
  1207. '
  1208. Me.ComboBox92.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
  1209. Me.ComboBox92.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1210. Me.ComboBox92.FormattingEnabled = True
  1211. Me.ComboBox92.Items.AddRange(New Object() {"0", "1", "2", "3", "4", "5", "6", "7", "8", "9"})
  1212. Me.ComboBox92.Location = New System.Drawing.Point(370, 478)
  1213. Me.ComboBox92.Name = "ComboBox92"
  1214. Me.ComboBox92.Size = New System.Drawing.Size(30, 24)
  1215. Me.ComboBox92.TabIndex = 1975
  1216. '
  1217. 'ComboBox91
  1218. '
  1219. Me.ComboBox91.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
  1220. Me.ComboBox91.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1221. Me.ComboBox91.FormattingEnabled = True
  1222. Me.ComboBox91.Items.AddRange(New Object() {"0", "1", "2", "3", "4", "5", "6", "7", "8", "9"})
  1223. Me.ComboBox91.Location = New System.Drawing.Point(338, 478)
  1224. Me.ComboBox91.Name = "ComboBox91"
  1225. Me.ComboBox91.Size = New System.Drawing.Size(30, 24)
  1226. Me.ComboBox91.TabIndex = 1974
  1227. '
  1228. 'ComboBox90
  1229. '
  1230. Me.ComboBox90.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
  1231. Me.ComboBox90.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1232. Me.ComboBox90.FormattingEnabled = True
  1233. Me.ComboBox90.Items.AddRange(New Object() {"0", "1", "2", "3", "4", "5", "6", "7", "8", "9"})
  1234. Me.ComboBox90.Location = New System.Drawing.Point(370, 446)
  1235. Me.ComboBox90.Name = "ComboBox90"
  1236. Me.ComboBox90.Size = New System.Drawing.Size(30, 24)
  1237. Me.ComboBox90.TabIndex = 1973
  1238. '
  1239. 'ComboBox89
  1240. '
  1241. Me.ComboBox89.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
  1242. Me.ComboBox89.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1243. Me.ComboBox89.FormattingEnabled = True
  1244. Me.ComboBox89.Items.AddRange(New Object() {"0", "1", "2", "3", "4", "5", "6", "7", "8", "9"})
  1245. Me.ComboBox89.Location = New System.Drawing.Point(338, 446)
  1246. Me.ComboBox89.Name = "ComboBox89"
  1247. Me.ComboBox89.Size = New System.Drawing.Size(30, 24)
  1248. Me.ComboBox89.TabIndex = 1972
  1249. '
  1250. 'ComboBox88
  1251. '
  1252. Me.ComboBox88.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
  1253. Me.ComboBox88.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1254. Me.ComboBox88.FormattingEnabled = True
  1255. Me.ComboBox88.Items.AddRange(New Object() {"0", "1", "2", "3", "4", "5", "6", "7", "8", "9"})
  1256. Me.ComboBox88.Location = New System.Drawing.Point(370, 416)
  1257. Me.ComboBox88.Name = "ComboBox88"
  1258. Me.ComboBox88.Size = New System.Drawing.Size(30, 24)
  1259. Me.ComboBox88.TabIndex = 1971
  1260. '
  1261. 'ComboBox87
  1262. '
  1263. Me.ComboBox87.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
  1264. Me.ComboBox87.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1265. Me.ComboBox87.FormattingEnabled = True
  1266. Me.ComboBox87.Items.AddRange(New Object() {"0", "1", "2", "3", "4", "5", "6", "7", "8", "9"})
  1267. Me.ComboBox87.Location = New System.Drawing.Point(338, 416)
  1268. Me.ComboBox87.Name = "ComboBox87"
  1269. Me.ComboBox87.Size = New System.Drawing.Size(30, 24)
  1270. Me.ComboBox87.TabIndex = 1970
  1271. '
  1272. 'ComboBox86
  1273. '
  1274. Me.ComboBox86.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
  1275. Me.ComboBox86.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1276. Me.ComboBox86.FormattingEnabled = True
  1277. Me.ComboBox86.Items.AddRange(New Object() {"0", "1", "2", "3", "4", "5", "6", "7", "8", "9"})
  1278. Me.ComboBox86.Location = New System.Drawing.Point(370, 384)
  1279. Me.ComboBox86.Name = "ComboBox86"
  1280. Me.ComboBox86.Size = New System.Drawing.Size(30, 24)
  1281. Me.ComboBox86.TabIndex = 1969
  1282. '
  1283. 'ComboBox85
  1284. '
  1285. Me.ComboBox85.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
  1286. Me.ComboBox85.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1287. Me.ComboBox85.FormattingEnabled = True
  1288. Me.ComboBox85.Items.AddRange(New Object() {"0", "1", "2", "3", "4", "5", "6", "7", "8", "9"})
  1289. Me.ComboBox85.Location = New System.Drawing.Point(338, 384)
  1290. Me.ComboBox85.Name = "ComboBox85"
  1291. Me.ComboBox85.Size = New System.Drawing.Size(30, 24)
  1292. Me.ComboBox85.TabIndex = 1968
  1293. '
  1294. 'ComboBox84
  1295. '
  1296. Me.ComboBox84.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
  1297. Me.ComboBox84.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1298. Me.ComboBox84.FormattingEnabled = True
  1299. Me.ComboBox84.Items.AddRange(New Object() {"0", "1", "2", "3", "4", "5", "6", "7", "8", "9"})
  1300. Me.ComboBox84.Location = New System.Drawing.Point(370, 354)
  1301. Me.ComboBox84.Name = "ComboBox84"
  1302. Me.ComboBox84.Size = New System.Drawing.Size(30, 24)
  1303. Me.ComboBox84.TabIndex = 1967
  1304. '
  1305. 'ComboBox83
  1306. '
  1307. Me.ComboBox83.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
  1308. Me.ComboBox83.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1309. Me.ComboBox83.FormattingEnabled = True
  1310. Me.ComboBox83.Items.AddRange(New Object() {"0", "1", "2", "3", "4", "5", "6", "7", "8", "9"})
  1311. Me.ComboBox83.Location = New System.Drawing.Point(338, 354)
  1312. Me.ComboBox83.Name = "ComboBox83"
  1313. Me.ComboBox83.Size = New System.Drawing.Size(30, 24)
  1314. Me.ComboBox83.TabIndex = 1966
  1315. '
  1316. 'ComboBox82
  1317. '
  1318. Me.ComboBox82.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
  1319. Me.ComboBox82.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1320. Me.ComboBox82.FormattingEnabled = True
  1321. Me.ComboBox82.Items.AddRange(New Object() {"0", "1", "2", "3", "4", "5", "6", "7", "8", "9"})
  1322. Me.ComboBox82.Location = New System.Drawing.Point(370, 322)
  1323. Me.ComboBox82.Name = "ComboBox82"
  1324. Me.ComboBox82.Size = New System.Drawing.Size(30, 24)
  1325. Me.ComboBox82.TabIndex = 1965
  1326. '
  1327. 'ComboBox81
  1328. '
  1329. Me.ComboBox81.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
  1330. Me.ComboBox81.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1331. Me.ComboBox81.FormattingEnabled = True
  1332. Me.ComboBox81.Items.AddRange(New Object() {"0", "1", "2", "3", "4", "5", "6", "7", "8", "9"})
  1333. Me.ComboBox81.Location = New System.Drawing.Point(338, 322)
  1334. Me.ComboBox81.Name = "ComboBox81"
  1335. Me.ComboBox81.Size = New System.Drawing.Size(30, 24)
  1336. Me.ComboBox81.TabIndex = 1964
  1337. '
  1338. 'ComboBox80
  1339. '
  1340. Me.ComboBox80.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
  1341. Me.ComboBox80.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1342. Me.ComboBox80.FormattingEnabled = True
  1343. Me.ComboBox80.Items.AddRange(New Object() {"0", "1", "2", "3", "4", "5", "6", "7", "8", "9"})
  1344. Me.ComboBox80.Location = New System.Drawing.Point(370, 292)
  1345. Me.ComboBox80.Name = "ComboBox80"
  1346. Me.ComboBox80.Size = New System.Drawing.Size(30, 24)
  1347. Me.ComboBox80.TabIndex = 1963
  1348. '
  1349. 'ComboBox79
  1350. '
  1351. Me.ComboBox79.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
  1352. Me.ComboBox79.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1353. Me.ComboBox79.FormattingEnabled = True
  1354. Me.ComboBox79.Items.AddRange(New Object() {"0", "1", "2", "3", "4", "5", "6", "7", "8", "9"})
  1355. Me.ComboBox79.Location = New System.Drawing.Point(338, 292)
  1356. Me.ComboBox79.Name = "ComboBox79"
  1357. Me.ComboBox79.Size = New System.Drawing.Size(30, 24)
  1358. Me.ComboBox79.TabIndex = 1962
  1359. '
  1360. 'ComboBox78
  1361. '
  1362. Me.ComboBox78.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
  1363. Me.ComboBox78.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1364. Me.ComboBox78.FormattingEnabled = True
  1365. Me.ComboBox78.Items.AddRange(New Object() {"0", "1", "2", "3", "4", "5", "6", "7", "8", "9"})
  1366. Me.ComboBox78.Location = New System.Drawing.Point(370, 261)
  1367. Me.ComboBox78.Name = "ComboBox78"
  1368. Me.ComboBox78.Size = New System.Drawing.Size(30, 24)
  1369. Me.ComboBox78.TabIndex = 1961
  1370. '
  1371. 'ComboBox77
  1372. '
  1373. Me.ComboBox77.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
  1374. Me.ComboBox77.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1375. Me.ComboBox77.FormattingEnabled = True
  1376. Me.ComboBox77.Items.AddRange(New Object() {"0", "1", "2", "3", "4", "5", "6", "7", "8", "9"})
  1377. Me.ComboBox77.Location = New System.Drawing.Point(338, 261)
  1378. Me.ComboBox77.Name = "ComboBox77"
  1379. Me.ComboBox77.Size = New System.Drawing.Size(30, 24)
  1380. Me.ComboBox77.TabIndex = 1960
  1381. '
  1382. 'ComboBox76
  1383. '
  1384. Me.ComboBox76.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
  1385. Me.ComboBox76.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1386. Me.ComboBox76.FormattingEnabled = True
  1387. Me.ComboBox76.Items.AddRange(New Object() {"0", "1", "2", "3", "4", "5", "6", "7", "8", "9"})
  1388. Me.ComboBox76.Location = New System.Drawing.Point(370, 230)
  1389. Me.ComboBox76.Name = "ComboBox76"
  1390. Me.ComboBox76.Size = New System.Drawing.Size(30, 24)
  1391. Me.ComboBox76.TabIndex = 1959
  1392. '
  1393. 'ComboBox75
  1394. '
  1395. Me.ComboBox75.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
  1396. Me.ComboBox75.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1397. Me.ComboBox75.FormattingEnabled = True
  1398. Me.ComboBox75.Items.AddRange(New Object() {"0", "1", "2", "3", "4", "5", "6", "7", "8", "9"})
  1399. Me.ComboBox75.Location = New System.Drawing.Point(338, 230)
  1400. Me.ComboBox75.Name = "ComboBox75"
  1401. Me.ComboBox75.Size = New System.Drawing.Size(30, 24)
  1402. Me.ComboBox75.TabIndex = 1958
  1403. '
  1404. 'ComboBox74
  1405. '
  1406. Me.ComboBox74.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
  1407. Me.ComboBox74.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1408. Me.ComboBox74.FormattingEnabled = True
  1409. Me.ComboBox74.Items.AddRange(New Object() {"0", "1", "2", "3", "4", "5", "6", "7", "8", "9"})
  1410. Me.ComboBox74.Location = New System.Drawing.Point(370, 199)
  1411. Me.ComboBox74.Name = "ComboBox74"
  1412. Me.ComboBox74.Size = New System.Drawing.Size(30, 24)
  1413. Me.ComboBox74.TabIndex = 1957
  1414. '
  1415. 'ComboBox73
  1416. '
  1417. Me.ComboBox73.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
  1418. Me.ComboBox73.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1419. Me.ComboBox73.FormattingEnabled = True
  1420. Me.ComboBox73.Items.AddRange(New Object() {"0", "1", "2", "3", "4", "5", "6", "7", "8", "9"})
  1421. Me.ComboBox73.Location = New System.Drawing.Point(338, 199)
  1422. Me.ComboBox73.Name = "ComboBox73"
  1423. Me.ComboBox73.Size = New System.Drawing.Size(30, 24)
  1424. Me.ComboBox73.TabIndex = 1956
  1425. '
  1426. 'ComboBox72
  1427. '
  1428. Me.ComboBox72.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
  1429. Me.ComboBox72.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1430. Me.ComboBox72.FormattingEnabled = True
  1431. Me.ComboBox72.Items.AddRange(New Object() {"0", "1", "2", "3", "4", "5", "6", "7", "8", "9"})
  1432. Me.ComboBox72.Location = New System.Drawing.Point(370, 168)
  1433. Me.ComboBox72.Name = "ComboBox72"
  1434. Me.ComboBox72.Size = New System.Drawing.Size(30, 24)
  1435. Me.ComboBox72.TabIndex = 1955
  1436. '
  1437. 'ComboBox71
  1438. '
  1439. Me.ComboBox71.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
  1440. Me.ComboBox71.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1441. Me.ComboBox71.FormattingEnabled = True
  1442. Me.ComboBox71.Items.AddRange(New Object() {"0", "1", "2", "3", "4", "5", "6", "7", "8", "9"})
  1443. Me.ComboBox71.Location = New System.Drawing.Point(338, 168)
  1444. Me.ComboBox71.Name = "ComboBox71"
  1445. Me.ComboBox71.Size = New System.Drawing.Size(30, 24)
  1446. Me.ComboBox71.TabIndex = 1954
  1447. '
  1448. 'ComboBox70
  1449. '
  1450. Me.ComboBox70.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
  1451. Me.ComboBox70.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1452. Me.ComboBox70.FormattingEnabled = True
  1453. Me.ComboBox70.Items.AddRange(New Object() {"0", "1", "2", "3", "4", "5", "6", "7", "8", "9"})
  1454. Me.ComboBox70.Location = New System.Drawing.Point(370, 137)
  1455. Me.ComboBox70.Name = "ComboBox70"
  1456. Me.ComboBox70.Size = New System.Drawing.Size(30, 24)
  1457. Me.ComboBox70.TabIndex = 1953
  1458. '
  1459. 'ComboBox69
  1460. '
  1461. Me.ComboBox69.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
  1462. Me.ComboBox69.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1463. Me.ComboBox69.FormattingEnabled = True
  1464. Me.ComboBox69.Items.AddRange(New Object() {"0", "1", "2", "3", "4", "5", "6", "7", "8", "9"})
  1465. Me.ComboBox69.Location = New System.Drawing.Point(337, 137)
  1466. Me.ComboBox69.Name = "ComboBox69"
  1467. Me.ComboBox69.Size = New System.Drawing.Size(30, 24)
  1468. Me.ComboBox69.TabIndex = 1952
  1469. '
  1470. 'ComboBox68
  1471. '
  1472. Me.ComboBox68.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
  1473. Me.ComboBox68.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1474. Me.ComboBox68.FormattingEnabled = True
  1475. Me.ComboBox68.Items.AddRange(New Object() {"0", "1", "2", "3", "4", "5", "6", "7", "8", "9"})
  1476. Me.ComboBox68.Location = New System.Drawing.Point(370, 105)
  1477. Me.ComboBox68.Name = "ComboBox68"
  1478. Me.ComboBox68.Size = New System.Drawing.Size(30, 24)
  1479. Me.ComboBox68.TabIndex = 1951
  1480. '
  1481. 'ComboBox67
  1482. '
  1483. Me.ComboBox67.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
  1484. Me.ComboBox67.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1485. Me.ComboBox67.FormattingEnabled = True
  1486. Me.ComboBox67.Items.AddRange(New Object() {"0", "1", "2", "3", "4", "5", "6", "7", "8", "9"})
  1487. Me.ComboBox67.Location = New System.Drawing.Point(338, 105)
  1488. Me.ComboBox67.Name = "ComboBox67"
  1489. Me.ComboBox67.Size = New System.Drawing.Size(30, 24)
  1490. Me.ComboBox67.TabIndex = 1950
  1491. '
  1492. 'ComboBox66
  1493. '
  1494. Me.ComboBox66.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
  1495. Me.ComboBox66.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1496. Me.ComboBox66.FormattingEnabled = True
  1497. Me.ComboBox66.Items.AddRange(New Object() {"0", "1", "2", "3", "4", "5", "6", "7", "8", "9"})
  1498. Me.ComboBox66.Location = New System.Drawing.Point(370, 75)
  1499. Me.ComboBox66.Name = "ComboBox66"
  1500. Me.ComboBox66.Size = New System.Drawing.Size(30, 24)
  1501. Me.ComboBox66.TabIndex = 1949
  1502. '
  1503. 'ComboBox65
  1504. '
  1505. Me.ComboBox65.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
  1506. Me.ComboBox65.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1507. Me.ComboBox65.FormattingEnabled = True
  1508. Me.ComboBox65.Items.AddRange(New Object() {"0", "1", "2", "3", "4", "5", "6", "7", "8", "9"})
  1509. Me.ComboBox65.Location = New System.Drawing.Point(338, 75)
  1510. Me.ComboBox65.Name = "ComboBox65"
  1511. Me.ComboBox65.Size = New System.Drawing.Size(30, 24)
  1512. Me.ComboBox65.TabIndex = 1948
  1513. '
  1514. 'ComboBox64
  1515. '
  1516. Me.ComboBox64.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
  1517. Me.ComboBox64.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1518. Me.ComboBox64.FormattingEnabled = True
  1519. Me.ComboBox64.Items.AddRange(New Object() {"0", "1", "2", "3", "4", "5", "6", "7", "8", "9"})
  1520. Me.ComboBox64.Location = New System.Drawing.Point(370, 44)
  1521. Me.ComboBox64.Name = "ComboBox64"
  1522. Me.ComboBox64.Size = New System.Drawing.Size(30, 24)
  1523. Me.ComboBox64.TabIndex = 1947
  1524. '
  1525. 'ComboBox63
  1526. '
  1527. Me.ComboBox63.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
  1528. Me.ComboBox63.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1529. Me.ComboBox63.FormattingEnabled = True
  1530. Me.ComboBox63.Items.AddRange(New Object() {"0", "1", "2", "3", "4", "5", "6", "7", "8", "9"})
  1531. Me.ComboBox63.Location = New System.Drawing.Point(338, 44)
  1532. Me.ComboBox63.Name = "ComboBox63"
  1533. Me.ComboBox63.Size = New System.Drawing.Size(30, 24)
  1534. Me.ComboBox63.TabIndex = 1946
  1535. '
  1536. '星期_dgv
  1537. '
  1538. DataGridViewCellStyle1.BackColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(255, Byte), Integer), CType(CType(192, Byte), Integer))
  1539. Me.星期_dgv.AlternatingRowsDefaultCellStyle = DataGridViewCellStyle1
  1540. Me.星期_dgv.Anchor = CType(((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
  1541. Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  1542. Me.星期_dgv.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill
  1543. Me.星期_dgv.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize
  1544. Me.星期_dgv.Location = New System.Drawing.Point(1487, 335)
  1545. Me.星期_dgv.Name = "星期_dgv"
  1546. Me.星期_dgv.RowHeadersWidth = 5
  1547. Me.星期_dgv.RowTemplate.Height = 24
  1548. Me.星期_dgv.Size = New System.Drawing.Size(126, 0)
  1549. Me.星期_dgv.TabIndex = 1944
  1550. Me.星期_dgv.Visible = False
  1551. '
  1552. 'TextBox31
  1553. '
  1554. Me.TextBox31.Location = New System.Drawing.Point(78, 975)
  1555. Me.TextBox31.Name = "TextBox31"
  1556. Me.TextBox31.Size = New System.Drawing.Size(55, 23)
  1557. Me.TextBox31.TabIndex = 1943
  1558. '
  1559. 'TextBox30
  1560. '
  1561. Me.TextBox30.Location = New System.Drawing.Point(78, 944)
  1562. Me.TextBox30.Name = "TextBox30"
  1563. Me.TextBox30.Size = New System.Drawing.Size(55, 23)
  1564. Me.TextBox30.TabIndex = 1942
  1565. '
  1566. 'TextBox29
  1567. '
  1568. Me.TextBox29.Location = New System.Drawing.Point(78, 913)
  1569. Me.TextBox29.Name = "TextBox29"
  1570. Me.TextBox29.Size = New System.Drawing.Size(55, 23)
  1571. Me.TextBox29.TabIndex = 1941
  1572. '
  1573. 'TextBox28
  1574. '
  1575. Me.TextBox28.Location = New System.Drawing.Point(78, 882)
  1576. Me.TextBox28.Name = "TextBox28"
  1577. Me.TextBox28.Size = New System.Drawing.Size(55, 23)
  1578. Me.TextBox28.TabIndex = 1940
  1579. '
  1580. 'TextBox27
  1581. '
  1582. Me.TextBox27.Location = New System.Drawing.Point(78, 851)
  1583. Me.TextBox27.Name = "TextBox27"
  1584. Me.TextBox27.Size = New System.Drawing.Size(55, 23)
  1585. Me.TextBox27.TabIndex = 1939
  1586. '
  1587. 'TextBox26
  1588. '
  1589. Me.TextBox26.Location = New System.Drawing.Point(78, 821)
  1590. Me.TextBox26.Name = "TextBox26"
  1591. Me.TextBox26.Size = New System.Drawing.Size(55, 23)
  1592. Me.TextBox26.TabIndex = 1938
  1593. '
  1594. 'TextBox25
  1595. '
  1596. Me.TextBox25.Location = New System.Drawing.Point(78, 790)
  1597. Me.TextBox25.Name = "TextBox25"
  1598. Me.TextBox25.Size = New System.Drawing.Size(55, 23)
  1599. Me.TextBox25.TabIndex = 1937
  1600. '
  1601. 'TextBox24
  1602. '
  1603. Me.TextBox24.Location = New System.Drawing.Point(78, 758)
  1604. Me.TextBox24.Name = "TextBox24"
  1605. Me.TextBox24.Size = New System.Drawing.Size(55, 23)
  1606. Me.TextBox24.TabIndex = 1936
  1607. '
  1608. 'TextBox23
  1609. '
  1610. Me.TextBox23.Location = New System.Drawing.Point(78, 728)
  1611. Me.TextBox23.Name = "TextBox23"
  1612. Me.TextBox23.Size = New System.Drawing.Size(55, 23)
  1613. Me.TextBox23.TabIndex = 1935
  1614. '
  1615. 'TextBox22
  1616. '
  1617. Me.TextBox22.Location = New System.Drawing.Point(78, 696)
  1618. Me.TextBox22.Name = "TextBox22"
  1619. Me.TextBox22.Size = New System.Drawing.Size(55, 23)
  1620. Me.TextBox22.TabIndex = 1934
  1621. '
  1622. 'TextBox21
  1623. '
  1624. Me.TextBox21.Location = New System.Drawing.Point(78, 664)
  1625. Me.TextBox21.Name = "TextBox21"
  1626. Me.TextBox21.Size = New System.Drawing.Size(55, 23)
  1627. Me.TextBox21.TabIndex = 1933
  1628. '
  1629. 'TextBox20
  1630. '
  1631. Me.TextBox20.Location = New System.Drawing.Point(78, 632)
  1632. Me.TextBox20.Name = "TextBox20"
  1633. Me.TextBox20.Size = New System.Drawing.Size(55, 23)
  1634. Me.TextBox20.TabIndex = 1932
  1635. '
  1636. 'TextBox19
  1637. '
  1638. Me.TextBox19.Location = New System.Drawing.Point(78, 601)
  1639. Me.TextBox19.Name = "TextBox19"
  1640. Me.TextBox19.Size = New System.Drawing.Size(55, 23)
  1641. Me.TextBox19.TabIndex = 1931
  1642. '
  1643. 'TextBox18
  1644. '
  1645. Me.TextBox18.Location = New System.Drawing.Point(78, 570)
  1646. Me.TextBox18.Name = "TextBox18"
  1647. Me.TextBox18.Size = New System.Drawing.Size(55, 23)
  1648. Me.TextBox18.TabIndex = 1930
  1649. '
  1650. 'TextBox17
  1651. '
  1652. Me.TextBox17.Location = New System.Drawing.Point(78, 539)
  1653. Me.TextBox17.Name = "TextBox17"
  1654. Me.TextBox17.Size = New System.Drawing.Size(55, 23)
  1655. Me.TextBox17.TabIndex = 1929
  1656. '
  1657. 'TextBox16
  1658. '
  1659. Me.TextBox16.Location = New System.Drawing.Point(78, 508)
  1660. Me.TextBox16.Name = "TextBox16"
  1661. Me.TextBox16.Size = New System.Drawing.Size(55, 23)
  1662. Me.TextBox16.TabIndex = 1928
  1663. '
  1664. 'TextBox15
  1665. '
  1666. Me.TextBox15.Location = New System.Drawing.Point(78, 477)
  1667. Me.TextBox15.Name = "TextBox15"
  1668. Me.TextBox15.Size = New System.Drawing.Size(55, 23)
  1669. Me.TextBox15.TabIndex = 1927
  1670. '
  1671. 'TextBox14
  1672. '
  1673. Me.TextBox14.Location = New System.Drawing.Point(78, 446)
  1674. Me.TextBox14.Name = "TextBox14"
  1675. Me.TextBox14.Size = New System.Drawing.Size(55, 23)
  1676. Me.TextBox14.TabIndex = 1926
  1677. '
  1678. 'TextBox13
  1679. '
  1680. Me.TextBox13.Location = New System.Drawing.Point(78, 415)
  1681. Me.TextBox13.Name = "TextBox13"
  1682. Me.TextBox13.Size = New System.Drawing.Size(55, 23)
  1683. Me.TextBox13.TabIndex = 1925
  1684. '
  1685. 'TextBox12
  1686. '
  1687. Me.TextBox12.Location = New System.Drawing.Point(78, 384)
  1688. Me.TextBox12.Name = "TextBox12"
  1689. Me.TextBox12.Size = New System.Drawing.Size(55, 23)
  1690. Me.TextBox12.TabIndex = 1924
  1691. '
  1692. 'TextBox11
  1693. '
  1694. Me.TextBox11.Location = New System.Drawing.Point(78, 353)
  1695. Me.TextBox11.Name = "TextBox11"
  1696. Me.TextBox11.Size = New System.Drawing.Size(55, 23)
  1697. Me.TextBox11.TabIndex = 1923
  1698. '
  1699. 'TextBox10
  1700. '
  1701. Me.TextBox10.Location = New System.Drawing.Point(78, 322)
  1702. Me.TextBox10.Name = "TextBox10"
  1703. Me.TextBox10.Size = New System.Drawing.Size(55, 23)
  1704. Me.TextBox10.TabIndex = 1922
  1705. '
  1706. 'TextBox9
  1707. '
  1708. Me.TextBox9.Location = New System.Drawing.Point(78, 291)
  1709. Me.TextBox9.Name = "TextBox9"
  1710. Me.TextBox9.Size = New System.Drawing.Size(55, 23)
  1711. Me.TextBox9.TabIndex = 1921
  1712. '
  1713. 'TextBox8
  1714. '
  1715. Me.TextBox8.Location = New System.Drawing.Point(78, 260)
  1716. Me.TextBox8.Name = "TextBox8"
  1717. Me.TextBox8.Size = New System.Drawing.Size(55, 23)
  1718. Me.TextBox8.TabIndex = 1920
  1719. '
  1720. 'TextBox7
  1721. '
  1722. Me.TextBox7.Location = New System.Drawing.Point(78, 229)
  1723. Me.TextBox7.Name = "TextBox7"
  1724. Me.TextBox7.Size = New System.Drawing.Size(55, 23)
  1725. Me.TextBox7.TabIndex = 1919
  1726. '
  1727. 'TextBox6
  1728. '
  1729. Me.TextBox6.Location = New System.Drawing.Point(78, 198)
  1730. Me.TextBox6.Name = "TextBox6"
  1731. Me.TextBox6.Size = New System.Drawing.Size(55, 23)
  1732. Me.TextBox6.TabIndex = 1918
  1733. '
  1734. 'TextBox5
  1735. '
  1736. Me.TextBox5.Location = New System.Drawing.Point(78, 167)
  1737. Me.TextBox5.Name = "TextBox5"
  1738. Me.TextBox5.Size = New System.Drawing.Size(55, 23)
  1739. Me.TextBox5.TabIndex = 1917
  1740. '
  1741. 'TextBox4
  1742. '
  1743. Me.TextBox4.Location = New System.Drawing.Point(78, 136)
  1744. Me.TextBox4.Name = "TextBox4"
  1745. Me.TextBox4.Size = New System.Drawing.Size(55, 23)
  1746. Me.TextBox4.TabIndex = 1916
  1747. '
  1748. 'TextBox3
  1749. '
  1750. Me.TextBox3.Location = New System.Drawing.Point(78, 105)
  1751. Me.TextBox3.Name = "TextBox3"
  1752. Me.TextBox3.Size = New System.Drawing.Size(55, 23)
  1753. Me.TextBox3.TabIndex = 1915
  1754. '
  1755. 'TextBox2
  1756. '
  1757. Me.TextBox2.Location = New System.Drawing.Point(78, 75)
  1758. Me.TextBox2.Name = "TextBox2"
  1759. Me.TextBox2.Size = New System.Drawing.Size(55, 23)
  1760. Me.TextBox2.TabIndex = 1914
  1761. '
  1762. 'TextBox1
  1763. '
  1764. Me.TextBox1.Location = New System.Drawing.Point(78, 44)
  1765. Me.TextBox1.Name = "TextBox1"
  1766. Me.TextBox1.Size = New System.Drawing.Size(55, 23)
  1767. Me.TextBox1.TabIndex = 1913
  1768. '
  1769. '排班明細_dgv
  1770. '
  1771. DataGridViewCellStyle2.BackColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(255, Byte), Integer), CType(CType(192, Byte), Integer))
  1772. Me.排班明細_dgv.AlternatingRowsDefaultCellStyle = DataGridViewCellStyle2
  1773. Me.排班明細_dgv.Anchor = CType(((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
  1774. Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  1775. Me.排班明細_dgv.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill
  1776. Me.排班明細_dgv.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize
  1777. Me.排班明細_dgv.Location = New System.Drawing.Point(1338, 305)
  1778. Me.排班明細_dgv.Name = "排班明細_dgv"
  1779. Me.排班明細_dgv.RowHeadersWidth = 5
  1780. Me.排班明細_dgv.RowTemplate.Height = 24
  1781. Me.排班明細_dgv.Size = New System.Drawing.Size(126, 0)
  1782. Me.排班明細_dgv.TabIndex = 1912
  1783. Me.排班明細_dgv.Visible = False
  1784. '
  1785. '月_lb
  1786. '
  1787. Me.月_lb.AutoSize = True
  1788. Me.月_lb.Font = New System.Drawing.Font("微軟正黑體", 15.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1789. Me.月_lb.Location = New System.Drawing.Point(105, 0)
  1790. Me.月_lb.Name = "月_lb"
  1791. Me.月_lb.Size = New System.Drawing.Size(40, 26)
  1792. Me.月_lb.TabIndex = 1911
  1793. Me.月_lb.Text = "XX"
  1794. '
  1795. 'Label103
  1796. '
  1797. Me.Label103.AutoSize = True
  1798. Me.Label103.Font = New System.Drawing.Font("微軟正黑體", 15.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1799. Me.Label103.Location = New System.Drawing.Point(78, 0)
  1800. Me.Label103.Name = "Label103"
  1801. Me.Label103.Size = New System.Drawing.Size(21, 26)
  1802. Me.Label103.TabIndex = 1910
  1803. Me.Label103.Text = "/"
  1804. '
  1805. '年_lb
  1806. '
  1807. Me.年_lb.AutoSize = True
  1808. Me.年_lb.Font = New System.Drawing.Font("微軟正黑體", 15.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1809. Me.年_lb.Location = New System.Drawing.Point(4, 0)
  1810. Me.年_lb.Name = "年_lb"
  1811. Me.年_lb.Size = New System.Drawing.Size(68, 26)
  1812. Me.年_lb.TabIndex = 1909
  1813. Me.年_lb.Text = "XXXX"
  1814. '
  1815. '姓名_tb31
  1816. '
  1817. Me.姓名_tb31.Location = New System.Drawing.Point(22, 975)
  1818. Me.姓名_tb31.Name = "姓名_tb31"
  1819. Me.姓名_tb31.Size = New System.Drawing.Size(55, 23)
  1820. Me.姓名_tb31.TabIndex = 1897
  1821. '
  1822. '姓名_tb30
  1823. '
  1824. Me.姓名_tb30.Location = New System.Drawing.Point(22, 944)
  1825. Me.姓名_tb30.Name = "姓名_tb30"
  1826. Me.姓名_tb30.Size = New System.Drawing.Size(55, 23)
  1827. Me.姓名_tb30.TabIndex = 1896
  1828. '
  1829. '姓名_tb29
  1830. '
  1831. Me.姓名_tb29.Location = New System.Drawing.Point(22, 913)
  1832. Me.姓名_tb29.Name = "姓名_tb29"
  1833. Me.姓名_tb29.Size = New System.Drawing.Size(55, 23)
  1834. Me.姓名_tb29.TabIndex = 1895
  1835. '
  1836. '姓名_tb28
  1837. '
  1838. Me.姓名_tb28.Location = New System.Drawing.Point(22, 882)
  1839. Me.姓名_tb28.Name = "姓名_tb28"
  1840. Me.姓名_tb28.Size = New System.Drawing.Size(55, 23)
  1841. Me.姓名_tb28.TabIndex = 1894
  1842. '
  1843. '姓名_tb27
  1844. '
  1845. Me.姓名_tb27.Location = New System.Drawing.Point(22, 851)
  1846. Me.姓名_tb27.Name = "姓名_tb27"
  1847. Me.姓名_tb27.Size = New System.Drawing.Size(55, 23)
  1848. Me.姓名_tb27.TabIndex = 1893
  1849. '
  1850. '姓名_tb26
  1851. '
  1852. Me.姓名_tb26.Location = New System.Drawing.Point(22, 821)
  1853. Me.姓名_tb26.Name = "姓名_tb26"
  1854. Me.姓名_tb26.Size = New System.Drawing.Size(55, 23)
  1855. Me.姓名_tb26.TabIndex = 1892
  1856. '
  1857. '姓名_tb25
  1858. '
  1859. Me.姓名_tb25.Location = New System.Drawing.Point(22, 790)
  1860. Me.姓名_tb25.Name = "姓名_tb25"
  1861. Me.姓名_tb25.Size = New System.Drawing.Size(55, 23)
  1862. Me.姓名_tb25.TabIndex = 1891
  1863. '
  1864. '姓名_tb24
  1865. '
  1866. Me.姓名_tb24.Location = New System.Drawing.Point(22, 758)
  1867. Me.姓名_tb24.Name = "姓名_tb24"
  1868. Me.姓名_tb24.Size = New System.Drawing.Size(55, 23)
  1869. Me.姓名_tb24.TabIndex = 1890
  1870. '
  1871. '姓名_tb23
  1872. '
  1873. Me.姓名_tb23.Location = New System.Drawing.Point(22, 728)
  1874. Me.姓名_tb23.Name = "姓名_tb23"
  1875. Me.姓名_tb23.Size = New System.Drawing.Size(55, 23)
  1876. Me.姓名_tb23.TabIndex = 1889
  1877. '
  1878. '姓名_tb22
  1879. '
  1880. Me.姓名_tb22.Location = New System.Drawing.Point(22, 696)
  1881. Me.姓名_tb22.Name = "姓名_tb22"
  1882. Me.姓名_tb22.Size = New System.Drawing.Size(55, 23)
  1883. Me.姓名_tb22.TabIndex = 1888
  1884. '
  1885. '姓名_tb21
  1886. '
  1887. Me.姓名_tb21.Location = New System.Drawing.Point(22, 664)
  1888. Me.姓名_tb21.Name = "姓名_tb21"
  1889. Me.姓名_tb21.Size = New System.Drawing.Size(55, 23)
  1890. Me.姓名_tb21.TabIndex = 1887
  1891. '
  1892. 'NUP31
  1893. '
  1894. Me.NUP31.DecimalPlaces = 1
  1895. Me.NUP31.Increment = New Decimal(New Integer() {1, 0, 0, 65536})
  1896. Me.NUP31.Location = New System.Drawing.Point(299, 976)
  1897. Me.NUP31.Maximum = New Decimal(New Integer() {4, 0, 0, 0})
  1898. Me.NUP31.Minimum = New Decimal(New Integer() {5, 0, 0, 65536})
  1899. Me.NUP31.Name = "NUP31"
  1900. Me.NUP31.Size = New System.Drawing.Size(38, 23)
  1901. Me.NUP31.TabIndex = 1886
  1902. Me.NUP31.Value = New Decimal(New Integer() {2, 0, 0, 0})
  1903. '
  1904. 'NUP30
  1905. '
  1906. Me.NUP30.DecimalPlaces = 1
  1907. Me.NUP30.Increment = New Decimal(New Integer() {1, 0, 0, 65536})
  1908. Me.NUP30.Location = New System.Drawing.Point(298, 943)
  1909. Me.NUP30.Maximum = New Decimal(New Integer() {4, 0, 0, 0})
  1910. Me.NUP30.Minimum = New Decimal(New Integer() {5, 0, 0, 65536})
  1911. Me.NUP30.Name = "NUP30"
  1912. Me.NUP30.Size = New System.Drawing.Size(38, 23)
  1913. Me.NUP30.TabIndex = 1885
  1914. Me.NUP30.Value = New Decimal(New Integer() {2, 0, 0, 0})
  1915. '
  1916. 'NUP29
  1917. '
  1918. Me.NUP29.DecimalPlaces = 1
  1919. Me.NUP29.Increment = New Decimal(New Integer() {1, 0, 0, 65536})
  1920. Me.NUP29.Location = New System.Drawing.Point(298, 914)
  1921. Me.NUP29.Maximum = New Decimal(New Integer() {4, 0, 0, 0})
  1922. Me.NUP29.Minimum = New Decimal(New Integer() {5, 0, 0, 65536})
  1923. Me.NUP29.Name = "NUP29"
  1924. Me.NUP29.Size = New System.Drawing.Size(38, 23)
  1925. Me.NUP29.TabIndex = 1884
  1926. Me.NUP29.Value = New Decimal(New Integer() {2, 0, 0, 0})
  1927. '
  1928. 'NUP28
  1929. '
  1930. Me.NUP28.DecimalPlaces = 1
  1931. Me.NUP28.Increment = New Decimal(New Integer() {1, 0, 0, 65536})
  1932. Me.NUP28.Location = New System.Drawing.Point(299, 883)
  1933. Me.NUP28.Maximum = New Decimal(New Integer() {4, 0, 0, 0})
  1934. Me.NUP28.Minimum = New Decimal(New Integer() {5, 0, 0, 65536})
  1935. Me.NUP28.Name = "NUP28"
  1936. Me.NUP28.Size = New System.Drawing.Size(38, 23)
  1937. Me.NUP28.TabIndex = 1883
  1938. Me.NUP28.Value = New Decimal(New Integer() {2, 0, 0, 0})
  1939. '
  1940. 'NUP27
  1941. '
  1942. Me.NUP27.DecimalPlaces = 1
  1943. Me.NUP27.Increment = New Decimal(New Integer() {1, 0, 0, 65536})
  1944. Me.NUP27.Location = New System.Drawing.Point(299, 852)
  1945. Me.NUP27.Maximum = New Decimal(New Integer() {4, 0, 0, 0})
  1946. Me.NUP27.Minimum = New Decimal(New Integer() {5, 0, 0, 65536})
  1947. Me.NUP27.Name = "NUP27"
  1948. Me.NUP27.Size = New System.Drawing.Size(38, 23)
  1949. Me.NUP27.TabIndex = 1882
  1950. Me.NUP27.Value = New Decimal(New Integer() {2, 0, 0, 0})
  1951. '
  1952. 'NUP26
  1953. '
  1954. Me.NUP26.DecimalPlaces = 1
  1955. Me.NUP26.Increment = New Decimal(New Integer() {1, 0, 0, 65536})
  1956. Me.NUP26.Location = New System.Drawing.Point(299, 822)
  1957. Me.NUP26.Maximum = New Decimal(New Integer() {4, 0, 0, 0})
  1958. Me.NUP26.Minimum = New Decimal(New Integer() {5, 0, 0, 65536})
  1959. Me.NUP26.Name = "NUP26"
  1960. Me.NUP26.Size = New System.Drawing.Size(38, 23)
  1961. Me.NUP26.TabIndex = 1881
  1962. Me.NUP26.Value = New Decimal(New Integer() {2, 0, 0, 0})
  1963. '
  1964. 'NUP25
  1965. '
  1966. Me.NUP25.DecimalPlaces = 1
  1967. Me.NUP25.Increment = New Decimal(New Integer() {1, 0, 0, 65536})
  1968. Me.NUP25.Location = New System.Drawing.Point(299, 791)
  1969. Me.NUP25.Maximum = New Decimal(New Integer() {4, 0, 0, 0})
  1970. Me.NUP25.Minimum = New Decimal(New Integer() {5, 0, 0, 65536})
  1971. Me.NUP25.Name = "NUP25"
  1972. Me.NUP25.Size = New System.Drawing.Size(38, 23)
  1973. Me.NUP25.TabIndex = 1880
  1974. Me.NUP25.Value = New Decimal(New Integer() {2, 0, 0, 0})
  1975. '
  1976. 'NUP24
  1977. '
  1978. Me.NUP24.DecimalPlaces = 1
  1979. Me.NUP24.Increment = New Decimal(New Integer() {1, 0, 0, 65536})
  1980. Me.NUP24.Location = New System.Drawing.Point(298, 759)
  1981. Me.NUP24.Maximum = New Decimal(New Integer() {4, 0, 0, 0})
  1982. Me.NUP24.Minimum = New Decimal(New Integer() {5, 0, 0, 65536})
  1983. Me.NUP24.Name = "NUP24"
  1984. Me.NUP24.Size = New System.Drawing.Size(38, 23)
  1985. Me.NUP24.TabIndex = 1879
  1986. Me.NUP24.Value = New Decimal(New Integer() {2, 0, 0, 0})
  1987. '
  1988. 'NUP23
  1989. '
  1990. Me.NUP23.DecimalPlaces = 1
  1991. Me.NUP23.Increment = New Decimal(New Integer() {1, 0, 0, 65536})
  1992. Me.NUP23.Location = New System.Drawing.Point(299, 728)
  1993. Me.NUP23.Maximum = New Decimal(New Integer() {4, 0, 0, 0})
  1994. Me.NUP23.Minimum = New Decimal(New Integer() {5, 0, 0, 65536})
  1995. Me.NUP23.Name = "NUP23"
  1996. Me.NUP23.Size = New System.Drawing.Size(38, 23)
  1997. Me.NUP23.TabIndex = 1878
  1998. Me.NUP23.Value = New Decimal(New Integer() {2, 0, 0, 0})
  1999. '
  2000. 'NUP22
  2001. '
  2002. Me.NUP22.DecimalPlaces = 1
  2003. Me.NUP22.Increment = New Decimal(New Integer() {1, 0, 0, 65536})
  2004. Me.NUP22.Location = New System.Drawing.Point(298, 697)
  2005. Me.NUP22.Maximum = New Decimal(New Integer() {4, 0, 0, 0})
  2006. Me.NUP22.Minimum = New Decimal(New Integer() {5, 0, 0, 65536})
  2007. Me.NUP22.Name = "NUP22"
  2008. Me.NUP22.Size = New System.Drawing.Size(38, 23)
  2009. Me.NUP22.TabIndex = 1877
  2010. Me.NUP22.Value = New Decimal(New Integer() {2, 0, 0, 0})
  2011. '
  2012. 'NUP21
  2013. '
  2014. Me.NUP21.DecimalPlaces = 1
  2015. Me.NUP21.Increment = New Decimal(New Integer() {1, 0, 0, 65536})
  2016. Me.NUP21.Location = New System.Drawing.Point(298, 664)
  2017. Me.NUP21.Maximum = New Decimal(New Integer() {4, 0, 0, 0})
  2018. Me.NUP21.Minimum = New Decimal(New Integer() {5, 0, 0, 65536})
  2019. Me.NUP21.Name = "NUP21"
  2020. Me.NUP21.Size = New System.Drawing.Size(38, 23)
  2021. Me.NUP21.TabIndex = 1876
  2022. Me.NUP21.Value = New Decimal(New Integer() {2, 0, 0, 0})
  2023. '
  2024. '班別_cb31
  2025. '
  2026. Me.班別_cb31.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
  2027. Me.班別_cb31.FormattingEnabled = True
  2028. Me.班別_cb31.Items.AddRange(New Object() {"2019", "2020", "2021", "2022", "2023", "2024", "2025", "2026", "2027", "2028", "2029", "2030"})
  2029. Me.班別_cb31.Location = New System.Drawing.Point(142, 983)
  2030. Me.班別_cb31.Name = "班別_cb31"
  2031. Me.班別_cb31.Size = New System.Drawing.Size(78, 24)
  2032. Me.班別_cb31.TabIndex = 1875
  2033. '
  2034. '班別_cb30
  2035. '
  2036. Me.班別_cb30.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
  2037. Me.班別_cb30.FormattingEnabled = True
  2038. Me.班別_cb30.Items.AddRange(New Object() {"2019", "2020", "2021", "2022", "2023", "2024", "2025", "2026", "2027", "2028", "2029", "2030"})
  2039. Me.班別_cb30.Location = New System.Drawing.Point(135, 944)
  2040. Me.班別_cb30.Name = "班別_cb30"
  2041. Me.班別_cb30.Size = New System.Drawing.Size(78, 24)
  2042. Me.班別_cb30.TabIndex = 1874
  2043. '
  2044. '班別_cb29
  2045. '
  2046. Me.班別_cb29.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
  2047. Me.班別_cb29.FormattingEnabled = True
  2048. Me.班別_cb29.Items.AddRange(New Object() {"2019", "2020", "2021", "2022", "2023", "2024", "2025", "2026", "2027", "2028", "2029", "2030"})
  2049. Me.班別_cb29.Location = New System.Drawing.Point(135, 913)
  2050. Me.班別_cb29.Name = "班別_cb29"
  2051. Me.班別_cb29.Size = New System.Drawing.Size(78, 24)
  2052. Me.班別_cb29.TabIndex = 1873
  2053. '
  2054. '班別_cb28
  2055. '
  2056. Me.班別_cb28.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
  2057. Me.班別_cb28.FormattingEnabled = True
  2058. Me.班別_cb28.Items.AddRange(New Object() {"2019", "2020", "2021", "2022", "2023", "2024", "2025", "2026", "2027", "2028", "2029", "2030"})
  2059. Me.班別_cb28.Location = New System.Drawing.Point(135, 882)
  2060. Me.班別_cb28.Name = "班別_cb28"
  2061. Me.班別_cb28.Size = New System.Drawing.Size(78, 24)
  2062. Me.班別_cb28.TabIndex = 1872
  2063. '
  2064. '班別_cb27
  2065. '
  2066. Me.班別_cb27.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
  2067. Me.班別_cb27.FormattingEnabled = True
  2068. Me.班別_cb27.Items.AddRange(New Object() {"2019", "2020", "2021", "2022", "2023", "2024", "2025", "2026", "2027", "2028", "2029", "2030"})
  2069. Me.班別_cb27.Location = New System.Drawing.Point(135, 851)
  2070. Me.班別_cb27.Name = "班別_cb27"
  2071. Me.班別_cb27.Size = New System.Drawing.Size(78, 24)
  2072. Me.班別_cb27.TabIndex = 1871
  2073. '
  2074. '班別_cb26
  2075. '
  2076. Me.班別_cb26.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
  2077. Me.班別_cb26.FormattingEnabled = True
  2078. Me.班別_cb26.Items.AddRange(New Object() {"2019", "2020", "2021", "2022", "2023", "2024", "2025", "2026", "2027", "2028", "2029", "2030"})
  2079. Me.班別_cb26.Location = New System.Drawing.Point(135, 821)
  2080. Me.班別_cb26.Name = "班別_cb26"
  2081. Me.班別_cb26.Size = New System.Drawing.Size(78, 24)
  2082. Me.班別_cb26.TabIndex = 1870
  2083. '
  2084. '班別_cb25
  2085. '
  2086. Me.班別_cb25.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
  2087. Me.班別_cb25.FormattingEnabled = True
  2088. Me.班別_cb25.Items.AddRange(New Object() {"2019", "2020", "2021", "2022", "2023", "2024", "2025", "2026", "2027", "2028", "2029", "2030"})
  2089. Me.班別_cb25.Location = New System.Drawing.Point(135, 789)
  2090. Me.班別_cb25.Name = "班別_cb25"
  2091. Me.班別_cb25.Size = New System.Drawing.Size(78, 24)
  2092. Me.班別_cb25.TabIndex = 1869
  2093. '
  2094. '班別_cb24
  2095. '
  2096. Me.班別_cb24.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
  2097. Me.班別_cb24.FormattingEnabled = True
  2098. Me.班別_cb24.Items.AddRange(New Object() {"2019", "2020", "2021", "2022", "2023", "2024", "2025", "2026", "2027", "2028", "2029", "2030"})
  2099. Me.班別_cb24.Location = New System.Drawing.Point(135, 758)
  2100. Me.班別_cb24.Name = "班別_cb24"
  2101. Me.班別_cb24.Size = New System.Drawing.Size(78, 24)
  2102. Me.班別_cb24.TabIndex = 1868
  2103. '
  2104. '班別_cb23
  2105. '
  2106. Me.班別_cb23.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
  2107. Me.班別_cb23.FormattingEnabled = True
  2108. Me.班別_cb23.Items.AddRange(New Object() {"2019", "2020", "2021", "2022", "2023", "2024", "2025", "2026", "2027", "2028", "2029", "2030"})
  2109. Me.班別_cb23.Location = New System.Drawing.Point(135, 727)
  2110. Me.班別_cb23.Name = "班別_cb23"
  2111. Me.班別_cb23.Size = New System.Drawing.Size(78, 24)
  2112. Me.班別_cb23.TabIndex = 1867
  2113. '
  2114. '班別_cb22
  2115. '
  2116. Me.班別_cb22.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
  2117. Me.班別_cb22.FormattingEnabled = True
  2118. Me.班別_cb22.Items.AddRange(New Object() {"2019", "2020", "2021", "2022", "2023", "2024", "2025", "2026", "2027", "2028", "2029", "2030"})
  2119. Me.班別_cb22.Location = New System.Drawing.Point(135, 696)
  2120. Me.班別_cb22.Name = "班別_cb22"
  2121. Me.班別_cb22.Size = New System.Drawing.Size(78, 24)
  2122. Me.班別_cb22.TabIndex = 1866
  2123. '
  2124. '班別_cb21
  2125. '
  2126. Me.班別_cb21.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
  2127. Me.班別_cb21.FormattingEnabled = True
  2128. Me.班別_cb21.Items.AddRange(New Object() {"2019", "2020", "2021", "2022", "2023", "2024", "2025", "2026", "2027", "2028", "2029", "2030"})
  2129. Me.班別_cb21.Location = New System.Drawing.Point(135, 664)
  2130. Me.班別_cb21.Name = "班別_cb21"
  2131. Me.班別_cb21.Size = New System.Drawing.Size(78, 24)
  2132. Me.班別_cb21.TabIndex = 1865
  2133. '
  2134. 'NumericUpDown31
  2135. '
  2136. Me.NumericUpDown31.DecimalPlaces = 1
  2137. Me.NumericUpDown31.Increment = New Decimal(New Integer() {5, 0, 0, 65536})
  2138. Me.NumericUpDown31.Location = New System.Drawing.Point(261, 976)
  2139. Me.NumericUpDown31.Maximum = New Decimal(New Integer() {8, 0, 0, 0})
  2140. Me.NumericUpDown31.Minimum = New Decimal(New Integer() {2, 0, 0, 0})
  2141. Me.NumericUpDown31.Name = "NumericUpDown31"
  2142. Me.NumericUpDown31.Size = New System.Drawing.Size(37, 23)
  2143. Me.NumericUpDown31.TabIndex = 1853
  2144. Me.NumericUpDown31.Value = New Decimal(New Integer() {4, 0, 0, 0})
  2145. '
  2146. 'NumericUpDown30
  2147. '
  2148. Me.NumericUpDown30.DecimalPlaces = 1
  2149. Me.NumericUpDown30.Increment = New Decimal(New Integer() {5, 0, 0, 65536})
  2150. Me.NumericUpDown30.Location = New System.Drawing.Point(261, 943)
  2151. Me.NumericUpDown30.Maximum = New Decimal(New Integer() {8, 0, 0, 0})
  2152. Me.NumericUpDown30.Minimum = New Decimal(New Integer() {2, 0, 0, 0})
  2153. Me.NumericUpDown30.Name = "NumericUpDown30"
  2154. Me.NumericUpDown30.Size = New System.Drawing.Size(37, 23)
  2155. Me.NumericUpDown30.TabIndex = 1852
  2156. Me.NumericUpDown30.Value = New Decimal(New Integer() {4, 0, 0, 0})
  2157. '
  2158. 'NumericUpDown29
  2159. '
  2160. Me.NumericUpDown29.DecimalPlaces = 1
  2161. Me.NumericUpDown29.Increment = New Decimal(New Integer() {5, 0, 0, 65536})
  2162. Me.NumericUpDown29.Location = New System.Drawing.Point(261, 914)
  2163. Me.NumericUpDown29.Maximum = New Decimal(New Integer() {8, 0, 0, 0})
  2164. Me.NumericUpDown29.Minimum = New Decimal(New Integer() {2, 0, 0, 0})
  2165. Me.NumericUpDown29.Name = "NumericUpDown29"
  2166. Me.NumericUpDown29.Size = New System.Drawing.Size(37, 23)
  2167. Me.NumericUpDown29.TabIndex = 1851
  2168. Me.NumericUpDown29.Value = New Decimal(New Integer() {4, 0, 0, 0})
  2169. '
  2170. 'NumericUpDown28
  2171. '
  2172. Me.NumericUpDown28.DecimalPlaces = 1
  2173. Me.NumericUpDown28.Increment = New Decimal(New Integer() {5, 0, 0, 65536})
  2174. Me.NumericUpDown28.Location = New System.Drawing.Point(261, 883)
  2175. Me.NumericUpDown28.Maximum = New Decimal(New Integer() {8, 0, 0, 0})
  2176. Me.NumericUpDown28.Minimum = New Decimal(New Integer() {2, 0, 0, 0})
  2177. Me.NumericUpDown28.Name = "NumericUpDown28"
  2178. Me.NumericUpDown28.Size = New System.Drawing.Size(37, 23)
  2179. Me.NumericUpDown28.TabIndex = 1850
  2180. Me.NumericUpDown28.Value = New Decimal(New Integer() {4, 0, 0, 0})
  2181. '
  2182. 'NumericUpDown27
  2183. '
  2184. Me.NumericUpDown27.DecimalPlaces = 1
  2185. Me.NumericUpDown27.Increment = New Decimal(New Integer() {5, 0, 0, 65536})
  2186. Me.NumericUpDown27.Location = New System.Drawing.Point(261, 852)
  2187. Me.NumericUpDown27.Maximum = New Decimal(New Integer() {8, 0, 0, 0})
  2188. Me.NumericUpDown27.Minimum = New Decimal(New Integer() {2, 0, 0, 0})
  2189. Me.NumericUpDown27.Name = "NumericUpDown27"
  2190. Me.NumericUpDown27.Size = New System.Drawing.Size(37, 23)
  2191. Me.NumericUpDown27.TabIndex = 1849
  2192. Me.NumericUpDown27.Value = New Decimal(New Integer() {4, 0, 0, 0})
  2193. '
  2194. 'NumericUpDown26
  2195. '
  2196. Me.NumericUpDown26.DecimalPlaces = 1
  2197. Me.NumericUpDown26.Increment = New Decimal(New Integer() {5, 0, 0, 65536})
  2198. Me.NumericUpDown26.Location = New System.Drawing.Point(261, 822)
  2199. Me.NumericUpDown26.Maximum = New Decimal(New Integer() {8, 0, 0, 0})
  2200. Me.NumericUpDown26.Minimum = New Decimal(New Integer() {2, 0, 0, 0})
  2201. Me.NumericUpDown26.Name = "NumericUpDown26"
  2202. Me.NumericUpDown26.Size = New System.Drawing.Size(37, 23)
  2203. Me.NumericUpDown26.TabIndex = 1848
  2204. Me.NumericUpDown26.Value = New Decimal(New Integer() {4, 0, 0, 0})
  2205. '
  2206. 'NumericUpDown25
  2207. '
  2208. Me.NumericUpDown25.DecimalPlaces = 1
  2209. Me.NumericUpDown25.Increment = New Decimal(New Integer() {5, 0, 0, 65536})
  2210. Me.NumericUpDown25.Location = New System.Drawing.Point(261, 791)
  2211. Me.NumericUpDown25.Maximum = New Decimal(New Integer() {8, 0, 0, 0})
  2212. Me.NumericUpDown25.Minimum = New Decimal(New Integer() {2, 0, 0, 0})
  2213. Me.NumericUpDown25.Name = "NumericUpDown25"
  2214. Me.NumericUpDown25.Size = New System.Drawing.Size(37, 23)
  2215. Me.NumericUpDown25.TabIndex = 1847
  2216. Me.NumericUpDown25.Value = New Decimal(New Integer() {4, 0, 0, 0})
  2217. '
  2218. 'NumericUpDown24
  2219. '
  2220. Me.NumericUpDown24.DecimalPlaces = 1
  2221. Me.NumericUpDown24.Increment = New Decimal(New Integer() {5, 0, 0, 65536})
  2222. Me.NumericUpDown24.Location = New System.Drawing.Point(261, 759)
  2223. Me.NumericUpDown24.Maximum = New Decimal(New Integer() {8, 0, 0, 0})
  2224. Me.NumericUpDown24.Minimum = New Decimal(New Integer() {2, 0, 0, 0})
  2225. Me.NumericUpDown24.Name = "NumericUpDown24"
  2226. Me.NumericUpDown24.Size = New System.Drawing.Size(37, 23)
  2227. Me.NumericUpDown24.TabIndex = 1846
  2228. Me.NumericUpDown24.Value = New Decimal(New Integer() {4, 0, 0, 0})
  2229. '
  2230. 'NumericUpDown23
  2231. '
  2232. Me.NumericUpDown23.DecimalPlaces = 1
  2233. Me.NumericUpDown23.Increment = New Decimal(New Integer() {5, 0, 0, 65536})
  2234. Me.NumericUpDown23.Location = New System.Drawing.Point(261, 728)
  2235. Me.NumericUpDown23.Maximum = New Decimal(New Integer() {8, 0, 0, 0})
  2236. Me.NumericUpDown23.Minimum = New Decimal(New Integer() {2, 0, 0, 0})
  2237. Me.NumericUpDown23.Name = "NumericUpDown23"
  2238. Me.NumericUpDown23.Size = New System.Drawing.Size(37, 23)
  2239. Me.NumericUpDown23.TabIndex = 1845
  2240. Me.NumericUpDown23.Value = New Decimal(New Integer() {4, 0, 0, 0})
  2241. '
  2242. 'NumericUpDown22
  2243. '
  2244. Me.NumericUpDown22.DecimalPlaces = 1
  2245. Me.NumericUpDown22.Increment = New Decimal(New Integer() {5, 0, 0, 65536})
  2246. Me.NumericUpDown22.Location = New System.Drawing.Point(261, 697)
  2247. Me.NumericUpDown22.Maximum = New Decimal(New Integer() {8, 0, 0, 0})
  2248. Me.NumericUpDown22.Minimum = New Decimal(New Integer() {2, 0, 0, 0})
  2249. Me.NumericUpDown22.Name = "NumericUpDown22"
  2250. Me.NumericUpDown22.Size = New System.Drawing.Size(37, 23)
  2251. Me.NumericUpDown22.TabIndex = 1844
  2252. Me.NumericUpDown22.Value = New Decimal(New Integer() {4, 0, 0, 0})
  2253. '
  2254. 'NumericUpDown21
  2255. '
  2256. Me.NumericUpDown21.DecimalPlaces = 1
  2257. Me.NumericUpDown21.Increment = New Decimal(New Integer() {5, 0, 0, 65536})
  2258. Me.NumericUpDown21.Location = New System.Drawing.Point(261, 664)
  2259. Me.NumericUpDown21.Maximum = New Decimal(New Integer() {8, 0, 0, 0})
  2260. Me.NumericUpDown21.Minimum = New Decimal(New Integer() {2, 0, 0, 0})
  2261. Me.NumericUpDown21.Name = "NumericUpDown21"
  2262. Me.NumericUpDown21.Size = New System.Drawing.Size(37, 23)
  2263. Me.NumericUpDown21.TabIndex = 1843
  2264. Me.NumericUpDown21.Value = New Decimal(New Integer() {4, 0, 0, 0})
  2265. '
  2266. 'ComboBox62
  2267. '
  2268. Me.ComboBox62.BackColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer))
  2269. Me.ComboBox62.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2270. Me.ComboBox62.FormattingEnabled = True
  2271. Me.ComboBox62.Items.AddRange(New Object() {"2019", "2020", "2021", "2022", "2023", "2024", "2025", "2026", "2027", "2028", "2029", "2030"})
  2272. Me.ComboBox62.Location = New System.Drawing.Point(874, 974)
  2273. Me.ComboBox62.Name = "ComboBox62"
  2274. Me.ComboBox62.Size = New System.Drawing.Size(150, 25)
  2275. Me.ComboBox62.TabIndex = 1842
  2276. '
  2277. 'ComboBox61
  2278. '
  2279. Me.ComboBox61.BackColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer))
  2280. Me.ComboBox61.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2281. Me.ComboBox61.FormattingEnabled = True
  2282. Me.ComboBox61.Items.AddRange(New Object() {"2019", "2020", "2021", "2022", "2023", "2024", "2025", "2026", "2027", "2028", "2029", "2030"})
  2283. Me.ComboBox61.Location = New System.Drawing.Point(453, 974)
  2284. Me.ComboBox61.Name = "ComboBox61"
  2285. Me.ComboBox61.Size = New System.Drawing.Size(150, 25)
  2286. Me.ComboBox61.TabIndex = 1841
  2287. '
  2288. 'ComboBox60
  2289. '
  2290. Me.ComboBox60.BackColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer))
  2291. Me.ComboBox60.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2292. Me.ComboBox60.FormattingEnabled = True
  2293. Me.ComboBox60.Items.AddRange(New Object() {"2019", "2020", "2021", "2022", "2023", "2024", "2025", "2026", "2027", "2028", "2029", "2030"})
  2294. Me.ComboBox60.Location = New System.Drawing.Point(873, 943)
  2295. Me.ComboBox60.Name = "ComboBox60"
  2296. Me.ComboBox60.Size = New System.Drawing.Size(150, 25)
  2297. Me.ComboBox60.TabIndex = 1840
  2298. '
  2299. 'ComboBox59
  2300. '
  2301. Me.ComboBox59.BackColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer))
  2302. Me.ComboBox59.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2303. Me.ComboBox59.FormattingEnabled = True
  2304. Me.ComboBox59.Items.AddRange(New Object() {"2019", "2020", "2021", "2022", "2023", "2024", "2025", "2026", "2027", "2028", "2029", "2030"})
  2305. Me.ComboBox59.Location = New System.Drawing.Point(453, 943)
  2306. Me.ComboBox59.Name = "ComboBox59"
  2307. Me.ComboBox59.Size = New System.Drawing.Size(150, 25)
  2308. Me.ComboBox59.TabIndex = 1839
  2309. '
  2310. 'ComboBox58
  2311. '
  2312. Me.ComboBox58.BackColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer))
  2313. Me.ComboBox58.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2314. Me.ComboBox58.FormattingEnabled = True
  2315. Me.ComboBox58.Items.AddRange(New Object() {"2019", "2020", "2021", "2022", "2023", "2024", "2025", "2026", "2027", "2028", "2029", "2030"})
  2316. Me.ComboBox58.Location = New System.Drawing.Point(960, 912)
  2317. Me.ComboBox58.Name = "ComboBox58"
  2318. Me.ComboBox58.Size = New System.Drawing.Size(150, 25)
  2319. Me.ComboBox58.TabIndex = 1838
  2320. '
  2321. 'ComboBox57
  2322. '
  2323. Me.ComboBox57.BackColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer))
  2324. Me.ComboBox57.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2325. Me.ComboBox57.FormattingEnabled = True
  2326. Me.ComboBox57.Items.AddRange(New Object() {"2019", "2020", "2021", "2022", "2023", "2024", "2025", "2026", "2027", "2028", "2029", "2030"})
  2327. Me.ComboBox57.Location = New System.Drawing.Point(540, 912)
  2328. Me.ComboBox57.Name = "ComboBox57"
  2329. Me.ComboBox57.Size = New System.Drawing.Size(150, 25)
  2330. Me.ComboBox57.TabIndex = 1837
  2331. '
  2332. 'ComboBox56
  2333. '
  2334. Me.ComboBox56.BackColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer))
  2335. Me.ComboBox56.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2336. Me.ComboBox56.FormattingEnabled = True
  2337. Me.ComboBox56.Items.AddRange(New Object() {"2019", "2020", "2021", "2022", "2023", "2024", "2025", "2026", "2027", "2028", "2029", "2030"})
  2338. Me.ComboBox56.Location = New System.Drawing.Point(960, 881)
  2339. Me.ComboBox56.Name = "ComboBox56"
  2340. Me.ComboBox56.Size = New System.Drawing.Size(150, 25)
  2341. Me.ComboBox56.TabIndex = 1836
  2342. '
  2343. 'ComboBox55
  2344. '
  2345. Me.ComboBox55.BackColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer))
  2346. Me.ComboBox55.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2347. Me.ComboBox55.FormattingEnabled = True
  2348. Me.ComboBox55.Items.AddRange(New Object() {"2019", "2020", "2021", "2022", "2023", "2024", "2025", "2026", "2027", "2028", "2029", "2030"})
  2349. Me.ComboBox55.Location = New System.Drawing.Point(540, 881)
  2350. Me.ComboBox55.Name = "ComboBox55"
  2351. Me.ComboBox55.Size = New System.Drawing.Size(150, 25)
  2352. Me.ComboBox55.TabIndex = 1835
  2353. '
  2354. 'ComboBox54
  2355. '
  2356. Me.ComboBox54.BackColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer))
  2357. Me.ComboBox54.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2358. Me.ComboBox54.FormattingEnabled = True
  2359. Me.ComboBox54.Items.AddRange(New Object() {"2019", "2020", "2021", "2022", "2023", "2024", "2025", "2026", "2027", "2028", "2029", "2030"})
  2360. Me.ComboBox54.Location = New System.Drawing.Point(985, 850)
  2361. Me.ComboBox54.Name = "ComboBox54"
  2362. Me.ComboBox54.Size = New System.Drawing.Size(150, 25)
  2363. Me.ComboBox54.TabIndex = 1834
  2364. '
  2365. 'ComboBox53
  2366. '
  2367. Me.ComboBox53.BackColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer))
  2368. Me.ComboBox53.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2369. Me.ComboBox53.FormattingEnabled = True
  2370. Me.ComboBox53.Items.AddRange(New Object() {"2019", "2020", "2021", "2022", "2023", "2024", "2025", "2026", "2027", "2028", "2029", "2030"})
  2371. Me.ComboBox53.Location = New System.Drawing.Point(565, 850)
  2372. Me.ComboBox53.Name = "ComboBox53"
  2373. Me.ComboBox53.Size = New System.Drawing.Size(150, 25)
  2374. Me.ComboBox53.TabIndex = 1833
  2375. '
  2376. 'ComboBox52
  2377. '
  2378. Me.ComboBox52.BackColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer))
  2379. Me.ComboBox52.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2380. Me.ComboBox52.FormattingEnabled = True
  2381. Me.ComboBox52.Items.AddRange(New Object() {"2019", "2020", "2021", "2022", "2023", "2024", "2025", "2026", "2027", "2028", "2029", "2030"})
  2382. Me.ComboBox52.Location = New System.Drawing.Point(985, 820)
  2383. Me.ComboBox52.Name = "ComboBox52"
  2384. Me.ComboBox52.Size = New System.Drawing.Size(150, 25)
  2385. Me.ComboBox52.TabIndex = 1832
  2386. '
  2387. 'ComboBox51
  2388. '
  2389. Me.ComboBox51.BackColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer))
  2390. Me.ComboBox51.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2391. Me.ComboBox51.FormattingEnabled = True
  2392. Me.ComboBox51.Items.AddRange(New Object() {"2019", "2020", "2021", "2022", "2023", "2024", "2025", "2026", "2027", "2028", "2029", "2030"})
  2393. Me.ComboBox51.Location = New System.Drawing.Point(565, 820)
  2394. Me.ComboBox51.Name = "ComboBox51"
  2395. Me.ComboBox51.Size = New System.Drawing.Size(150, 25)
  2396. Me.ComboBox51.TabIndex = 1831
  2397. '
  2398. 'ComboBox50
  2399. '
  2400. Me.ComboBox50.BackColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer))
  2401. Me.ComboBox50.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2402. Me.ComboBox50.FormattingEnabled = True
  2403. Me.ComboBox50.Items.AddRange(New Object() {"2019", "2020", "2021", "2022", "2023", "2024", "2025", "2026", "2027", "2028", "2029", "2030"})
  2404. Me.ComboBox50.Location = New System.Drawing.Point(986, 789)
  2405. Me.ComboBox50.Name = "ComboBox50"
  2406. Me.ComboBox50.Size = New System.Drawing.Size(150, 25)
  2407. Me.ComboBox50.TabIndex = 1830
  2408. '
  2409. 'ComboBox49
  2410. '
  2411. Me.ComboBox49.BackColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer))
  2412. Me.ComboBox49.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2413. Me.ComboBox49.FormattingEnabled = True
  2414. Me.ComboBox49.Items.AddRange(New Object() {"2019", "2020", "2021", "2022", "2023", "2024", "2025", "2026", "2027", "2028", "2029", "2030"})
  2415. Me.ComboBox49.Location = New System.Drawing.Point(565, 788)
  2416. Me.ComboBox49.Name = "ComboBox49"
  2417. Me.ComboBox49.Size = New System.Drawing.Size(150, 25)
  2418. Me.ComboBox49.TabIndex = 1829
  2419. '
  2420. 'ComboBox48
  2421. '
  2422. Me.ComboBox48.BackColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer))
  2423. Me.ComboBox48.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2424. Me.ComboBox48.FormattingEnabled = True
  2425. Me.ComboBox48.Items.AddRange(New Object() {"2019", "2020", "2021", "2022", "2023", "2024", "2025", "2026", "2027", "2028", "2029", "2030"})
  2426. Me.ComboBox48.Location = New System.Drawing.Point(985, 757)
  2427. Me.ComboBox48.Name = "ComboBox48"
  2428. Me.ComboBox48.Size = New System.Drawing.Size(150, 25)
  2429. Me.ComboBox48.TabIndex = 1828
  2430. '
  2431. 'ComboBox47
  2432. '
  2433. Me.ComboBox47.BackColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer))
  2434. Me.ComboBox47.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2435. Me.ComboBox47.FormattingEnabled = True
  2436. Me.ComboBox47.Items.AddRange(New Object() {"2019", "2020", "2021", "2022", "2023", "2024", "2025", "2026", "2027", "2028", "2029", "2030"})
  2437. Me.ComboBox47.Location = New System.Drawing.Point(565, 757)
  2438. Me.ComboBox47.Name = "ComboBox47"
  2439. Me.ComboBox47.Size = New System.Drawing.Size(150, 25)
  2440. Me.ComboBox47.TabIndex = 1827
  2441. '
  2442. 'ComboBox46
  2443. '
  2444. Me.ComboBox46.BackColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer))
  2445. Me.ComboBox46.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2446. Me.ComboBox46.FormattingEnabled = True
  2447. Me.ComboBox46.Items.AddRange(New Object() {"2019", "2020", "2021", "2022", "2023", "2024", "2025", "2026", "2027", "2028", "2029", "2030"})
  2448. Me.ComboBox46.Location = New System.Drawing.Point(985, 726)
  2449. Me.ComboBox46.Name = "ComboBox46"
  2450. Me.ComboBox46.Size = New System.Drawing.Size(150, 25)
  2451. Me.ComboBox46.TabIndex = 1826
  2452. '
  2453. 'ComboBox45
  2454. '
  2455. Me.ComboBox45.BackColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer))
  2456. Me.ComboBox45.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2457. Me.ComboBox45.FormattingEnabled = True
  2458. Me.ComboBox45.Items.AddRange(New Object() {"2019", "2020", "2021", "2022", "2023", "2024", "2025", "2026", "2027", "2028", "2029", "2030"})
  2459. Me.ComboBox45.Location = New System.Drawing.Point(565, 726)
  2460. Me.ComboBox45.Name = "ComboBox45"
  2461. Me.ComboBox45.Size = New System.Drawing.Size(150, 25)
  2462. Me.ComboBox45.TabIndex = 1825
  2463. '
  2464. 'ComboBox44
  2465. '
  2466. Me.ComboBox44.BackColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer))
  2467. Me.ComboBox44.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2468. Me.ComboBox44.FormattingEnabled = True
  2469. Me.ComboBox44.Items.AddRange(New Object() {"2019", "2020", "2021", "2022", "2023", "2024", "2025", "2026", "2027", "2028", "2029", "2030"})
  2470. Me.ComboBox44.Location = New System.Drawing.Point(986, 695)
  2471. Me.ComboBox44.Name = "ComboBox44"
  2472. Me.ComboBox44.Size = New System.Drawing.Size(150, 25)
  2473. Me.ComboBox44.TabIndex = 1824
  2474. '
  2475. 'ComboBox43
  2476. '
  2477. Me.ComboBox43.BackColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer))
  2478. Me.ComboBox43.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2479. Me.ComboBox43.FormattingEnabled = True
  2480. Me.ComboBox43.Items.AddRange(New Object() {"2019", "2020", "2021", "2022", "2023", "2024", "2025", "2026", "2027", "2028", "2029", "2030"})
  2481. Me.ComboBox43.Location = New System.Drawing.Point(565, 695)
  2482. Me.ComboBox43.Name = "ComboBox43"
  2483. Me.ComboBox43.Size = New System.Drawing.Size(150, 25)
  2484. Me.ComboBox43.TabIndex = 1823
  2485. '
  2486. 'ComboBox42
  2487. '
  2488. Me.ComboBox42.BackColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer))
  2489. Me.ComboBox42.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2490. Me.ComboBox42.FormattingEnabled = True
  2491. Me.ComboBox42.Items.AddRange(New Object() {"2019", "2020", "2021", "2022", "2023", "2024", "2025", "2026", "2027", "2028", "2029", "2030"})
  2492. Me.ComboBox42.Location = New System.Drawing.Point(986, 664)
  2493. Me.ComboBox42.Name = "ComboBox42"
  2494. Me.ComboBox42.Size = New System.Drawing.Size(150, 25)
  2495. Me.ComboBox42.TabIndex = 1822
  2496. '
  2497. 'ComboBox41
  2498. '
  2499. Me.ComboBox41.BackColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer))
  2500. Me.ComboBox41.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2501. Me.ComboBox41.FormattingEnabled = True
  2502. Me.ComboBox41.Items.AddRange(New Object() {"2019", "2020", "2021", "2022", "2023", "2024", "2025", "2026", "2027", "2028", "2029", "2030"})
  2503. Me.ComboBox41.Location = New System.Drawing.Point(566, 663)
  2504. Me.ComboBox41.Name = "ComboBox41"
  2505. Me.ComboBox41.Size = New System.Drawing.Size(150, 25)
  2506. Me.ComboBox41.TabIndex = 1821
  2507. '
  2508. 'A_pb62
  2509. '
  2510. Me.A_pb62.Location = New System.Drawing.Point(792, 973)
  2511. Me.A_pb62.Maximum = 1
  2512. Me.A_pb62.Name = "A_pb62"
  2513. Me.A_pb62.Size = New System.Drawing.Size(340, 27)
  2514. Me.A_pb62.TabIndex = 1820
  2515. Me.A_pb62.Value = 1
  2516. '
  2517. 'A_pb61
  2518. '
  2519. Me.A_pb61.Location = New System.Drawing.Point(453, 973)
  2520. Me.A_pb61.Maximum = 1
  2521. Me.A_pb61.Name = "A_pb61"
  2522. Me.A_pb61.Size = New System.Drawing.Size(340, 27)
  2523. Me.A_pb61.TabIndex = 1819
  2524. Me.A_pb61.Value = 1
  2525. '
  2526. 'A_pb60
  2527. '
  2528. Me.A_pb60.Location = New System.Drawing.Point(792, 942)
  2529. Me.A_pb60.Maximum = 1
  2530. Me.A_pb60.Name = "A_pb60"
  2531. Me.A_pb60.Size = New System.Drawing.Size(340, 27)
  2532. Me.A_pb60.TabIndex = 1817
  2533. Me.A_pb60.Value = 1
  2534. '
  2535. 'A_pb59
  2536. '
  2537. Me.A_pb59.Location = New System.Drawing.Point(453, 942)
  2538. Me.A_pb59.Maximum = 1
  2539. Me.A_pb59.Name = "A_pb59"
  2540. Me.A_pb59.Size = New System.Drawing.Size(340, 27)
  2541. Me.A_pb59.TabIndex = 1816
  2542. Me.A_pb59.Value = 1
  2543. '
  2544. 'A_pb58
  2545. '
  2546. Me.A_pb58.Location = New System.Drawing.Point(853, 911)
  2547. Me.A_pb58.Maximum = 1
  2548. Me.A_pb58.Name = "A_pb58"
  2549. Me.A_pb58.Size = New System.Drawing.Size(340, 27)
  2550. Me.A_pb58.TabIndex = 1814
  2551. Me.A_pb58.Value = 1
  2552. '
  2553. 'A_pb57
  2554. '
  2555. Me.A_pb57.Location = New System.Drawing.Point(453, 911)
  2556. Me.A_pb57.Maximum = 1
  2557. Me.A_pb57.Name = "A_pb57"
  2558. Me.A_pb57.Size = New System.Drawing.Size(340, 27)
  2559. Me.A_pb57.TabIndex = 1813
  2560. Me.A_pb57.Value = 1
  2561. '
  2562. 'A_pb56
  2563. '
  2564. Me.A_pb56.Location = New System.Drawing.Point(854, 880)
  2565. Me.A_pb56.Maximum = 1
  2566. Me.A_pb56.Name = "A_pb56"
  2567. Me.A_pb56.Size = New System.Drawing.Size(340, 27)
  2568. Me.A_pb56.TabIndex = 1811
  2569. Me.A_pb56.Value = 1
  2570. '
  2571. 'A_pb55
  2572. '
  2573. Me.A_pb55.Location = New System.Drawing.Point(454, 880)
  2574. Me.A_pb55.Maximum = 1
  2575. Me.A_pb55.Name = "A_pb55"
  2576. Me.A_pb55.Size = New System.Drawing.Size(340, 27)
  2577. Me.A_pb55.TabIndex = 1810
  2578. Me.A_pb55.Value = 1
  2579. '
  2580. 'A_pb54
  2581. '
  2582. Me.A_pb54.Location = New System.Drawing.Point(880, 849)
  2583. Me.A_pb54.Maximum = 1
  2584. Me.A_pb54.Name = "A_pb54"
  2585. Me.A_pb54.Size = New System.Drawing.Size(340, 27)
  2586. Me.A_pb54.TabIndex = 1808
  2587. Me.A_pb54.Value = 1
  2588. '
  2589. 'A_pb53
  2590. '
  2591. Me.A_pb53.Location = New System.Drawing.Point(454, 849)
  2592. Me.A_pb53.Maximum = 1
  2593. Me.A_pb53.Name = "A_pb53"
  2594. Me.A_pb53.Size = New System.Drawing.Size(340, 27)
  2595. Me.A_pb53.TabIndex = 1807
  2596. Me.A_pb53.Value = 1
  2597. '
  2598. 'A_pb52
  2599. '
  2600. Me.A_pb52.Location = New System.Drawing.Point(880, 818)
  2601. Me.A_pb52.Maximum = 1
  2602. Me.A_pb52.Name = "A_pb52"
  2603. Me.A_pb52.Size = New System.Drawing.Size(340, 27)
  2604. Me.A_pb52.TabIndex = 1805
  2605. Me.A_pb52.Value = 1
  2606. '
  2607. 'A_pb51
  2608. '
  2609. Me.A_pb51.Location = New System.Drawing.Point(454, 818)
  2610. Me.A_pb51.Maximum = 1
  2611. Me.A_pb51.Name = "A_pb51"
  2612. Me.A_pb51.Size = New System.Drawing.Size(340, 27)
  2613. Me.A_pb51.TabIndex = 1804
  2614. Me.A_pb51.Value = 1
  2615. '
  2616. 'A_pb50
  2617. '
  2618. Me.A_pb50.Location = New System.Drawing.Point(880, 787)
  2619. Me.A_pb50.Maximum = 1
  2620. Me.A_pb50.Name = "A_pb50"
  2621. Me.A_pb50.Size = New System.Drawing.Size(340, 27)
  2622. Me.A_pb50.TabIndex = 1802
  2623. Me.A_pb50.Value = 1
  2624. '
  2625. 'A_pb49
  2626. '
  2627. Me.A_pb49.Location = New System.Drawing.Point(454, 787)
  2628. Me.A_pb49.Maximum = 1
  2629. Me.A_pb49.Name = "A_pb49"
  2630. Me.A_pb49.Size = New System.Drawing.Size(340, 27)
  2631. Me.A_pb49.TabIndex = 1801
  2632. Me.A_pb49.Value = 1
  2633. '
  2634. 'A_pb48
  2635. '
  2636. Me.A_pb48.Location = New System.Drawing.Point(880, 756)
  2637. Me.A_pb48.Maximum = 1
  2638. Me.A_pb48.Name = "A_pb48"
  2639. Me.A_pb48.Size = New System.Drawing.Size(340, 27)
  2640. Me.A_pb48.TabIndex = 1799
  2641. Me.A_pb48.Value = 1
  2642. '
  2643. 'A_pb47
  2644. '
  2645. Me.A_pb47.Location = New System.Drawing.Point(455, 756)
  2646. Me.A_pb47.Maximum = 1
  2647. Me.A_pb47.Name = "A_pb47"
  2648. Me.A_pb47.Size = New System.Drawing.Size(340, 27)
  2649. Me.A_pb47.TabIndex = 1798
  2650. Me.A_pb47.Value = 1
  2651. '
  2652. 'A_pb46
  2653. '
  2654. Me.A_pb46.Location = New System.Drawing.Point(880, 725)
  2655. Me.A_pb46.Maximum = 1
  2656. Me.A_pb46.Name = "A_pb46"
  2657. Me.A_pb46.Size = New System.Drawing.Size(340, 27)
  2658. Me.A_pb46.TabIndex = 1796
  2659. Me.A_pb46.Value = 1
  2660. '
  2661. 'A_pb45
  2662. '
  2663. Me.A_pb45.Location = New System.Drawing.Point(455, 725)
  2664. Me.A_pb45.Maximum = 1
  2665. Me.A_pb45.Name = "A_pb45"
  2666. Me.A_pb45.Size = New System.Drawing.Size(340, 27)
  2667. Me.A_pb45.TabIndex = 1795
  2668. Me.A_pb45.Value = 1
  2669. '
  2670. 'A_pb44
  2671. '
  2672. Me.A_pb44.Location = New System.Drawing.Point(880, 694)
  2673. Me.A_pb44.Maximum = 1
  2674. Me.A_pb44.Name = "A_pb44"
  2675. Me.A_pb44.Size = New System.Drawing.Size(340, 27)
  2676. Me.A_pb44.TabIndex = 1793
  2677. Me.A_pb44.Value = 1
  2678. '
  2679. 'A_pb43
  2680. '
  2681. Me.A_pb43.Location = New System.Drawing.Point(454, 694)
  2682. Me.A_pb43.Maximum = 1
  2683. Me.A_pb43.Name = "A_pb43"
  2684. Me.A_pb43.Size = New System.Drawing.Size(340, 27)
  2685. Me.A_pb43.TabIndex = 1792
  2686. Me.A_pb43.Value = 1
  2687. '
  2688. 'A_pb42
  2689. '
  2690. Me.A_pb42.Location = New System.Drawing.Point(880, 663)
  2691. Me.A_pb42.Maximum = 1
  2692. Me.A_pb42.Name = "A_pb42"
  2693. Me.A_pb42.Size = New System.Drawing.Size(340, 27)
  2694. Me.A_pb42.TabIndex = 1789
  2695. Me.A_pb42.Value = 1
  2696. '
  2697. 'A_pb41
  2698. '
  2699. Me.A_pb41.Location = New System.Drawing.Point(455, 663)
  2700. Me.A_pb41.Maximum = 1
  2701. Me.A_pb41.Name = "A_pb41"
  2702. Me.A_pb41.Size = New System.Drawing.Size(340, 27)
  2703. Me.A_pb41.TabIndex = 1788
  2704. Me.A_pb41.Value = 1
  2705. '
  2706. 'ComboBox40
  2707. '
  2708. Me.ComboBox40.BackColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer))
  2709. Me.ComboBox40.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2710. Me.ComboBox40.FormattingEnabled = True
  2711. Me.ComboBox40.Items.AddRange(New Object() {"2019", "2020", "2021", "2022", "2023", "2024", "2025", "2026", "2027", "2028", "2029", "2030"})
  2712. Me.ComboBox40.Location = New System.Drawing.Point(986, 633)
  2713. Me.ComboBox40.Name = "ComboBox40"
  2714. Me.ComboBox40.Size = New System.Drawing.Size(150, 25)
  2715. Me.ComboBox40.TabIndex = 1787
  2716. '
  2717. 'ComboBox39
  2718. '
  2719. Me.ComboBox39.BackColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer))
  2720. Me.ComboBox39.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2721. Me.ComboBox39.FormattingEnabled = True
  2722. Me.ComboBox39.Items.AddRange(New Object() {"2019", "2020", "2021", "2022", "2023", "2024", "2025", "2026", "2027", "2028", "2029", "2030"})
  2723. Me.ComboBox39.Location = New System.Drawing.Point(565, 633)
  2724. Me.ComboBox39.Name = "ComboBox39"
  2725. Me.ComboBox39.Size = New System.Drawing.Size(150, 25)
  2726. Me.ComboBox39.TabIndex = 1786
  2727. '
  2728. 'ComboBox38
  2729. '
  2730. Me.ComboBox38.BackColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer))
  2731. Me.ComboBox38.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2732. Me.ComboBox38.FormattingEnabled = True
  2733. Me.ComboBox38.Items.AddRange(New Object() {"2019", "2020", "2021", "2022", "2023", "2024", "2025", "2026", "2027", "2028", "2029", "2030"})
  2734. Me.ComboBox38.Location = New System.Drawing.Point(986, 602)
  2735. Me.ComboBox38.Name = "ComboBox38"
  2736. Me.ComboBox38.Size = New System.Drawing.Size(150, 25)
  2737. Me.ComboBox38.TabIndex = 1785
  2738. '
  2739. 'ComboBox37
  2740. '
  2741. Me.ComboBox37.BackColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer))
  2742. Me.ComboBox37.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2743. Me.ComboBox37.FormattingEnabled = True
  2744. Me.ComboBox37.Items.AddRange(New Object() {"2019", "2020", "2021", "2022", "2023", "2024", "2025", "2026", "2027", "2028", "2029", "2030"})
  2745. Me.ComboBox37.Location = New System.Drawing.Point(565, 602)
  2746. Me.ComboBox37.Name = "ComboBox37"
  2747. Me.ComboBox37.Size = New System.Drawing.Size(150, 25)
  2748. Me.ComboBox37.TabIndex = 1784
  2749. '
  2750. 'ComboBox36
  2751. '
  2752. Me.ComboBox36.BackColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer))
  2753. Me.ComboBox36.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2754. Me.ComboBox36.FormattingEnabled = True
  2755. Me.ComboBox36.Items.AddRange(New Object() {"2019", "2020", "2021", "2022", "2023", "2024", "2025", "2026", "2027", "2028", "2029", "2030"})
  2756. Me.ComboBox36.Location = New System.Drawing.Point(986, 571)
  2757. Me.ComboBox36.Name = "ComboBox36"
  2758. Me.ComboBox36.Size = New System.Drawing.Size(150, 25)
  2759. Me.ComboBox36.TabIndex = 1783
  2760. '
  2761. 'ComboBox35
  2762. '
  2763. Me.ComboBox35.BackColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer))
  2764. Me.ComboBox35.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2765. Me.ComboBox35.FormattingEnabled = True
  2766. Me.ComboBox35.Items.AddRange(New Object() {"2019", "2020", "2021", "2022", "2023", "2024", "2025", "2026", "2027", "2028", "2029", "2030"})
  2767. Me.ComboBox35.Location = New System.Drawing.Point(565, 571)
  2768. Me.ComboBox35.Name = "ComboBox35"
  2769. Me.ComboBox35.Size = New System.Drawing.Size(150, 25)
  2770. Me.ComboBox35.TabIndex = 1782
  2771. '
  2772. 'ComboBox34
  2773. '
  2774. Me.ComboBox34.BackColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer))
  2775. Me.ComboBox34.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2776. Me.ComboBox34.FormattingEnabled = True
  2777. Me.ComboBox34.Items.AddRange(New Object() {"2019", "2020", "2021", "2022", "2023", "2024", "2025", "2026", "2027", "2028", "2029", "2030"})
  2778. Me.ComboBox34.Location = New System.Drawing.Point(986, 540)
  2779. Me.ComboBox34.Name = "ComboBox34"
  2780. Me.ComboBox34.Size = New System.Drawing.Size(150, 25)
  2781. Me.ComboBox34.TabIndex = 1781
  2782. '
  2783. 'ComboBox33
  2784. '
  2785. Me.ComboBox33.BackColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer))
  2786. Me.ComboBox33.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2787. Me.ComboBox33.FormattingEnabled = True
  2788. Me.ComboBox33.Items.AddRange(New Object() {"2019", "2020", "2021", "2022", "2023", "2024", "2025", "2026", "2027", "2028", "2029", "2030"})
  2789. Me.ComboBox33.Location = New System.Drawing.Point(565, 540)
  2790. Me.ComboBox33.Name = "ComboBox33"
  2791. Me.ComboBox33.Size = New System.Drawing.Size(150, 25)
  2792. Me.ComboBox33.TabIndex = 1780
  2793. '
  2794. 'ComboBox32
  2795. '
  2796. Me.ComboBox32.BackColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer))
  2797. Me.ComboBox32.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2798. Me.ComboBox32.FormattingEnabled = True
  2799. Me.ComboBox32.Items.AddRange(New Object() {"2019", "2020", "2021", "2022", "2023", "2024", "2025", "2026", "2027", "2028", "2029", "2030"})
  2800. Me.ComboBox32.Location = New System.Drawing.Point(986, 509)
  2801. Me.ComboBox32.Name = "ComboBox32"
  2802. Me.ComboBox32.Size = New System.Drawing.Size(150, 25)
  2803. Me.ComboBox32.TabIndex = 1779
  2804. '
  2805. 'ComboBox31
  2806. '
  2807. Me.ComboBox31.BackColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer))
  2808. Me.ComboBox31.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2809. Me.ComboBox31.FormattingEnabled = True
  2810. Me.ComboBox31.Items.AddRange(New Object() {"2019", "2020", "2021", "2022", "2023", "2024", "2025", "2026", "2027", "2028", "2029", "2030"})
  2811. Me.ComboBox31.Location = New System.Drawing.Point(565, 509)
  2812. Me.ComboBox31.Name = "ComboBox31"
  2813. Me.ComboBox31.Size = New System.Drawing.Size(150, 25)
  2814. Me.ComboBox31.TabIndex = 1778
  2815. '
  2816. 'ComboBox30
  2817. '
  2818. Me.ComboBox30.BackColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer))
  2819. Me.ComboBox30.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2820. Me.ComboBox30.FormattingEnabled = True
  2821. Me.ComboBox30.Items.AddRange(New Object() {"2019", "2020", "2021", "2022", "2023", "2024", "2025", "2026", "2027", "2028", "2029", "2030"})
  2822. Me.ComboBox30.Location = New System.Drawing.Point(985, 478)
  2823. Me.ComboBox30.Name = "ComboBox30"
  2824. Me.ComboBox30.Size = New System.Drawing.Size(150, 25)
  2825. Me.ComboBox30.TabIndex = 1777
  2826. '
  2827. 'ComboBox29
  2828. '
  2829. Me.ComboBox29.BackColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer))
  2830. Me.ComboBox29.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2831. Me.ComboBox29.FormattingEnabled = True
  2832. Me.ComboBox29.Items.AddRange(New Object() {"2019", "2020", "2021", "2022", "2023", "2024", "2025", "2026", "2027", "2028", "2029", "2030"})
  2833. Me.ComboBox29.Location = New System.Drawing.Point(565, 478)
  2834. Me.ComboBox29.Name = "ComboBox29"
  2835. Me.ComboBox29.Size = New System.Drawing.Size(150, 25)
  2836. Me.ComboBox29.TabIndex = 1776
  2837. '
  2838. 'ComboBox28
  2839. '
  2840. Me.ComboBox28.BackColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer))
  2841. Me.ComboBox28.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2842. Me.ComboBox28.FormattingEnabled = True
  2843. Me.ComboBox28.Items.AddRange(New Object() {"2019", "2020", "2021", "2022", "2023", "2024", "2025", "2026", "2027", "2028", "2029", "2030"})
  2844. Me.ComboBox28.Location = New System.Drawing.Point(986, 447)
  2845. Me.ComboBox28.Name = "ComboBox28"
  2846. Me.ComboBox28.Size = New System.Drawing.Size(150, 25)
  2847. Me.ComboBox28.TabIndex = 1775
  2848. '
  2849. 'ComboBox27
  2850. '
  2851. Me.ComboBox27.BackColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer))
  2852. Me.ComboBox27.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2853. Me.ComboBox27.FormattingEnabled = True
  2854. Me.ComboBox27.Items.AddRange(New Object() {"2019", "2020", "2021", "2022", "2023", "2024", "2025", "2026", "2027", "2028", "2029", "2030"})
  2855. Me.ComboBox27.Location = New System.Drawing.Point(565, 447)
  2856. Me.ComboBox27.Name = "ComboBox27"
  2857. Me.ComboBox27.Size = New System.Drawing.Size(150, 25)
  2858. Me.ComboBox27.TabIndex = 1774
  2859. '
  2860. 'ComboBox26
  2861. '
  2862. Me.ComboBox26.BackColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer))
  2863. Me.ComboBox26.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2864. Me.ComboBox26.FormattingEnabled = True
  2865. Me.ComboBox26.Items.AddRange(New Object() {"2019", "2020", "2021", "2022", "2023", "2024", "2025", "2026", "2027", "2028", "2029", "2030"})
  2866. Me.ComboBox26.Location = New System.Drawing.Point(985, 416)
  2867. Me.ComboBox26.Name = "ComboBox26"
  2868. Me.ComboBox26.Size = New System.Drawing.Size(150, 25)
  2869. Me.ComboBox26.TabIndex = 1773
  2870. '
  2871. 'ComboBox25
  2872. '
  2873. Me.ComboBox25.BackColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer))
  2874. Me.ComboBox25.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2875. Me.ComboBox25.FormattingEnabled = True
  2876. Me.ComboBox25.Items.AddRange(New Object() {"2019", "2020", "2021", "2022", "2023", "2024", "2025", "2026", "2027", "2028", "2029", "2030"})
  2877. Me.ComboBox25.Location = New System.Drawing.Point(565, 416)
  2878. Me.ComboBox25.Name = "ComboBox25"
  2879. Me.ComboBox25.Size = New System.Drawing.Size(150, 25)
  2880. Me.ComboBox25.TabIndex = 1772
  2881. '
  2882. 'ComboBox24
  2883. '
  2884. Me.ComboBox24.BackColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer))
  2885. Me.ComboBox24.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2886. Me.ComboBox24.FormattingEnabled = True
  2887. Me.ComboBox24.Items.AddRange(New Object() {"2019", "2020", "2021", "2022", "2023", "2024", "2025", "2026", "2027", "2028", "2029", "2030"})
  2888. Me.ComboBox24.Location = New System.Drawing.Point(986, 385)
  2889. Me.ComboBox24.Name = "ComboBox24"
  2890. Me.ComboBox24.Size = New System.Drawing.Size(150, 25)
  2891. Me.ComboBox24.TabIndex = 1771
  2892. '
  2893. 'ComboBox23
  2894. '
  2895. Me.ComboBox23.BackColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer))
  2896. Me.ComboBox23.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2897. Me.ComboBox23.FormattingEnabled = True
  2898. Me.ComboBox23.Items.AddRange(New Object() {"2019", "2020", "2021", "2022", "2023", "2024", "2025", "2026", "2027", "2028", "2029", "2030"})
  2899. Me.ComboBox23.Location = New System.Drawing.Point(565, 385)
  2900. Me.ComboBox23.Name = "ComboBox23"
  2901. Me.ComboBox23.Size = New System.Drawing.Size(150, 25)
  2902. Me.ComboBox23.TabIndex = 1770
  2903. '
  2904. 'ComboBox22
  2905. '
  2906. Me.ComboBox22.BackColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer))
  2907. Me.ComboBox22.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2908. Me.ComboBox22.FormattingEnabled = True
  2909. Me.ComboBox22.Items.AddRange(New Object() {"2019", "2020", "2021", "2022", "2023", "2024", "2025", "2026", "2027", "2028", "2029", "2030"})
  2910. Me.ComboBox22.Location = New System.Drawing.Point(986, 354)
  2911. Me.ComboBox22.Name = "ComboBox22"
  2912. Me.ComboBox22.Size = New System.Drawing.Size(150, 25)
  2913. Me.ComboBox22.TabIndex = 1769
  2914. '
  2915. 'ComboBox21
  2916. '
  2917. Me.ComboBox21.BackColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer))
  2918. Me.ComboBox21.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2919. Me.ComboBox21.FormattingEnabled = True
  2920. Me.ComboBox21.Items.AddRange(New Object() {"2019", "2020", "2021", "2022", "2023", "2024", "2025", "2026", "2027", "2028", "2029", "2030"})
  2921. Me.ComboBox21.Location = New System.Drawing.Point(565, 354)
  2922. Me.ComboBox21.Name = "ComboBox21"
  2923. Me.ComboBox21.Size = New System.Drawing.Size(150, 25)
  2924. Me.ComboBox21.TabIndex = 1768
  2925. '
  2926. 'ComboBox20
  2927. '
  2928. Me.ComboBox20.BackColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer))
  2929. Me.ComboBox20.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2930. Me.ComboBox20.FormattingEnabled = True
  2931. Me.ComboBox20.Items.AddRange(New Object() {"2019", "2020", "2021", "2022", "2023", "2024", "2025", "2026", "2027", "2028", "2029", "2030"})
  2932. Me.ComboBox20.Location = New System.Drawing.Point(986, 323)
  2933. Me.ComboBox20.Name = "ComboBox20"
  2934. Me.ComboBox20.Size = New System.Drawing.Size(150, 25)
  2935. Me.ComboBox20.TabIndex = 1767
  2936. '
  2937. 'ComboBox19
  2938. '
  2939. Me.ComboBox19.BackColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer))
  2940. Me.ComboBox19.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2941. Me.ComboBox19.FormattingEnabled = True
  2942. Me.ComboBox19.Items.AddRange(New Object() {"2019", "2020", "2021", "2022", "2023", "2024", "2025", "2026", "2027", "2028", "2029", "2030"})
  2943. Me.ComboBox19.Location = New System.Drawing.Point(565, 323)
  2944. Me.ComboBox19.Name = "ComboBox19"
  2945. Me.ComboBox19.Size = New System.Drawing.Size(150, 25)
  2946. Me.ComboBox19.TabIndex = 1766
  2947. '
  2948. 'ComboBox18
  2949. '
  2950. Me.ComboBox18.BackColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer))
  2951. Me.ComboBox18.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2952. Me.ComboBox18.FormattingEnabled = True
  2953. Me.ComboBox18.Items.AddRange(New Object() {"2019", "2020", "2021", "2022", "2023", "2024", "2025", "2026", "2027", "2028", "2029", "2030"})
  2954. Me.ComboBox18.Location = New System.Drawing.Point(986, 292)
  2955. Me.ComboBox18.Name = "ComboBox18"
  2956. Me.ComboBox18.Size = New System.Drawing.Size(150, 25)
  2957. Me.ComboBox18.TabIndex = 1765
  2958. '
  2959. 'ComboBox17
  2960. '
  2961. Me.ComboBox17.BackColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer))
  2962. Me.ComboBox17.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2963. Me.ComboBox17.FormattingEnabled = True
  2964. Me.ComboBox17.Items.AddRange(New Object() {"2019", "2020", "2021", "2022", "2023", "2024", "2025", "2026", "2027", "2028", "2029", "2030"})
  2965. Me.ComboBox17.Location = New System.Drawing.Point(565, 292)
  2966. Me.ComboBox17.Name = "ComboBox17"
  2967. Me.ComboBox17.Size = New System.Drawing.Size(150, 25)
  2968. Me.ComboBox17.TabIndex = 1764
  2969. '
  2970. 'ComboBox16
  2971. '
  2972. Me.ComboBox16.BackColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer))
  2973. Me.ComboBox16.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2974. Me.ComboBox16.FormattingEnabled = True
  2975. Me.ComboBox16.Items.AddRange(New Object() {"2019", "2020", "2021", "2022", "2023", "2024", "2025", "2026", "2027", "2028", "2029", "2030"})
  2976. Me.ComboBox16.Location = New System.Drawing.Point(985, 261)
  2977. Me.ComboBox16.Name = "ComboBox16"
  2978. Me.ComboBox16.Size = New System.Drawing.Size(150, 25)
  2979. Me.ComboBox16.TabIndex = 1763
  2980. '
  2981. 'ComboBox15
  2982. '
  2983. Me.ComboBox15.BackColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer))
  2984. Me.ComboBox15.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2985. Me.ComboBox15.FormattingEnabled = True
  2986. Me.ComboBox15.Items.AddRange(New Object() {"2019", "2020", "2021", "2022", "2023", "2024", "2025", "2026", "2027", "2028", "2029", "2030"})
  2987. Me.ComboBox15.Location = New System.Drawing.Point(565, 261)
  2988. Me.ComboBox15.Name = "ComboBox15"
  2989. Me.ComboBox15.Size = New System.Drawing.Size(150, 25)
  2990. Me.ComboBox15.TabIndex = 1762
  2991. '
  2992. 'ComboBox14
  2993. '
  2994. Me.ComboBox14.BackColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer))
  2995. Me.ComboBox14.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2996. Me.ComboBox14.FormattingEnabled = True
  2997. Me.ComboBox14.Items.AddRange(New Object() {"2019", "2020", "2021", "2022", "2023", "2024", "2025", "2026", "2027", "2028", "2029", "2030"})
  2998. Me.ComboBox14.Location = New System.Drawing.Point(986, 230)
  2999. Me.ComboBox14.Name = "ComboBox14"
  3000. Me.ComboBox14.Size = New System.Drawing.Size(150, 25)
  3001. Me.ComboBox14.TabIndex = 1761
  3002. '
  3003. 'ComboBox13
  3004. '
  3005. Me.ComboBox13.BackColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer))
  3006. Me.ComboBox13.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  3007. Me.ComboBox13.FormattingEnabled = True
  3008. Me.ComboBox13.Items.AddRange(New Object() {"2019", "2020", "2021", "2022", "2023", "2024", "2025", "2026", "2027", "2028", "2029", "2030"})
  3009. Me.ComboBox13.Location = New System.Drawing.Point(565, 230)
  3010. Me.ComboBox13.Name = "ComboBox13"
  3011. Me.ComboBox13.Size = New System.Drawing.Size(150, 25)
  3012. Me.ComboBox13.TabIndex = 1760
  3013. '
  3014. 'ComboBox12
  3015. '
  3016. Me.ComboBox12.BackColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer))
  3017. Me.ComboBox12.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  3018. Me.ComboBox12.FormattingEnabled = True
  3019. Me.ComboBox12.Items.AddRange(New Object() {"2019", "2020", "2021", "2022", "2023", "2024", "2025", "2026", "2027", "2028", "2029", "2030"})
  3020. Me.ComboBox12.Location = New System.Drawing.Point(986, 199)
  3021. Me.ComboBox12.Name = "ComboBox12"
  3022. Me.ComboBox12.Size = New System.Drawing.Size(150, 25)
  3023. Me.ComboBox12.TabIndex = 1759
  3024. '
  3025. 'ComboBox11
  3026. '
  3027. Me.ComboBox11.BackColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer))
  3028. Me.ComboBox11.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  3029. Me.ComboBox11.FormattingEnabled = True
  3030. Me.ComboBox11.Items.AddRange(New Object() {"2019", "2020", "2021", "2022", "2023", "2024", "2025", "2026", "2027", "2028", "2029", "2030"})
  3031. Me.ComboBox11.Location = New System.Drawing.Point(565, 199)
  3032. Me.ComboBox11.Name = "ComboBox11"
  3033. Me.ComboBox11.Size = New System.Drawing.Size(150, 25)
  3034. Me.ComboBox11.TabIndex = 1758
  3035. '
  3036. 'ComboBox10
  3037. '
  3038. Me.ComboBox10.BackColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer))
  3039. Me.ComboBox10.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  3040. Me.ComboBox10.FormattingEnabled = True
  3041. Me.ComboBox10.Items.AddRange(New Object() {"2019", "2020", "2021", "2022", "2023", "2024", "2025", "2026", "2027", "2028", "2029", "2030"})
  3042. Me.ComboBox10.Location = New System.Drawing.Point(986, 168)
  3043. Me.ComboBox10.Name = "ComboBox10"
  3044. Me.ComboBox10.Size = New System.Drawing.Size(150, 25)
  3045. Me.ComboBox10.TabIndex = 1757
  3046. '
  3047. 'ComboBox9
  3048. '
  3049. Me.ComboBox9.BackColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer))
  3050. Me.ComboBox9.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  3051. Me.ComboBox9.FormattingEnabled = True
  3052. Me.ComboBox9.Items.AddRange(New Object() {"2019", "2020", "2021", "2022", "2023", "2024", "2025", "2026", "2027", "2028", "2029", "2030"})
  3053. Me.ComboBox9.Location = New System.Drawing.Point(565, 168)
  3054. Me.ComboBox9.Name = "ComboBox9"
  3055. Me.ComboBox9.Size = New System.Drawing.Size(150, 25)
  3056. Me.ComboBox9.TabIndex = 1756
  3057. '
  3058. 'ComboBox8
  3059. '
  3060. Me.ComboBox8.BackColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer))
  3061. Me.ComboBox8.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  3062. Me.ComboBox8.FormattingEnabled = True
  3063. Me.ComboBox8.Items.AddRange(New Object() {"2019", "2020", "2021", "2022", "2023", "2024", "2025", "2026", "2027", "2028", "2029", "2030"})
  3064. Me.ComboBox8.Location = New System.Drawing.Point(986, 136)
  3065. Me.ComboBox8.Name = "ComboBox8"
  3066. Me.ComboBox8.Size = New System.Drawing.Size(150, 25)
  3067. Me.ComboBox8.TabIndex = 1755
  3068. '
  3069. 'ComboBox7
  3070. '
  3071. Me.ComboBox7.BackColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer))
  3072. Me.ComboBox7.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  3073. Me.ComboBox7.FormattingEnabled = True
  3074. Me.ComboBox7.Items.AddRange(New Object() {"2019", "2020", "2021", "2022", "2023", "2024", "2025", "2026", "2027", "2028", "2029", "2030"})
  3075. Me.ComboBox7.Location = New System.Drawing.Point(565, 137)
  3076. Me.ComboBox7.Name = "ComboBox7"
  3077. Me.ComboBox7.Size = New System.Drawing.Size(150, 25)
  3078. Me.ComboBox7.TabIndex = 1754
  3079. '
  3080. 'ComboBox6
  3081. '
  3082. Me.ComboBox6.BackColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer))
  3083. Me.ComboBox6.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  3084. Me.ComboBox6.FormattingEnabled = True
  3085. Me.ComboBox6.Items.AddRange(New Object() {"2019", "2020", "2021", "2022", "2023", "2024", "2025", "2026", "2027", "2028", "2029", "2030"})
  3086. Me.ComboBox6.Location = New System.Drawing.Point(985, 106)
  3087. Me.ComboBox6.Name = "ComboBox6"
  3088. Me.ComboBox6.Size = New System.Drawing.Size(150, 25)
  3089. Me.ComboBox6.TabIndex = 1753
  3090. '
  3091. 'ComboBox5
  3092. '
  3093. Me.ComboBox5.BackColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer))
  3094. Me.ComboBox5.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  3095. Me.ComboBox5.FormattingEnabled = True
  3096. Me.ComboBox5.Items.AddRange(New Object() {"2019", "2020", "2021", "2022", "2023", "2024", "2025", "2026", "2027", "2028", "2029", "2030"})
  3097. Me.ComboBox5.Location = New System.Drawing.Point(565, 106)
  3098. Me.ComboBox5.Name = "ComboBox5"
  3099. Me.ComboBox5.Size = New System.Drawing.Size(150, 25)
  3100. Me.ComboBox5.TabIndex = 1752
  3101. '
  3102. 'ComboBox4
  3103. '
  3104. Me.ComboBox4.BackColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer))
  3105. Me.ComboBox4.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  3106. Me.ComboBox4.FormattingEnabled = True
  3107. Me.ComboBox4.Items.AddRange(New Object() {"2019", "2020", "2021", "2022", "2023", "2024", "2025", "2026", "2027", "2028", "2029", "2030"})
  3108. Me.ComboBox4.Location = New System.Drawing.Point(986, 75)
  3109. Me.ComboBox4.Name = "ComboBox4"
  3110. Me.ComboBox4.Size = New System.Drawing.Size(150, 25)
  3111. Me.ComboBox4.TabIndex = 1751
  3112. '
  3113. 'ComboBox3
  3114. '
  3115. Me.ComboBox3.BackColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer))
  3116. Me.ComboBox3.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  3117. Me.ComboBox3.FormattingEnabled = True
  3118. Me.ComboBox3.Items.AddRange(New Object() {"2019", "2020", "2021", "2022", "2023", "2024", "2025", "2026", "2027", "2028", "2029", "2030"})
  3119. Me.ComboBox3.Location = New System.Drawing.Point(565, 75)
  3120. Me.ComboBox3.Name = "ComboBox3"
  3121. Me.ComboBox3.Size = New System.Drawing.Size(150, 25)
  3122. Me.ComboBox3.TabIndex = 1750
  3123. '
  3124. 'ComboBox2
  3125. '
  3126. Me.ComboBox2.BackColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer))
  3127. Me.ComboBox2.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  3128. Me.ComboBox2.FormattingEnabled = True
  3129. Me.ComboBox2.Items.AddRange(New Object() {"2019", "2020", "2021", "2022", "2023", "2024", "2025", "2026", "2027", "2028", "2029", "2030"})
  3130. Me.ComboBox2.Location = New System.Drawing.Point(985, 44)
  3131. Me.ComboBox2.Name = "ComboBox2"
  3132. Me.ComboBox2.Size = New System.Drawing.Size(150, 25)
  3133. Me.ComboBox2.TabIndex = 1749
  3134. '
  3135. 'ComboBox1
  3136. '
  3137. Me.ComboBox1.BackColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer))
  3138. Me.ComboBox1.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  3139. Me.ComboBox1.FormattingEnabled = True
  3140. Me.ComboBox1.Items.AddRange(New Object() {"2019", "2020", "2021", "2022", "2023", "2024", "2025", "2026", "2027", "2028", "2029", "2030"})
  3141. Me.ComboBox1.Location = New System.Drawing.Point(565, 44)
  3142. Me.ComboBox1.Name = "ComboBox1"
  3143. Me.ComboBox1.Size = New System.Drawing.Size(150, 25)
  3144. Me.ComboBox1.TabIndex = 1748
  3145. '
  3146. 'Label93
  3147. '
  3148. Me.Label93.AutoSize = True
  3149. Me.Label93.Location = New System.Drawing.Point(147, 27)
  3150. Me.Label93.Name = "Label93"
  3151. Me.Label93.Size = New System.Drawing.Size(32, 16)
  3152. Me.Label93.TabIndex = 1747
  3153. Me.Label93.Text = "班別"
  3154. '
  3155. 'Label92
  3156. '
  3157. Me.Label92.AutoSize = True
  3158. Me.Label92.Location = New System.Drawing.Point(214, 27)
  3159. Me.Label92.Name = "Label92"
  3160. Me.Label92.Size = New System.Drawing.Size(80, 16)
  3161. Me.Label92.TabIndex = 1746
  3162. Me.Label92.Text = "單班時長設定"
  3163. '
  3164. 'Label90
  3165. '
  3166. Me.Label90.AutoSize = True
  3167. Me.Label90.Location = New System.Drawing.Point(299, 27)
  3168. Me.Label90.Name = "Label90"
  3169. Me.Label90.Size = New System.Drawing.Size(32, 16)
  3170. Me.Label90.TabIndex = 1745
  3171. Me.Label90.Text = "休息"
  3172. '
  3173. 'NUP20
  3174. '
  3175. Me.NUP20.DecimalPlaces = 1
  3176. Me.NUP20.Increment = New Decimal(New Integer() {1, 0, 0, 65536})
  3177. Me.NUP20.Location = New System.Drawing.Point(299, 633)
  3178. Me.NUP20.Maximum = New Decimal(New Integer() {4, 0, 0, 0})
  3179. Me.NUP20.Minimum = New Decimal(New Integer() {5, 0, 0, 65536})
  3180. Me.NUP20.Name = "NUP20"
  3181. Me.NUP20.Size = New System.Drawing.Size(38, 23)
  3182. Me.NUP20.TabIndex = 1744
  3183. Me.NUP20.Value = New Decimal(New Integer() {2, 0, 0, 0})
  3184. '
  3185. 'NUP19
  3186. '
  3187. Me.NUP19.DecimalPlaces = 1
  3188. Me.NUP19.Increment = New Decimal(New Integer() {1, 0, 0, 65536})
  3189. Me.NUP19.Location = New System.Drawing.Point(299, 602)
  3190. Me.NUP19.Maximum = New Decimal(New Integer() {4, 0, 0, 0})
  3191. Me.NUP19.Minimum = New Decimal(New Integer() {5, 0, 0, 65536})
  3192. Me.NUP19.Name = "NUP19"
  3193. Me.NUP19.Size = New System.Drawing.Size(38, 23)
  3194. Me.NUP19.TabIndex = 1743
  3195. Me.NUP19.Value = New Decimal(New Integer() {2, 0, 0, 0})
  3196. '
  3197. 'NUP18
  3198. '
  3199. Me.NUP18.DecimalPlaces = 1
  3200. Me.NUP18.Increment = New Decimal(New Integer() {1, 0, 0, 65536})
  3201. Me.NUP18.Location = New System.Drawing.Point(299, 572)
  3202. Me.NUP18.Maximum = New Decimal(New Integer() {4, 0, 0, 0})
  3203. Me.NUP18.Minimum = New Decimal(New Integer() {5, 0, 0, 65536})
  3204. Me.NUP18.Name = "NUP18"
  3205. Me.NUP18.Size = New System.Drawing.Size(38, 23)
  3206. Me.NUP18.TabIndex = 1742
  3207. Me.NUP18.Value = New Decimal(New Integer() {2, 0, 0, 0})
  3208. '
  3209. 'NUP17
  3210. '
  3211. Me.NUP17.DecimalPlaces = 1
  3212. Me.NUP17.Increment = New Decimal(New Integer() {1, 0, 0, 65536})
  3213. Me.NUP17.Location = New System.Drawing.Point(299, 541)
  3214. Me.NUP17.Maximum = New Decimal(New Integer() {4, 0, 0, 0})
  3215. Me.NUP17.Minimum = New Decimal(New Integer() {5, 0, 0, 65536})
  3216. Me.NUP17.Name = "NUP17"
  3217. Me.NUP17.Size = New System.Drawing.Size(38, 23)
  3218. Me.NUP17.TabIndex = 1741
  3219. Me.NUP17.Value = New Decimal(New Integer() {2, 0, 0, 0})
  3220. '
  3221. 'NUP16
  3222. '
  3223. Me.NUP16.DecimalPlaces = 1
  3224. Me.NUP16.Increment = New Decimal(New Integer() {1, 0, 0, 65536})
  3225. Me.NUP16.Location = New System.Drawing.Point(299, 509)
  3226. Me.NUP16.Maximum = New Decimal(New Integer() {4, 0, 0, 0})
  3227. Me.NUP16.Minimum = New Decimal(New Integer() {5, 0, 0, 65536})
  3228. Me.NUP16.Name = "NUP16"
  3229. Me.NUP16.Size = New System.Drawing.Size(38, 23)
  3230. Me.NUP16.TabIndex = 1740
  3231. Me.NUP16.Value = New Decimal(New Integer() {2, 0, 0, 0})
  3232. '
  3233. 'NUP15
  3234. '
  3235. Me.NUP15.DecimalPlaces = 1
  3236. Me.NUP15.Increment = New Decimal(New Integer() {1, 0, 0, 65536})
  3237. Me.NUP15.Location = New System.Drawing.Point(299, 479)
  3238. Me.NUP15.Maximum = New Decimal(New Integer() {4, 0, 0, 0})
  3239. Me.NUP15.Minimum = New Decimal(New Integer() {5, 0, 0, 65536})
  3240. Me.NUP15.Name = "NUP15"
  3241. Me.NUP15.Size = New System.Drawing.Size(38, 23)
  3242. Me.NUP15.TabIndex = 1739
  3243. Me.NUP15.Value = New Decimal(New Integer() {2, 0, 0, 0})
  3244. '
  3245. 'NUP14
  3246. '
  3247. Me.NUP14.DecimalPlaces = 1
  3248. Me.NUP14.Increment = New Decimal(New Integer() {1, 0, 0, 65536})
  3249. Me.NUP14.Location = New System.Drawing.Point(299, 447)
  3250. Me.NUP14.Maximum = New Decimal(New Integer() {4, 0, 0, 0})
  3251. Me.NUP14.Minimum = New Decimal(New Integer() {5, 0, 0, 65536})
  3252. Me.NUP14.Name = "NUP14"
  3253. Me.NUP14.Size = New System.Drawing.Size(38, 23)
  3254. Me.NUP14.TabIndex = 1738
  3255. Me.NUP14.Value = New Decimal(New Integer() {2, 0, 0, 0})
  3256. '
  3257. 'NUP13
  3258. '
  3259. Me.NUP13.DecimalPlaces = 1
  3260. Me.NUP13.Increment = New Decimal(New Integer() {1, 0, 0, 65536})
  3261. Me.NUP13.Location = New System.Drawing.Point(299, 416)
  3262. Me.NUP13.Maximum = New Decimal(New Integer() {4, 0, 0, 0})
  3263. Me.NUP13.Minimum = New Decimal(New Integer() {5, 0, 0, 65536})
  3264. Me.NUP13.Name = "NUP13"
  3265. Me.NUP13.Size = New System.Drawing.Size(38, 23)
  3266. Me.NUP13.TabIndex = 1737
  3267. Me.NUP13.Value = New Decimal(New Integer() {2, 0, 0, 0})
  3268. '
  3269. 'NUP12
  3270. '
  3271. Me.NUP12.DecimalPlaces = 1
  3272. Me.NUP12.Increment = New Decimal(New Integer() {1, 0, 0, 65536})
  3273. Me.NUP12.Location = New System.Drawing.Point(298, 385)
  3274. Me.NUP12.Maximum = New Decimal(New Integer() {4, 0, 0, 0})
  3275. Me.NUP12.Minimum = New Decimal(New Integer() {5, 0, 0, 65536})
  3276. Me.NUP12.Name = "NUP12"
  3277. Me.NUP12.Size = New System.Drawing.Size(38, 23)
  3278. Me.NUP12.TabIndex = 1736
  3279. Me.NUP12.Value = New Decimal(New Integer() {2, 0, 0, 0})
  3280. '
  3281. 'NUP11
  3282. '
  3283. Me.NUP11.DecimalPlaces = 1
  3284. Me.NUP11.Increment = New Decimal(New Integer() {1, 0, 0, 65536})
  3285. Me.NUP11.Location = New System.Drawing.Point(299, 354)
  3286. Me.NUP11.Maximum = New Decimal(New Integer() {4, 0, 0, 0})
  3287. Me.NUP11.Minimum = New Decimal(New Integer() {5, 0, 0, 65536})
  3288. Me.NUP11.Name = "NUP11"
  3289. Me.NUP11.Size = New System.Drawing.Size(38, 23)
  3290. Me.NUP11.TabIndex = 1735
  3291. Me.NUP11.Value = New Decimal(New Integer() {2, 0, 0, 0})
  3292. '
  3293. 'NUP10
  3294. '
  3295. Me.NUP10.DecimalPlaces = 1
  3296. Me.NUP10.Increment = New Decimal(New Integer() {1, 0, 0, 65536})
  3297. Me.NUP10.Location = New System.Drawing.Point(299, 321)
  3298. Me.NUP10.Maximum = New Decimal(New Integer() {4, 0, 0, 0})
  3299. Me.NUP10.Minimum = New Decimal(New Integer() {5, 0, 0, 65536})
  3300. Me.NUP10.Name = "NUP10"
  3301. Me.NUP10.Size = New System.Drawing.Size(38, 23)
  3302. Me.NUP10.TabIndex = 1734
  3303. Me.NUP10.Value = New Decimal(New Integer() {2, 0, 0, 0})
  3304. '
  3305. 'NUP9
  3306. '
  3307. Me.NUP9.DecimalPlaces = 1
  3308. Me.NUP9.Increment = New Decimal(New Integer() {1, 0, 0, 65536})
  3309. Me.NUP9.Location = New System.Drawing.Point(299, 292)
  3310. Me.NUP9.Maximum = New Decimal(New Integer() {4, 0, 0, 0})
  3311. Me.NUP9.Minimum = New Decimal(New Integer() {5, 0, 0, 65536})
  3312. Me.NUP9.Name = "NUP9"
  3313. Me.NUP9.Size = New System.Drawing.Size(38, 23)
  3314. Me.NUP9.TabIndex = 1733
  3315. Me.NUP9.Value = New Decimal(New Integer() {2, 0, 0, 0})
  3316. '
  3317. 'NUP8
  3318. '
  3319. Me.NUP8.DecimalPlaces = 1
  3320. Me.NUP8.Increment = New Decimal(New Integer() {1, 0, 0, 65536})
  3321. Me.NUP8.Location = New System.Drawing.Point(299, 261)
  3322. Me.NUP8.Maximum = New Decimal(New Integer() {4, 0, 0, 0})
  3323. Me.NUP8.Minimum = New Decimal(New Integer() {5, 0, 0, 65536})
  3324. Me.NUP8.Name = "NUP8"
  3325. Me.NUP8.Size = New System.Drawing.Size(38, 23)
  3326. Me.NUP8.TabIndex = 1732
  3327. Me.NUP8.Value = New Decimal(New Integer() {2, 0, 0, 0})
  3328. '
  3329. 'NUP7
  3330. '
  3331. Me.NUP7.DecimalPlaces = 1
  3332. Me.NUP7.Increment = New Decimal(New Integer() {1, 0, 0, 65536})
  3333. Me.NUP7.Location = New System.Drawing.Point(299, 230)
  3334. Me.NUP7.Maximum = New Decimal(New Integer() {4, 0, 0, 0})
  3335. Me.NUP7.Minimum = New Decimal(New Integer() {5, 0, 0, 65536})
  3336. Me.NUP7.Name = "NUP7"
  3337. Me.NUP7.Size = New System.Drawing.Size(38, 23)
  3338. Me.NUP7.TabIndex = 1731
  3339. Me.NUP7.Value = New Decimal(New Integer() {2, 0, 0, 0})
  3340. '
  3341. 'NUP6
  3342. '
  3343. Me.NUP6.DecimalPlaces = 1
  3344. Me.NUP6.Increment = New Decimal(New Integer() {1, 0, 0, 65536})
  3345. Me.NUP6.Location = New System.Drawing.Point(299, 199)
  3346. Me.NUP6.Maximum = New Decimal(New Integer() {4, 0, 0, 0})
  3347. Me.NUP6.Minimum = New Decimal(New Integer() {5, 0, 0, 65536})
  3348. Me.NUP6.Name = "NUP6"
  3349. Me.NUP6.Size = New System.Drawing.Size(38, 23)
  3350. Me.NUP6.TabIndex = 1730
  3351. Me.NUP6.Value = New Decimal(New Integer() {2, 0, 0, 0})
  3352. '
  3353. 'NUP5
  3354. '
  3355. Me.NUP5.DecimalPlaces = 1
  3356. Me.NUP5.Increment = New Decimal(New Integer() {1, 0, 0, 65536})
  3357. Me.NUP5.Location = New System.Drawing.Point(299, 168)
  3358. Me.NUP5.Maximum = New Decimal(New Integer() {4, 0, 0, 0})
  3359. Me.NUP5.Minimum = New Decimal(New Integer() {5, 0, 0, 65536})
  3360. Me.NUP5.Name = "NUP5"
  3361. Me.NUP5.Size = New System.Drawing.Size(38, 23)
  3362. Me.NUP5.TabIndex = 1729
  3363. Me.NUP5.Value = New Decimal(New Integer() {2, 0, 0, 0})
  3364. '
  3365. 'NUP4
  3366. '
  3367. Me.NUP4.DecimalPlaces = 1
  3368. Me.NUP4.Increment = New Decimal(New Integer() {1, 0, 0, 65536})
  3369. Me.NUP4.Location = New System.Drawing.Point(299, 137)
  3370. Me.NUP4.Maximum = New Decimal(New Integer() {4, 0, 0, 0})
  3371. Me.NUP4.Minimum = New Decimal(New Integer() {5, 0, 0, 65536})
  3372. Me.NUP4.Name = "NUP4"
  3373. Me.NUP4.Size = New System.Drawing.Size(38, 23)
  3374. Me.NUP4.TabIndex = 1728
  3375. Me.NUP4.Value = New Decimal(New Integer() {2, 0, 0, 0})
  3376. '
  3377. 'NUP3
  3378. '
  3379. Me.NUP3.DecimalPlaces = 1
  3380. Me.NUP3.Increment = New Decimal(New Integer() {1, 0, 0, 65536})
  3381. Me.NUP3.Location = New System.Drawing.Point(299, 106)
  3382. Me.NUP3.Maximum = New Decimal(New Integer() {4, 0, 0, 0})
  3383. Me.NUP3.Minimum = New Decimal(New Integer() {5, 0, 0, 65536})
  3384. Me.NUP3.Name = "NUP3"
  3385. Me.NUP3.Size = New System.Drawing.Size(38, 23)
  3386. Me.NUP3.TabIndex = 1727
  3387. Me.NUP3.Value = New Decimal(New Integer() {2, 0, 0, 0})
  3388. '
  3389. 'NUP2
  3390. '
  3391. Me.NUP2.DecimalPlaces = 1
  3392. Me.NUP2.Increment = New Decimal(New Integer() {1, 0, 0, 65536})
  3393. Me.NUP2.Location = New System.Drawing.Point(299, 76)
  3394. Me.NUP2.Maximum = New Decimal(New Integer() {4, 0, 0, 0})
  3395. Me.NUP2.Minimum = New Decimal(New Integer() {5, 0, 0, 65536})
  3396. Me.NUP2.Name = "NUP2"
  3397. Me.NUP2.Size = New System.Drawing.Size(38, 23)
  3398. Me.NUP2.TabIndex = 1726
  3399. Me.NUP2.Value = New Decimal(New Integer() {2, 0, 0, 0})
  3400. '
  3401. 'NumericUpDown20
  3402. '
  3403. Me.NumericUpDown20.DecimalPlaces = 1
  3404. Me.NumericUpDown20.Increment = New Decimal(New Integer() {5, 0, 0, 65536})
  3405. Me.NumericUpDown20.Location = New System.Drawing.Point(261, 633)
  3406. Me.NumericUpDown20.Maximum = New Decimal(New Integer() {8, 0, 0, 0})
  3407. Me.NumericUpDown20.Minimum = New Decimal(New Integer() {2, 0, 0, 0})
  3408. Me.NumericUpDown20.Name = "NumericUpDown20"
  3409. Me.NumericUpDown20.Size = New System.Drawing.Size(37, 23)
  3410. Me.NumericUpDown20.TabIndex = 1724
  3411. Me.NumericUpDown20.Value = New Decimal(New Integer() {4, 0, 0, 0})
  3412. '
  3413. 'CheckBox20
  3414. '
  3415. Me.CheckBox20.AutoSize = True
  3416. Me.CheckBox20.Location = New System.Drawing.Point(215, 634)
  3417. Me.CheckBox20.Name = "CheckBox20"
  3418. Me.CheckBox20.Size = New System.Drawing.Size(51, 20)
  3419. Me.CheckBox20.TabIndex = 1723
  3420. Me.CheckBox20.Text = "半天"
  3421. Me.CheckBox20.UseVisualStyleBackColor = True
  3422. '
  3423. 'NumericUpDown19
  3424. '
  3425. Me.NumericUpDown19.DecimalPlaces = 1
  3426. Me.NumericUpDown19.Increment = New Decimal(New Integer() {5, 0, 0, 65536})
  3427. Me.NumericUpDown19.Location = New System.Drawing.Point(261, 602)
  3428. Me.NumericUpDown19.Maximum = New Decimal(New Integer() {8, 0, 0, 0})
  3429. Me.NumericUpDown19.Minimum = New Decimal(New Integer() {2, 0, 0, 0})
  3430. Me.NumericUpDown19.Name = "NumericUpDown19"
  3431. Me.NumericUpDown19.Size = New System.Drawing.Size(37, 23)
  3432. Me.NumericUpDown19.TabIndex = 1722
  3433. Me.NumericUpDown19.Value = New Decimal(New Integer() {4, 0, 0, 0})
  3434. '
  3435. 'CheckBox19
  3436. '
  3437. Me.CheckBox19.AutoSize = True
  3438. Me.CheckBox19.Location = New System.Drawing.Point(215, 603)
  3439. Me.CheckBox19.Name = "CheckBox19"
  3440. Me.CheckBox19.Size = New System.Drawing.Size(51, 20)
  3441. Me.CheckBox19.TabIndex = 1721
  3442. Me.CheckBox19.Text = "半天"
  3443. Me.CheckBox19.UseVisualStyleBackColor = True
  3444. '
  3445. 'NumericUpDown18
  3446. '
  3447. Me.NumericUpDown18.DecimalPlaces = 1
  3448. Me.NumericUpDown18.Increment = New Decimal(New Integer() {5, 0, 0, 65536})
  3449. Me.NumericUpDown18.Location = New System.Drawing.Point(261, 572)
  3450. Me.NumericUpDown18.Maximum = New Decimal(New Integer() {8, 0, 0, 0})
  3451. Me.NumericUpDown18.Minimum = New Decimal(New Integer() {2, 0, 0, 0})
  3452. Me.NumericUpDown18.Name = "NumericUpDown18"
  3453. Me.NumericUpDown18.Size = New System.Drawing.Size(37, 23)
  3454. Me.NumericUpDown18.TabIndex = 1720
  3455. Me.NumericUpDown18.Value = New Decimal(New Integer() {4, 0, 0, 0})
  3456. '
  3457. 'CheckBox18
  3458. '
  3459. Me.CheckBox18.AutoSize = True
  3460. Me.CheckBox18.Location = New System.Drawing.Point(215, 573)
  3461. Me.CheckBox18.Name = "CheckBox18"
  3462. Me.CheckBox18.Size = New System.Drawing.Size(51, 20)
  3463. Me.CheckBox18.TabIndex = 1719
  3464. Me.CheckBox18.Text = "半天"
  3465. Me.CheckBox18.UseVisualStyleBackColor = True
  3466. '
  3467. 'NumericUpDown17
  3468. '
  3469. Me.NumericUpDown17.DecimalPlaces = 1
  3470. Me.NumericUpDown17.Increment = New Decimal(New Integer() {5, 0, 0, 65536})
  3471. Me.NumericUpDown17.Location = New System.Drawing.Point(261, 541)
  3472. Me.NumericUpDown17.Maximum = New Decimal(New Integer() {8, 0, 0, 0})
  3473. Me.NumericUpDown17.Minimum = New Decimal(New Integer() {2, 0, 0, 0})
  3474. Me.NumericUpDown17.Name = "NumericUpDown17"
  3475. Me.NumericUpDown17.Size = New System.Drawing.Size(37, 23)
  3476. Me.NumericUpDown17.TabIndex = 1718
  3477. Me.NumericUpDown17.Value = New Decimal(New Integer() {4, 0, 0, 0})
  3478. '
  3479. 'CheckBox17
  3480. '
  3481. Me.CheckBox17.AutoSize = True
  3482. Me.CheckBox17.Location = New System.Drawing.Point(215, 542)
  3483. Me.CheckBox17.Name = "CheckBox17"
  3484. Me.CheckBox17.Size = New System.Drawing.Size(51, 20)
  3485. Me.CheckBox17.TabIndex = 1717
  3486. Me.CheckBox17.Text = "半天"
  3487. Me.CheckBox17.UseVisualStyleBackColor = True
  3488. '
  3489. 'NumericUpDown16
  3490. '
  3491. Me.NumericUpDown16.DecimalPlaces = 1
  3492. Me.NumericUpDown16.Increment = New Decimal(New Integer() {5, 0, 0, 65536})
  3493. Me.NumericUpDown16.Location = New System.Drawing.Point(261, 509)
  3494. Me.NumericUpDown16.Maximum = New Decimal(New Integer() {8, 0, 0, 0})
  3495. Me.NumericUpDown16.Minimum = New Decimal(New Integer() {2, 0, 0, 0})
  3496. Me.NumericUpDown16.Name = "NumericUpDown16"
  3497. Me.NumericUpDown16.Size = New System.Drawing.Size(37, 23)
  3498. Me.NumericUpDown16.TabIndex = 1716
  3499. Me.NumericUpDown16.Value = New Decimal(New Integer() {4, 0, 0, 0})
  3500. '
  3501. 'CheckBox16
  3502. '
  3503. Me.CheckBox16.AutoSize = True
  3504. Me.CheckBox16.Location = New System.Drawing.Point(215, 510)
  3505. Me.CheckBox16.Name = "CheckBox16"
  3506. Me.CheckBox16.Size = New System.Drawing.Size(51, 20)
  3507. Me.CheckBox16.TabIndex = 1715
  3508. Me.CheckBox16.Text = "半天"
  3509. Me.CheckBox16.UseVisualStyleBackColor = True
  3510. '
  3511. 'NumericUpDown15
  3512. '
  3513. Me.NumericUpDown15.DecimalPlaces = 1
  3514. Me.NumericUpDown15.Increment = New Decimal(New Integer() {5, 0, 0, 65536})
  3515. Me.NumericUpDown15.Location = New System.Drawing.Point(261, 479)
  3516. Me.NumericUpDown15.Maximum = New Decimal(New Integer() {8, 0, 0, 0})
  3517. Me.NumericUpDown15.Minimum = New Decimal(New Integer() {2, 0, 0, 0})
  3518. Me.NumericUpDown15.Name = "NumericUpDown15"
  3519. Me.NumericUpDown15.Size = New System.Drawing.Size(37, 23)
  3520. Me.NumericUpDown15.TabIndex = 1714
  3521. Me.NumericUpDown15.Value = New Decimal(New Integer() {4, 0, 0, 0})
  3522. '
  3523. 'CheckBox15
  3524. '
  3525. Me.CheckBox15.AutoSize = True
  3526. Me.CheckBox15.Location = New System.Drawing.Point(215, 480)
  3527. Me.CheckBox15.Name = "CheckBox15"
  3528. Me.CheckBox15.Size = New System.Drawing.Size(51, 20)
  3529. Me.CheckBox15.TabIndex = 1713
  3530. Me.CheckBox15.Text = "半天"
  3531. Me.CheckBox15.UseVisualStyleBackColor = True
  3532. '
  3533. 'NumericUpDown14
  3534. '
  3535. Me.NumericUpDown14.DecimalPlaces = 1
  3536. Me.NumericUpDown14.Increment = New Decimal(New Integer() {5, 0, 0, 65536})
  3537. Me.NumericUpDown14.Location = New System.Drawing.Point(261, 447)
  3538. Me.NumericUpDown14.Maximum = New Decimal(New Integer() {8, 0, 0, 0})
  3539. Me.NumericUpDown14.Minimum = New Decimal(New Integer() {2, 0, 0, 0})
  3540. Me.NumericUpDown14.Name = "NumericUpDown14"
  3541. Me.NumericUpDown14.Size = New System.Drawing.Size(37, 23)
  3542. Me.NumericUpDown14.TabIndex = 1712
  3543. Me.NumericUpDown14.Value = New Decimal(New Integer() {4, 0, 0, 0})
  3544. '
  3545. 'CheckBox14
  3546. '
  3547. Me.CheckBox14.AutoSize = True
  3548. Me.CheckBox14.Location = New System.Drawing.Point(215, 448)
  3549. Me.CheckBox14.Name = "CheckBox14"
  3550. Me.CheckBox14.Size = New System.Drawing.Size(51, 20)
  3551. Me.CheckBox14.TabIndex = 1711
  3552. Me.CheckBox14.Text = "半天"
  3553. Me.CheckBox14.UseVisualStyleBackColor = True
  3554. '
  3555. 'NumericUpDown13
  3556. '
  3557. Me.NumericUpDown13.DecimalPlaces = 1
  3558. Me.NumericUpDown13.Increment = New Decimal(New Integer() {5, 0, 0, 65536})
  3559. Me.NumericUpDown13.Location = New System.Drawing.Point(261, 416)
  3560. Me.NumericUpDown13.Maximum = New Decimal(New Integer() {8, 0, 0, 0})
  3561. Me.NumericUpDown13.Minimum = New Decimal(New Integer() {2, 0, 0, 0})
  3562. Me.NumericUpDown13.Name = "NumericUpDown13"
  3563. Me.NumericUpDown13.Size = New System.Drawing.Size(37, 23)
  3564. Me.NumericUpDown13.TabIndex = 1710
  3565. Me.NumericUpDown13.Value = New Decimal(New Integer() {4, 0, 0, 0})
  3566. '
  3567. 'CheckBox13
  3568. '
  3569. Me.CheckBox13.AutoSize = True
  3570. Me.CheckBox13.Location = New System.Drawing.Point(215, 417)
  3571. Me.CheckBox13.Name = "CheckBox13"
  3572. Me.CheckBox13.Size = New System.Drawing.Size(51, 20)
  3573. Me.CheckBox13.TabIndex = 1709
  3574. Me.CheckBox13.Text = "半天"
  3575. Me.CheckBox13.UseVisualStyleBackColor = True
  3576. '
  3577. 'NumericUpDown12
  3578. '
  3579. Me.NumericUpDown12.DecimalPlaces = 1
  3580. Me.NumericUpDown12.Increment = New Decimal(New Integer() {5, 0, 0, 65536})
  3581. Me.NumericUpDown12.Location = New System.Drawing.Point(261, 385)
  3582. Me.NumericUpDown12.Maximum = New Decimal(New Integer() {8, 0, 0, 0})
  3583. Me.NumericUpDown12.Minimum = New Decimal(New Integer() {2, 0, 0, 0})
  3584. Me.NumericUpDown12.Name = "NumericUpDown12"
  3585. Me.NumericUpDown12.Size = New System.Drawing.Size(37, 23)
  3586. Me.NumericUpDown12.TabIndex = 1708
  3587. Me.NumericUpDown12.Value = New Decimal(New Integer() {4, 0, 0, 0})
  3588. '
  3589. 'CheckBox12
  3590. '
  3591. Me.CheckBox12.AutoSize = True
  3592. Me.CheckBox12.Location = New System.Drawing.Point(215, 386)
  3593. Me.CheckBox12.Name = "CheckBox12"
  3594. Me.CheckBox12.Size = New System.Drawing.Size(51, 20)
  3595. Me.CheckBox12.TabIndex = 1707
  3596. Me.CheckBox12.Text = "半天"
  3597. Me.CheckBox12.UseVisualStyleBackColor = True
  3598. '
  3599. 'NumericUpDown11
  3600. '
  3601. Me.NumericUpDown11.DecimalPlaces = 1
  3602. Me.NumericUpDown11.Increment = New Decimal(New Integer() {5, 0, 0, 65536})
  3603. Me.NumericUpDown11.Location = New System.Drawing.Point(261, 354)
  3604. Me.NumericUpDown11.Maximum = New Decimal(New Integer() {8, 0, 0, 0})
  3605. Me.NumericUpDown11.Minimum = New Decimal(New Integer() {2, 0, 0, 0})
  3606. Me.NumericUpDown11.Name = "NumericUpDown11"
  3607. Me.NumericUpDown11.Size = New System.Drawing.Size(37, 23)
  3608. Me.NumericUpDown11.TabIndex = 1706
  3609. Me.NumericUpDown11.Value = New Decimal(New Integer() {4, 0, 0, 0})
  3610. '
  3611. 'CheckBox11
  3612. '
  3613. Me.CheckBox11.AutoSize = True
  3614. Me.CheckBox11.Location = New System.Drawing.Point(215, 356)
  3615. Me.CheckBox11.Name = "CheckBox11"
  3616. Me.CheckBox11.Size = New System.Drawing.Size(51, 20)
  3617. Me.CheckBox11.TabIndex = 1705
  3618. Me.CheckBox11.Text = "半天"
  3619. Me.CheckBox11.UseVisualStyleBackColor = True
  3620. '
  3621. 'NumericUpDown10
  3622. '
  3623. Me.NumericUpDown10.DecimalPlaces = 1
  3624. Me.NumericUpDown10.Increment = New Decimal(New Integer() {5, 0, 0, 65536})
  3625. Me.NumericUpDown10.Location = New System.Drawing.Point(261, 321)
  3626. Me.NumericUpDown10.Maximum = New Decimal(New Integer() {8, 0, 0, 0})
  3627. Me.NumericUpDown10.Minimum = New Decimal(New Integer() {2, 0, 0, 0})
  3628. Me.NumericUpDown10.Name = "NumericUpDown10"
  3629. Me.NumericUpDown10.Size = New System.Drawing.Size(37, 23)
  3630. Me.NumericUpDown10.TabIndex = 1704
  3631. Me.NumericUpDown10.Value = New Decimal(New Integer() {4, 0, 0, 0})
  3632. '
  3633. 'CheckBox10
  3634. '
  3635. Me.CheckBox10.AutoSize = True
  3636. Me.CheckBox10.Location = New System.Drawing.Point(215, 322)
  3637. Me.CheckBox10.Name = "CheckBox10"
  3638. Me.CheckBox10.Size = New System.Drawing.Size(51, 20)
  3639. Me.CheckBox10.TabIndex = 1703
  3640. Me.CheckBox10.Text = "半天"
  3641. Me.CheckBox10.UseVisualStyleBackColor = True
  3642. '
  3643. 'NumericUpDown9
  3644. '
  3645. Me.NumericUpDown9.DecimalPlaces = 1
  3646. Me.NumericUpDown9.Increment = New Decimal(New Integer() {5, 0, 0, 65536})
  3647. Me.NumericUpDown9.Location = New System.Drawing.Point(261, 292)
  3648. Me.NumericUpDown9.Maximum = New Decimal(New Integer() {8, 0, 0, 0})
  3649. Me.NumericUpDown9.Minimum = New Decimal(New Integer() {2, 0, 0, 0})
  3650. Me.NumericUpDown9.Name = "NumericUpDown9"
  3651. Me.NumericUpDown9.Size = New System.Drawing.Size(37, 23)
  3652. Me.NumericUpDown9.TabIndex = 1702
  3653. Me.NumericUpDown9.Value = New Decimal(New Integer() {4, 0, 0, 0})
  3654. '
  3655. 'CheckBox9
  3656. '
  3657. Me.CheckBox9.AutoSize = True
  3658. Me.CheckBox9.Location = New System.Drawing.Point(215, 293)
  3659. Me.CheckBox9.Name = "CheckBox9"
  3660. Me.CheckBox9.Size = New System.Drawing.Size(51, 20)
  3661. Me.CheckBox9.TabIndex = 1701
  3662. Me.CheckBox9.Text = "半天"
  3663. Me.CheckBox9.UseVisualStyleBackColor = True
  3664. '
  3665. 'NumericUpDown8
  3666. '
  3667. Me.NumericUpDown8.DecimalPlaces = 1
  3668. Me.NumericUpDown8.Increment = New Decimal(New Integer() {5, 0, 0, 65536})
  3669. Me.NumericUpDown8.Location = New System.Drawing.Point(261, 261)
  3670. Me.NumericUpDown8.Maximum = New Decimal(New Integer() {8, 0, 0, 0})
  3671. Me.NumericUpDown8.Minimum = New Decimal(New Integer() {2, 0, 0, 0})
  3672. Me.NumericUpDown8.Name = "NumericUpDown8"
  3673. Me.NumericUpDown8.Size = New System.Drawing.Size(37, 23)
  3674. Me.NumericUpDown8.TabIndex = 1700
  3675. Me.NumericUpDown8.Value = New Decimal(New Integer() {4, 0, 0, 0})
  3676. '
  3677. 'CheckBox8
  3678. '
  3679. Me.CheckBox8.AutoSize = True
  3680. Me.CheckBox8.Location = New System.Drawing.Point(215, 262)
  3681. Me.CheckBox8.Name = "CheckBox8"
  3682. Me.CheckBox8.Size = New System.Drawing.Size(51, 20)
  3683. Me.CheckBox8.TabIndex = 1699
  3684. Me.CheckBox8.Text = "半天"
  3685. Me.CheckBox8.UseVisualStyleBackColor = True
  3686. '
  3687. 'NumericUpDown7
  3688. '
  3689. Me.NumericUpDown7.DecimalPlaces = 1
  3690. Me.NumericUpDown7.Increment = New Decimal(New Integer() {5, 0, 0, 65536})
  3691. Me.NumericUpDown7.Location = New System.Drawing.Point(261, 230)
  3692. Me.NumericUpDown7.Maximum = New Decimal(New Integer() {8, 0, 0, 0})
  3693. Me.NumericUpDown7.Minimum = New Decimal(New Integer() {2, 0, 0, 0})
  3694. Me.NumericUpDown7.Name = "NumericUpDown7"
  3695. Me.NumericUpDown7.Size = New System.Drawing.Size(37, 23)
  3696. Me.NumericUpDown7.TabIndex = 1698
  3697. Me.NumericUpDown7.Value = New Decimal(New Integer() {4, 0, 0, 0})
  3698. '
  3699. 'CheckBox7
  3700. '
  3701. Me.CheckBox7.AutoSize = True
  3702. Me.CheckBox7.Location = New System.Drawing.Point(215, 231)
  3703. Me.CheckBox7.Name = "CheckBox7"
  3704. Me.CheckBox7.Size = New System.Drawing.Size(51, 20)
  3705. Me.CheckBox7.TabIndex = 1697
  3706. Me.CheckBox7.Text = "半天"
  3707. Me.CheckBox7.UseVisualStyleBackColor = True
  3708. '
  3709. 'NumericUpDown6
  3710. '
  3711. Me.NumericUpDown6.DecimalPlaces = 1
  3712. Me.NumericUpDown6.Increment = New Decimal(New Integer() {5, 0, 0, 65536})
  3713. Me.NumericUpDown6.Location = New System.Drawing.Point(261, 199)
  3714. Me.NumericUpDown6.Maximum = New Decimal(New Integer() {8, 0, 0, 0})
  3715. Me.NumericUpDown6.Minimum = New Decimal(New Integer() {2, 0, 0, 0})
  3716. Me.NumericUpDown6.Name = "NumericUpDown6"
  3717. Me.NumericUpDown6.Size = New System.Drawing.Size(37, 23)
  3718. Me.NumericUpDown6.TabIndex = 1696
  3719. Me.NumericUpDown6.Value = New Decimal(New Integer() {4, 0, 0, 0})
  3720. '
  3721. 'CheckBox6
  3722. '
  3723. Me.CheckBox6.AutoSize = True
  3724. Me.CheckBox6.Location = New System.Drawing.Point(215, 200)
  3725. Me.CheckBox6.Name = "CheckBox6"
  3726. Me.CheckBox6.Size = New System.Drawing.Size(51, 20)
  3727. Me.CheckBox6.TabIndex = 1695
  3728. Me.CheckBox6.Text = "半天"
  3729. Me.CheckBox6.UseVisualStyleBackColor = True
  3730. '
  3731. 'NumericUpDown5
  3732. '
  3733. Me.NumericUpDown5.DecimalPlaces = 1
  3734. Me.NumericUpDown5.Increment = New Decimal(New Integer() {5, 0, 0, 65536})
  3735. Me.NumericUpDown5.Location = New System.Drawing.Point(261, 168)
  3736. Me.NumericUpDown5.Maximum = New Decimal(New Integer() {8, 0, 0, 0})
  3737. Me.NumericUpDown5.Minimum = New Decimal(New Integer() {2, 0, 0, 0})
  3738. Me.NumericUpDown5.Name = "NumericUpDown5"
  3739. Me.NumericUpDown5.Size = New System.Drawing.Size(37, 23)
  3740. Me.NumericUpDown5.TabIndex = 1694
  3741. Me.NumericUpDown5.Value = New Decimal(New Integer() {4, 0, 0, 0})
  3742. '
  3743. 'CheckBox5
  3744. '
  3745. Me.CheckBox5.AutoSize = True
  3746. Me.CheckBox5.Location = New System.Drawing.Point(215, 169)
  3747. Me.CheckBox5.Name = "CheckBox5"
  3748. Me.CheckBox5.Size = New System.Drawing.Size(51, 20)
  3749. Me.CheckBox5.TabIndex = 1693
  3750. Me.CheckBox5.Text = "半天"
  3751. Me.CheckBox5.UseVisualStyleBackColor = True
  3752. '
  3753. 'NumericUpDown4
  3754. '
  3755. Me.NumericUpDown4.DecimalPlaces = 1
  3756. Me.NumericUpDown4.Increment = New Decimal(New Integer() {5, 0, 0, 65536})
  3757. Me.NumericUpDown4.Location = New System.Drawing.Point(261, 137)
  3758. Me.NumericUpDown4.Maximum = New Decimal(New Integer() {8, 0, 0, 0})
  3759. Me.NumericUpDown4.Minimum = New Decimal(New Integer() {2, 0, 0, 0})
  3760. Me.NumericUpDown4.Name = "NumericUpDown4"
  3761. Me.NumericUpDown4.Size = New System.Drawing.Size(37, 23)
  3762. Me.NumericUpDown4.TabIndex = 1692
  3763. Me.NumericUpDown4.Value = New Decimal(New Integer() {4, 0, 0, 0})
  3764. '
  3765. 'CheckBox4
  3766. '
  3767. Me.CheckBox4.AutoSize = True
  3768. Me.CheckBox4.Location = New System.Drawing.Point(215, 138)
  3769. Me.CheckBox4.Name = "CheckBox4"
  3770. Me.CheckBox4.Size = New System.Drawing.Size(51, 20)
  3771. Me.CheckBox4.TabIndex = 1691
  3772. Me.CheckBox4.Text = "半天"
  3773. Me.CheckBox4.UseVisualStyleBackColor = True
  3774. '
  3775. 'NumericUpDown3
  3776. '
  3777. Me.NumericUpDown3.DecimalPlaces = 1
  3778. Me.NumericUpDown3.Increment = New Decimal(New Integer() {5, 0, 0, 65536})
  3779. Me.NumericUpDown3.Location = New System.Drawing.Point(261, 106)
  3780. Me.NumericUpDown3.Maximum = New Decimal(New Integer() {8, 0, 0, 0})
  3781. Me.NumericUpDown3.Minimum = New Decimal(New Integer() {2, 0, 0, 0})
  3782. Me.NumericUpDown3.Name = "NumericUpDown3"
  3783. Me.NumericUpDown3.Size = New System.Drawing.Size(37, 23)
  3784. Me.NumericUpDown3.TabIndex = 1690
  3785. Me.NumericUpDown3.Value = New Decimal(New Integer() {4, 0, 0, 0})
  3786. '
  3787. 'CheckBox3
  3788. '
  3789. Me.CheckBox3.AutoSize = True
  3790. Me.CheckBox3.Location = New System.Drawing.Point(215, 107)
  3791. Me.CheckBox3.Name = "CheckBox3"
  3792. Me.CheckBox3.Size = New System.Drawing.Size(51, 20)
  3793. Me.CheckBox3.TabIndex = 1689
  3794. Me.CheckBox3.Text = "半天"
  3795. Me.CheckBox3.UseVisualStyleBackColor = True
  3796. '
  3797. 'NumericUpDown2
  3798. '
  3799. Me.NumericUpDown2.DecimalPlaces = 1
  3800. Me.NumericUpDown2.Increment = New Decimal(New Integer() {5, 0, 0, 65536})
  3801. Me.NumericUpDown2.Location = New System.Drawing.Point(261, 76)
  3802. Me.NumericUpDown2.Maximum = New Decimal(New Integer() {8, 0, 0, 0})
  3803. Me.NumericUpDown2.Minimum = New Decimal(New Integer() {2, 0, 0, 0})
  3804. Me.NumericUpDown2.Name = "NumericUpDown2"
  3805. Me.NumericUpDown2.Size = New System.Drawing.Size(37, 23)
  3806. Me.NumericUpDown2.TabIndex = 1688
  3807. Me.NumericUpDown2.Value = New Decimal(New Integer() {4, 0, 0, 0})
  3808. '
  3809. 'CheckBox2
  3810. '
  3811. Me.CheckBox2.AutoSize = True
  3812. Me.CheckBox2.Location = New System.Drawing.Point(215, 77)
  3813. Me.CheckBox2.Name = "CheckBox2"
  3814. Me.CheckBox2.Size = New System.Drawing.Size(51, 20)
  3815. Me.CheckBox2.TabIndex = 1687
  3816. Me.CheckBox2.Text = "半天"
  3817. Me.CheckBox2.UseVisualStyleBackColor = True
  3818. '
  3819. 'NumericUpDown1
  3820. '
  3821. Me.NumericUpDown1.DecimalPlaces = 1
  3822. Me.NumericUpDown1.Increment = New Decimal(New Integer() {5, 0, 0, 65536})
  3823. Me.NumericUpDown1.Location = New System.Drawing.Point(261, 44)
  3824. Me.NumericUpDown1.Maximum = New Decimal(New Integer() {8, 0, 0, 0})
  3825. Me.NumericUpDown1.Minimum = New Decimal(New Integer() {2, 0, 0, 0})
  3826. Me.NumericUpDown1.Name = "NumericUpDown1"
  3827. Me.NumericUpDown1.Size = New System.Drawing.Size(37, 23)
  3828. Me.NumericUpDown1.TabIndex = 1686
  3829. Me.NumericUpDown1.Value = New Decimal(New Integer() {4, 0, 0, 0})
  3830. '
  3831. 'CheckBox1
  3832. '
  3833. Me.CheckBox1.AutoSize = True
  3834. Me.CheckBox1.Location = New System.Drawing.Point(215, 45)
  3835. Me.CheckBox1.Name = "CheckBox1"
  3836. Me.CheckBox1.Size = New System.Drawing.Size(51, 20)
  3837. Me.CheckBox1.TabIndex = 1685
  3838. Me.CheckBox1.Text = "半天"
  3839. Me.CheckBox1.UseVisualStyleBackColor = True
  3840. '
  3841. '姓名_tb20
  3842. '
  3843. Me.姓名_tb20.Location = New System.Drawing.Point(22, 632)
  3844. Me.姓名_tb20.Name = "姓名_tb20"
  3845. Me.姓名_tb20.Size = New System.Drawing.Size(55, 23)
  3846. Me.姓名_tb20.TabIndex = 1664
  3847. '
  3848. '姓名_tb19
  3849. '
  3850. Me.姓名_tb19.Location = New System.Drawing.Point(22, 601)
  3851. Me.姓名_tb19.Name = "姓名_tb19"
  3852. Me.姓名_tb19.Size = New System.Drawing.Size(55, 23)
  3853. Me.姓名_tb19.TabIndex = 1663
  3854. '
  3855. '姓名_tb18
  3856. '
  3857. Me.姓名_tb18.Location = New System.Drawing.Point(22, 570)
  3858. Me.姓名_tb18.Name = "姓名_tb18"
  3859. Me.姓名_tb18.Size = New System.Drawing.Size(55, 23)
  3860. Me.姓名_tb18.TabIndex = 1662
  3861. '
  3862. '姓名_tb17
  3863. '
  3864. Me.姓名_tb17.Location = New System.Drawing.Point(22, 539)
  3865. Me.姓名_tb17.Name = "姓名_tb17"
  3866. Me.姓名_tb17.Size = New System.Drawing.Size(55, 23)
  3867. Me.姓名_tb17.TabIndex = 1661
  3868. '
  3869. '姓名_tb16
  3870. '
  3871. Me.姓名_tb16.Location = New System.Drawing.Point(22, 508)
  3872. Me.姓名_tb16.Name = "姓名_tb16"
  3873. Me.姓名_tb16.Size = New System.Drawing.Size(55, 23)
  3874. Me.姓名_tb16.TabIndex = 1660
  3875. '
  3876. '姓名_tb15
  3877. '
  3878. Me.姓名_tb15.Location = New System.Drawing.Point(22, 477)
  3879. Me.姓名_tb15.Name = "姓名_tb15"
  3880. Me.姓名_tb15.Size = New System.Drawing.Size(55, 23)
  3881. Me.姓名_tb15.TabIndex = 1659
  3882. '
  3883. '姓名_tb14
  3884. '
  3885. Me.姓名_tb14.Location = New System.Drawing.Point(22, 446)
  3886. Me.姓名_tb14.Name = "姓名_tb14"
  3887. Me.姓名_tb14.Size = New System.Drawing.Size(55, 23)
  3888. Me.姓名_tb14.TabIndex = 1658
  3889. '
  3890. '姓名_tb13
  3891. '
  3892. Me.姓名_tb13.Location = New System.Drawing.Point(22, 415)
  3893. Me.姓名_tb13.Name = "姓名_tb13"
  3894. Me.姓名_tb13.Size = New System.Drawing.Size(55, 23)
  3895. Me.姓名_tb13.TabIndex = 1657
  3896. '
  3897. '姓名_tb12
  3898. '
  3899. Me.姓名_tb12.Location = New System.Drawing.Point(22, 384)
  3900. Me.姓名_tb12.Name = "姓名_tb12"
  3901. Me.姓名_tb12.Size = New System.Drawing.Size(55, 23)
  3902. Me.姓名_tb12.TabIndex = 1656
  3903. '
  3904. '姓名_tb11
  3905. '
  3906. Me.姓名_tb11.Location = New System.Drawing.Point(22, 353)
  3907. Me.姓名_tb11.Name = "姓名_tb11"
  3908. Me.姓名_tb11.Size = New System.Drawing.Size(55, 23)
  3909. Me.姓名_tb11.TabIndex = 1655
  3910. '
  3911. '姓名_tb10
  3912. '
  3913. Me.姓名_tb10.Location = New System.Drawing.Point(22, 322)
  3914. Me.姓名_tb10.Name = "姓名_tb10"
  3915. Me.姓名_tb10.Size = New System.Drawing.Size(55, 23)
  3916. Me.姓名_tb10.TabIndex = 1654
  3917. '
  3918. '姓名_tb9
  3919. '
  3920. Me.姓名_tb9.Location = New System.Drawing.Point(22, 291)
  3921. Me.姓名_tb9.Name = "姓名_tb9"
  3922. Me.姓名_tb9.Size = New System.Drawing.Size(55, 23)
  3923. Me.姓名_tb9.TabIndex = 1653
  3924. '
  3925. '姓名_tb8
  3926. '
  3927. Me.姓名_tb8.Location = New System.Drawing.Point(22, 260)
  3928. Me.姓名_tb8.Name = "姓名_tb8"
  3929. Me.姓名_tb8.Size = New System.Drawing.Size(55, 23)
  3930. Me.姓名_tb8.TabIndex = 1652
  3931. '
  3932. '姓名_tb7
  3933. '
  3934. Me.姓名_tb7.Location = New System.Drawing.Point(22, 229)
  3935. Me.姓名_tb7.Name = "姓名_tb7"
  3936. Me.姓名_tb7.Size = New System.Drawing.Size(55, 23)
  3937. Me.姓名_tb7.TabIndex = 1651
  3938. '
  3939. '姓名_tb6
  3940. '
  3941. Me.姓名_tb6.Location = New System.Drawing.Point(22, 198)
  3942. Me.姓名_tb6.Name = "姓名_tb6"
  3943. Me.姓名_tb6.Size = New System.Drawing.Size(55, 23)
  3944. Me.姓名_tb6.TabIndex = 1650
  3945. '
  3946. '姓名_tb5
  3947. '
  3948. Me.姓名_tb5.Location = New System.Drawing.Point(22, 167)
  3949. Me.姓名_tb5.Name = "姓名_tb5"
  3950. Me.姓名_tb5.Size = New System.Drawing.Size(55, 23)
  3951. Me.姓名_tb5.TabIndex = 1649
  3952. '
  3953. '姓名_tb4
  3954. '
  3955. Me.姓名_tb4.Location = New System.Drawing.Point(22, 136)
  3956. Me.姓名_tb4.Name = "姓名_tb4"
  3957. Me.姓名_tb4.Size = New System.Drawing.Size(55, 23)
  3958. Me.姓名_tb4.TabIndex = 1648
  3959. '
  3960. '姓名_tb3
  3961. '
  3962. Me.姓名_tb3.Location = New System.Drawing.Point(22, 105)
  3963. Me.姓名_tb3.Name = "姓名_tb3"
  3964. Me.姓名_tb3.Size = New System.Drawing.Size(55, 23)
  3965. Me.姓名_tb3.TabIndex = 1647
  3966. '
  3967. '姓名_tb2
  3968. '
  3969. Me.姓名_tb2.Location = New System.Drawing.Point(22, 75)
  3970. Me.姓名_tb2.Name = "姓名_tb2"
  3971. Me.姓名_tb2.Size = New System.Drawing.Size(55, 23)
  3972. Me.姓名_tb2.TabIndex = 1646
  3973. '
  3974. '姓名_tb1
  3975. '
  3976. Me.姓名_tb1.Location = New System.Drawing.Point(22, 44)
  3977. Me.姓名_tb1.Name = "姓名_tb1"
  3978. Me.姓名_tb1.Size = New System.Drawing.Size(55, 23)
  3979. Me.姓名_tb1.TabIndex = 1645
  3980. '
  3981. '班別_cb20
  3982. '
  3983. Me.班別_cb20.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
  3984. Me.班別_cb20.FormattingEnabled = True
  3985. Me.班別_cb20.Items.AddRange(New Object() {"2019", "2020", "2021", "2022", "2023", "2024", "2025", "2026", "2027", "2028", "2029", "2030"})
  3986. Me.班別_cb20.Location = New System.Drawing.Point(135, 632)
  3987. Me.班別_cb20.Name = "班別_cb20"
  3988. Me.班別_cb20.Size = New System.Drawing.Size(78, 24)
  3989. Me.班別_cb20.TabIndex = 1625
  3990. '
  3991. '班別_cb19
  3992. '
  3993. Me.班別_cb19.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
  3994. Me.班別_cb19.FormattingEnabled = True
  3995. Me.班別_cb19.Items.AddRange(New Object() {"2019", "2020", "2021", "2022", "2023", "2024", "2025", "2026", "2027", "2028", "2029", "2030"})
  3996. Me.班別_cb19.Location = New System.Drawing.Point(135, 601)
  3997. Me.班別_cb19.Name = "班別_cb19"
  3998. Me.班別_cb19.Size = New System.Drawing.Size(78, 24)
  3999. Me.班別_cb19.TabIndex = 1624
  4000. '
  4001. '班別_cb18
  4002. '
  4003. Me.班別_cb18.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
  4004. Me.班別_cb18.FormattingEnabled = True
  4005. Me.班別_cb18.Items.AddRange(New Object() {"2019", "2020", "2021", "2022", "2023", "2024", "2025", "2026", "2027", "2028", "2029", "2030"})
  4006. Me.班別_cb18.Location = New System.Drawing.Point(135, 570)
  4007. Me.班別_cb18.Name = "班別_cb18"
  4008. Me.班別_cb18.Size = New System.Drawing.Size(78, 24)
  4009. Me.班別_cb18.TabIndex = 1623
  4010. '
  4011. '班別_cb17
  4012. '
  4013. Me.班別_cb17.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
  4014. Me.班別_cb17.FormattingEnabled = True
  4015. Me.班別_cb17.Items.AddRange(New Object() {"2019", "2020", "2021", "2022", "2023", "2024", "2025", "2026", "2027", "2028", "2029", "2030"})
  4016. Me.班別_cb17.Location = New System.Drawing.Point(135, 539)
  4017. Me.班別_cb17.Name = "班別_cb17"
  4018. Me.班別_cb17.Size = New System.Drawing.Size(78, 24)
  4019. Me.班別_cb17.TabIndex = 1622
  4020. '
  4021. '班別_cb16
  4022. '
  4023. Me.班別_cb16.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
  4024. Me.班別_cb16.FormattingEnabled = True
  4025. Me.班別_cb16.Items.AddRange(New Object() {"2019", "2020", "2021", "2022", "2023", "2024", "2025", "2026", "2027", "2028", "2029", "2030"})
  4026. Me.班別_cb16.Location = New System.Drawing.Point(135, 508)
  4027. Me.班別_cb16.Name = "班別_cb16"
  4028. Me.班別_cb16.Size = New System.Drawing.Size(78, 24)
  4029. Me.班別_cb16.TabIndex = 1621
  4030. '
  4031. '班別_cb15
  4032. '
  4033. Me.班別_cb15.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
  4034. Me.班別_cb15.FormattingEnabled = True
  4035. Me.班別_cb15.Items.AddRange(New Object() {"2019", "2020", "2021", "2022", "2023", "2024", "2025", "2026", "2027", "2028", "2029", "2030"})
  4036. Me.班別_cb15.Location = New System.Drawing.Point(135, 477)
  4037. Me.班別_cb15.Name = "班別_cb15"
  4038. Me.班別_cb15.Size = New System.Drawing.Size(78, 24)
  4039. Me.班別_cb15.TabIndex = 1620
  4040. '
  4041. '班別_cb14
  4042. '
  4043. Me.班別_cb14.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
  4044. Me.班別_cb14.FormattingEnabled = True
  4045. Me.班別_cb14.Items.AddRange(New Object() {"2019", "2020", "2021", "2022", "2023", "2024", "2025", "2026", "2027", "2028", "2029", "2030"})
  4046. Me.班別_cb14.Location = New System.Drawing.Point(135, 446)
  4047. Me.班別_cb14.Name = "班別_cb14"
  4048. Me.班別_cb14.Size = New System.Drawing.Size(78, 24)
  4049. Me.班別_cb14.TabIndex = 1619
  4050. '
  4051. '班別_cb13
  4052. '
  4053. Me.班別_cb13.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
  4054. Me.班別_cb13.FormattingEnabled = True
  4055. Me.班別_cb13.Items.AddRange(New Object() {"2019", "2020", "2021", "2022", "2023", "2024", "2025", "2026", "2027", "2028", "2029", "2030"})
  4056. Me.班別_cb13.Location = New System.Drawing.Point(135, 415)
  4057. Me.班別_cb13.Name = "班別_cb13"
  4058. Me.班別_cb13.Size = New System.Drawing.Size(78, 24)
  4059. Me.班別_cb13.TabIndex = 1618
  4060. '
  4061. '班別_cb12
  4062. '
  4063. Me.班別_cb12.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
  4064. Me.班別_cb12.FormattingEnabled = True
  4065. Me.班別_cb12.Items.AddRange(New Object() {"2019", "2020", "2021", "2022", "2023", "2024", "2025", "2026", "2027", "2028", "2029", "2030"})
  4066. Me.班別_cb12.Location = New System.Drawing.Point(135, 384)
  4067. Me.班別_cb12.Name = "班別_cb12"
  4068. Me.班別_cb12.Size = New System.Drawing.Size(78, 24)
  4069. Me.班別_cb12.TabIndex = 1617
  4070. '
  4071. '班別_cb11
  4072. '
  4073. Me.班別_cb11.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
  4074. Me.班別_cb11.FormattingEnabled = True
  4075. Me.班別_cb11.Items.AddRange(New Object() {"2019", "2020", "2021", "2022", "2023", "2024", "2025", "2026", "2027", "2028", "2029", "2030"})
  4076. Me.班別_cb11.Location = New System.Drawing.Point(135, 353)
  4077. Me.班別_cb11.Name = "班別_cb11"
  4078. Me.班別_cb11.Size = New System.Drawing.Size(78, 24)
  4079. Me.班別_cb11.TabIndex = 1616
  4080. '
  4081. '班別_cb10
  4082. '
  4083. Me.班別_cb10.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
  4084. Me.班別_cb10.FormattingEnabled = True
  4085. Me.班別_cb10.Items.AddRange(New Object() {"2019", "2020", "2021", "2022", "2023", "2024", "2025", "2026", "2027", "2028", "2029", "2030"})
  4086. Me.班別_cb10.Location = New System.Drawing.Point(135, 322)
  4087. Me.班別_cb10.Name = "班別_cb10"
  4088. Me.班別_cb10.Size = New System.Drawing.Size(78, 24)
  4089. Me.班別_cb10.TabIndex = 1615
  4090. '
  4091. '班別_cb9
  4092. '
  4093. Me.班別_cb9.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
  4094. Me.班別_cb9.FormattingEnabled = True
  4095. Me.班別_cb9.Items.AddRange(New Object() {"2019", "2020", "2021", "2022", "2023", "2024", "2025", "2026", "2027", "2028", "2029", "2030"})
  4096. Me.班別_cb9.Location = New System.Drawing.Point(135, 291)
  4097. Me.班別_cb9.Name = "班別_cb9"
  4098. Me.班別_cb9.Size = New System.Drawing.Size(78, 24)
  4099. Me.班別_cb9.TabIndex = 1614
  4100. '
  4101. '班別_cb8
  4102. '
  4103. Me.班別_cb8.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
  4104. Me.班別_cb8.FormattingEnabled = True
  4105. Me.班別_cb8.Items.AddRange(New Object() {"2019", "2020", "2021", "2022", "2023", "2024", "2025", "2026", "2027", "2028", "2029", "2030"})
  4106. Me.班別_cb8.Location = New System.Drawing.Point(135, 260)
  4107. Me.班別_cb8.Name = "班別_cb8"
  4108. Me.班別_cb8.Size = New System.Drawing.Size(78, 24)
  4109. Me.班別_cb8.TabIndex = 1613
  4110. '
  4111. '班別_cb7
  4112. '
  4113. Me.班別_cb7.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
  4114. Me.班別_cb7.FormattingEnabled = True
  4115. Me.班別_cb7.Items.AddRange(New Object() {"2019", "2020", "2021", "2022", "2023", "2024", "2025", "2026", "2027", "2028", "2029", "2030"})
  4116. Me.班別_cb7.Location = New System.Drawing.Point(135, 229)
  4117. Me.班別_cb7.Name = "班別_cb7"
  4118. Me.班別_cb7.Size = New System.Drawing.Size(78, 24)
  4119. Me.班別_cb7.TabIndex = 1612
  4120. '
  4121. '班別_cb6
  4122. '
  4123. Me.班別_cb6.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
  4124. Me.班別_cb6.FormattingEnabled = True
  4125. Me.班別_cb6.Items.AddRange(New Object() {"2019", "2020", "2021", "2022", "2023", "2024", "2025", "2026", "2027", "2028", "2029", "2030"})
  4126. Me.班別_cb6.Location = New System.Drawing.Point(135, 198)
  4127. Me.班別_cb6.Name = "班別_cb6"
  4128. Me.班別_cb6.Size = New System.Drawing.Size(78, 24)
  4129. Me.班別_cb6.TabIndex = 1611
  4130. '
  4131. '班別_cb5
  4132. '
  4133. Me.班別_cb5.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
  4134. Me.班別_cb5.FormattingEnabled = True
  4135. Me.班別_cb5.Items.AddRange(New Object() {"2019", "2020", "2021", "2022", "2023", "2024", "2025", "2026", "2027", "2028", "2029", "2030"})
  4136. Me.班別_cb5.Location = New System.Drawing.Point(135, 167)
  4137. Me.班別_cb5.Name = "班別_cb5"
  4138. Me.班別_cb5.Size = New System.Drawing.Size(78, 24)
  4139. Me.班別_cb5.TabIndex = 1610
  4140. '
  4141. '班別_cb4
  4142. '
  4143. Me.班別_cb4.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
  4144. Me.班別_cb4.FormattingEnabled = True
  4145. Me.班別_cb4.Items.AddRange(New Object() {"2019", "2020", "2021", "2022", "2023", "2024", "2025", "2026", "2027", "2028", "2029", "2030"})
  4146. Me.班別_cb4.Location = New System.Drawing.Point(135, 136)
  4147. Me.班別_cb4.Name = "班別_cb4"
  4148. Me.班別_cb4.Size = New System.Drawing.Size(78, 24)
  4149. Me.班別_cb4.TabIndex = 1609
  4150. '
  4151. '班別_cb3
  4152. '
  4153. Me.班別_cb3.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
  4154. Me.班別_cb3.FormattingEnabled = True
  4155. Me.班別_cb3.Items.AddRange(New Object() {"2019", "2020", "2021", "2022", "2023", "2024", "2025", "2026", "2027", "2028", "2029", "2030"})
  4156. Me.班別_cb3.Location = New System.Drawing.Point(135, 105)
  4157. Me.班別_cb3.Name = "班別_cb3"
  4158. Me.班別_cb3.Size = New System.Drawing.Size(78, 24)
  4159. Me.班別_cb3.TabIndex = 1608
  4160. '
  4161. '班別_cb2
  4162. '
  4163. Me.班別_cb2.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
  4164. Me.班別_cb2.FormattingEnabled = True
  4165. Me.班別_cb2.Items.AddRange(New Object() {"2019", "2020", "2021", "2022", "2023", "2024", "2025", "2026", "2027", "2028", "2029", "2030"})
  4166. Me.班別_cb2.Location = New System.Drawing.Point(135, 74)
  4167. Me.班別_cb2.Name = "班別_cb2"
  4168. Me.班別_cb2.Size = New System.Drawing.Size(78, 24)
  4169. Me.班別_cb2.TabIndex = 1607
  4170. '
  4171. '班別_cb1
  4172. '
  4173. Me.班別_cb1.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
  4174. Me.班別_cb1.FormattingEnabled = True
  4175. Me.班別_cb1.Items.AddRange(New Object() {"2019", "2020", "2021", "2022", "2023", "2024", "2025", "2026", "2027", "2028", "2029", "2030"})
  4176. Me.班別_cb1.Location = New System.Drawing.Point(135, 43)
  4177. Me.班別_cb1.Name = "班別_cb1"
  4178. Me.班別_cb1.Size = New System.Drawing.Size(78, 24)
  4179. Me.班別_cb1.TabIndex = 1606
  4180. '
  4181. 'Label69
  4182. '
  4183. Me.Label69.AutoSize = True
  4184. Me.Label69.Location = New System.Drawing.Point(462, -11)
  4185. Me.Label69.Name = "Label69"
  4186. Me.Label69.Size = New System.Drawing.Size(1388, 16)
  4187. Me.Label69.TabIndex = 1605
  4188. Me.Label69.Text = resources.GetString("Label69.Text")
  4189. '
  4190. 'A_pb40
  4191. '
  4192. Me.A_pb40.Location = New System.Drawing.Point(880, 632)
  4193. Me.A_pb40.Maximum = 1
  4194. Me.A_pb40.Name = "A_pb40"
  4195. Me.A_pb40.Size = New System.Drawing.Size(340, 27)
  4196. Me.A_pb40.TabIndex = 1604
  4197. Me.A_pb40.Value = 1
  4198. '
  4199. 'A_pb39
  4200. '
  4201. Me.A_pb39.Location = New System.Drawing.Point(455, 632)
  4202. Me.A_pb39.Maximum = 1
  4203. Me.A_pb39.Name = "A_pb39"
  4204. Me.A_pb39.Size = New System.Drawing.Size(340, 27)
  4205. Me.A_pb39.TabIndex = 1603
  4206. Me.A_pb39.Value = 1
  4207. '
  4208. 'A_pb38
  4209. '
  4210. Me.A_pb38.Location = New System.Drawing.Point(879, 601)
  4211. Me.A_pb38.Maximum = 1
  4212. Me.A_pb38.Name = "A_pb38"
  4213. Me.A_pb38.Size = New System.Drawing.Size(340, 27)
  4214. Me.A_pb38.TabIndex = 1602
  4215. Me.A_pb38.Value = 1
  4216. '
  4217. 'A_pb37
  4218. '
  4219. Me.A_pb37.Location = New System.Drawing.Point(454, 601)
  4220. Me.A_pb37.Maximum = 1
  4221. Me.A_pb37.Name = "A_pb37"
  4222. Me.A_pb37.Size = New System.Drawing.Size(340, 27)
  4223. Me.A_pb37.TabIndex = 1601
  4224. Me.A_pb37.Value = 1
  4225. '
  4226. 'A_pb36
  4227. '
  4228. Me.A_pb36.Location = New System.Drawing.Point(879, 570)
  4229. Me.A_pb36.Maximum = 1
  4230. Me.A_pb36.Name = "A_pb36"
  4231. Me.A_pb36.Size = New System.Drawing.Size(340, 27)
  4232. Me.A_pb36.TabIndex = 1600
  4233. Me.A_pb36.Value = 1
  4234. '
  4235. 'A_pb35
  4236. '
  4237. Me.A_pb35.Location = New System.Drawing.Point(454, 570)
  4238. Me.A_pb35.Maximum = 1
  4239. Me.A_pb35.Name = "A_pb35"
  4240. Me.A_pb35.Size = New System.Drawing.Size(340, 27)
  4241. Me.A_pb35.TabIndex = 1599
  4242. Me.A_pb35.Value = 1
  4243. '
  4244. 'A_pb34
  4245. '
  4246. Me.A_pb34.Location = New System.Drawing.Point(880, 539)
  4247. Me.A_pb34.Maximum = 1
  4248. Me.A_pb34.Name = "A_pb34"
  4249. Me.A_pb34.Size = New System.Drawing.Size(340, 27)
  4250. Me.A_pb34.TabIndex = 1598
  4251. Me.A_pb34.Value = 1
  4252. '
  4253. 'A_pb33
  4254. '
  4255. Me.A_pb33.Location = New System.Drawing.Point(455, 539)
  4256. Me.A_pb33.Maximum = 1
  4257. Me.A_pb33.Name = "A_pb33"
  4258. Me.A_pb33.Size = New System.Drawing.Size(340, 27)
  4259. Me.A_pb33.TabIndex = 1597
  4260. Me.A_pb33.Value = 1
  4261. '
  4262. 'A_pb32
  4263. '
  4264. Me.A_pb32.Location = New System.Drawing.Point(880, 508)
  4265. Me.A_pb32.Maximum = 1
  4266. Me.A_pb32.Name = "A_pb32"
  4267. Me.A_pb32.Size = New System.Drawing.Size(340, 27)
  4268. Me.A_pb32.TabIndex = 1596
  4269. Me.A_pb32.Value = 1
  4270. '
  4271. 'A_pb31
  4272. '
  4273. Me.A_pb31.Location = New System.Drawing.Point(455, 508)
  4274. Me.A_pb31.Maximum = 1
  4275. Me.A_pb31.Name = "A_pb31"
  4276. Me.A_pb31.Size = New System.Drawing.Size(340, 27)
  4277. Me.A_pb31.TabIndex = 1595
  4278. Me.A_pb31.Value = 1
  4279. '
  4280. 'A_pb30
  4281. '
  4282. Me.A_pb30.Location = New System.Drawing.Point(880, 477)
  4283. Me.A_pb30.Maximum = 1
  4284. Me.A_pb30.Name = "A_pb30"
  4285. Me.A_pb30.Size = New System.Drawing.Size(340, 27)
  4286. Me.A_pb30.TabIndex = 1594
  4287. Me.A_pb30.Value = 1
  4288. '
  4289. 'A_pb29
  4290. '
  4291. Me.A_pb29.Location = New System.Drawing.Point(455, 477)
  4292. Me.A_pb29.Maximum = 1
  4293. Me.A_pb29.Name = "A_pb29"
  4294. Me.A_pb29.Size = New System.Drawing.Size(340, 27)
  4295. Me.A_pb29.TabIndex = 1593
  4296. Me.A_pb29.Value = 1
  4297. '
  4298. 'A_pb28
  4299. '
  4300. Me.A_pb28.Location = New System.Drawing.Point(880, 446)
  4301. Me.A_pb28.Maximum = 1
  4302. Me.A_pb28.Name = "A_pb28"
  4303. Me.A_pb28.Size = New System.Drawing.Size(340, 27)
  4304. Me.A_pb28.TabIndex = 1592
  4305. Me.A_pb28.Value = 1
  4306. '
  4307. 'A_pb27
  4308. '
  4309. Me.A_pb27.Location = New System.Drawing.Point(455, 446)
  4310. Me.A_pb27.Maximum = 1
  4311. Me.A_pb27.Name = "A_pb27"
  4312. Me.A_pb27.Size = New System.Drawing.Size(340, 27)
  4313. Me.A_pb27.TabIndex = 1591
  4314. Me.A_pb27.Value = 1
  4315. '
  4316. 'A_pb26
  4317. '
  4318. Me.A_pb26.Location = New System.Drawing.Point(880, 415)
  4319. Me.A_pb26.Maximum = 1
  4320. Me.A_pb26.Name = "A_pb26"
  4321. Me.A_pb26.Size = New System.Drawing.Size(340, 27)
  4322. Me.A_pb26.TabIndex = 1590
  4323. Me.A_pb26.Value = 1
  4324. '
  4325. 'A_pb25
  4326. '
  4327. Me.A_pb25.Location = New System.Drawing.Point(455, 415)
  4328. Me.A_pb25.Maximum = 1
  4329. Me.A_pb25.Name = "A_pb25"
  4330. Me.A_pb25.Size = New System.Drawing.Size(340, 27)
  4331. Me.A_pb25.TabIndex = 1589
  4332. Me.A_pb25.Value = 1
  4333. '
  4334. 'A_pb24
  4335. '
  4336. Me.A_pb24.Location = New System.Drawing.Point(880, 384)
  4337. Me.A_pb24.Maximum = 1
  4338. Me.A_pb24.Name = "A_pb24"
  4339. Me.A_pb24.Size = New System.Drawing.Size(340, 27)
  4340. Me.A_pb24.TabIndex = 1588
  4341. Me.A_pb24.Value = 1
  4342. '
  4343. 'A_pb23
  4344. '
  4345. Me.A_pb23.Location = New System.Drawing.Point(455, 384)
  4346. Me.A_pb23.Maximum = 1
  4347. Me.A_pb23.Name = "A_pb23"
  4348. Me.A_pb23.Size = New System.Drawing.Size(340, 27)
  4349. Me.A_pb23.TabIndex = 1587
  4350. Me.A_pb23.Value = 1
  4351. '
  4352. 'A_pb22
  4353. '
  4354. Me.A_pb22.Location = New System.Drawing.Point(880, 353)
  4355. Me.A_pb22.Maximum = 1
  4356. Me.A_pb22.Name = "A_pb22"
  4357. Me.A_pb22.Size = New System.Drawing.Size(340, 27)
  4358. Me.A_pb22.TabIndex = 1586
  4359. Me.A_pb22.Value = 1
  4360. '
  4361. 'A_pb21
  4362. '
  4363. Me.A_pb21.Location = New System.Drawing.Point(455, 353)
  4364. Me.A_pb21.Maximum = 1
  4365. Me.A_pb21.Name = "A_pb21"
  4366. Me.A_pb21.Size = New System.Drawing.Size(340, 27)
  4367. Me.A_pb21.TabIndex = 1585
  4368. Me.A_pb21.Value = 1
  4369. '
  4370. 'A_pb20
  4371. '
  4372. Me.A_pb20.Location = New System.Drawing.Point(879, 322)
  4373. Me.A_pb20.Maximum = 1
  4374. Me.A_pb20.Name = "A_pb20"
  4375. Me.A_pb20.Size = New System.Drawing.Size(340, 27)
  4376. Me.A_pb20.TabIndex = 1584
  4377. Me.A_pb20.Value = 1
  4378. '
  4379. 'A_pb19
  4380. '
  4381. Me.A_pb19.Location = New System.Drawing.Point(454, 322)
  4382. Me.A_pb19.Maximum = 1
  4383. Me.A_pb19.Name = "A_pb19"
  4384. Me.A_pb19.Size = New System.Drawing.Size(340, 27)
  4385. Me.A_pb19.TabIndex = 1583
  4386. Me.A_pb19.Value = 1
  4387. '
  4388. 'A_pb18
  4389. '
  4390. Me.A_pb18.Location = New System.Drawing.Point(879, 291)
  4391. Me.A_pb18.Maximum = 1
  4392. Me.A_pb18.Name = "A_pb18"
  4393. Me.A_pb18.Size = New System.Drawing.Size(340, 27)
  4394. Me.A_pb18.TabIndex = 1582
  4395. Me.A_pb18.Value = 1
  4396. '
  4397. 'A_pb17
  4398. '
  4399. Me.A_pb17.Location = New System.Drawing.Point(454, 291)
  4400. Me.A_pb17.Maximum = 1
  4401. Me.A_pb17.Name = "A_pb17"
  4402. Me.A_pb17.Size = New System.Drawing.Size(340, 27)
  4403. Me.A_pb17.TabIndex = 1581
  4404. Me.A_pb17.Value = 1
  4405. '
  4406. 'A_pb16
  4407. '
  4408. Me.A_pb16.Location = New System.Drawing.Point(880, 260)
  4409. Me.A_pb16.Maximum = 1
  4410. Me.A_pb16.Name = "A_pb16"
  4411. Me.A_pb16.Size = New System.Drawing.Size(340, 27)
  4412. Me.A_pb16.TabIndex = 1580
  4413. Me.A_pb16.Value = 1
  4414. '
  4415. 'A_pb15
  4416. '
  4417. Me.A_pb15.Location = New System.Drawing.Point(455, 260)
  4418. Me.A_pb15.Maximum = 1
  4419. Me.A_pb15.Name = "A_pb15"
  4420. Me.A_pb15.Size = New System.Drawing.Size(340, 27)
  4421. Me.A_pb15.TabIndex = 1579
  4422. Me.A_pb15.Value = 1
  4423. '
  4424. 'A_pb14
  4425. '
  4426. Me.A_pb14.Location = New System.Drawing.Point(880, 229)
  4427. Me.A_pb14.Maximum = 1
  4428. Me.A_pb14.Name = "A_pb14"
  4429. Me.A_pb14.Size = New System.Drawing.Size(340, 27)
  4430. Me.A_pb14.TabIndex = 1578
  4431. Me.A_pb14.Value = 1
  4432. '
  4433. 'A_pb13
  4434. '
  4435. Me.A_pb13.Location = New System.Drawing.Point(455, 229)
  4436. Me.A_pb13.Maximum = 1
  4437. Me.A_pb13.Name = "A_pb13"
  4438. Me.A_pb13.Size = New System.Drawing.Size(340, 27)
  4439. Me.A_pb13.TabIndex = 1577
  4440. Me.A_pb13.Value = 1
  4441. '
  4442. 'A_pb12
  4443. '
  4444. Me.A_pb12.Location = New System.Drawing.Point(880, 198)
  4445. Me.A_pb12.Maximum = 1
  4446. Me.A_pb12.Name = "A_pb12"
  4447. Me.A_pb12.Size = New System.Drawing.Size(340, 27)
  4448. Me.A_pb12.TabIndex = 1576
  4449. Me.A_pb12.Value = 1
  4450. '
  4451. 'A_pb11
  4452. '
  4453. Me.A_pb11.Location = New System.Drawing.Point(455, 198)
  4454. Me.A_pb11.Maximum = 1
  4455. Me.A_pb11.Name = "A_pb11"
  4456. Me.A_pb11.Size = New System.Drawing.Size(340, 27)
  4457. Me.A_pb11.TabIndex = 1575
  4458. Me.A_pb11.Value = 1
  4459. '
  4460. 'A_pb10
  4461. '
  4462. Me.A_pb10.Location = New System.Drawing.Point(880, 167)
  4463. Me.A_pb10.Maximum = 1
  4464. Me.A_pb10.Name = "A_pb10"
  4465. Me.A_pb10.Size = New System.Drawing.Size(340, 27)
  4466. Me.A_pb10.TabIndex = 1574
  4467. Me.A_pb10.Value = 1
  4468. '
  4469. 'A_pb9
  4470. '
  4471. Me.A_pb9.Location = New System.Drawing.Point(455, 167)
  4472. Me.A_pb9.Maximum = 1
  4473. Me.A_pb9.Name = "A_pb9"
  4474. Me.A_pb9.Size = New System.Drawing.Size(340, 27)
  4475. Me.A_pb9.TabIndex = 1573
  4476. Me.A_pb9.Value = 1
  4477. '
  4478. 'A_pb8
  4479. '
  4480. Me.A_pb8.Location = New System.Drawing.Point(880, 136)
  4481. Me.A_pb8.Maximum = 1
  4482. Me.A_pb8.Name = "A_pb8"
  4483. Me.A_pb8.Size = New System.Drawing.Size(340, 27)
  4484. Me.A_pb8.TabIndex = 1572
  4485. Me.A_pb8.Value = 1
  4486. '
  4487. 'A_pb7
  4488. '
  4489. Me.A_pb7.Location = New System.Drawing.Point(455, 136)
  4490. Me.A_pb7.Maximum = 1
  4491. Me.A_pb7.Name = "A_pb7"
  4492. Me.A_pb7.Size = New System.Drawing.Size(340, 27)
  4493. Me.A_pb7.TabIndex = 1571
  4494. Me.A_pb7.Value = 1
  4495. '
  4496. 'A_pb6
  4497. '
  4498. Me.A_pb6.Location = New System.Drawing.Point(880, 105)
  4499. Me.A_pb6.Maximum = 1
  4500. Me.A_pb6.Name = "A_pb6"
  4501. Me.A_pb6.Size = New System.Drawing.Size(340, 27)
  4502. Me.A_pb6.TabIndex = 1570
  4503. Me.A_pb6.Value = 1
  4504. '
  4505. 'A_pb5
  4506. '
  4507. Me.A_pb5.Location = New System.Drawing.Point(455, 105)
  4508. Me.A_pb5.Maximum = 1
  4509. Me.A_pb5.Name = "A_pb5"
  4510. Me.A_pb5.Size = New System.Drawing.Size(340, 27)
  4511. Me.A_pb5.TabIndex = 1569
  4512. Me.A_pb5.Value = 1
  4513. '
  4514. 'A_pb4
  4515. '
  4516. Me.A_pb4.Location = New System.Drawing.Point(880, 74)
  4517. Me.A_pb4.Maximum = 1
  4518. Me.A_pb4.Name = "A_pb4"
  4519. Me.A_pb4.Size = New System.Drawing.Size(340, 27)
  4520. Me.A_pb4.TabIndex = 1568
  4521. Me.A_pb4.Value = 1
  4522. '
  4523. 'A_pb3
  4524. '
  4525. Me.A_pb3.Location = New System.Drawing.Point(455, 74)
  4526. Me.A_pb3.Maximum = 1
  4527. Me.A_pb3.Name = "A_pb3"
  4528. Me.A_pb3.Size = New System.Drawing.Size(340, 27)
  4529. Me.A_pb3.TabIndex = 1567
  4530. Me.A_pb3.Value = 1
  4531. '
  4532. 'A_pb2
  4533. '
  4534. Me.A_pb2.Location = New System.Drawing.Point(880, 43)
  4535. Me.A_pb2.Maximum = 1
  4536. Me.A_pb2.Name = "A_pb2"
  4537. Me.A_pb2.Size = New System.Drawing.Size(340, 27)
  4538. Me.A_pb2.TabIndex = 1566
  4539. Me.A_pb2.Value = 1
  4540. '
  4541. 'A_pb1
  4542. '
  4543. Me.A_pb1.Location = New System.Drawing.Point(455, 43)
  4544. Me.A_pb1.Maximum = 1
  4545. Me.A_pb1.Name = "A_pb1"
  4546. Me.A_pb1.Size = New System.Drawing.Size(340, 27)
  4547. Me.A_pb1.TabIndex = 1549
  4548. Me.A_pb1.Value = 1
  4549. '
  4550. 'Label68
  4551. '
  4552. Me.Label68.AutoSize = True
  4553. Me.Label68.Location = New System.Drawing.Point(1810, 40)
  4554. Me.Label68.Name = "Label68"
  4555. Me.Label68.Size = New System.Drawing.Size(11, 960)
  4556. Me.Label68.TabIndex = 1565
  4557. Me.Label68.Text = "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) &
  4558. "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l"
  4559. '
  4560. 'Label67
  4561. '
  4562. Me.Label67.AutoSize = True
  4563. Me.Label67.Location = New System.Drawing.Point(1725, 40)
  4564. Me.Label67.Name = "Label67"
  4565. Me.Label67.Size = New System.Drawing.Size(11, 960)
  4566. Me.Label67.TabIndex = 1564
  4567. Me.Label67.Text = "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) &
  4568. "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l"
  4569. '
  4570. 'Label66
  4571. '
  4572. Me.Label66.AutoSize = True
  4573. Me.Label66.Location = New System.Drawing.Point(1640, 40)
  4574. Me.Label66.Name = "Label66"
  4575. Me.Label66.Size = New System.Drawing.Size(11, 960)
  4576. Me.Label66.TabIndex = 1563
  4577. Me.Label66.Text = "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) &
  4578. "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l"
  4579. '
  4580. 'Label65
  4581. '
  4582. Me.Label65.AutoSize = True
  4583. Me.Label65.Location = New System.Drawing.Point(1555, 40)
  4584. Me.Label65.Name = "Label65"
  4585. Me.Label65.Size = New System.Drawing.Size(11, 960)
  4586. Me.Label65.TabIndex = 1562
  4587. Me.Label65.Text = "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) &
  4588. "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l"
  4589. '
  4590. 'Label64
  4591. '
  4592. Me.Label64.AutoSize = True
  4593. Me.Label64.Location = New System.Drawing.Point(1470, 40)
  4594. Me.Label64.Name = "Label64"
  4595. Me.Label64.Size = New System.Drawing.Size(11, 960)
  4596. Me.Label64.TabIndex = 1561
  4597. Me.Label64.Text = "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) &
  4598. "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l"
  4599. '
  4600. 'Label63
  4601. '
  4602. Me.Label63.AutoSize = True
  4603. Me.Label63.Location = New System.Drawing.Point(1385, 40)
  4604. Me.Label63.Name = "Label63"
  4605. Me.Label63.Size = New System.Drawing.Size(11, 960)
  4606. Me.Label63.TabIndex = 1560
  4607. Me.Label63.Text = "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) &
  4608. "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l"
  4609. '
  4610. 'Label62
  4611. '
  4612. Me.Label62.AutoSize = True
  4613. Me.Label62.Location = New System.Drawing.Point(1300, 40)
  4614. Me.Label62.Name = "Label62"
  4615. Me.Label62.Size = New System.Drawing.Size(11, 960)
  4616. Me.Label62.TabIndex = 1559
  4617. Me.Label62.Text = "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) &
  4618. "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l"
  4619. '
  4620. 'Label61
  4621. '
  4622. Me.Label61.AutoSize = True
  4623. Me.Label61.Location = New System.Drawing.Point(1215, 40)
  4624. Me.Label61.Name = "Label61"
  4625. Me.Label61.Size = New System.Drawing.Size(11, 960)
  4626. Me.Label61.TabIndex = 1558
  4627. Me.Label61.Text = "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) &
  4628. "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l"
  4629. '
  4630. 'Label60
  4631. '
  4632. Me.Label60.AutoSize = True
  4633. Me.Label60.Location = New System.Drawing.Point(1130, 40)
  4634. Me.Label60.Name = "Label60"
  4635. Me.Label60.Size = New System.Drawing.Size(11, 960)
  4636. Me.Label60.TabIndex = 1557
  4637. Me.Label60.Text = "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) &
  4638. "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l"
  4639. '
  4640. 'Label59
  4641. '
  4642. Me.Label59.AutoSize = True
  4643. Me.Label59.Location = New System.Drawing.Point(1045, 40)
  4644. Me.Label59.Name = "Label59"
  4645. Me.Label59.Size = New System.Drawing.Size(11, 960)
  4646. Me.Label59.TabIndex = 1556
  4647. Me.Label59.Text = "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) &
  4648. "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l"
  4649. '
  4650. 'Label58
  4651. '
  4652. Me.Label58.AutoSize = True
  4653. Me.Label58.Location = New System.Drawing.Point(960, 40)
  4654. Me.Label58.Name = "Label58"
  4655. Me.Label58.Size = New System.Drawing.Size(11, 960)
  4656. Me.Label58.TabIndex = 1555
  4657. Me.Label58.Text = "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) &
  4658. "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l"
  4659. '
  4660. 'Label57
  4661. '
  4662. Me.Label57.AutoSize = True
  4663. Me.Label57.Location = New System.Drawing.Point(875, 40)
  4664. Me.Label57.Name = "Label57"
  4665. Me.Label57.Size = New System.Drawing.Size(11, 960)
  4666. Me.Label57.TabIndex = 1554
  4667. Me.Label57.Text = "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) &
  4668. "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l"
  4669. '
  4670. 'Label56
  4671. '
  4672. Me.Label56.AutoSize = True
  4673. Me.Label56.Location = New System.Drawing.Point(790, 40)
  4674. Me.Label56.Name = "Label56"
  4675. Me.Label56.Size = New System.Drawing.Size(11, 960)
  4676. Me.Label56.TabIndex = 1553
  4677. Me.Label56.Text = "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) &
  4678. "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l"
  4679. '
  4680. 'Label55
  4681. '
  4682. Me.Label55.AutoSize = True
  4683. Me.Label55.Location = New System.Drawing.Point(705, 40)
  4684. Me.Label55.Name = "Label55"
  4685. Me.Label55.Size = New System.Drawing.Size(11, 960)
  4686. Me.Label55.TabIndex = 1552
  4687. Me.Label55.Text = "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) &
  4688. "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l"
  4689. '
  4690. 'Label54
  4691. '
  4692. Me.Label54.AutoSize = True
  4693. Me.Label54.Location = New System.Drawing.Point(620, 40)
  4694. Me.Label54.Name = "Label54"
  4695. Me.Label54.Size = New System.Drawing.Size(11, 960)
  4696. Me.Label54.TabIndex = 1551
  4697. Me.Label54.Text = "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) &
  4698. "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l"
  4699. '
  4700. 'Label53
  4701. '
  4702. Me.Label53.AutoSize = True
  4703. Me.Label53.Location = New System.Drawing.Point(535, 40)
  4704. Me.Label53.Name = "Label53"
  4705. Me.Label53.Size = New System.Drawing.Size(11, 960)
  4706. Me.Label53.TabIndex = 1550
  4707. Me.Label53.Text = "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) &
  4708. "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l"
  4709. '
  4710. 'Label52
  4711. '
  4712. Me.Label52.AutoSize = True
  4713. Me.Label52.Location = New System.Drawing.Point(448, 40)
  4714. Me.Label52.Name = "Label52"
  4715. Me.Label52.Size = New System.Drawing.Size(11, 960)
  4716. Me.Label52.TabIndex = 1548
  4717. Me.Label52.Text = "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) &
  4718. "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l"
  4719. '
  4720. 'Label50
  4721. '
  4722. Me.Label50.AutoSize = True
  4723. Me.Label50.Font = New System.Drawing.Font("微軟正黑體", 12.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  4724. Me.Label50.ForeColor = System.Drawing.Color.Blue
  4725. Me.Label50.Location = New System.Drawing.Point(1767, 21)
  4726. Me.Label50.Name = "Label50"
  4727. Me.Label50.Size = New System.Drawing.Size(27, 20)
  4728. Me.Label50.TabIndex = 1546
  4729. Me.Label50.Text = "30"
  4730. '
  4731. 'Label49
  4732. '
  4733. Me.Label49.AutoSize = True
  4734. Me.Label49.Font = New System.Drawing.Font("微軟正黑體", 12.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  4735. Me.Label49.ForeColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
  4736. Me.Label49.Location = New System.Drawing.Point(1682, 21)
  4737. Me.Label49.Name = "Label49"
  4738. Me.Label49.Size = New System.Drawing.Size(27, 20)
  4739. Me.Label49.TabIndex = 1545
  4740. Me.Label49.Text = "30"
  4741. '
  4742. 'Label48
  4743. '
  4744. Me.Label48.AutoSize = True
  4745. Me.Label48.Font = New System.Drawing.Font("微軟正黑體", 12.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  4746. Me.Label48.ForeColor = System.Drawing.Color.Blue
  4747. Me.Label48.Location = New System.Drawing.Point(1597, 21)
  4748. Me.Label48.Name = "Label48"
  4749. Me.Label48.Size = New System.Drawing.Size(27, 20)
  4750. Me.Label48.TabIndex = 1544
  4751. Me.Label48.Text = "30"
  4752. '
  4753. 'Label47
  4754. '
  4755. Me.Label47.AutoSize = True
  4756. Me.Label47.Font = New System.Drawing.Font("微軟正黑體", 12.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  4757. Me.Label47.ForeColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
  4758. Me.Label47.Location = New System.Drawing.Point(1512, 21)
  4759. Me.Label47.Name = "Label47"
  4760. Me.Label47.Size = New System.Drawing.Size(27, 20)
  4761. Me.Label47.TabIndex = 1543
  4762. Me.Label47.Text = "30"
  4763. '
  4764. 'Label46
  4765. '
  4766. Me.Label46.AutoSize = True
  4767. Me.Label46.Font = New System.Drawing.Font("微軟正黑體", 12.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  4768. Me.Label46.ForeColor = System.Drawing.Color.Blue
  4769. Me.Label46.Location = New System.Drawing.Point(1427, 21)
  4770. Me.Label46.Name = "Label46"
  4771. Me.Label46.Size = New System.Drawing.Size(27, 20)
  4772. Me.Label46.TabIndex = 1542
  4773. Me.Label46.Text = "30"
  4774. '
  4775. 'Label45
  4776. '
  4777. Me.Label45.AutoSize = True
  4778. Me.Label45.Font = New System.Drawing.Font("微軟正黑體", 12.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  4779. Me.Label45.ForeColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
  4780. Me.Label45.Location = New System.Drawing.Point(1342, 21)
  4781. Me.Label45.Name = "Label45"
  4782. Me.Label45.Size = New System.Drawing.Size(27, 20)
  4783. Me.Label45.TabIndex = 1541
  4784. Me.Label45.Text = "30"
  4785. '
  4786. 'Label44
  4787. '
  4788. Me.Label44.AutoSize = True
  4789. Me.Label44.Font = New System.Drawing.Font("微軟正黑體", 12.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  4790. Me.Label44.ForeColor = System.Drawing.Color.Blue
  4791. Me.Label44.Location = New System.Drawing.Point(1257, 21)
  4792. Me.Label44.Name = "Label44"
  4793. Me.Label44.Size = New System.Drawing.Size(27, 20)
  4794. Me.Label44.TabIndex = 1540
  4795. Me.Label44.Text = "30"
  4796. '
  4797. 'Label43
  4798. '
  4799. Me.Label43.AutoSize = True
  4800. Me.Label43.Font = New System.Drawing.Font("微軟正黑體", 12.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  4801. Me.Label43.ForeColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
  4802. Me.Label43.Location = New System.Drawing.Point(1172, 21)
  4803. Me.Label43.Name = "Label43"
  4804. Me.Label43.Size = New System.Drawing.Size(27, 20)
  4805. Me.Label43.TabIndex = 1539
  4806. Me.Label43.Text = "30"
  4807. '
  4808. 'Label42
  4809. '
  4810. Me.Label42.AutoSize = True
  4811. Me.Label42.Font = New System.Drawing.Font("微軟正黑體", 12.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  4812. Me.Label42.ForeColor = System.Drawing.Color.Blue
  4813. Me.Label42.Location = New System.Drawing.Point(1087, 21)
  4814. Me.Label42.Name = "Label42"
  4815. Me.Label42.Size = New System.Drawing.Size(27, 20)
  4816. Me.Label42.TabIndex = 1538
  4817. Me.Label42.Text = "30"
  4818. '
  4819. 'Label41
  4820. '
  4821. Me.Label41.AutoSize = True
  4822. Me.Label41.Font = New System.Drawing.Font("微軟正黑體", 12.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  4823. Me.Label41.ForeColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
  4824. Me.Label41.Location = New System.Drawing.Point(1002, 21)
  4825. Me.Label41.Name = "Label41"
  4826. Me.Label41.Size = New System.Drawing.Size(27, 20)
  4827. Me.Label41.TabIndex = 1537
  4828. Me.Label41.Text = "30"
  4829. '
  4830. 'Label40
  4831. '
  4832. Me.Label40.AutoSize = True
  4833. Me.Label40.Font = New System.Drawing.Font("微軟正黑體", 12.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  4834. Me.Label40.ForeColor = System.Drawing.Color.Blue
  4835. Me.Label40.Location = New System.Drawing.Point(917, 21)
  4836. Me.Label40.Name = "Label40"
  4837. Me.Label40.Size = New System.Drawing.Size(27, 20)
  4838. Me.Label40.TabIndex = 1536
  4839. Me.Label40.Text = "30"
  4840. '
  4841. 'Label39
  4842. '
  4843. Me.Label39.AutoSize = True
  4844. Me.Label39.Font = New System.Drawing.Font("微軟正黑體", 12.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  4845. Me.Label39.ForeColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
  4846. Me.Label39.Location = New System.Drawing.Point(832, 21)
  4847. Me.Label39.Name = "Label39"
  4848. Me.Label39.Size = New System.Drawing.Size(27, 20)
  4849. Me.Label39.TabIndex = 1535
  4850. Me.Label39.Text = "30"
  4851. '
  4852. 'Label38
  4853. '
  4854. Me.Label38.AutoSize = True
  4855. Me.Label38.Font = New System.Drawing.Font("微軟正黑體", 12.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  4856. Me.Label38.ForeColor = System.Drawing.Color.Blue
  4857. Me.Label38.Location = New System.Drawing.Point(747, 21)
  4858. Me.Label38.Name = "Label38"
  4859. Me.Label38.Size = New System.Drawing.Size(27, 20)
  4860. Me.Label38.TabIndex = 1534
  4861. Me.Label38.Text = "30"
  4862. '
  4863. 'Label37
  4864. '
  4865. Me.Label37.AutoSize = True
  4866. Me.Label37.Font = New System.Drawing.Font("微軟正黑體", 12.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  4867. Me.Label37.ForeColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
  4868. Me.Label37.Location = New System.Drawing.Point(662, 21)
  4869. Me.Label37.Name = "Label37"
  4870. Me.Label37.Size = New System.Drawing.Size(27, 20)
  4871. Me.Label37.TabIndex = 1533
  4872. Me.Label37.Text = "30"
  4873. '
  4874. 'Label36
  4875. '
  4876. Me.Label36.AutoSize = True
  4877. Me.Label36.Font = New System.Drawing.Font("微軟正黑體", 12.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  4878. Me.Label36.ForeColor = System.Drawing.Color.Blue
  4879. Me.Label36.Location = New System.Drawing.Point(577, 21)
  4880. Me.Label36.Name = "Label36"
  4881. Me.Label36.Size = New System.Drawing.Size(27, 20)
  4882. Me.Label36.TabIndex = 1532
  4883. Me.Label36.Text = "30"
  4884. '
  4885. 'Label35
  4886. '
  4887. Me.Label35.AutoSize = True
  4888. Me.Label35.Font = New System.Drawing.Font("微軟正黑體", 12.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  4889. Me.Label35.ForeColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
  4890. Me.Label35.Location = New System.Drawing.Point(492, 21)
  4891. Me.Label35.Name = "Label35"
  4892. Me.Label35.Size = New System.Drawing.Size(27, 20)
  4893. Me.Label35.TabIndex = 1531
  4894. Me.Label35.Text = "30"
  4895. '
  4896. 'Label34
  4897. '
  4898. Me.Label34.AutoSize = True
  4899. Me.Label34.Font = New System.Drawing.Font("微軟正黑體", 12.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  4900. Me.Label34.Location = New System.Drawing.Point(1809, 21)
  4901. Me.Label34.Name = "Label34"
  4902. Me.Label34.Size = New System.Drawing.Size(27, 20)
  4903. Me.Label34.TabIndex = 1530
  4904. Me.Label34.Text = "00"
  4905. '
  4906. 'Label33
  4907. '
  4908. Me.Label33.AutoSize = True
  4909. Me.Label33.Font = New System.Drawing.Font("微軟正黑體", 12.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  4910. Me.Label33.ForeColor = System.Drawing.Color.Blue
  4911. Me.Label33.Location = New System.Drawing.Point(1724, 21)
  4912. Me.Label33.Name = "Label33"
  4913. Me.Label33.Size = New System.Drawing.Size(27, 20)
  4914. Me.Label33.TabIndex = 1529
  4915. Me.Label33.Text = "00"
  4916. '
  4917. 'Label32
  4918. '
  4919. Me.Label32.AutoSize = True
  4920. Me.Label32.Font = New System.Drawing.Font("微軟正黑體", 12.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  4921. Me.Label32.ForeColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
  4922. Me.Label32.Location = New System.Drawing.Point(1639, 21)
  4923. Me.Label32.Name = "Label32"
  4924. Me.Label32.Size = New System.Drawing.Size(27, 20)
  4925. Me.Label32.TabIndex = 1528
  4926. Me.Label32.Text = "00"
  4927. '
  4928. 'Label31
  4929. '
  4930. Me.Label31.AutoSize = True
  4931. Me.Label31.Font = New System.Drawing.Font("微軟正黑體", 12.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  4932. Me.Label31.ForeColor = System.Drawing.Color.Blue
  4933. Me.Label31.Location = New System.Drawing.Point(1554, 21)
  4934. Me.Label31.Name = "Label31"
  4935. Me.Label31.Size = New System.Drawing.Size(27, 20)
  4936. Me.Label31.TabIndex = 1527
  4937. Me.Label31.Text = "00"
  4938. '
  4939. 'Label30
  4940. '
  4941. Me.Label30.AutoSize = True
  4942. Me.Label30.Font = New System.Drawing.Font("微軟正黑體", 12.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  4943. Me.Label30.ForeColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
  4944. Me.Label30.Location = New System.Drawing.Point(1469, 21)
  4945. Me.Label30.Name = "Label30"
  4946. Me.Label30.Size = New System.Drawing.Size(27, 20)
  4947. Me.Label30.TabIndex = 1526
  4948. Me.Label30.Text = "00"
  4949. '
  4950. 'Label29
  4951. '
  4952. Me.Label29.AutoSize = True
  4953. Me.Label29.Font = New System.Drawing.Font("微軟正黑體", 12.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  4954. Me.Label29.ForeColor = System.Drawing.Color.Blue
  4955. Me.Label29.Location = New System.Drawing.Point(1384, 21)
  4956. Me.Label29.Name = "Label29"
  4957. Me.Label29.Size = New System.Drawing.Size(27, 20)
  4958. Me.Label29.TabIndex = 1525
  4959. Me.Label29.Text = "00"
  4960. '
  4961. 'Label28
  4962. '
  4963. Me.Label28.AutoSize = True
  4964. Me.Label28.Font = New System.Drawing.Font("微軟正黑體", 12.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  4965. Me.Label28.ForeColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
  4966. Me.Label28.Location = New System.Drawing.Point(1299, 21)
  4967. Me.Label28.Name = "Label28"
  4968. Me.Label28.Size = New System.Drawing.Size(27, 20)
  4969. Me.Label28.TabIndex = 1524
  4970. Me.Label28.Text = "00"
  4971. '
  4972. 'Label27
  4973. '
  4974. Me.Label27.AutoSize = True
  4975. Me.Label27.Font = New System.Drawing.Font("微軟正黑體", 12.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  4976. Me.Label27.ForeColor = System.Drawing.Color.Blue
  4977. Me.Label27.Location = New System.Drawing.Point(1214, 21)
  4978. Me.Label27.Name = "Label27"
  4979. Me.Label27.Size = New System.Drawing.Size(27, 20)
  4980. Me.Label27.TabIndex = 1523
  4981. Me.Label27.Text = "00"
  4982. '
  4983. 'Label26
  4984. '
  4985. Me.Label26.AutoSize = True
  4986. Me.Label26.Font = New System.Drawing.Font("微軟正黑體", 12.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  4987. Me.Label26.ForeColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
  4988. Me.Label26.Location = New System.Drawing.Point(1129, 21)
  4989. Me.Label26.Name = "Label26"
  4990. Me.Label26.Size = New System.Drawing.Size(27, 20)
  4991. Me.Label26.TabIndex = 1522
  4992. Me.Label26.Text = "00"
  4993. '
  4994. 'Label25
  4995. '
  4996. Me.Label25.AutoSize = True
  4997. Me.Label25.Font = New System.Drawing.Font("微軟正黑體", 12.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  4998. Me.Label25.ForeColor = System.Drawing.Color.Blue
  4999. Me.Label25.Location = New System.Drawing.Point(1044, 21)
  5000. Me.Label25.Name = "Label25"
  5001. Me.Label25.Size = New System.Drawing.Size(27, 20)
  5002. Me.Label25.TabIndex = 1521
  5003. Me.Label25.Text = "00"
  5004. '
  5005. 'Label24
  5006. '
  5007. Me.Label24.AutoSize = True
  5008. Me.Label24.Font = New System.Drawing.Font("微軟正黑體", 12.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  5009. Me.Label24.ForeColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
  5010. Me.Label24.Location = New System.Drawing.Point(959, 21)
  5011. Me.Label24.Name = "Label24"
  5012. Me.Label24.Size = New System.Drawing.Size(27, 20)
  5013. Me.Label24.TabIndex = 1520
  5014. Me.Label24.Text = "00"
  5015. '
  5016. 'Label23
  5017. '
  5018. Me.Label23.AutoSize = True
  5019. Me.Label23.Font = New System.Drawing.Font("微軟正黑體", 12.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  5020. Me.Label23.ForeColor = System.Drawing.Color.Blue
  5021. Me.Label23.Location = New System.Drawing.Point(874, 21)
  5022. Me.Label23.Name = "Label23"
  5023. Me.Label23.Size = New System.Drawing.Size(27, 20)
  5024. Me.Label23.TabIndex = 1519
  5025. Me.Label23.Text = "00"
  5026. '
  5027. 'Label22
  5028. '
  5029. Me.Label22.AutoSize = True
  5030. Me.Label22.Font = New System.Drawing.Font("微軟正黑體", 12.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  5031. Me.Label22.ForeColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
  5032. Me.Label22.Location = New System.Drawing.Point(789, 21)
  5033. Me.Label22.Name = "Label22"
  5034. Me.Label22.Size = New System.Drawing.Size(27, 20)
  5035. Me.Label22.TabIndex = 1518
  5036. Me.Label22.Text = "00"
  5037. '
  5038. 'Label21
  5039. '
  5040. Me.Label21.AutoSize = True
  5041. Me.Label21.Font = New System.Drawing.Font("微軟正黑體", 12.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  5042. Me.Label21.ForeColor = System.Drawing.Color.Blue
  5043. Me.Label21.Location = New System.Drawing.Point(704, 21)
  5044. Me.Label21.Name = "Label21"
  5045. Me.Label21.Size = New System.Drawing.Size(27, 20)
  5046. Me.Label21.TabIndex = 1517
  5047. Me.Label21.Text = "00"
  5048. '
  5049. 'Label20
  5050. '
  5051. Me.Label20.AutoSize = True
  5052. Me.Label20.Font = New System.Drawing.Font("微軟正黑體", 12.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  5053. Me.Label20.ForeColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
  5054. Me.Label20.Location = New System.Drawing.Point(619, 21)
  5055. Me.Label20.Name = "Label20"
  5056. Me.Label20.Size = New System.Drawing.Size(27, 20)
  5057. Me.Label20.TabIndex = 1516
  5058. Me.Label20.Text = "00"
  5059. '
  5060. 'Label19
  5061. '
  5062. Me.Label19.AutoSize = True
  5063. Me.Label19.Font = New System.Drawing.Font("微軟正黑體", 12.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  5064. Me.Label19.ForeColor = System.Drawing.Color.Blue
  5065. Me.Label19.Location = New System.Drawing.Point(534, 21)
  5066. Me.Label19.Name = "Label19"
  5067. Me.Label19.Size = New System.Drawing.Size(27, 20)
  5068. Me.Label19.TabIndex = 1515
  5069. Me.Label19.Text = "00"
  5070. '
  5071. 'Label18
  5072. '
  5073. Me.Label18.AutoSize = True
  5074. Me.Label18.Font = New System.Drawing.Font("微軟正黑體", 12.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  5075. Me.Label18.ForeColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
  5076. Me.Label18.Location = New System.Drawing.Point(450, 21)
  5077. Me.Label18.Name = "Label18"
  5078. Me.Label18.Size = New System.Drawing.Size(27, 20)
  5079. Me.Label18.TabIndex = 1514
  5080. Me.Label18.Text = "00"
  5081. '
  5082. 'Label17
  5083. '
  5084. Me.Label17.AutoSize = True
  5085. Me.Label17.Font = New System.Drawing.Font("微軟正黑體", 12.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  5086. Me.Label17.Location = New System.Drawing.Point(1809, 5)
  5087. Me.Label17.Name = "Label17"
  5088. Me.Label17.Size = New System.Drawing.Size(27, 20)
  5089. Me.Label17.TabIndex = 1513
  5090. Me.Label17.Text = "24"
  5091. '
  5092. 'Label16
  5093. '
  5094. Me.Label16.AutoSize = True
  5095. Me.Label16.Font = New System.Drawing.Font("微軟正黑體", 12.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  5096. Me.Label16.ForeColor = System.Drawing.Color.Blue
  5097. Me.Label16.Location = New System.Drawing.Point(1724, 5)
  5098. Me.Label16.Name = "Label16"
  5099. Me.Label16.Size = New System.Drawing.Size(27, 20)
  5100. Me.Label16.TabIndex = 1512
  5101. Me.Label16.Text = "23"
  5102. '
  5103. 'Label15
  5104. '
  5105. Me.Label15.AutoSize = True
  5106. Me.Label15.Font = New System.Drawing.Font("微軟正黑體", 12.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  5107. Me.Label15.ForeColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
  5108. Me.Label15.Location = New System.Drawing.Point(1639, 5)
  5109. Me.Label15.Name = "Label15"
  5110. Me.Label15.Size = New System.Drawing.Size(27, 20)
  5111. Me.Label15.TabIndex = 1511
  5112. Me.Label15.Text = "22"
  5113. '
  5114. 'Label14
  5115. '
  5116. Me.Label14.AutoSize = True
  5117. Me.Label14.Font = New System.Drawing.Font("微軟正黑體", 12.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  5118. Me.Label14.ForeColor = System.Drawing.Color.Blue
  5119. Me.Label14.Location = New System.Drawing.Point(1554, 5)
  5120. Me.Label14.Name = "Label14"
  5121. Me.Label14.Size = New System.Drawing.Size(27, 20)
  5122. Me.Label14.TabIndex = 1510
  5123. Me.Label14.Text = "21"
  5124. '
  5125. 'Label13
  5126. '
  5127. Me.Label13.AutoSize = True
  5128. Me.Label13.Font = New System.Drawing.Font("微軟正黑體", 12.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  5129. Me.Label13.ForeColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
  5130. Me.Label13.Location = New System.Drawing.Point(1469, 5)
  5131. Me.Label13.Name = "Label13"
  5132. Me.Label13.Size = New System.Drawing.Size(27, 20)
  5133. Me.Label13.TabIndex = 1509
  5134. Me.Label13.Text = "20"
  5135. '
  5136. 'Label12
  5137. '
  5138. Me.Label12.AutoSize = True
  5139. Me.Label12.Font = New System.Drawing.Font("微軟正黑體", 12.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  5140. Me.Label12.ForeColor = System.Drawing.Color.Blue
  5141. Me.Label12.Location = New System.Drawing.Point(1384, 5)
  5142. Me.Label12.Name = "Label12"
  5143. Me.Label12.Size = New System.Drawing.Size(27, 20)
  5144. Me.Label12.TabIndex = 1508
  5145. Me.Label12.Text = "19"
  5146. '
  5147. 'Label11
  5148. '
  5149. Me.Label11.AutoSize = True
  5150. Me.Label11.Font = New System.Drawing.Font("微軟正黑體", 12.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  5151. Me.Label11.ForeColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
  5152. Me.Label11.Location = New System.Drawing.Point(1299, 5)
  5153. Me.Label11.Name = "Label11"
  5154. Me.Label11.Size = New System.Drawing.Size(27, 20)
  5155. Me.Label11.TabIndex = 1507
  5156. Me.Label11.Text = "18"
  5157. '
  5158. 'Label10
  5159. '
  5160. Me.Label10.AutoSize = True
  5161. Me.Label10.Font = New System.Drawing.Font("微軟正黑體", 12.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  5162. Me.Label10.ForeColor = System.Drawing.Color.Blue
  5163. Me.Label10.Location = New System.Drawing.Point(1214, 5)
  5164. Me.Label10.Name = "Label10"
  5165. Me.Label10.Size = New System.Drawing.Size(27, 20)
  5166. Me.Label10.TabIndex = 1506
  5167. Me.Label10.Text = "17"
  5168. '
  5169. 'Label9
  5170. '
  5171. Me.Label9.AutoSize = True
  5172. Me.Label9.Font = New System.Drawing.Font("微軟正黑體", 12.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  5173. Me.Label9.ForeColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
  5174. Me.Label9.Location = New System.Drawing.Point(1129, 5)
  5175. Me.Label9.Name = "Label9"
  5176. Me.Label9.Size = New System.Drawing.Size(27, 20)
  5177. Me.Label9.TabIndex = 1505
  5178. Me.Label9.Text = "16"
  5179. '
  5180. 'Label8
  5181. '
  5182. Me.Label8.AutoSize = True
  5183. Me.Label8.Font = New System.Drawing.Font("微軟正黑體", 12.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  5184. Me.Label8.ForeColor = System.Drawing.Color.Blue
  5185. Me.Label8.Location = New System.Drawing.Point(1044, 5)
  5186. Me.Label8.Name = "Label8"
  5187. Me.Label8.Size = New System.Drawing.Size(27, 20)
  5188. Me.Label8.TabIndex = 1504
  5189. Me.Label8.Text = "15"
  5190. '
  5191. 'Label7
  5192. '
  5193. Me.Label7.AutoSize = True
  5194. Me.Label7.Font = New System.Drawing.Font("微軟正黑體", 12.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  5195. Me.Label7.ForeColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
  5196. Me.Label7.Location = New System.Drawing.Point(959, 5)
  5197. Me.Label7.Name = "Label7"
  5198. Me.Label7.Size = New System.Drawing.Size(27, 20)
  5199. Me.Label7.TabIndex = 1503
  5200. Me.Label7.Text = "14"
  5201. '
  5202. 'Label6
  5203. '
  5204. Me.Label6.AutoSize = True
  5205. Me.Label6.Font = New System.Drawing.Font("微軟正黑體", 12.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  5206. Me.Label6.ForeColor = System.Drawing.Color.Blue
  5207. Me.Label6.Location = New System.Drawing.Point(874, 5)
  5208. Me.Label6.Name = "Label6"
  5209. Me.Label6.Size = New System.Drawing.Size(27, 20)
  5210. Me.Label6.TabIndex = 1502
  5211. Me.Label6.Text = "13"
  5212. '
  5213. 'Label5
  5214. '
  5215. Me.Label5.AutoSize = True
  5216. Me.Label5.Font = New System.Drawing.Font("微軟正黑體", 12.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  5217. Me.Label5.ForeColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
  5218. Me.Label5.Location = New System.Drawing.Point(789, 5)
  5219. Me.Label5.Name = "Label5"
  5220. Me.Label5.Size = New System.Drawing.Size(27, 20)
  5221. Me.Label5.TabIndex = 1501
  5222. Me.Label5.Text = "12"
  5223. '
  5224. 'Label4
  5225. '
  5226. Me.Label4.AutoSize = True
  5227. Me.Label4.Font = New System.Drawing.Font("微軟正黑體", 12.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  5228. Me.Label4.ForeColor = System.Drawing.Color.Blue
  5229. Me.Label4.Location = New System.Drawing.Point(704, 5)
  5230. Me.Label4.Name = "Label4"
  5231. Me.Label4.Size = New System.Drawing.Size(27, 20)
  5232. Me.Label4.TabIndex = 1500
  5233. Me.Label4.Text = "11"
  5234. '
  5235. 'Label3
  5236. '
  5237. Me.Label3.AutoSize = True
  5238. Me.Label3.Font = New System.Drawing.Font("微軟正黑體", 12.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  5239. Me.Label3.ForeColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
  5240. Me.Label3.Location = New System.Drawing.Point(619, 5)
  5241. Me.Label3.Name = "Label3"
  5242. Me.Label3.Size = New System.Drawing.Size(27, 20)
  5243. Me.Label3.TabIndex = 1499
  5244. Me.Label3.Text = "10"
  5245. '
  5246. 'Label2
  5247. '
  5248. Me.Label2.AutoSize = True
  5249. Me.Label2.Font = New System.Drawing.Font("微軟正黑體", 12.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  5250. Me.Label2.ForeColor = System.Drawing.Color.Blue
  5251. Me.Label2.Location = New System.Drawing.Point(534, 5)
  5252. Me.Label2.Name = "Label2"
  5253. Me.Label2.Size = New System.Drawing.Size(27, 20)
  5254. Me.Label2.TabIndex = 1498
  5255. Me.Label2.Text = "09"
  5256. '
  5257. 'Label1
  5258. '
  5259. Me.Label1.AutoSize = True
  5260. Me.Label1.Font = New System.Drawing.Font("微軟正黑體", 12.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  5261. Me.Label1.ForeColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
  5262. Me.Label1.Location = New System.Drawing.Point(449, 5)
  5263. Me.Label1.Name = "Label1"
  5264. Me.Label1.Size = New System.Drawing.Size(27, 20)
  5265. Me.Label1.TabIndex = 1497
  5266. Me.Label1.Text = "08"
  5267. '
  5268. 'Label51
  5269. '
  5270. Me.Label51.AutoSize = True
  5271. Me.Label51.Location = New System.Drawing.Point(450, 28)
  5272. Me.Label51.Name = "Label51"
  5273. Me.Label51.Size = New System.Drawing.Size(1388, 16)
  5274. Me.Label51.TabIndex = 1547
  5275. Me.Label51.Text = resources.GetString("Label51.Text")
  5276. '
  5277. 'Label70
  5278. '
  5279. Me.Label70.AutoSize = True
  5280. Me.Label70.Location = New System.Drawing.Point(454, 57)
  5281. Me.Label70.Name = "Label70"
  5282. Me.Label70.Size = New System.Drawing.Size(1388, 16)
  5283. Me.Label70.TabIndex = 1626
  5284. Me.Label70.Text = resources.GetString("Label70.Text")
  5285. '
  5286. 'Label71
  5287. '
  5288. Me.Label71.AutoSize = True
  5289. Me.Label71.Location = New System.Drawing.Point(454, 88)
  5290. Me.Label71.Name = "Label71"
  5291. Me.Label71.Size = New System.Drawing.Size(1388, 16)
  5292. Me.Label71.TabIndex = 1627
  5293. Me.Label71.Text = resources.GetString("Label71.Text")
  5294. '
  5295. 'Label72
  5296. '
  5297. Me.Label72.AutoSize = True
  5298. Me.Label72.Location = New System.Drawing.Point(454, 119)
  5299. Me.Label72.Name = "Label72"
  5300. Me.Label72.Size = New System.Drawing.Size(1388, 16)
  5301. Me.Label72.TabIndex = 1628
  5302. Me.Label72.Text = resources.GetString("Label72.Text")
  5303. '
  5304. 'Label73
  5305. '
  5306. Me.Label73.AutoSize = True
  5307. Me.Label73.Location = New System.Drawing.Point(454, 150)
  5308. Me.Label73.Name = "Label73"
  5309. Me.Label73.Size = New System.Drawing.Size(1388, 16)
  5310. Me.Label73.TabIndex = 1629
  5311. Me.Label73.Text = resources.GetString("Label73.Text")
  5312. '
  5313. 'Label74
  5314. '
  5315. Me.Label74.AutoSize = True
  5316. Me.Label74.Location = New System.Drawing.Point(454, 181)
  5317. Me.Label74.Name = "Label74"
  5318. Me.Label74.Size = New System.Drawing.Size(1388, 16)
  5319. Me.Label74.TabIndex = 1630
  5320. Me.Label74.Text = resources.GetString("Label74.Text")
  5321. '
  5322. 'Label75
  5323. '
  5324. Me.Label75.AutoSize = True
  5325. Me.Label75.Location = New System.Drawing.Point(454, 212)
  5326. Me.Label75.Name = "Label75"
  5327. Me.Label75.Size = New System.Drawing.Size(1388, 16)
  5328. Me.Label75.TabIndex = 1631
  5329. Me.Label75.Text = resources.GetString("Label75.Text")
  5330. '
  5331. 'Label76
  5332. '
  5333. Me.Label76.AutoSize = True
  5334. Me.Label76.Location = New System.Drawing.Point(454, 243)
  5335. Me.Label76.Name = "Label76"
  5336. Me.Label76.Size = New System.Drawing.Size(1388, 16)
  5337. Me.Label76.TabIndex = 1632
  5338. Me.Label76.Text = resources.GetString("Label76.Text")
  5339. '
  5340. 'Label77
  5341. '
  5342. Me.Label77.AutoSize = True
  5343. Me.Label77.Location = New System.Drawing.Point(454, 274)
  5344. Me.Label77.Name = "Label77"
  5345. Me.Label77.Size = New System.Drawing.Size(1388, 16)
  5346. Me.Label77.TabIndex = 1633
  5347. Me.Label77.Text = resources.GetString("Label77.Text")
  5348. '
  5349. 'Label78
  5350. '
  5351. Me.Label78.AutoSize = True
  5352. Me.Label78.Location = New System.Drawing.Point(454, 305)
  5353. Me.Label78.Name = "Label78"
  5354. Me.Label78.Size = New System.Drawing.Size(1388, 16)
  5355. Me.Label78.TabIndex = 1634
  5356. Me.Label78.Text = resources.GetString("Label78.Text")
  5357. '
  5358. 'Label79
  5359. '
  5360. Me.Label79.AutoSize = True
  5361. Me.Label79.Location = New System.Drawing.Point(454, 336)
  5362. Me.Label79.Name = "Label79"
  5363. Me.Label79.Size = New System.Drawing.Size(1388, 16)
  5364. Me.Label79.TabIndex = 1635
  5365. Me.Label79.Text = resources.GetString("Label79.Text")
  5366. '
  5367. 'Label80
  5368. '
  5369. Me.Label80.AutoSize = True
  5370. Me.Label80.Location = New System.Drawing.Point(454, 367)
  5371. Me.Label80.Name = "Label80"
  5372. Me.Label80.Size = New System.Drawing.Size(1388, 16)
  5373. Me.Label80.TabIndex = 1636
  5374. Me.Label80.Text = resources.GetString("Label80.Text")
  5375. '
  5376. 'Label81
  5377. '
  5378. Me.Label81.AutoSize = True
  5379. Me.Label81.Location = New System.Drawing.Point(454, 398)
  5380. Me.Label81.Name = "Label81"
  5381. Me.Label81.Size = New System.Drawing.Size(1388, 16)
  5382. Me.Label81.TabIndex = 1637
  5383. Me.Label81.Text = resources.GetString("Label81.Text")
  5384. '
  5385. 'Label82
  5386. '
  5387. Me.Label82.AutoSize = True
  5388. Me.Label82.Location = New System.Drawing.Point(454, 429)
  5389. Me.Label82.Name = "Label82"
  5390. Me.Label82.Size = New System.Drawing.Size(1388, 16)
  5391. Me.Label82.TabIndex = 1638
  5392. Me.Label82.Text = resources.GetString("Label82.Text")
  5393. '
  5394. 'Label83
  5395. '
  5396. Me.Label83.AutoSize = True
  5397. Me.Label83.Location = New System.Drawing.Point(454, 460)
  5398. Me.Label83.Name = "Label83"
  5399. Me.Label83.Size = New System.Drawing.Size(1388, 16)
  5400. Me.Label83.TabIndex = 1639
  5401. Me.Label83.Text = resources.GetString("Label83.Text")
  5402. '
  5403. 'Label84
  5404. '
  5405. Me.Label84.AutoSize = True
  5406. Me.Label84.Location = New System.Drawing.Point(454, 491)
  5407. Me.Label84.Name = "Label84"
  5408. Me.Label84.Size = New System.Drawing.Size(1388, 16)
  5409. Me.Label84.TabIndex = 1640
  5410. Me.Label84.Text = resources.GetString("Label84.Text")
  5411. '
  5412. 'Label85
  5413. '
  5414. Me.Label85.AutoSize = True
  5415. Me.Label85.Location = New System.Drawing.Point(454, 522)
  5416. Me.Label85.Name = "Label85"
  5417. Me.Label85.Size = New System.Drawing.Size(1388, 16)
  5418. Me.Label85.TabIndex = 1641
  5419. Me.Label85.Text = resources.GetString("Label85.Text")
  5420. '
  5421. 'Label86
  5422. '
  5423. Me.Label86.AutoSize = True
  5424. Me.Label86.Location = New System.Drawing.Point(454, 553)
  5425. Me.Label86.Name = "Label86"
  5426. Me.Label86.Size = New System.Drawing.Size(1388, 16)
  5427. Me.Label86.TabIndex = 1642
  5428. Me.Label86.Text = resources.GetString("Label86.Text")
  5429. '
  5430. 'Label87
  5431. '
  5432. Me.Label87.AutoSize = True
  5433. Me.Label87.Location = New System.Drawing.Point(454, 584)
  5434. Me.Label87.Name = "Label87"
  5435. Me.Label87.Size = New System.Drawing.Size(1388, 16)
  5436. Me.Label87.TabIndex = 1643
  5437. Me.Label87.Text = resources.GetString("Label87.Text")
  5438. '
  5439. 'Label88
  5440. '
  5441. Me.Label88.AutoSize = True
  5442. Me.Label88.Location = New System.Drawing.Point(454, 615)
  5443. Me.Label88.Name = "Label88"
  5444. Me.Label88.Size = New System.Drawing.Size(1388, 16)
  5445. Me.Label88.TabIndex = 1644
  5446. Me.Label88.Text = resources.GetString("Label88.Text")
  5447. '
  5448. 'A_lb9
  5449. '
  5450. Me.A_lb9.AutoSize = True
  5451. Me.A_lb9.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  5452. Me.A_lb9.Location = New System.Drawing.Point(9, 294)
  5453. Me.A_lb9.Name = "A_lb9"
  5454. Me.A_lb9.Size = New System.Drawing.Size(15, 16)
  5455. Me.A_lb9.TabIndex = 1673
  5456. Me.A_lb9.Text = "9"
  5457. '
  5458. 'A_lb8
  5459. '
  5460. Me.A_lb8.AutoSize = True
  5461. Me.A_lb8.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  5462. Me.A_lb8.Location = New System.Drawing.Point(9, 263)
  5463. Me.A_lb8.Name = "A_lb8"
  5464. Me.A_lb8.Size = New System.Drawing.Size(15, 16)
  5465. Me.A_lb8.TabIndex = 1672
  5466. Me.A_lb8.Text = "8"
  5467. '
  5468. 'A_lb7
  5469. '
  5470. Me.A_lb7.AutoSize = True
  5471. Me.A_lb7.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  5472. Me.A_lb7.Location = New System.Drawing.Point(9, 232)
  5473. Me.A_lb7.Name = "A_lb7"
  5474. Me.A_lb7.Size = New System.Drawing.Size(15, 16)
  5475. Me.A_lb7.TabIndex = 1671
  5476. Me.A_lb7.Text = "7"
  5477. '
  5478. 'A_lb6
  5479. '
  5480. Me.A_lb6.AutoSize = True
  5481. Me.A_lb6.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  5482. Me.A_lb6.Location = New System.Drawing.Point(9, 201)
  5483. Me.A_lb6.Name = "A_lb6"
  5484. Me.A_lb6.Size = New System.Drawing.Size(15, 16)
  5485. Me.A_lb6.TabIndex = 1670
  5486. Me.A_lb6.Text = "6"
  5487. '
  5488. 'A_lb5
  5489. '
  5490. Me.A_lb5.AutoSize = True
  5491. Me.A_lb5.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  5492. Me.A_lb5.Location = New System.Drawing.Point(9, 170)
  5493. Me.A_lb5.Name = "A_lb5"
  5494. Me.A_lb5.Size = New System.Drawing.Size(15, 16)
  5495. Me.A_lb5.TabIndex = 1669
  5496. Me.A_lb5.Text = "5"
  5497. '
  5498. 'A_lb4
  5499. '
  5500. Me.A_lb4.AutoSize = True
  5501. Me.A_lb4.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  5502. Me.A_lb4.Location = New System.Drawing.Point(9, 139)
  5503. Me.A_lb4.Name = "A_lb4"
  5504. Me.A_lb4.Size = New System.Drawing.Size(15, 16)
  5505. Me.A_lb4.TabIndex = 1668
  5506. Me.A_lb4.Text = "4"
  5507. '
  5508. 'A_lb3
  5509. '
  5510. Me.A_lb3.AutoSize = True
  5511. Me.A_lb3.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  5512. Me.A_lb3.Location = New System.Drawing.Point(9, 108)
  5513. Me.A_lb3.Name = "A_lb3"
  5514. Me.A_lb3.Size = New System.Drawing.Size(15, 16)
  5515. Me.A_lb3.TabIndex = 1667
  5516. Me.A_lb3.Text = "3"
  5517. '
  5518. 'A_lb2
  5519. '
  5520. Me.A_lb2.AutoSize = True
  5521. Me.A_lb2.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  5522. Me.A_lb2.Location = New System.Drawing.Point(9, 78)
  5523. Me.A_lb2.Name = "A_lb2"
  5524. Me.A_lb2.Size = New System.Drawing.Size(15, 16)
  5525. Me.A_lb2.TabIndex = 1666
  5526. Me.A_lb2.Text = "2"
  5527. '
  5528. 'A_lb1
  5529. '
  5530. Me.A_lb1.AutoSize = True
  5531. Me.A_lb1.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  5532. Me.A_lb1.Location = New System.Drawing.Point(9, 47)
  5533. Me.A_lb1.Name = "A_lb1"
  5534. Me.A_lb1.Size = New System.Drawing.Size(15, 16)
  5535. Me.A_lb1.TabIndex = 1665
  5536. Me.A_lb1.Text = "1"
  5537. '
  5538. 'NUP1
  5539. '
  5540. Me.NUP1.DecimalPlaces = 1
  5541. Me.NUP1.Increment = New Decimal(New Integer() {1, 0, 0, 65536})
  5542. Me.NUP1.Location = New System.Drawing.Point(299, 44)
  5543. Me.NUP1.Maximum = New Decimal(New Integer() {4, 0, 0, 0})
  5544. Me.NUP1.Minimum = New Decimal(New Integer() {5, 0, 0, 65536})
  5545. Me.NUP1.Name = "NUP1"
  5546. Me.NUP1.Size = New System.Drawing.Size(38, 23)
  5547. Me.NUP1.TabIndex = 1725
  5548. Me.NUP1.Value = New Decimal(New Integer() {2, 0, 0, 0})
  5549. '
  5550. 'Label89
  5551. '
  5552. Me.Label89.AutoSize = True
  5553. Me.Label89.Location = New System.Drawing.Point(454, 646)
  5554. Me.Label89.Name = "Label89"
  5555. Me.Label89.Size = New System.Drawing.Size(1388, 16)
  5556. Me.Label89.TabIndex = 1790
  5557. Me.Label89.Text = resources.GetString("Label89.Text")
  5558. '
  5559. 'Label91
  5560. '
  5561. Me.Label91.AutoSize = True
  5562. Me.Label91.Location = New System.Drawing.Point(451, 677)
  5563. Me.Label91.Name = "Label91"
  5564. Me.Label91.Size = New System.Drawing.Size(1388, 16)
  5565. Me.Label91.TabIndex = 1791
  5566. Me.Label91.Text = resources.GetString("Label91.Text")
  5567. '
  5568. 'Label94
  5569. '
  5570. Me.Label94.AutoSize = True
  5571. Me.Label94.Location = New System.Drawing.Point(452, 708)
  5572. Me.Label94.Name = "Label94"
  5573. Me.Label94.Size = New System.Drawing.Size(1388, 16)
  5574. Me.Label94.TabIndex = 1794
  5575. Me.Label94.Text = resources.GetString("Label94.Text")
  5576. '
  5577. 'Label95
  5578. '
  5579. Me.Label95.AutoSize = True
  5580. Me.Label95.Location = New System.Drawing.Point(452, 739)
  5581. Me.Label95.Name = "Label95"
  5582. Me.Label95.Size = New System.Drawing.Size(1388, 16)
  5583. Me.Label95.TabIndex = 1797
  5584. Me.Label95.Text = resources.GetString("Label95.Text")
  5585. '
  5586. 'Label96
  5587. '
  5588. Me.Label96.AutoSize = True
  5589. Me.Label96.Location = New System.Drawing.Point(452, 770)
  5590. Me.Label96.Name = "Label96"
  5591. Me.Label96.Size = New System.Drawing.Size(1388, 16)
  5592. Me.Label96.TabIndex = 1800
  5593. Me.Label96.Text = resources.GetString("Label96.Text")
  5594. '
  5595. 'Label97
  5596. '
  5597. Me.Label97.AutoSize = True
  5598. Me.Label97.Location = New System.Drawing.Point(454, 801)
  5599. Me.Label97.Name = "Label97"
  5600. Me.Label97.Size = New System.Drawing.Size(1388, 16)
  5601. Me.Label97.TabIndex = 1803
  5602. Me.Label97.Text = resources.GetString("Label97.Text")
  5603. '
  5604. 'Label98
  5605. '
  5606. Me.Label98.AutoSize = True
  5607. Me.Label98.Location = New System.Drawing.Point(454, 832)
  5608. Me.Label98.Name = "Label98"
  5609. Me.Label98.Size = New System.Drawing.Size(1388, 16)
  5610. Me.Label98.TabIndex = 1806
  5611. Me.Label98.Text = resources.GetString("Label98.Text")
  5612. '
  5613. 'Label99
  5614. '
  5615. Me.Label99.AutoSize = True
  5616. Me.Label99.Location = New System.Drawing.Point(454, 863)
  5617. Me.Label99.Name = "Label99"
  5618. Me.Label99.Size = New System.Drawing.Size(1388, 16)
  5619. Me.Label99.TabIndex = 1809
  5620. Me.Label99.Text = resources.GetString("Label99.Text")
  5621. '
  5622. 'Label100
  5623. '
  5624. Me.Label100.AutoSize = True
  5625. Me.Label100.Location = New System.Drawing.Point(454, 894)
  5626. Me.Label100.Name = "Label100"
  5627. Me.Label100.Size = New System.Drawing.Size(1388, 16)
  5628. Me.Label100.TabIndex = 1812
  5629. Me.Label100.Text = resources.GetString("Label100.Text")
  5630. '
  5631. 'Label101
  5632. '
  5633. Me.Label101.AutoSize = True
  5634. Me.Label101.Location = New System.Drawing.Point(454, 925)
  5635. Me.Label101.Name = "Label101"
  5636. Me.Label101.Size = New System.Drawing.Size(1388, 16)
  5637. Me.Label101.TabIndex = 1815
  5638. Me.Label101.Text = resources.GetString("Label101.Text")
  5639. '
  5640. 'Label102
  5641. '
  5642. Me.Label102.AutoSize = True
  5643. Me.Label102.Location = New System.Drawing.Point(454, 956)
  5644. Me.Label102.Name = "Label102"
  5645. Me.Label102.Size = New System.Drawing.Size(1388, 16)
  5646. Me.Label102.TabIndex = 1818
  5647. Me.Label102.Text = resources.GetString("Label102.Text")
  5648. '
  5649. 'CheckBox31
  5650. '
  5651. Me.CheckBox31.AutoSize = True
  5652. Me.CheckBox31.Location = New System.Drawing.Point(215, 977)
  5653. Me.CheckBox31.Name = "CheckBox31"
  5654. Me.CheckBox31.Size = New System.Drawing.Size(51, 20)
  5655. Me.CheckBox31.TabIndex = 1864
  5656. Me.CheckBox31.Text = "半天"
  5657. Me.CheckBox31.UseVisualStyleBackColor = True
  5658. '
  5659. 'CheckBox30
  5660. '
  5661. Me.CheckBox30.AutoSize = True
  5662. Me.CheckBox30.Location = New System.Drawing.Point(215, 946)
  5663. Me.CheckBox30.Name = "CheckBox30"
  5664. Me.CheckBox30.Size = New System.Drawing.Size(51, 20)
  5665. Me.CheckBox30.TabIndex = 1863
  5666. Me.CheckBox30.Text = "半天"
  5667. Me.CheckBox30.UseVisualStyleBackColor = True
  5668. '
  5669. 'CheckBox29
  5670. '
  5671. Me.CheckBox29.AutoSize = True
  5672. Me.CheckBox29.Location = New System.Drawing.Point(215, 915)
  5673. Me.CheckBox29.Name = "CheckBox29"
  5674. Me.CheckBox29.Size = New System.Drawing.Size(51, 20)
  5675. Me.CheckBox29.TabIndex = 1862
  5676. Me.CheckBox29.Text = "半天"
  5677. Me.CheckBox29.UseVisualStyleBackColor = True
  5678. '
  5679. 'CheckBox28
  5680. '
  5681. Me.CheckBox28.AutoSize = True
  5682. Me.CheckBox28.Location = New System.Drawing.Point(215, 884)
  5683. Me.CheckBox28.Name = "CheckBox28"
  5684. Me.CheckBox28.Size = New System.Drawing.Size(51, 20)
  5685. Me.CheckBox28.TabIndex = 1861
  5686. Me.CheckBox28.Text = "半天"
  5687. Me.CheckBox28.UseVisualStyleBackColor = True
  5688. '
  5689. 'CheckBox27
  5690. '
  5691. Me.CheckBox27.AutoSize = True
  5692. Me.CheckBox27.Location = New System.Drawing.Point(215, 853)
  5693. Me.CheckBox27.Name = "CheckBox27"
  5694. Me.CheckBox27.Size = New System.Drawing.Size(51, 20)
  5695. Me.CheckBox27.TabIndex = 1860
  5696. Me.CheckBox27.Text = "半天"
  5697. Me.CheckBox27.UseVisualStyleBackColor = True
  5698. '
  5699. 'CheckBox26
  5700. '
  5701. Me.CheckBox26.AutoSize = True
  5702. Me.CheckBox26.Location = New System.Drawing.Point(215, 823)
  5703. Me.CheckBox26.Name = "CheckBox26"
  5704. Me.CheckBox26.Size = New System.Drawing.Size(51, 20)
  5705. Me.CheckBox26.TabIndex = 1859
  5706. Me.CheckBox26.Text = "半天"
  5707. Me.CheckBox26.UseVisualStyleBackColor = True
  5708. '
  5709. 'CheckBox25
  5710. '
  5711. Me.CheckBox25.AutoSize = True
  5712. Me.CheckBox25.Location = New System.Drawing.Point(215, 791)
  5713. Me.CheckBox25.Name = "CheckBox25"
  5714. Me.CheckBox25.Size = New System.Drawing.Size(51, 20)
  5715. Me.CheckBox25.TabIndex = 1858
  5716. Me.CheckBox25.Text = "半天"
  5717. Me.CheckBox25.UseVisualStyleBackColor = True
  5718. '
  5719. 'CheckBox24
  5720. '
  5721. Me.CheckBox24.AutoSize = True
  5722. Me.CheckBox24.Location = New System.Drawing.Point(215, 760)
  5723. Me.CheckBox24.Name = "CheckBox24"
  5724. Me.CheckBox24.Size = New System.Drawing.Size(51, 20)
  5725. Me.CheckBox24.TabIndex = 1857
  5726. Me.CheckBox24.Text = "半天"
  5727. Me.CheckBox24.UseVisualStyleBackColor = True
  5728. '
  5729. 'CheckBox23
  5730. '
  5731. Me.CheckBox23.AutoSize = True
  5732. Me.CheckBox23.Location = New System.Drawing.Point(215, 729)
  5733. Me.CheckBox23.Name = "CheckBox23"
  5734. Me.CheckBox23.Size = New System.Drawing.Size(51, 20)
  5735. Me.CheckBox23.TabIndex = 1856
  5736. Me.CheckBox23.Text = "半天"
  5737. Me.CheckBox23.UseVisualStyleBackColor = True
  5738. '
  5739. 'CheckBox22
  5740. '
  5741. Me.CheckBox22.AutoSize = True
  5742. Me.CheckBox22.Location = New System.Drawing.Point(215, 698)
  5743. Me.CheckBox22.Name = "CheckBox22"
  5744. Me.CheckBox22.Size = New System.Drawing.Size(51, 20)
  5745. Me.CheckBox22.TabIndex = 1855
  5746. Me.CheckBox22.Text = "半天"
  5747. Me.CheckBox22.UseVisualStyleBackColor = True
  5748. '
  5749. 'CheckBox21
  5750. '
  5751. Me.CheckBox21.AutoSize = True
  5752. Me.CheckBox21.Location = New System.Drawing.Point(215, 667)
  5753. Me.CheckBox21.Name = "CheckBox21"
  5754. Me.CheckBox21.Size = New System.Drawing.Size(51, 20)
  5755. Me.CheckBox21.TabIndex = 1854
  5756. Me.CheckBox21.Text = "半天"
  5757. Me.CheckBox21.UseVisualStyleBackColor = True
  5758. '
  5759. 'Label104
  5760. '
  5761. Me.Label104.AutoSize = True
  5762. Me.Label104.Location = New System.Drawing.Point(458, 988)
  5763. Me.Label104.Name = "Label104"
  5764. Me.Label104.Size = New System.Drawing.Size(1388, 16)
  5765. Me.Label104.TabIndex = 1945
  5766. Me.Label104.Text = resources.GetString("Label104.Text")
  5767. '
  5768. 'A_lb31
  5769. '
  5770. Me.A_lb31.AutoSize = True
  5771. Me.A_lb31.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  5772. Me.A_lb31.Location = New System.Drawing.Point(1, 978)
  5773. Me.A_lb31.Name = "A_lb31"
  5774. Me.A_lb31.Size = New System.Drawing.Size(22, 16)
  5775. Me.A_lb31.TabIndex = 1908
  5776. Me.A_lb31.Text = "31"
  5777. '
  5778. 'A_lb30
  5779. '
  5780. Me.A_lb30.AutoSize = True
  5781. Me.A_lb30.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  5782. Me.A_lb30.Location = New System.Drawing.Point(1, 947)
  5783. Me.A_lb30.Name = "A_lb30"
  5784. Me.A_lb30.Size = New System.Drawing.Size(22, 16)
  5785. Me.A_lb30.TabIndex = 1907
  5786. Me.A_lb30.Text = "30"
  5787. '
  5788. 'A_lb29
  5789. '
  5790. Me.A_lb29.AutoSize = True
  5791. Me.A_lb29.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  5792. Me.A_lb29.Location = New System.Drawing.Point(1, 916)
  5793. Me.A_lb29.Name = "A_lb29"
  5794. Me.A_lb29.Size = New System.Drawing.Size(22, 16)
  5795. Me.A_lb29.TabIndex = 1906
  5796. Me.A_lb29.Text = "29"
  5797. '
  5798. 'A_lb28
  5799. '
  5800. Me.A_lb28.AutoSize = True
  5801. Me.A_lb28.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  5802. Me.A_lb28.Location = New System.Drawing.Point(0, 885)
  5803. Me.A_lb28.Name = "A_lb28"
  5804. Me.A_lb28.Size = New System.Drawing.Size(22, 16)
  5805. Me.A_lb28.TabIndex = 1905
  5806. Me.A_lb28.Text = "28"
  5807. '
  5808. 'A_lb27
  5809. '
  5810. Me.A_lb27.AutoSize = True
  5811. Me.A_lb27.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  5812. Me.A_lb27.Location = New System.Drawing.Point(1, 854)
  5813. Me.A_lb27.Name = "A_lb27"
  5814. Me.A_lb27.Size = New System.Drawing.Size(22, 16)
  5815. Me.A_lb27.TabIndex = 1904
  5816. Me.A_lb27.Text = "27"
  5817. '
  5818. 'A_lb26
  5819. '
  5820. Me.A_lb26.AutoSize = True
  5821. Me.A_lb26.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  5822. Me.A_lb26.Location = New System.Drawing.Point(1, 824)
  5823. Me.A_lb26.Name = "A_lb26"
  5824. Me.A_lb26.Size = New System.Drawing.Size(22, 16)
  5825. Me.A_lb26.TabIndex = 1903
  5826. Me.A_lb26.Text = "26"
  5827. '
  5828. 'A_lb25
  5829. '
  5830. Me.A_lb25.AutoSize = True
  5831. Me.A_lb25.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  5832. Me.A_lb25.Location = New System.Drawing.Point(2, 793)
  5833. Me.A_lb25.Name = "A_lb25"
  5834. Me.A_lb25.Size = New System.Drawing.Size(22, 16)
  5835. Me.A_lb25.TabIndex = 1902
  5836. Me.A_lb25.Text = "25"
  5837. '
  5838. 'A_lb24
  5839. '
  5840. Me.A_lb24.AutoSize = True
  5841. Me.A_lb24.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  5842. Me.A_lb24.Location = New System.Drawing.Point(2, 761)
  5843. Me.A_lb24.Name = "A_lb24"
  5844. Me.A_lb24.Size = New System.Drawing.Size(22, 16)
  5845. Me.A_lb24.TabIndex = 1901
  5846. Me.A_lb24.Text = "24"
  5847. '
  5848. 'A_lb23
  5849. '
  5850. Me.A_lb23.AutoSize = True
  5851. Me.A_lb23.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  5852. Me.A_lb23.Location = New System.Drawing.Point(2, 731)
  5853. Me.A_lb23.Name = "A_lb23"
  5854. Me.A_lb23.Size = New System.Drawing.Size(22, 16)
  5855. Me.A_lb23.TabIndex = 1900
  5856. Me.A_lb23.Text = "23"
  5857. '
  5858. 'A_lb22
  5859. '
  5860. Me.A_lb22.AutoSize = True
  5861. Me.A_lb22.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  5862. Me.A_lb22.Location = New System.Drawing.Point(2, 699)
  5863. Me.A_lb22.Name = "A_lb22"
  5864. Me.A_lb22.Size = New System.Drawing.Size(22, 16)
  5865. Me.A_lb22.TabIndex = 1899
  5866. Me.A_lb22.Text = "22"
  5867. '
  5868. 'A_lb21
  5869. '
  5870. Me.A_lb21.AutoSize = True
  5871. Me.A_lb21.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  5872. Me.A_lb21.Location = New System.Drawing.Point(2, 667)
  5873. Me.A_lb21.Name = "A_lb21"
  5874. Me.A_lb21.Size = New System.Drawing.Size(22, 16)
  5875. Me.A_lb21.TabIndex = 1898
  5876. Me.A_lb21.Text = "21"
  5877. '
  5878. 'A_lb20
  5879. '
  5880. Me.A_lb20.AutoSize = True
  5881. Me.A_lb20.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  5882. Me.A_lb20.Location = New System.Drawing.Point(2, 635)
  5883. Me.A_lb20.Name = "A_lb20"
  5884. Me.A_lb20.Size = New System.Drawing.Size(22, 16)
  5885. Me.A_lb20.TabIndex = 1684
  5886. Me.A_lb20.Text = "20"
  5887. '
  5888. 'A_lb19
  5889. '
  5890. Me.A_lb19.AutoSize = True
  5891. Me.A_lb19.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  5892. Me.A_lb19.Location = New System.Drawing.Point(2, 604)
  5893. Me.A_lb19.Name = "A_lb19"
  5894. Me.A_lb19.Size = New System.Drawing.Size(22, 16)
  5895. Me.A_lb19.TabIndex = 1683
  5896. Me.A_lb19.Text = "19"
  5897. '
  5898. 'A_lb18
  5899. '
  5900. Me.A_lb18.AutoSize = True
  5901. Me.A_lb18.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  5902. Me.A_lb18.Location = New System.Drawing.Point(3, 573)
  5903. Me.A_lb18.Name = "A_lb18"
  5904. Me.A_lb18.Size = New System.Drawing.Size(22, 16)
  5905. Me.A_lb18.TabIndex = 1682
  5906. Me.A_lb18.Text = "18"
  5907. '
  5908. 'A_lb17
  5909. '
  5910. Me.A_lb17.AutoSize = True
  5911. Me.A_lb17.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  5912. Me.A_lb17.Location = New System.Drawing.Point(2, 542)
  5913. Me.A_lb17.Name = "A_lb17"
  5914. Me.A_lb17.Size = New System.Drawing.Size(22, 16)
  5915. Me.A_lb17.TabIndex = 1681
  5916. Me.A_lb17.Text = "17"
  5917. '
  5918. 'A_lb16
  5919. '
  5920. Me.A_lb16.AutoSize = True
  5921. Me.A_lb16.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  5922. Me.A_lb16.Location = New System.Drawing.Point(2, 511)
  5923. Me.A_lb16.Name = "A_lb16"
  5924. Me.A_lb16.Size = New System.Drawing.Size(22, 16)
  5925. Me.A_lb16.TabIndex = 1680
  5926. Me.A_lb16.Text = "16"
  5927. '
  5928. 'A_lb15
  5929. '
  5930. Me.A_lb15.AutoSize = True
  5931. Me.A_lb15.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  5932. Me.A_lb15.Location = New System.Drawing.Point(3, 480)
  5933. Me.A_lb15.Name = "A_lb15"
  5934. Me.A_lb15.Size = New System.Drawing.Size(22, 16)
  5935. Me.A_lb15.TabIndex = 1679
  5936. Me.A_lb15.Text = "15"
  5937. '
  5938. 'A_lb14
  5939. '
  5940. Me.A_lb14.AutoSize = True
  5941. Me.A_lb14.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  5942. Me.A_lb14.Location = New System.Drawing.Point(3, 449)
  5943. Me.A_lb14.Name = "A_lb14"
  5944. Me.A_lb14.Size = New System.Drawing.Size(22, 16)
  5945. Me.A_lb14.TabIndex = 1678
  5946. Me.A_lb14.Text = "14"
  5947. '
  5948. 'A_lb13
  5949. '
  5950. Me.A_lb13.AutoSize = True
  5951. Me.A_lb13.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  5952. Me.A_lb13.Location = New System.Drawing.Point(3, 418)
  5953. Me.A_lb13.Name = "A_lb13"
  5954. Me.A_lb13.Size = New System.Drawing.Size(22, 16)
  5955. Me.A_lb13.TabIndex = 1677
  5956. Me.A_lb13.Text = "13"
  5957. '
  5958. 'A_lb12
  5959. '
  5960. Me.A_lb12.AutoSize = True
  5961. Me.A_lb12.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  5962. Me.A_lb12.Location = New System.Drawing.Point(3, 387)
  5963. Me.A_lb12.Name = "A_lb12"
  5964. Me.A_lb12.Size = New System.Drawing.Size(22, 16)
  5965. Me.A_lb12.TabIndex = 1676
  5966. Me.A_lb12.Text = "12"
  5967. '
  5968. 'A_lb11
  5969. '
  5970. Me.A_lb11.AutoSize = True
  5971. Me.A_lb11.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  5972. Me.A_lb11.Location = New System.Drawing.Point(3, 356)
  5973. Me.A_lb11.Name = "A_lb11"
  5974. Me.A_lb11.Size = New System.Drawing.Size(22, 16)
  5975. Me.A_lb11.TabIndex = 1675
  5976. Me.A_lb11.Text = "11"
  5977. '
  5978. 'A_lb10
  5979. '
  5980. Me.A_lb10.AutoSize = True
  5981. Me.A_lb10.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  5982. Me.A_lb10.Location = New System.Drawing.Point(3, 325)
  5983. Me.A_lb10.Name = "A_lb10"
  5984. Me.A_lb10.Size = New System.Drawing.Size(22, 16)
  5985. Me.A_lb10.TabIndex = 1674
  5986. Me.A_lb10.Text = "10"
  5987. '
  5988. '個人班表
  5989. '
  5990. Me.AutoScaleDimensions = New System.Drawing.SizeF(7.0!, 16.0!)
  5991. Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font
  5992. Me.ClientSize = New System.Drawing.Size(1864, 1011)
  5993. Me.Controls.Add(Me.TextBox62)
  5994. Me.Controls.Add(Me.TextBox61)
  5995. Me.Controls.Add(Me.TextBox60)
  5996. Me.Controls.Add(Me.TextBox59)
  5997. Me.Controls.Add(Me.TextBox58)
  5998. Me.Controls.Add(Me.TextBox57)
  5999. Me.Controls.Add(Me.TextBox56)
  6000. Me.Controls.Add(Me.TextBox55)
  6001. Me.Controls.Add(Me.TextBox54)
  6002. Me.Controls.Add(Me.TextBox53)
  6003. Me.Controls.Add(Me.TextBox52)
  6004. Me.Controls.Add(Me.TextBox51)
  6005. Me.Controls.Add(Me.TextBox50)
  6006. Me.Controls.Add(Me.TextBox49)
  6007. Me.Controls.Add(Me.TextBox48)
  6008. Me.Controls.Add(Me.TextBox47)
  6009. Me.Controls.Add(Me.TextBox46)
  6010. Me.Controls.Add(Me.TextBox45)
  6011. Me.Controls.Add(Me.TextBox44)
  6012. Me.Controls.Add(Me.TextBox43)
  6013. Me.Controls.Add(Me.TextBox42)
  6014. Me.Controls.Add(Me.TextBox41)
  6015. Me.Controls.Add(Me.TextBox40)
  6016. Me.Controls.Add(Me.TextBox39)
  6017. Me.Controls.Add(Me.TextBox38)
  6018. Me.Controls.Add(Me.TextBox37)
  6019. Me.Controls.Add(Me.TextBox36)
  6020. Me.Controls.Add(Me.TextBox35)
  6021. Me.Controls.Add(Me.TextBox34)
  6022. Me.Controls.Add(Me.TextBox33)
  6023. Me.Controls.Add(Me.TextBox32)
  6024. Me.Controls.Add(Me.ComboBox124)
  6025. Me.Controls.Add(Me.ComboBox123)
  6026. Me.Controls.Add(Me.ComboBox122)
  6027. Me.Controls.Add(Me.ComboBox121)
  6028. Me.Controls.Add(Me.ComboBox120)
  6029. Me.Controls.Add(Me.ComboBox119)
  6030. Me.Controls.Add(Me.ComboBox118)
  6031. Me.Controls.Add(Me.ComboBox117)
  6032. Me.Controls.Add(Me.ComboBox116)
  6033. Me.Controls.Add(Me.ComboBox115)
  6034. Me.Controls.Add(Me.ComboBox114)
  6035. Me.Controls.Add(Me.ComboBox113)
  6036. Me.Controls.Add(Me.ComboBox112)
  6037. Me.Controls.Add(Me.ComboBox111)
  6038. Me.Controls.Add(Me.ComboBox110)
  6039. Me.Controls.Add(Me.ComboBox109)
  6040. Me.Controls.Add(Me.ComboBox108)
  6041. Me.Controls.Add(Me.ComboBox107)
  6042. Me.Controls.Add(Me.ComboBox106)
  6043. Me.Controls.Add(Me.ComboBox105)
  6044. Me.Controls.Add(Me.ComboBox104)
  6045. Me.Controls.Add(Me.ComboBox103)
  6046. Me.Controls.Add(Me.ComboBox102)
  6047. Me.Controls.Add(Me.ComboBox101)
  6048. Me.Controls.Add(Me.ComboBox100)
  6049. Me.Controls.Add(Me.ComboBox99)
  6050. Me.Controls.Add(Me.ComboBox98)
  6051. Me.Controls.Add(Me.ComboBox97)
  6052. Me.Controls.Add(Me.ComboBox96)
  6053. Me.Controls.Add(Me.ComboBox95)
  6054. Me.Controls.Add(Me.ComboBox94)
  6055. Me.Controls.Add(Me.ComboBox93)
  6056. Me.Controls.Add(Me.ComboBox92)
  6057. Me.Controls.Add(Me.ComboBox91)
  6058. Me.Controls.Add(Me.ComboBox90)
  6059. Me.Controls.Add(Me.ComboBox89)
  6060. Me.Controls.Add(Me.ComboBox88)
  6061. Me.Controls.Add(Me.ComboBox87)
  6062. Me.Controls.Add(Me.ComboBox86)
  6063. Me.Controls.Add(Me.ComboBox85)
  6064. Me.Controls.Add(Me.ComboBox84)
  6065. Me.Controls.Add(Me.ComboBox83)
  6066. Me.Controls.Add(Me.ComboBox82)
  6067. Me.Controls.Add(Me.ComboBox81)
  6068. Me.Controls.Add(Me.ComboBox80)
  6069. Me.Controls.Add(Me.ComboBox79)
  6070. Me.Controls.Add(Me.ComboBox78)
  6071. Me.Controls.Add(Me.ComboBox77)
  6072. Me.Controls.Add(Me.ComboBox76)
  6073. Me.Controls.Add(Me.ComboBox75)
  6074. Me.Controls.Add(Me.ComboBox74)
  6075. Me.Controls.Add(Me.ComboBox73)
  6076. Me.Controls.Add(Me.ComboBox72)
  6077. Me.Controls.Add(Me.ComboBox71)
  6078. Me.Controls.Add(Me.ComboBox70)
  6079. Me.Controls.Add(Me.ComboBox69)
  6080. Me.Controls.Add(Me.ComboBox68)
  6081. Me.Controls.Add(Me.ComboBox67)
  6082. Me.Controls.Add(Me.ComboBox66)
  6083. Me.Controls.Add(Me.ComboBox65)
  6084. Me.Controls.Add(Me.ComboBox64)
  6085. Me.Controls.Add(Me.ComboBox63)
  6086. Me.Controls.Add(Me.星期_dgv)
  6087. Me.Controls.Add(Me.TextBox31)
  6088. Me.Controls.Add(Me.TextBox30)
  6089. Me.Controls.Add(Me.TextBox29)
  6090. Me.Controls.Add(Me.TextBox28)
  6091. Me.Controls.Add(Me.TextBox27)
  6092. Me.Controls.Add(Me.TextBox26)
  6093. Me.Controls.Add(Me.TextBox25)
  6094. Me.Controls.Add(Me.TextBox24)
  6095. Me.Controls.Add(Me.TextBox23)
  6096. Me.Controls.Add(Me.TextBox22)
  6097. Me.Controls.Add(Me.TextBox21)
  6098. Me.Controls.Add(Me.TextBox20)
  6099. Me.Controls.Add(Me.TextBox19)
  6100. Me.Controls.Add(Me.TextBox18)
  6101. Me.Controls.Add(Me.TextBox17)
  6102. Me.Controls.Add(Me.TextBox16)
  6103. Me.Controls.Add(Me.TextBox15)
  6104. Me.Controls.Add(Me.TextBox14)
  6105. Me.Controls.Add(Me.TextBox13)
  6106. Me.Controls.Add(Me.TextBox12)
  6107. Me.Controls.Add(Me.TextBox11)
  6108. Me.Controls.Add(Me.TextBox10)
  6109. Me.Controls.Add(Me.TextBox9)
  6110. Me.Controls.Add(Me.TextBox8)
  6111. Me.Controls.Add(Me.TextBox7)
  6112. Me.Controls.Add(Me.TextBox6)
  6113. Me.Controls.Add(Me.TextBox5)
  6114. Me.Controls.Add(Me.TextBox4)
  6115. Me.Controls.Add(Me.TextBox3)
  6116. Me.Controls.Add(Me.TextBox2)
  6117. Me.Controls.Add(Me.TextBox1)
  6118. Me.Controls.Add(Me.排班明細_dgv)
  6119. Me.Controls.Add(Me.月_lb)
  6120. Me.Controls.Add(Me.Label103)
  6121. Me.Controls.Add(Me.年_lb)
  6122. Me.Controls.Add(Me.姓名_tb31)
  6123. Me.Controls.Add(Me.姓名_tb30)
  6124. Me.Controls.Add(Me.姓名_tb29)
  6125. Me.Controls.Add(Me.姓名_tb28)
  6126. Me.Controls.Add(Me.姓名_tb27)
  6127. Me.Controls.Add(Me.姓名_tb26)
  6128. Me.Controls.Add(Me.姓名_tb25)
  6129. Me.Controls.Add(Me.姓名_tb24)
  6130. Me.Controls.Add(Me.姓名_tb23)
  6131. Me.Controls.Add(Me.姓名_tb22)
  6132. Me.Controls.Add(Me.姓名_tb21)
  6133. Me.Controls.Add(Me.NUP31)
  6134. Me.Controls.Add(Me.NUP30)
  6135. Me.Controls.Add(Me.NUP29)
  6136. Me.Controls.Add(Me.NUP28)
  6137. Me.Controls.Add(Me.NUP27)
  6138. Me.Controls.Add(Me.NUP26)
  6139. Me.Controls.Add(Me.NUP25)
  6140. Me.Controls.Add(Me.NUP24)
  6141. Me.Controls.Add(Me.NUP23)
  6142. Me.Controls.Add(Me.NUP22)
  6143. Me.Controls.Add(Me.NUP21)
  6144. Me.Controls.Add(Me.班別_cb31)
  6145. Me.Controls.Add(Me.班別_cb30)
  6146. Me.Controls.Add(Me.班別_cb29)
  6147. Me.Controls.Add(Me.班別_cb28)
  6148. Me.Controls.Add(Me.班別_cb27)
  6149. Me.Controls.Add(Me.班別_cb26)
  6150. Me.Controls.Add(Me.班別_cb25)
  6151. Me.Controls.Add(Me.班別_cb24)
  6152. Me.Controls.Add(Me.班別_cb23)
  6153. Me.Controls.Add(Me.班別_cb22)
  6154. Me.Controls.Add(Me.班別_cb21)
  6155. Me.Controls.Add(Me.NumericUpDown31)
  6156. Me.Controls.Add(Me.NumericUpDown30)
  6157. Me.Controls.Add(Me.NumericUpDown29)
  6158. Me.Controls.Add(Me.NumericUpDown28)
  6159. Me.Controls.Add(Me.NumericUpDown27)
  6160. Me.Controls.Add(Me.NumericUpDown26)
  6161. Me.Controls.Add(Me.NumericUpDown25)
  6162. Me.Controls.Add(Me.NumericUpDown24)
  6163. Me.Controls.Add(Me.NumericUpDown23)
  6164. Me.Controls.Add(Me.NumericUpDown22)
  6165. Me.Controls.Add(Me.NumericUpDown21)
  6166. Me.Controls.Add(Me.ComboBox62)
  6167. Me.Controls.Add(Me.ComboBox61)
  6168. Me.Controls.Add(Me.ComboBox60)
  6169. Me.Controls.Add(Me.ComboBox59)
  6170. Me.Controls.Add(Me.ComboBox58)
  6171. Me.Controls.Add(Me.ComboBox57)
  6172. Me.Controls.Add(Me.ComboBox56)
  6173. Me.Controls.Add(Me.ComboBox55)
  6174. Me.Controls.Add(Me.ComboBox54)
  6175. Me.Controls.Add(Me.ComboBox53)
  6176. Me.Controls.Add(Me.ComboBox52)
  6177. Me.Controls.Add(Me.ComboBox51)
  6178. Me.Controls.Add(Me.ComboBox50)
  6179. Me.Controls.Add(Me.ComboBox49)
  6180. Me.Controls.Add(Me.ComboBox48)
  6181. Me.Controls.Add(Me.ComboBox47)
  6182. Me.Controls.Add(Me.ComboBox46)
  6183. Me.Controls.Add(Me.ComboBox45)
  6184. Me.Controls.Add(Me.ComboBox44)
  6185. Me.Controls.Add(Me.ComboBox43)
  6186. Me.Controls.Add(Me.ComboBox42)
  6187. Me.Controls.Add(Me.ComboBox41)
  6188. Me.Controls.Add(Me.A_pb62)
  6189. Me.Controls.Add(Me.A_pb61)
  6190. Me.Controls.Add(Me.A_pb60)
  6191. Me.Controls.Add(Me.A_pb59)
  6192. Me.Controls.Add(Me.A_pb58)
  6193. Me.Controls.Add(Me.A_pb57)
  6194. Me.Controls.Add(Me.A_pb56)
  6195. Me.Controls.Add(Me.A_pb55)
  6196. Me.Controls.Add(Me.A_pb54)
  6197. Me.Controls.Add(Me.A_pb53)
  6198. Me.Controls.Add(Me.A_pb52)
  6199. Me.Controls.Add(Me.A_pb51)
  6200. Me.Controls.Add(Me.A_pb50)
  6201. Me.Controls.Add(Me.A_pb49)
  6202. Me.Controls.Add(Me.A_pb48)
  6203. Me.Controls.Add(Me.A_pb47)
  6204. Me.Controls.Add(Me.A_pb46)
  6205. Me.Controls.Add(Me.A_pb45)
  6206. Me.Controls.Add(Me.A_pb44)
  6207. Me.Controls.Add(Me.A_pb43)
  6208. Me.Controls.Add(Me.A_pb42)
  6209. Me.Controls.Add(Me.A_pb41)
  6210. Me.Controls.Add(Me.ComboBox40)
  6211. Me.Controls.Add(Me.ComboBox39)
  6212. Me.Controls.Add(Me.ComboBox38)
  6213. Me.Controls.Add(Me.ComboBox37)
  6214. Me.Controls.Add(Me.ComboBox36)
  6215. Me.Controls.Add(Me.ComboBox35)
  6216. Me.Controls.Add(Me.ComboBox34)
  6217. Me.Controls.Add(Me.ComboBox33)
  6218. Me.Controls.Add(Me.ComboBox32)
  6219. Me.Controls.Add(Me.ComboBox31)
  6220. Me.Controls.Add(Me.ComboBox30)
  6221. Me.Controls.Add(Me.ComboBox29)
  6222. Me.Controls.Add(Me.ComboBox28)
  6223. Me.Controls.Add(Me.ComboBox27)
  6224. Me.Controls.Add(Me.ComboBox26)
  6225. Me.Controls.Add(Me.ComboBox25)
  6226. Me.Controls.Add(Me.ComboBox24)
  6227. Me.Controls.Add(Me.ComboBox23)
  6228. Me.Controls.Add(Me.ComboBox22)
  6229. Me.Controls.Add(Me.ComboBox21)
  6230. Me.Controls.Add(Me.ComboBox20)
  6231. Me.Controls.Add(Me.ComboBox19)
  6232. Me.Controls.Add(Me.ComboBox18)
  6233. Me.Controls.Add(Me.ComboBox17)
  6234. Me.Controls.Add(Me.ComboBox16)
  6235. Me.Controls.Add(Me.ComboBox15)
  6236. Me.Controls.Add(Me.ComboBox14)
  6237. Me.Controls.Add(Me.ComboBox13)
  6238. Me.Controls.Add(Me.ComboBox12)
  6239. Me.Controls.Add(Me.ComboBox11)
  6240. Me.Controls.Add(Me.ComboBox10)
  6241. Me.Controls.Add(Me.ComboBox9)
  6242. Me.Controls.Add(Me.ComboBox8)
  6243. Me.Controls.Add(Me.ComboBox7)
  6244. Me.Controls.Add(Me.ComboBox6)
  6245. Me.Controls.Add(Me.ComboBox5)
  6246. Me.Controls.Add(Me.ComboBox4)
  6247. Me.Controls.Add(Me.ComboBox3)
  6248. Me.Controls.Add(Me.ComboBox2)
  6249. Me.Controls.Add(Me.ComboBox1)
  6250. Me.Controls.Add(Me.Label93)
  6251. Me.Controls.Add(Me.Label92)
  6252. Me.Controls.Add(Me.Label90)
  6253. Me.Controls.Add(Me.NUP20)
  6254. Me.Controls.Add(Me.NUP19)
  6255. Me.Controls.Add(Me.NUP18)
  6256. Me.Controls.Add(Me.NUP17)
  6257. Me.Controls.Add(Me.NUP16)
  6258. Me.Controls.Add(Me.NUP15)
  6259. Me.Controls.Add(Me.NUP14)
  6260. Me.Controls.Add(Me.NUP13)
  6261. Me.Controls.Add(Me.NUP12)
  6262. Me.Controls.Add(Me.NUP11)
  6263. Me.Controls.Add(Me.NUP10)
  6264. Me.Controls.Add(Me.NUP9)
  6265. Me.Controls.Add(Me.NUP8)
  6266. Me.Controls.Add(Me.NUP7)
  6267. Me.Controls.Add(Me.NUP6)
  6268. Me.Controls.Add(Me.NUP5)
  6269. Me.Controls.Add(Me.NUP4)
  6270. Me.Controls.Add(Me.NUP3)
  6271. Me.Controls.Add(Me.NUP2)
  6272. Me.Controls.Add(Me.NumericUpDown20)
  6273. Me.Controls.Add(Me.CheckBox20)
  6274. Me.Controls.Add(Me.NumericUpDown19)
  6275. Me.Controls.Add(Me.CheckBox19)
  6276. Me.Controls.Add(Me.NumericUpDown18)
  6277. Me.Controls.Add(Me.CheckBox18)
  6278. Me.Controls.Add(Me.NumericUpDown17)
  6279. Me.Controls.Add(Me.CheckBox17)
  6280. Me.Controls.Add(Me.NumericUpDown16)
  6281. Me.Controls.Add(Me.CheckBox16)
  6282. Me.Controls.Add(Me.NumericUpDown15)
  6283. Me.Controls.Add(Me.CheckBox15)
  6284. Me.Controls.Add(Me.NumericUpDown14)
  6285. Me.Controls.Add(Me.CheckBox14)
  6286. Me.Controls.Add(Me.NumericUpDown13)
  6287. Me.Controls.Add(Me.CheckBox13)
  6288. Me.Controls.Add(Me.NumericUpDown12)
  6289. Me.Controls.Add(Me.CheckBox12)
  6290. Me.Controls.Add(Me.NumericUpDown11)
  6291. Me.Controls.Add(Me.CheckBox11)
  6292. Me.Controls.Add(Me.NumericUpDown10)
  6293. Me.Controls.Add(Me.CheckBox10)
  6294. Me.Controls.Add(Me.NumericUpDown9)
  6295. Me.Controls.Add(Me.CheckBox9)
  6296. Me.Controls.Add(Me.NumericUpDown8)
  6297. Me.Controls.Add(Me.CheckBox8)
  6298. Me.Controls.Add(Me.NumericUpDown7)
  6299. Me.Controls.Add(Me.CheckBox7)
  6300. Me.Controls.Add(Me.NumericUpDown6)
  6301. Me.Controls.Add(Me.CheckBox6)
  6302. Me.Controls.Add(Me.NumericUpDown5)
  6303. Me.Controls.Add(Me.CheckBox5)
  6304. Me.Controls.Add(Me.NumericUpDown4)
  6305. Me.Controls.Add(Me.CheckBox4)
  6306. Me.Controls.Add(Me.NumericUpDown3)
  6307. Me.Controls.Add(Me.CheckBox3)
  6308. Me.Controls.Add(Me.NumericUpDown2)
  6309. Me.Controls.Add(Me.CheckBox2)
  6310. Me.Controls.Add(Me.NumericUpDown1)
  6311. Me.Controls.Add(Me.CheckBox1)
  6312. Me.Controls.Add(Me.姓名_tb20)
  6313. Me.Controls.Add(Me.姓名_tb19)
  6314. Me.Controls.Add(Me.姓名_tb18)
  6315. Me.Controls.Add(Me.姓名_tb17)
  6316. Me.Controls.Add(Me.姓名_tb16)
  6317. Me.Controls.Add(Me.姓名_tb15)
  6318. Me.Controls.Add(Me.姓名_tb14)
  6319. Me.Controls.Add(Me.姓名_tb13)
  6320. Me.Controls.Add(Me.姓名_tb12)
  6321. Me.Controls.Add(Me.姓名_tb11)
  6322. Me.Controls.Add(Me.姓名_tb10)
  6323. Me.Controls.Add(Me.姓名_tb9)
  6324. Me.Controls.Add(Me.姓名_tb8)
  6325. Me.Controls.Add(Me.姓名_tb7)
  6326. Me.Controls.Add(Me.姓名_tb6)
  6327. Me.Controls.Add(Me.姓名_tb5)
  6328. Me.Controls.Add(Me.姓名_tb4)
  6329. Me.Controls.Add(Me.姓名_tb3)
  6330. Me.Controls.Add(Me.姓名_tb2)
  6331. Me.Controls.Add(Me.姓名_tb1)
  6332. Me.Controls.Add(Me.班別_cb20)
  6333. Me.Controls.Add(Me.班別_cb19)
  6334. Me.Controls.Add(Me.班別_cb18)
  6335. Me.Controls.Add(Me.班別_cb17)
  6336. Me.Controls.Add(Me.班別_cb16)
  6337. Me.Controls.Add(Me.班別_cb15)
  6338. Me.Controls.Add(Me.班別_cb14)
  6339. Me.Controls.Add(Me.班別_cb13)
  6340. Me.Controls.Add(Me.班別_cb12)
  6341. Me.Controls.Add(Me.班別_cb11)
  6342. Me.Controls.Add(Me.班別_cb10)
  6343. Me.Controls.Add(Me.班別_cb9)
  6344. Me.Controls.Add(Me.班別_cb8)
  6345. Me.Controls.Add(Me.班別_cb7)
  6346. Me.Controls.Add(Me.班別_cb6)
  6347. Me.Controls.Add(Me.班別_cb5)
  6348. Me.Controls.Add(Me.班別_cb4)
  6349. Me.Controls.Add(Me.班別_cb3)
  6350. Me.Controls.Add(Me.班別_cb2)
  6351. Me.Controls.Add(Me.班別_cb1)
  6352. Me.Controls.Add(Me.Label69)
  6353. Me.Controls.Add(Me.A_pb40)
  6354. Me.Controls.Add(Me.A_pb39)
  6355. Me.Controls.Add(Me.A_pb38)
  6356. Me.Controls.Add(Me.A_pb37)
  6357. Me.Controls.Add(Me.A_pb36)
  6358. Me.Controls.Add(Me.A_pb35)
  6359. Me.Controls.Add(Me.A_pb34)
  6360. Me.Controls.Add(Me.A_pb33)
  6361. Me.Controls.Add(Me.A_pb32)
  6362. Me.Controls.Add(Me.A_pb31)
  6363. Me.Controls.Add(Me.A_pb30)
  6364. Me.Controls.Add(Me.A_pb29)
  6365. Me.Controls.Add(Me.A_pb28)
  6366. Me.Controls.Add(Me.A_pb27)
  6367. Me.Controls.Add(Me.A_pb26)
  6368. Me.Controls.Add(Me.A_pb25)
  6369. Me.Controls.Add(Me.A_pb24)
  6370. Me.Controls.Add(Me.A_pb23)
  6371. Me.Controls.Add(Me.A_pb22)
  6372. Me.Controls.Add(Me.A_pb21)
  6373. Me.Controls.Add(Me.A_pb20)
  6374. Me.Controls.Add(Me.A_pb19)
  6375. Me.Controls.Add(Me.A_pb18)
  6376. Me.Controls.Add(Me.A_pb17)
  6377. Me.Controls.Add(Me.A_pb16)
  6378. Me.Controls.Add(Me.A_pb15)
  6379. Me.Controls.Add(Me.A_pb14)
  6380. Me.Controls.Add(Me.A_pb13)
  6381. Me.Controls.Add(Me.A_pb12)
  6382. Me.Controls.Add(Me.A_pb11)
  6383. Me.Controls.Add(Me.A_pb10)
  6384. Me.Controls.Add(Me.A_pb9)
  6385. Me.Controls.Add(Me.A_pb8)
  6386. Me.Controls.Add(Me.A_pb7)
  6387. Me.Controls.Add(Me.A_pb6)
  6388. Me.Controls.Add(Me.A_pb5)
  6389. Me.Controls.Add(Me.A_pb4)
  6390. Me.Controls.Add(Me.A_pb3)
  6391. Me.Controls.Add(Me.A_pb2)
  6392. Me.Controls.Add(Me.A_pb1)
  6393. Me.Controls.Add(Me.Label68)
  6394. Me.Controls.Add(Me.Label67)
  6395. Me.Controls.Add(Me.Label66)
  6396. Me.Controls.Add(Me.Label65)
  6397. Me.Controls.Add(Me.Label64)
  6398. Me.Controls.Add(Me.Label63)
  6399. Me.Controls.Add(Me.Label62)
  6400. Me.Controls.Add(Me.Label61)
  6401. Me.Controls.Add(Me.Label60)
  6402. Me.Controls.Add(Me.Label59)
  6403. Me.Controls.Add(Me.Label58)
  6404. Me.Controls.Add(Me.Label57)
  6405. Me.Controls.Add(Me.Label56)
  6406. Me.Controls.Add(Me.Label55)
  6407. Me.Controls.Add(Me.Label54)
  6408. Me.Controls.Add(Me.Label53)
  6409. Me.Controls.Add(Me.Label52)
  6410. Me.Controls.Add(Me.Label50)
  6411. Me.Controls.Add(Me.Label49)
  6412. Me.Controls.Add(Me.Label48)
  6413. Me.Controls.Add(Me.Label47)
  6414. Me.Controls.Add(Me.Label46)
  6415. Me.Controls.Add(Me.Label45)
  6416. Me.Controls.Add(Me.Label44)
  6417. Me.Controls.Add(Me.Label43)
  6418. Me.Controls.Add(Me.Label42)
  6419. Me.Controls.Add(Me.Label41)
  6420. Me.Controls.Add(Me.Label40)
  6421. Me.Controls.Add(Me.Label39)
  6422. Me.Controls.Add(Me.Label38)
  6423. Me.Controls.Add(Me.Label37)
  6424. Me.Controls.Add(Me.Label36)
  6425. Me.Controls.Add(Me.Label35)
  6426. Me.Controls.Add(Me.Label34)
  6427. Me.Controls.Add(Me.Label33)
  6428. Me.Controls.Add(Me.Label32)
  6429. Me.Controls.Add(Me.Label31)
  6430. Me.Controls.Add(Me.Label30)
  6431. Me.Controls.Add(Me.Label29)
  6432. Me.Controls.Add(Me.Label28)
  6433. Me.Controls.Add(Me.Label27)
  6434. Me.Controls.Add(Me.Label26)
  6435. Me.Controls.Add(Me.Label25)
  6436. Me.Controls.Add(Me.Label24)
  6437. Me.Controls.Add(Me.Label23)
  6438. Me.Controls.Add(Me.Label22)
  6439. Me.Controls.Add(Me.Label21)
  6440. Me.Controls.Add(Me.Label20)
  6441. Me.Controls.Add(Me.Label19)
  6442. Me.Controls.Add(Me.Label18)
  6443. Me.Controls.Add(Me.Label17)
  6444. Me.Controls.Add(Me.Label16)
  6445. Me.Controls.Add(Me.Label15)
  6446. Me.Controls.Add(Me.Label14)
  6447. Me.Controls.Add(Me.Label13)
  6448. Me.Controls.Add(Me.Label12)
  6449. Me.Controls.Add(Me.Label11)
  6450. Me.Controls.Add(Me.Label10)
  6451. Me.Controls.Add(Me.Label9)
  6452. Me.Controls.Add(Me.Label8)
  6453. Me.Controls.Add(Me.Label7)
  6454. Me.Controls.Add(Me.Label6)
  6455. Me.Controls.Add(Me.Label5)
  6456. Me.Controls.Add(Me.Label4)
  6457. Me.Controls.Add(Me.Label3)
  6458. Me.Controls.Add(Me.Label2)
  6459. Me.Controls.Add(Me.Label1)
  6460. Me.Controls.Add(Me.Label51)
  6461. Me.Controls.Add(Me.Label70)
  6462. Me.Controls.Add(Me.Label71)
  6463. Me.Controls.Add(Me.Label72)
  6464. Me.Controls.Add(Me.Label73)
  6465. Me.Controls.Add(Me.Label74)
  6466. Me.Controls.Add(Me.Label75)
  6467. Me.Controls.Add(Me.Label76)
  6468. Me.Controls.Add(Me.Label77)
  6469. Me.Controls.Add(Me.Label78)
  6470. Me.Controls.Add(Me.Label79)
  6471. Me.Controls.Add(Me.Label80)
  6472. Me.Controls.Add(Me.Label81)
  6473. Me.Controls.Add(Me.Label82)
  6474. Me.Controls.Add(Me.Label83)
  6475. Me.Controls.Add(Me.Label84)
  6476. Me.Controls.Add(Me.Label85)
  6477. Me.Controls.Add(Me.Label86)
  6478. Me.Controls.Add(Me.Label87)
  6479. Me.Controls.Add(Me.Label88)
  6480. Me.Controls.Add(Me.A_lb9)
  6481. Me.Controls.Add(Me.A_lb8)
  6482. Me.Controls.Add(Me.A_lb7)
  6483. Me.Controls.Add(Me.A_lb6)
  6484. Me.Controls.Add(Me.A_lb5)
  6485. Me.Controls.Add(Me.A_lb4)
  6486. Me.Controls.Add(Me.A_lb3)
  6487. Me.Controls.Add(Me.A_lb2)
  6488. Me.Controls.Add(Me.A_lb1)
  6489. Me.Controls.Add(Me.NUP1)
  6490. Me.Controls.Add(Me.Label89)
  6491. Me.Controls.Add(Me.Label91)
  6492. Me.Controls.Add(Me.Label94)
  6493. Me.Controls.Add(Me.Label95)
  6494. Me.Controls.Add(Me.Label96)
  6495. Me.Controls.Add(Me.Label97)
  6496. Me.Controls.Add(Me.Label98)
  6497. Me.Controls.Add(Me.Label99)
  6498. Me.Controls.Add(Me.Label100)
  6499. Me.Controls.Add(Me.Label101)
  6500. Me.Controls.Add(Me.Label102)
  6501. Me.Controls.Add(Me.CheckBox31)
  6502. Me.Controls.Add(Me.CheckBox30)
  6503. Me.Controls.Add(Me.CheckBox29)
  6504. Me.Controls.Add(Me.CheckBox28)
  6505. Me.Controls.Add(Me.CheckBox27)
  6506. Me.Controls.Add(Me.CheckBox26)
  6507. Me.Controls.Add(Me.CheckBox25)
  6508. Me.Controls.Add(Me.CheckBox24)
  6509. Me.Controls.Add(Me.CheckBox23)
  6510. Me.Controls.Add(Me.CheckBox22)
  6511. Me.Controls.Add(Me.CheckBox21)
  6512. Me.Controls.Add(Me.Label104)
  6513. Me.Controls.Add(Me.A_lb31)
  6514. Me.Controls.Add(Me.A_lb30)
  6515. Me.Controls.Add(Me.A_lb29)
  6516. Me.Controls.Add(Me.A_lb28)
  6517. Me.Controls.Add(Me.A_lb27)
  6518. Me.Controls.Add(Me.A_lb26)
  6519. Me.Controls.Add(Me.A_lb25)
  6520. Me.Controls.Add(Me.A_lb24)
  6521. Me.Controls.Add(Me.A_lb23)
  6522. Me.Controls.Add(Me.A_lb22)
  6523. Me.Controls.Add(Me.A_lb21)
  6524. Me.Controls.Add(Me.A_lb20)
  6525. Me.Controls.Add(Me.A_lb19)
  6526. Me.Controls.Add(Me.A_lb18)
  6527. Me.Controls.Add(Me.A_lb17)
  6528. Me.Controls.Add(Me.A_lb16)
  6529. Me.Controls.Add(Me.A_lb15)
  6530. Me.Controls.Add(Me.A_lb14)
  6531. Me.Controls.Add(Me.A_lb13)
  6532. Me.Controls.Add(Me.A_lb12)
  6533. Me.Controls.Add(Me.A_lb11)
  6534. Me.Controls.Add(Me.A_lb10)
  6535. Me.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  6536. Me.Icon = CType(resources.GetObject("$this.Icon"), System.Drawing.Icon)
  6537. Me.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4)
  6538. Me.Name = "個人班表"
  6539. Me.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen
  6540. Me.Text = "個人班表"
  6541. CType(Me.星期_dgv, System.ComponentModel.ISupportInitialize).EndInit()
  6542. CType(Me.排班明細_dgv, System.ComponentModel.ISupportInitialize).EndInit()
  6543. CType(Me.NUP31, System.ComponentModel.ISupportInitialize).EndInit()
  6544. CType(Me.NUP30, System.ComponentModel.ISupportInitialize).EndInit()
  6545. CType(Me.NUP29, System.ComponentModel.ISupportInitialize).EndInit()
  6546. CType(Me.NUP28, System.ComponentModel.ISupportInitialize).EndInit()
  6547. CType(Me.NUP27, System.ComponentModel.ISupportInitialize).EndInit()
  6548. CType(Me.NUP26, System.ComponentModel.ISupportInitialize).EndInit()
  6549. CType(Me.NUP25, System.ComponentModel.ISupportInitialize).EndInit()
  6550. CType(Me.NUP24, System.ComponentModel.ISupportInitialize).EndInit()
  6551. CType(Me.NUP23, System.ComponentModel.ISupportInitialize).EndInit()
  6552. CType(Me.NUP22, System.ComponentModel.ISupportInitialize).EndInit()
  6553. CType(Me.NUP21, System.ComponentModel.ISupportInitialize).EndInit()
  6554. CType(Me.NumericUpDown31, System.ComponentModel.ISupportInitialize).EndInit()
  6555. CType(Me.NumericUpDown30, System.ComponentModel.ISupportInitialize).EndInit()
  6556. CType(Me.NumericUpDown29, System.ComponentModel.ISupportInitialize).EndInit()
  6557. CType(Me.NumericUpDown28, System.ComponentModel.ISupportInitialize).EndInit()
  6558. CType(Me.NumericUpDown27, System.ComponentModel.ISupportInitialize).EndInit()
  6559. CType(Me.NumericUpDown26, System.ComponentModel.ISupportInitialize).EndInit()
  6560. CType(Me.NumericUpDown25, System.ComponentModel.ISupportInitialize).EndInit()
  6561. CType(Me.NumericUpDown24, System.ComponentModel.ISupportInitialize).EndInit()
  6562. CType(Me.NumericUpDown23, System.ComponentModel.ISupportInitialize).EndInit()
  6563. CType(Me.NumericUpDown22, System.ComponentModel.ISupportInitialize).EndInit()
  6564. CType(Me.NumericUpDown21, System.ComponentModel.ISupportInitialize).EndInit()
  6565. CType(Me.NUP20, System.ComponentModel.ISupportInitialize).EndInit()
  6566. CType(Me.NUP19, System.ComponentModel.ISupportInitialize).EndInit()
  6567. CType(Me.NUP18, System.ComponentModel.ISupportInitialize).EndInit()
  6568. CType(Me.NUP17, System.ComponentModel.ISupportInitialize).EndInit()
  6569. CType(Me.NUP16, System.ComponentModel.ISupportInitialize).EndInit()
  6570. CType(Me.NUP15, System.ComponentModel.ISupportInitialize).EndInit()
  6571. CType(Me.NUP14, System.ComponentModel.ISupportInitialize).EndInit()
  6572. CType(Me.NUP13, System.ComponentModel.ISupportInitialize).EndInit()
  6573. CType(Me.NUP12, System.ComponentModel.ISupportInitialize).EndInit()
  6574. CType(Me.NUP11, System.ComponentModel.ISupportInitialize).EndInit()
  6575. CType(Me.NUP10, System.ComponentModel.ISupportInitialize).EndInit()
  6576. CType(Me.NUP9, System.ComponentModel.ISupportInitialize).EndInit()
  6577. CType(Me.NUP8, System.ComponentModel.ISupportInitialize).EndInit()
  6578. CType(Me.NUP7, System.ComponentModel.ISupportInitialize).EndInit()
  6579. CType(Me.NUP6, System.ComponentModel.ISupportInitialize).EndInit()
  6580. CType(Me.NUP5, System.ComponentModel.ISupportInitialize).EndInit()
  6581. CType(Me.NUP4, System.ComponentModel.ISupportInitialize).EndInit()
  6582. CType(Me.NUP3, System.ComponentModel.ISupportInitialize).EndInit()
  6583. CType(Me.NUP2, System.ComponentModel.ISupportInitialize).EndInit()
  6584. CType(Me.NumericUpDown20, System.ComponentModel.ISupportInitialize).EndInit()
  6585. CType(Me.NumericUpDown19, System.ComponentModel.ISupportInitialize).EndInit()
  6586. CType(Me.NumericUpDown18, System.ComponentModel.ISupportInitialize).EndInit()
  6587. CType(Me.NumericUpDown17, System.ComponentModel.ISupportInitialize).EndInit()
  6588. CType(Me.NumericUpDown16, System.ComponentModel.ISupportInitialize).EndInit()
  6589. CType(Me.NumericUpDown15, System.ComponentModel.ISupportInitialize).EndInit()
  6590. CType(Me.NumericUpDown14, System.ComponentModel.ISupportInitialize).EndInit()
  6591. CType(Me.NumericUpDown13, System.ComponentModel.ISupportInitialize).EndInit()
  6592. CType(Me.NumericUpDown12, System.ComponentModel.ISupportInitialize).EndInit()
  6593. CType(Me.NumericUpDown11, System.ComponentModel.ISupportInitialize).EndInit()
  6594. CType(Me.NumericUpDown10, System.ComponentModel.ISupportInitialize).EndInit()
  6595. CType(Me.NumericUpDown9, System.ComponentModel.ISupportInitialize).EndInit()
  6596. CType(Me.NumericUpDown8, System.ComponentModel.ISupportInitialize).EndInit()
  6597. CType(Me.NumericUpDown7, System.ComponentModel.ISupportInitialize).EndInit()
  6598. CType(Me.NumericUpDown6, System.ComponentModel.ISupportInitialize).EndInit()
  6599. CType(Me.NumericUpDown5, System.ComponentModel.ISupportInitialize).EndInit()
  6600. CType(Me.NumericUpDown4, System.ComponentModel.ISupportInitialize).EndInit()
  6601. CType(Me.NumericUpDown3, System.ComponentModel.ISupportInitialize).EndInit()
  6602. CType(Me.NumericUpDown2, System.ComponentModel.ISupportInitialize).EndInit()
  6603. CType(Me.NumericUpDown1, System.ComponentModel.ISupportInitialize).EndInit()
  6604. CType(Me.NUP1, System.ComponentModel.ISupportInitialize).EndInit()
  6605. Me.ResumeLayout(False)
  6606. Me.PerformLayout()
  6607. End Sub
  6608. Friend WithEvents TextBox62 As TextBox
  6609. Friend WithEvents TextBox61 As TextBox
  6610. Friend WithEvents TextBox60 As TextBox
  6611. Friend WithEvents TextBox59 As TextBox
  6612. Friend WithEvents TextBox58 As TextBox
  6613. Friend WithEvents TextBox57 As TextBox
  6614. Friend WithEvents TextBox56 As TextBox
  6615. Friend WithEvents TextBox55 As TextBox
  6616. Friend WithEvents TextBox54 As TextBox
  6617. Friend WithEvents TextBox53 As TextBox
  6618. Friend WithEvents TextBox52 As TextBox
  6619. Friend WithEvents TextBox51 As TextBox
  6620. Friend WithEvents TextBox50 As TextBox
  6621. Friend WithEvents TextBox49 As TextBox
  6622. Friend WithEvents TextBox48 As TextBox
  6623. Friend WithEvents TextBox47 As TextBox
  6624. Friend WithEvents TextBox46 As TextBox
  6625. Friend WithEvents TextBox45 As TextBox
  6626. Friend WithEvents TextBox44 As TextBox
  6627. Friend WithEvents TextBox43 As TextBox
  6628. Friend WithEvents TextBox42 As TextBox
  6629. Friend WithEvents TextBox41 As TextBox
  6630. Friend WithEvents TextBox40 As TextBox
  6631. Friend WithEvents TextBox39 As TextBox
  6632. Friend WithEvents TextBox38 As TextBox
  6633. Friend WithEvents TextBox37 As TextBox
  6634. Friend WithEvents TextBox36 As TextBox
  6635. Friend WithEvents TextBox35 As TextBox
  6636. Friend WithEvents TextBox34 As TextBox
  6637. Friend WithEvents TextBox33 As TextBox
  6638. Friend WithEvents TextBox32 As TextBox
  6639. Friend WithEvents ComboBox124 As ComboBox
  6640. Friend WithEvents ComboBox123 As ComboBox
  6641. Friend WithEvents ComboBox122 As ComboBox
  6642. Friend WithEvents ComboBox121 As ComboBox
  6643. Friend WithEvents ComboBox120 As ComboBox
  6644. Friend WithEvents ComboBox119 As ComboBox
  6645. Friend WithEvents ComboBox118 As ComboBox
  6646. Friend WithEvents ComboBox117 As ComboBox
  6647. Friend WithEvents ComboBox116 As ComboBox
  6648. Friend WithEvents ComboBox115 As ComboBox
  6649. Friend WithEvents ComboBox114 As ComboBox
  6650. Friend WithEvents ComboBox113 As ComboBox
  6651. Friend WithEvents ComboBox112 As ComboBox
  6652. Friend WithEvents ComboBox111 As ComboBox
  6653. Friend WithEvents ComboBox110 As ComboBox
  6654. Friend WithEvents ComboBox109 As ComboBox
  6655. Friend WithEvents ComboBox108 As ComboBox
  6656. Friend WithEvents ComboBox107 As ComboBox
  6657. Friend WithEvents ComboBox106 As ComboBox
  6658. Friend WithEvents ComboBox105 As ComboBox
  6659. Friend WithEvents ComboBox104 As ComboBox
  6660. Friend WithEvents ComboBox103 As ComboBox
  6661. Friend WithEvents ComboBox102 As ComboBox
  6662. Friend WithEvents ComboBox101 As ComboBox
  6663. Friend WithEvents ComboBox100 As ComboBox
  6664. Friend WithEvents ComboBox99 As ComboBox
  6665. Friend WithEvents ComboBox98 As ComboBox
  6666. Friend WithEvents ComboBox97 As ComboBox
  6667. Friend WithEvents ComboBox96 As ComboBox
  6668. Friend WithEvents ComboBox95 As ComboBox
  6669. Friend WithEvents ComboBox94 As ComboBox
  6670. Friend WithEvents ComboBox93 As ComboBox
  6671. Friend WithEvents ComboBox92 As ComboBox
  6672. Friend WithEvents ComboBox91 As ComboBox
  6673. Friend WithEvents ComboBox90 As ComboBox
  6674. Friend WithEvents ComboBox89 As ComboBox
  6675. Friend WithEvents ComboBox88 As ComboBox
  6676. Friend WithEvents ComboBox87 As ComboBox
  6677. Friend WithEvents ComboBox86 As ComboBox
  6678. Friend WithEvents ComboBox85 As ComboBox
  6679. Friend WithEvents ComboBox84 As ComboBox
  6680. Friend WithEvents ComboBox83 As ComboBox
  6681. Friend WithEvents ComboBox82 As ComboBox
  6682. Friend WithEvents ComboBox81 As ComboBox
  6683. Friend WithEvents ComboBox80 As ComboBox
  6684. Friend WithEvents ComboBox79 As ComboBox
  6685. Friend WithEvents ComboBox78 As ComboBox
  6686. Friend WithEvents ComboBox77 As ComboBox
  6687. Friend WithEvents ComboBox76 As ComboBox
  6688. Friend WithEvents ComboBox75 As ComboBox
  6689. Friend WithEvents ComboBox74 As ComboBox
  6690. Friend WithEvents ComboBox73 As ComboBox
  6691. Friend WithEvents ComboBox72 As ComboBox
  6692. Friend WithEvents ComboBox71 As ComboBox
  6693. Friend WithEvents ComboBox70 As ComboBox
  6694. Friend WithEvents ComboBox69 As ComboBox
  6695. Friend WithEvents ComboBox68 As ComboBox
  6696. Friend WithEvents ComboBox67 As ComboBox
  6697. Friend WithEvents ComboBox66 As ComboBox
  6698. Friend WithEvents ComboBox65 As ComboBox
  6699. Friend WithEvents ComboBox64 As ComboBox
  6700. Friend WithEvents ComboBox63 As ComboBox
  6701. Friend WithEvents 星期_dgv As DataGridView
  6702. Friend WithEvents TextBox31 As TextBox
  6703. Friend WithEvents TextBox30 As TextBox
  6704. Friend WithEvents TextBox29 As TextBox
  6705. Friend WithEvents TextBox28 As TextBox
  6706. Friend WithEvents TextBox27 As TextBox
  6707. Friend WithEvents TextBox26 As TextBox
  6708. Friend WithEvents TextBox25 As TextBox
  6709. Friend WithEvents TextBox24 As TextBox
  6710. Friend WithEvents TextBox23 As TextBox
  6711. Friend WithEvents TextBox22 As TextBox
  6712. Friend WithEvents TextBox21 As TextBox
  6713. Friend WithEvents TextBox20 As TextBox
  6714. Friend WithEvents TextBox19 As TextBox
  6715. Friend WithEvents TextBox18 As TextBox
  6716. Friend WithEvents TextBox17 As TextBox
  6717. Friend WithEvents TextBox16 As TextBox
  6718. Friend WithEvents TextBox15 As TextBox
  6719. Friend WithEvents TextBox14 As TextBox
  6720. Friend WithEvents TextBox13 As TextBox
  6721. Friend WithEvents TextBox12 As TextBox
  6722. Friend WithEvents TextBox11 As TextBox
  6723. Friend WithEvents TextBox10 As TextBox
  6724. Friend WithEvents TextBox9 As TextBox
  6725. Friend WithEvents TextBox8 As TextBox
  6726. Friend WithEvents TextBox7 As TextBox
  6727. Friend WithEvents TextBox6 As TextBox
  6728. Friend WithEvents TextBox5 As TextBox
  6729. Friend WithEvents TextBox4 As TextBox
  6730. Friend WithEvents TextBox3 As TextBox
  6731. Friend WithEvents TextBox2 As TextBox
  6732. Friend WithEvents TextBox1 As TextBox
  6733. Friend WithEvents 排班明細_dgv As DataGridView
  6734. Friend WithEvents 月_lb As Label
  6735. Friend WithEvents Label103 As Label
  6736. Friend WithEvents 年_lb As Label
  6737. Friend WithEvents 姓名_tb31 As TextBox
  6738. Friend WithEvents 姓名_tb30 As TextBox
  6739. Friend WithEvents 姓名_tb29 As TextBox
  6740. Friend WithEvents 姓名_tb28 As TextBox
  6741. Friend WithEvents 姓名_tb27 As TextBox
  6742. Friend WithEvents 姓名_tb26 As TextBox
  6743. Friend WithEvents 姓名_tb25 As TextBox
  6744. Friend WithEvents 姓名_tb24 As TextBox
  6745. Friend WithEvents 姓名_tb23 As TextBox
  6746. Friend WithEvents 姓名_tb22 As TextBox
  6747. Friend WithEvents 姓名_tb21 As TextBox
  6748. Friend WithEvents NUP31 As NumericUpDown
  6749. Friend WithEvents NUP30 As NumericUpDown
  6750. Friend WithEvents NUP29 As NumericUpDown
  6751. Friend WithEvents NUP28 As NumericUpDown
  6752. Friend WithEvents NUP27 As NumericUpDown
  6753. Friend WithEvents NUP26 As NumericUpDown
  6754. Friend WithEvents NUP25 As NumericUpDown
  6755. Friend WithEvents NUP24 As NumericUpDown
  6756. Friend WithEvents NUP23 As NumericUpDown
  6757. Friend WithEvents NUP22 As NumericUpDown
  6758. Friend WithEvents NUP21 As NumericUpDown
  6759. Friend WithEvents 班別_cb31 As ComboBox
  6760. Friend WithEvents 班別_cb30 As ComboBox
  6761. Friend WithEvents 班別_cb29 As ComboBox
  6762. Friend WithEvents 班別_cb28 As ComboBox
  6763. Friend WithEvents 班別_cb27 As ComboBox
  6764. Friend WithEvents 班別_cb26 As ComboBox
  6765. Friend WithEvents 班別_cb25 As ComboBox
  6766. Friend WithEvents 班別_cb24 As ComboBox
  6767. Friend WithEvents 班別_cb23 As ComboBox
  6768. Friend WithEvents 班別_cb22 As ComboBox
  6769. Friend WithEvents 班別_cb21 As ComboBox
  6770. Friend WithEvents NumericUpDown31 As NumericUpDown
  6771. Friend WithEvents NumericUpDown30 As NumericUpDown
  6772. Friend WithEvents NumericUpDown29 As NumericUpDown
  6773. Friend WithEvents NumericUpDown28 As NumericUpDown
  6774. Friend WithEvents NumericUpDown27 As NumericUpDown
  6775. Friend WithEvents NumericUpDown26 As NumericUpDown
  6776. Friend WithEvents NumericUpDown25 As NumericUpDown
  6777. Friend WithEvents NumericUpDown24 As NumericUpDown
  6778. Friend WithEvents NumericUpDown23 As NumericUpDown
  6779. Friend WithEvents NumericUpDown22 As NumericUpDown
  6780. Friend WithEvents NumericUpDown21 As NumericUpDown
  6781. Friend WithEvents ComboBox62 As ComboBox
  6782. Friend WithEvents ComboBox61 As ComboBox
  6783. Friend WithEvents ComboBox60 As ComboBox
  6784. Friend WithEvents ComboBox59 As ComboBox
  6785. Friend WithEvents ComboBox58 As ComboBox
  6786. Friend WithEvents ComboBox57 As ComboBox
  6787. Friend WithEvents ComboBox56 As ComboBox
  6788. Friend WithEvents ComboBox55 As ComboBox
  6789. Friend WithEvents ComboBox54 As ComboBox
  6790. Friend WithEvents ComboBox53 As ComboBox
  6791. Friend WithEvents ComboBox52 As ComboBox
  6792. Friend WithEvents ComboBox51 As ComboBox
  6793. Friend WithEvents ComboBox50 As ComboBox
  6794. Friend WithEvents ComboBox49 As ComboBox
  6795. Friend WithEvents ComboBox48 As ComboBox
  6796. Friend WithEvents ComboBox47 As ComboBox
  6797. Friend WithEvents ComboBox46 As ComboBox
  6798. Friend WithEvents ComboBox45 As ComboBox
  6799. Friend WithEvents ComboBox44 As ComboBox
  6800. Friend WithEvents ComboBox43 As ComboBox
  6801. Friend WithEvents ComboBox42 As ComboBox
  6802. Friend WithEvents ComboBox41 As ComboBox
  6803. Friend WithEvents A_pb62 As ProgressBar
  6804. Friend WithEvents A_pb61 As ProgressBar
  6805. Friend WithEvents A_pb60 As ProgressBar
  6806. Friend WithEvents A_pb59 As ProgressBar
  6807. Friend WithEvents A_pb58 As ProgressBar
  6808. Friend WithEvents A_pb57 As ProgressBar
  6809. Friend WithEvents A_pb56 As ProgressBar
  6810. Friend WithEvents A_pb55 As ProgressBar
  6811. Friend WithEvents A_pb54 As ProgressBar
  6812. Friend WithEvents A_pb53 As ProgressBar
  6813. Friend WithEvents A_pb52 As ProgressBar
  6814. Friend WithEvents A_pb51 As ProgressBar
  6815. Friend WithEvents A_pb50 As ProgressBar
  6816. Friend WithEvents A_pb49 As ProgressBar
  6817. Friend WithEvents A_pb48 As ProgressBar
  6818. Friend WithEvents A_pb47 As ProgressBar
  6819. Friend WithEvents A_pb46 As ProgressBar
  6820. Friend WithEvents A_pb45 As ProgressBar
  6821. Friend WithEvents A_pb44 As ProgressBar
  6822. Friend WithEvents A_pb43 As ProgressBar
  6823. Friend WithEvents A_pb42 As ProgressBar
  6824. Friend WithEvents A_pb41 As ProgressBar
  6825. Friend WithEvents ComboBox40 As ComboBox
  6826. Friend WithEvents ComboBox39 As ComboBox
  6827. Friend WithEvents ComboBox38 As ComboBox
  6828. Friend WithEvents ComboBox37 As ComboBox
  6829. Friend WithEvents ComboBox36 As ComboBox
  6830. Friend WithEvents ComboBox35 As ComboBox
  6831. Friend WithEvents ComboBox34 As ComboBox
  6832. Friend WithEvents ComboBox33 As ComboBox
  6833. Friend WithEvents ComboBox32 As ComboBox
  6834. Friend WithEvents ComboBox31 As ComboBox
  6835. Friend WithEvents ComboBox30 As ComboBox
  6836. Friend WithEvents ComboBox29 As ComboBox
  6837. Friend WithEvents ComboBox28 As ComboBox
  6838. Friend WithEvents ComboBox27 As ComboBox
  6839. Friend WithEvents ComboBox26 As ComboBox
  6840. Friend WithEvents ComboBox25 As ComboBox
  6841. Friend WithEvents ComboBox24 As ComboBox
  6842. Friend WithEvents ComboBox23 As ComboBox
  6843. Friend WithEvents ComboBox22 As ComboBox
  6844. Friend WithEvents ComboBox21 As ComboBox
  6845. Friend WithEvents ComboBox20 As ComboBox
  6846. Friend WithEvents ComboBox19 As ComboBox
  6847. Friend WithEvents ComboBox18 As ComboBox
  6848. Friend WithEvents ComboBox17 As ComboBox
  6849. Friend WithEvents ComboBox16 As ComboBox
  6850. Friend WithEvents ComboBox15 As ComboBox
  6851. Friend WithEvents ComboBox14 As ComboBox
  6852. Friend WithEvents ComboBox13 As ComboBox
  6853. Friend WithEvents ComboBox12 As ComboBox
  6854. Friend WithEvents ComboBox11 As ComboBox
  6855. Friend WithEvents ComboBox10 As ComboBox
  6856. Friend WithEvents ComboBox9 As ComboBox
  6857. Friend WithEvents ComboBox8 As ComboBox
  6858. Friend WithEvents ComboBox7 As ComboBox
  6859. Friend WithEvents ComboBox6 As ComboBox
  6860. Friend WithEvents ComboBox5 As ComboBox
  6861. Friend WithEvents ComboBox4 As ComboBox
  6862. Friend WithEvents ComboBox3 As ComboBox
  6863. Friend WithEvents ComboBox2 As ComboBox
  6864. Friend WithEvents ComboBox1 As ComboBox
  6865. Friend WithEvents Label93 As Label
  6866. Friend WithEvents Label92 As Label
  6867. Friend WithEvents Label90 As Label
  6868. Friend WithEvents NUP20 As NumericUpDown
  6869. Friend WithEvents NUP19 As NumericUpDown
  6870. Friend WithEvents NUP18 As NumericUpDown
  6871. Friend WithEvents NUP17 As NumericUpDown
  6872. Friend WithEvents NUP16 As NumericUpDown
  6873. Friend WithEvents NUP15 As NumericUpDown
  6874. Friend WithEvents NUP14 As NumericUpDown
  6875. Friend WithEvents NUP13 As NumericUpDown
  6876. Friend WithEvents NUP12 As NumericUpDown
  6877. Friend WithEvents NUP11 As NumericUpDown
  6878. Friend WithEvents NUP10 As NumericUpDown
  6879. Friend WithEvents NUP9 As NumericUpDown
  6880. Friend WithEvents NUP8 As NumericUpDown
  6881. Friend WithEvents NUP7 As NumericUpDown
  6882. Friend WithEvents NUP6 As NumericUpDown
  6883. Friend WithEvents NUP5 As NumericUpDown
  6884. Friend WithEvents NUP4 As NumericUpDown
  6885. Friend WithEvents NUP3 As NumericUpDown
  6886. Friend WithEvents NUP2 As NumericUpDown
  6887. Friend WithEvents NumericUpDown20 As NumericUpDown
  6888. Friend WithEvents CheckBox20 As CheckBox
  6889. Friend WithEvents NumericUpDown19 As NumericUpDown
  6890. Friend WithEvents CheckBox19 As CheckBox
  6891. Friend WithEvents NumericUpDown18 As NumericUpDown
  6892. Friend WithEvents CheckBox18 As CheckBox
  6893. Friend WithEvents NumericUpDown17 As NumericUpDown
  6894. Friend WithEvents CheckBox17 As CheckBox
  6895. Friend WithEvents NumericUpDown16 As NumericUpDown
  6896. Friend WithEvents CheckBox16 As CheckBox
  6897. Friend WithEvents NumericUpDown15 As NumericUpDown
  6898. Friend WithEvents CheckBox15 As CheckBox
  6899. Friend WithEvents NumericUpDown14 As NumericUpDown
  6900. Friend WithEvents CheckBox14 As CheckBox
  6901. Friend WithEvents NumericUpDown13 As NumericUpDown
  6902. Friend WithEvents CheckBox13 As CheckBox
  6903. Friend WithEvents NumericUpDown12 As NumericUpDown
  6904. Friend WithEvents CheckBox12 As CheckBox
  6905. Friend WithEvents NumericUpDown11 As NumericUpDown
  6906. Friend WithEvents CheckBox11 As CheckBox
  6907. Friend WithEvents NumericUpDown10 As NumericUpDown
  6908. Friend WithEvents CheckBox10 As CheckBox
  6909. Friend WithEvents NumericUpDown9 As NumericUpDown
  6910. Friend WithEvents CheckBox9 As CheckBox
  6911. Friend WithEvents NumericUpDown8 As NumericUpDown
  6912. Friend WithEvents CheckBox8 As CheckBox
  6913. Friend WithEvents NumericUpDown7 As NumericUpDown
  6914. Friend WithEvents CheckBox7 As CheckBox
  6915. Friend WithEvents NumericUpDown6 As NumericUpDown
  6916. Friend WithEvents CheckBox6 As CheckBox
  6917. Friend WithEvents NumericUpDown5 As NumericUpDown
  6918. Friend WithEvents CheckBox5 As CheckBox
  6919. Friend WithEvents NumericUpDown4 As NumericUpDown
  6920. Friend WithEvents CheckBox4 As CheckBox
  6921. Friend WithEvents NumericUpDown3 As NumericUpDown
  6922. Friend WithEvents CheckBox3 As CheckBox
  6923. Friend WithEvents NumericUpDown2 As NumericUpDown
  6924. Friend WithEvents CheckBox2 As CheckBox
  6925. Friend WithEvents NumericUpDown1 As NumericUpDown
  6926. Friend WithEvents CheckBox1 As CheckBox
  6927. Friend WithEvents 姓名_tb20 As TextBox
  6928. Friend WithEvents 姓名_tb19 As TextBox
  6929. Friend WithEvents 姓名_tb18 As TextBox
  6930. Friend WithEvents 姓名_tb17 As TextBox
  6931. Friend WithEvents 姓名_tb16 As TextBox
  6932. Friend WithEvents 姓名_tb15 As TextBox
  6933. Friend WithEvents 姓名_tb14 As TextBox
  6934. Friend WithEvents 姓名_tb13 As TextBox
  6935. Friend WithEvents 姓名_tb12 As TextBox
  6936. Friend WithEvents 姓名_tb11 As TextBox
  6937. Friend WithEvents 姓名_tb10 As TextBox
  6938. Friend WithEvents 姓名_tb9 As TextBox
  6939. Friend WithEvents 姓名_tb8 As TextBox
  6940. Friend WithEvents 姓名_tb7 As TextBox
  6941. Friend WithEvents 姓名_tb6 As TextBox
  6942. Friend WithEvents 姓名_tb5 As TextBox
  6943. Friend WithEvents 姓名_tb4 As TextBox
  6944. Friend WithEvents 姓名_tb3 As TextBox
  6945. Friend WithEvents 姓名_tb2 As TextBox
  6946. Friend WithEvents 姓名_tb1 As TextBox
  6947. Friend WithEvents 班別_cb20 As ComboBox
  6948. Friend WithEvents 班別_cb19 As ComboBox
  6949. Friend WithEvents 班別_cb18 As ComboBox
  6950. Friend WithEvents 班別_cb17 As ComboBox
  6951. Friend WithEvents 班別_cb16 As ComboBox
  6952. Friend WithEvents 班別_cb15 As ComboBox
  6953. Friend WithEvents 班別_cb14 As ComboBox
  6954. Friend WithEvents 班別_cb13 As ComboBox
  6955. Friend WithEvents 班別_cb12 As ComboBox
  6956. Friend WithEvents 班別_cb11 As ComboBox
  6957. Friend WithEvents 班別_cb10 As ComboBox
  6958. Friend WithEvents 班別_cb9 As ComboBox
  6959. Friend WithEvents 班別_cb8 As ComboBox
  6960. Friend WithEvents 班別_cb7 As ComboBox
  6961. Friend WithEvents 班別_cb6 As ComboBox
  6962. Friend WithEvents 班別_cb5 As ComboBox
  6963. Friend WithEvents 班別_cb4 As ComboBox
  6964. Friend WithEvents 班別_cb3 As ComboBox
  6965. Friend WithEvents 班別_cb2 As ComboBox
  6966. Friend WithEvents 班別_cb1 As ComboBox
  6967. Friend WithEvents Label69 As Label
  6968. Friend WithEvents A_pb40 As ProgressBar
  6969. Friend WithEvents A_pb39 As ProgressBar
  6970. Friend WithEvents A_pb38 As ProgressBar
  6971. Friend WithEvents A_pb37 As ProgressBar
  6972. Friend WithEvents A_pb36 As ProgressBar
  6973. Friend WithEvents A_pb35 As ProgressBar
  6974. Friend WithEvents A_pb34 As ProgressBar
  6975. Friend WithEvents A_pb33 As ProgressBar
  6976. Friend WithEvents A_pb32 As ProgressBar
  6977. Friend WithEvents A_pb31 As ProgressBar
  6978. Friend WithEvents A_pb30 As ProgressBar
  6979. Friend WithEvents A_pb29 As ProgressBar
  6980. Friend WithEvents A_pb28 As ProgressBar
  6981. Friend WithEvents A_pb27 As ProgressBar
  6982. Friend WithEvents A_pb26 As ProgressBar
  6983. Friend WithEvents A_pb25 As ProgressBar
  6984. Friend WithEvents A_pb24 As ProgressBar
  6985. Friend WithEvents A_pb23 As ProgressBar
  6986. Friend WithEvents A_pb22 As ProgressBar
  6987. Friend WithEvents A_pb21 As ProgressBar
  6988. Friend WithEvents A_pb20 As ProgressBar
  6989. Friend WithEvents A_pb19 As ProgressBar
  6990. Friend WithEvents A_pb18 As ProgressBar
  6991. Friend WithEvents A_pb17 As ProgressBar
  6992. Friend WithEvents A_pb16 As ProgressBar
  6993. Friend WithEvents A_pb15 As ProgressBar
  6994. Friend WithEvents A_pb14 As ProgressBar
  6995. Friend WithEvents A_pb13 As ProgressBar
  6996. Friend WithEvents A_pb12 As ProgressBar
  6997. Friend WithEvents A_pb11 As ProgressBar
  6998. Friend WithEvents A_pb10 As ProgressBar
  6999. Friend WithEvents A_pb9 As ProgressBar
  7000. Friend WithEvents A_pb8 As ProgressBar
  7001. Friend WithEvents A_pb7 As ProgressBar
  7002. Friend WithEvents A_pb6 As ProgressBar
  7003. Friend WithEvents A_pb5 As ProgressBar
  7004. Friend WithEvents A_pb4 As ProgressBar
  7005. Friend WithEvents A_pb3 As ProgressBar
  7006. Friend WithEvents A_pb2 As ProgressBar
  7007. Friend WithEvents A_pb1 As ProgressBar
  7008. Friend WithEvents Label68 As Label
  7009. Friend WithEvents Label67 As Label
  7010. Friend WithEvents Label66 As Label
  7011. Friend WithEvents Label65 As Label
  7012. Friend WithEvents Label64 As Label
  7013. Friend WithEvents Label63 As Label
  7014. Friend WithEvents Label62 As Label
  7015. Friend WithEvents Label61 As Label
  7016. Friend WithEvents Label60 As Label
  7017. Friend WithEvents Label59 As Label
  7018. Friend WithEvents Label58 As Label
  7019. Friend WithEvents Label57 As Label
  7020. Friend WithEvents Label56 As Label
  7021. Friend WithEvents Label55 As Label
  7022. Friend WithEvents Label54 As Label
  7023. Friend WithEvents Label53 As Label
  7024. Friend WithEvents Label52 As Label
  7025. Friend WithEvents Label50 As Label
  7026. Friend WithEvents Label49 As Label
  7027. Friend WithEvents Label48 As Label
  7028. Friend WithEvents Label47 As Label
  7029. Friend WithEvents Label46 As Label
  7030. Friend WithEvents Label45 As Label
  7031. Friend WithEvents Label44 As Label
  7032. Friend WithEvents Label43 As Label
  7033. Friend WithEvents Label42 As Label
  7034. Friend WithEvents Label41 As Label
  7035. Friend WithEvents Label40 As Label
  7036. Friend WithEvents Label39 As Label
  7037. Friend WithEvents Label38 As Label
  7038. Friend WithEvents Label37 As Label
  7039. Friend WithEvents Label36 As Label
  7040. Friend WithEvents Label35 As Label
  7041. Friend WithEvents Label34 As Label
  7042. Friend WithEvents Label33 As Label
  7043. Friend WithEvents Label32 As Label
  7044. Friend WithEvents Label31 As Label
  7045. Friend WithEvents Label30 As Label
  7046. Friend WithEvents Label29 As Label
  7047. Friend WithEvents Label28 As Label
  7048. Friend WithEvents Label27 As Label
  7049. Friend WithEvents Label26 As Label
  7050. Friend WithEvents Label25 As Label
  7051. Friend WithEvents Label24 As Label
  7052. Friend WithEvents Label23 As Label
  7053. Friend WithEvents Label22 As Label
  7054. Friend WithEvents Label21 As Label
  7055. Friend WithEvents Label20 As Label
  7056. Friend WithEvents Label19 As Label
  7057. Friend WithEvents Label18 As Label
  7058. Friend WithEvents Label17 As Label
  7059. Friend WithEvents Label16 As Label
  7060. Friend WithEvents Label15 As Label
  7061. Friend WithEvents Label14 As Label
  7062. Friend WithEvents Label13 As Label
  7063. Friend WithEvents Label12 As Label
  7064. Friend WithEvents Label11 As Label
  7065. Friend WithEvents Label10 As Label
  7066. Friend WithEvents Label9 As Label
  7067. Friend WithEvents Label8 As Label
  7068. Friend WithEvents Label7 As Label
  7069. Friend WithEvents Label6 As Label
  7070. Friend WithEvents Label5 As Label
  7071. Friend WithEvents Label4 As Label
  7072. Friend WithEvents Label3 As Label
  7073. Friend WithEvents Label2 As Label
  7074. Friend WithEvents Label1 As Label
  7075. Friend WithEvents Label51 As Label
  7076. Friend WithEvents Label70 As Label
  7077. Friend WithEvents Label71 As Label
  7078. Friend WithEvents Label72 As Label
  7079. Friend WithEvents Label73 As Label
  7080. Friend WithEvents Label74 As Label
  7081. Friend WithEvents Label75 As Label
  7082. Friend WithEvents Label76 As Label
  7083. Friend WithEvents Label77 As Label
  7084. Friend WithEvents Label78 As Label
  7085. Friend WithEvents Label79 As Label
  7086. Friend WithEvents Label80 As Label
  7087. Friend WithEvents Label81 As Label
  7088. Friend WithEvents Label82 As Label
  7089. Friend WithEvents Label83 As Label
  7090. Friend WithEvents Label84 As Label
  7091. Friend WithEvents Label85 As Label
  7092. Friend WithEvents Label86 As Label
  7093. Friend WithEvents Label87 As Label
  7094. Friend WithEvents Label88 As Label
  7095. Friend WithEvents A_lb9 As Label
  7096. Friend WithEvents A_lb8 As Label
  7097. Friend WithEvents A_lb7 As Label
  7098. Friend WithEvents A_lb6 As Label
  7099. Friend WithEvents A_lb5 As Label
  7100. Friend WithEvents A_lb4 As Label
  7101. Friend WithEvents A_lb3 As Label
  7102. Friend WithEvents A_lb2 As Label
  7103. Friend WithEvents A_lb1 As Label
  7104. Friend WithEvents NUP1 As NumericUpDown
  7105. Friend WithEvents Label89 As Label
  7106. Friend WithEvents Label91 As Label
  7107. Friend WithEvents Label94 As Label
  7108. Friend WithEvents Label95 As Label
  7109. Friend WithEvents Label96 As Label
  7110. Friend WithEvents Label97 As Label
  7111. Friend WithEvents Label98 As Label
  7112. Friend WithEvents Label99 As Label
  7113. Friend WithEvents Label100 As Label
  7114. Friend WithEvents Label101 As Label
  7115. Friend WithEvents Label102 As Label
  7116. Friend WithEvents CheckBox31 As CheckBox
  7117. Friend WithEvents CheckBox30 As CheckBox
  7118. Friend WithEvents CheckBox29 As CheckBox
  7119. Friend WithEvents CheckBox28 As CheckBox
  7120. Friend WithEvents CheckBox27 As CheckBox
  7121. Friend WithEvents CheckBox26 As CheckBox
  7122. Friend WithEvents CheckBox25 As CheckBox
  7123. Friend WithEvents CheckBox24 As CheckBox
  7124. Friend WithEvents CheckBox23 As CheckBox
  7125. Friend WithEvents CheckBox22 As CheckBox
  7126. Friend WithEvents CheckBox21 As CheckBox
  7127. Friend WithEvents Label104 As Label
  7128. Friend WithEvents A_lb31 As Label
  7129. Friend WithEvents A_lb30 As Label
  7130. Friend WithEvents A_lb29 As Label
  7131. Friend WithEvents A_lb28 As Label
  7132. Friend WithEvents A_lb27 As Label
  7133. Friend WithEvents A_lb26 As Label
  7134. Friend WithEvents A_lb25 As Label
  7135. Friend WithEvents A_lb24 As Label
  7136. Friend WithEvents A_lb23 As Label
  7137. Friend WithEvents A_lb22 As Label
  7138. Friend WithEvents A_lb21 As Label
  7139. Friend WithEvents A_lb20 As Label
  7140. Friend WithEvents A_lb19 As Label
  7141. Friend WithEvents A_lb18 As Label
  7142. Friend WithEvents A_lb17 As Label
  7143. Friend WithEvents A_lb16 As Label
  7144. Friend WithEvents A_lb15 As Label
  7145. Friend WithEvents A_lb14 As Label
  7146. Friend WithEvents A_lb13 As Label
  7147. Friend WithEvents A_lb12 As Label
  7148. Friend WithEvents A_lb11 As Label
  7149. Friend WithEvents A_lb10 As Label
  7150. End Class