설명 없음
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 306KB

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