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

排班明細_參考.Designer.vb 357KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924
  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 resources As System.ComponentModel.ComponentResourceManager = New System.ComponentModel.ComponentResourceManager(GetType(排班明細_參考))
  23. Dim DataGridViewCellStyle1 As System.Windows.Forms.DataGridViewCellStyle = New System.Windows.Forms.DataGridViewCellStyle()
  24. Dim DataGridViewCellStyle2 As System.Windows.Forms.DataGridViewCellStyle = New System.Windows.Forms.DataGridViewCellStyle()
  25. Me.Label102 = New System.Windows.Forms.Label()
  26. Me.Label103 = New System.Windows.Forms.Label()
  27. Me.Label104 = New System.Windows.Forms.Label()
  28. Me.Label105 = New System.Windows.Forms.Label()
  29. Me.Label106 = New System.Windows.Forms.Label()
  30. Me.Label107 = New System.Windows.Forms.Label()
  31. Me.Label108 = New System.Windows.Forms.Label()
  32. Me.Label109 = New System.Windows.Forms.Label()
  33. Me.Label110 = New System.Windows.Forms.Label()
  34. Me.Label111 = New System.Windows.Forms.Label()
  35. Me.Label112 = New System.Windows.Forms.Label()
  36. Me.Label113 = New System.Windows.Forms.Label()
  37. Me.Label114 = New System.Windows.Forms.Label()
  38. Me.Label115 = New System.Windows.Forms.Label()
  39. Me.Label116 = New System.Windows.Forms.Label()
  40. Me.Label117 = New System.Windows.Forms.Label()
  41. Me.Label118 = New System.Windows.Forms.Label()
  42. Me.Label119 = New System.Windows.Forms.Label()
  43. Me.Label120 = New System.Windows.Forms.Label()
  44. Me.Label121 = New System.Windows.Forms.Label()
  45. Me.Label122 = New System.Windows.Forms.Label()
  46. Me.Label123 = New System.Windows.Forms.Label()
  47. Me.Label124 = New System.Windows.Forms.Label()
  48. Me.Label125 = New System.Windows.Forms.Label()
  49. Me.Label126 = New System.Windows.Forms.Label()
  50. Me.Label127 = New System.Windows.Forms.Label()
  51. Me.Label128 = New System.Windows.Forms.Label()
  52. Me.Label129 = New System.Windows.Forms.Label()
  53. Me.Label130 = New System.Windows.Forms.Label()
  54. Me.Label131 = New System.Windows.Forms.Label()
  55. Me.Label132 = New System.Windows.Forms.Label()
  56. Me.Label133 = New System.Windows.Forms.Label()
  57. Me.Label134 = New System.Windows.Forms.Label()
  58. Me.Label135 = New System.Windows.Forms.Label()
  59. Me.Label136 = New System.Windows.Forms.Label()
  60. Me.Label137 = New System.Windows.Forms.Label()
  61. Me.Label138 = New System.Windows.Forms.Label()
  62. Me.Label139 = New System.Windows.Forms.Label()
  63. Me.Label140 = New System.Windows.Forms.Label()
  64. Me.Label141 = New System.Windows.Forms.Label()
  65. Me.Label142 = New System.Windows.Forms.Label()
  66. Me.Label143 = New System.Windows.Forms.Label()
  67. Me.Label144 = New System.Windows.Forms.Label()
  68. Me.Label145 = New System.Windows.Forms.Label()
  69. Me.Label146 = New System.Windows.Forms.Label()
  70. Me.Label147 = New System.Windows.Forms.Label()
  71. Me.Label148 = New System.Windows.Forms.Label()
  72. Me.Label149 = New System.Windows.Forms.Label()
  73. Me.Label150 = New System.Windows.Forms.Label()
  74. Me.Label151 = New System.Windows.Forms.Label()
  75. Me.Label152 = New System.Windows.Forms.Label()
  76. Me.Label101 = New System.Windows.Forms.Label()
  77. Me.值日生1_bt = New System.Windows.Forms.TextBox()
  78. Me.值日生2_bt = New System.Windows.Forms.TextBox()
  79. Me.解鎖_ch = New System.Windows.Forms.CheckBox()
  80. Me.簽核_bt = New System.Windows.Forms.Button()
  81. Me.TextBox10 = New System.Windows.Forms.TextBox()
  82. Me.ComboBox80 = New System.Windows.Forms.ComboBox()
  83. Me.ComboBox79 = New System.Windows.Forms.ComboBox()
  84. Me.ComboBox78 = New System.Windows.Forms.ComboBox()
  85. Me.ComboBox77 = New System.Windows.Forms.ComboBox()
  86. Me.ComboBox76 = New System.Windows.Forms.ComboBox()
  87. Me.ComboBox75 = New System.Windows.Forms.ComboBox()
  88. Me.ComboBox74 = New System.Windows.Forms.ComboBox()
  89. Me.ComboBox73 = New System.Windows.Forms.ComboBox()
  90. Me.ComboBox72 = New System.Windows.Forms.ComboBox()
  91. Me.ComboBox71 = New System.Windows.Forms.ComboBox()
  92. Me.ComboBox70 = New System.Windows.Forms.ComboBox()
  93. Me.ComboBox69 = New System.Windows.Forms.ComboBox()
  94. Me.ComboBox68 = New System.Windows.Forms.ComboBox()
  95. Me.ComboBox67 = New System.Windows.Forms.ComboBox()
  96. Me.ComboBox66 = New System.Windows.Forms.ComboBox()
  97. Me.ComboBox65 = New System.Windows.Forms.ComboBox()
  98. Me.ComboBox64 = New System.Windows.Forms.ComboBox()
  99. Me.ComboBox63 = New System.Windows.Forms.ComboBox()
  100. Me.ComboBox62 = New System.Windows.Forms.ComboBox()
  101. Me.ComboBox61 = New System.Windows.Forms.ComboBox()
  102. Me.ComboBox60 = New System.Windows.Forms.ComboBox()
  103. Me.ComboBox59 = New System.Windows.Forms.ComboBox()
  104. Me.ComboBox58 = New System.Windows.Forms.ComboBox()
  105. Me.ComboBox57 = New System.Windows.Forms.ComboBox()
  106. Me.ComboBox56 = New System.Windows.Forms.ComboBox()
  107. Me.ComboBox55 = New System.Windows.Forms.ComboBox()
  108. Me.ComboBox54 = New System.Windows.Forms.ComboBox()
  109. Me.ComboBox53 = New System.Windows.Forms.ComboBox()
  110. Me.ComboBox52 = New System.Windows.Forms.ComboBox()
  111. Me.ComboBox51 = New System.Windows.Forms.ComboBox()
  112. Me.ComboBox50 = New System.Windows.Forms.ComboBox()
  113. Me.ComboBox49 = New System.Windows.Forms.ComboBox()
  114. Me.ComboBox48 = New System.Windows.Forms.ComboBox()
  115. Me.ComboBox47 = New System.Windows.Forms.ComboBox()
  116. Me.ComboBox46 = New System.Windows.Forms.ComboBox()
  117. Me.ComboBox45 = New System.Windows.Forms.ComboBox()
  118. Me.ComboBox44 = New System.Windows.Forms.ComboBox()
  119. Me.ComboBox43 = New System.Windows.Forms.ComboBox()
  120. Me.ComboBox42 = New System.Windows.Forms.ComboBox()
  121. Me.ComboBox41 = New System.Windows.Forms.ComboBox()
  122. Me.TextBox9 = New System.Windows.Forms.TextBox()
  123. Me.TextBox8 = New System.Windows.Forms.TextBox()
  124. Me.TextBox7 = New System.Windows.Forms.TextBox()
  125. Me.TextBox6 = New System.Windows.Forms.TextBox()
  126. Me.TextBox5 = New System.Windows.Forms.TextBox()
  127. Me.TextBox4 = New System.Windows.Forms.TextBox()
  128. Me.TextBox3 = New System.Windows.Forms.TextBox()
  129. Me.TextBox2 = New System.Windows.Forms.TextBox()
  130. Me.TextBox1 = New System.Windows.Forms.TextBox()
  131. Me.DTP1 = New System.Windows.Forms.DateTimePicker()
  132. Me.加一天_bt1 = New System.Windows.Forms.Button()
  133. Me.減一天_bt = New System.Windows.Forms.Button()
  134. Me.指定日期_dtp = New System.Windows.Forms.DateTimePicker()
  135. Me.Label96 = New System.Windows.Forms.Label()
  136. Me.ComboBox40 = New System.Windows.Forms.ComboBox()
  137. Me.ComboBox39 = New System.Windows.Forms.ComboBox()
  138. Me.ComboBox38 = New System.Windows.Forms.ComboBox()
  139. Me.ComboBox37 = New System.Windows.Forms.ComboBox()
  140. Me.ComboBox36 = New System.Windows.Forms.ComboBox()
  141. Me.ComboBox35 = New System.Windows.Forms.ComboBox()
  142. Me.ComboBox34 = New System.Windows.Forms.ComboBox()
  143. Me.ComboBox33 = New System.Windows.Forms.ComboBox()
  144. Me.ComboBox32 = New System.Windows.Forms.ComboBox()
  145. Me.ComboBox31 = New System.Windows.Forms.ComboBox()
  146. Me.ComboBox30 = New System.Windows.Forms.ComboBox()
  147. Me.ComboBox29 = New System.Windows.Forms.ComboBox()
  148. Me.ComboBox28 = New System.Windows.Forms.ComboBox()
  149. Me.ComboBox27 = New System.Windows.Forms.ComboBox()
  150. Me.ComboBox26 = New System.Windows.Forms.ComboBox()
  151. Me.ComboBox25 = New System.Windows.Forms.ComboBox()
  152. Me.ComboBox24 = New System.Windows.Forms.ComboBox()
  153. Me.ComboBox23 = New System.Windows.Forms.ComboBox()
  154. Me.ComboBox22 = New System.Windows.Forms.ComboBox()
  155. Me.ComboBox21 = New System.Windows.Forms.ComboBox()
  156. Me.ComboBox20 = New System.Windows.Forms.ComboBox()
  157. Me.ComboBox19 = New System.Windows.Forms.ComboBox()
  158. Me.ComboBox18 = New System.Windows.Forms.ComboBox()
  159. Me.ComboBox17 = New System.Windows.Forms.ComboBox()
  160. Me.ComboBox16 = New System.Windows.Forms.ComboBox()
  161. Me.ComboBox15 = New System.Windows.Forms.ComboBox()
  162. Me.ComboBox14 = New System.Windows.Forms.ComboBox()
  163. Me.ComboBox13 = New System.Windows.Forms.ComboBox()
  164. Me.ComboBox12 = New System.Windows.Forms.ComboBox()
  165. Me.ComboBox11 = New System.Windows.Forms.ComboBox()
  166. Me.ComboBox10 = New System.Windows.Forms.ComboBox()
  167. Me.ComboBox9 = New System.Windows.Forms.ComboBox()
  168. Me.ComboBox8 = New System.Windows.Forms.ComboBox()
  169. Me.ComboBox7 = New System.Windows.Forms.ComboBox()
  170. Me.ComboBox6 = New System.Windows.Forms.ComboBox()
  171. Me.ComboBox5 = New System.Windows.Forms.ComboBox()
  172. Me.ComboBox4 = New System.Windows.Forms.ComboBox()
  173. Me.ComboBox3 = New System.Windows.Forms.ComboBox()
  174. Me.ComboBox2 = New System.Windows.Forms.ComboBox()
  175. Me.ComboBox1 = New System.Windows.Forms.ComboBox()
  176. Me.B6_lb = New System.Windows.Forms.Label()
  177. Me.B5_lb = New System.Windows.Forms.Label()
  178. Me.B4_lb = New System.Windows.Forms.Label()
  179. Me.B3_lb = New System.Windows.Forms.Label()
  180. Me.B2_lb = New System.Windows.Forms.Label()
  181. Me.B1_lb = New System.Windows.Forms.Label()
  182. Me.Label100 = New System.Windows.Forms.Label()
  183. Me.Label99 = New System.Windows.Forms.Label()
  184. Me.Label98 = New System.Windows.Forms.Label()
  185. Me.美容_lb = New System.Windows.Forms.Label()
  186. Me.健保_lb = New System.Windows.Forms.Label()
  187. Me.Label95 = New System.Windows.Forms.Label()
  188. Me.Label94 = New System.Windows.Forms.Label()
  189. Me.星期_lb = New System.Windows.Forms.Label()
  190. Me.全_ch = New System.Windows.Forms.CheckBox()
  191. Me.Label93 = New System.Windows.Forms.Label()
  192. Me.Label92 = New System.Windows.Forms.Label()
  193. Me.Label90 = New System.Windows.Forms.Label()
  194. Me.NUP20 = New System.Windows.Forms.NumericUpDown()
  195. Me.NUP19 = New System.Windows.Forms.NumericUpDown()
  196. Me.NUP18 = New System.Windows.Forms.NumericUpDown()
  197. Me.NUP17 = New System.Windows.Forms.NumericUpDown()
  198. Me.NUP16 = New System.Windows.Forms.NumericUpDown()
  199. Me.NUP15 = New System.Windows.Forms.NumericUpDown()
  200. Me.NUP14 = New System.Windows.Forms.NumericUpDown()
  201. Me.NUP13 = New System.Windows.Forms.NumericUpDown()
  202. Me.NUP12 = New System.Windows.Forms.NumericUpDown()
  203. Me.NUP11 = New System.Windows.Forms.NumericUpDown()
  204. Me.NUP10 = New System.Windows.Forms.NumericUpDown()
  205. Me.NUP9 = New System.Windows.Forms.NumericUpDown()
  206. Me.NUP8 = New System.Windows.Forms.NumericUpDown()
  207. Me.NUP7 = New System.Windows.Forms.NumericUpDown()
  208. Me.NUP6 = New System.Windows.Forms.NumericUpDown()
  209. Me.NUP5 = New System.Windows.Forms.NumericUpDown()
  210. Me.NUP4 = New System.Windows.Forms.NumericUpDown()
  211. Me.NUP3 = New System.Windows.Forms.NumericUpDown()
  212. Me.NUP2 = New System.Windows.Forms.NumericUpDown()
  213. Me.排班明細_dgv = New System.Windows.Forms.DataGridView()
  214. Me.NumericUpDown20 = New System.Windows.Forms.NumericUpDown()
  215. Me.CheckBox20 = New System.Windows.Forms.CheckBox()
  216. Me.NumericUpDown19 = New System.Windows.Forms.NumericUpDown()
  217. Me.CheckBox19 = New System.Windows.Forms.CheckBox()
  218. Me.NumericUpDown18 = New System.Windows.Forms.NumericUpDown()
  219. Me.CheckBox18 = New System.Windows.Forms.CheckBox()
  220. Me.NumericUpDown17 = New System.Windows.Forms.NumericUpDown()
  221. Me.CheckBox17 = New System.Windows.Forms.CheckBox()
  222. Me.NumericUpDown16 = New System.Windows.Forms.NumericUpDown()
  223. Me.CheckBox16 = New System.Windows.Forms.CheckBox()
  224. Me.NumericUpDown15 = New System.Windows.Forms.NumericUpDown()
  225. Me.CheckBox15 = New System.Windows.Forms.CheckBox()
  226. Me.NumericUpDown14 = New System.Windows.Forms.NumericUpDown()
  227. Me.CheckBox14 = New System.Windows.Forms.CheckBox()
  228. Me.NumericUpDown13 = New System.Windows.Forms.NumericUpDown()
  229. Me.CheckBox13 = New System.Windows.Forms.CheckBox()
  230. Me.NumericUpDown12 = New System.Windows.Forms.NumericUpDown()
  231. Me.CheckBox12 = New System.Windows.Forms.CheckBox()
  232. Me.NumericUpDown11 = New System.Windows.Forms.NumericUpDown()
  233. Me.CheckBox11 = New System.Windows.Forms.CheckBox()
  234. Me.NumericUpDown10 = New System.Windows.Forms.NumericUpDown()
  235. Me.CheckBox10 = New System.Windows.Forms.CheckBox()
  236. Me.NumericUpDown9 = New System.Windows.Forms.NumericUpDown()
  237. Me.CheckBox9 = New System.Windows.Forms.CheckBox()
  238. Me.NumericUpDown8 = New System.Windows.Forms.NumericUpDown()
  239. Me.CheckBox8 = New System.Windows.Forms.CheckBox()
  240. Me.NumericUpDown7 = New System.Windows.Forms.NumericUpDown()
  241. Me.CheckBox7 = New System.Windows.Forms.CheckBox()
  242. Me.NumericUpDown6 = New System.Windows.Forms.NumericUpDown()
  243. Me.CheckBox6 = New System.Windows.Forms.CheckBox()
  244. Me.NumericUpDown5 = New System.Windows.Forms.NumericUpDown()
  245. Me.CheckBox5 = New System.Windows.Forms.CheckBox()
  246. Me.NumericUpDown4 = New System.Windows.Forms.NumericUpDown()
  247. Me.CheckBox4 = New System.Windows.Forms.CheckBox()
  248. Me.NumericUpDown3 = New System.Windows.Forms.NumericUpDown()
  249. Me.CheckBox3 = New System.Windows.Forms.CheckBox()
  250. Me.NumericUpDown2 = New System.Windows.Forms.NumericUpDown()
  251. Me.CheckBox2 = New System.Windows.Forms.CheckBox()
  252. Me.NumericUpDown1 = New System.Windows.Forms.NumericUpDown()
  253. Me.CheckBox1 = New System.Windows.Forms.CheckBox()
  254. Me.存檔_bt = New System.Windows.Forms.Button()
  255. Me.複製班表_bt = New System.Windows.Forms.Button()
  256. Me.日_lb = New System.Windows.Forms.Label()
  257. Me.Label91 = New System.Windows.Forms.Label()
  258. Me.月_lb = New System.Windows.Forms.Label()
  259. Me.Label89 = New System.Windows.Forms.Label()
  260. Me.年_lb = New System.Windows.Forms.Label()
  261. Me.人員_dgv = New System.Windows.Forms.DataGridView()
  262. Me.姓名_tb20 = New System.Windows.Forms.TextBox()
  263. Me.姓名_tb19 = New System.Windows.Forms.TextBox()
  264. Me.姓名_tb18 = New System.Windows.Forms.TextBox()
  265. Me.姓名_tb17 = New System.Windows.Forms.TextBox()
  266. Me.姓名_tb16 = New System.Windows.Forms.TextBox()
  267. Me.姓名_tb15 = New System.Windows.Forms.TextBox()
  268. Me.姓名_tb14 = New System.Windows.Forms.TextBox()
  269. Me.姓名_tb13 = New System.Windows.Forms.TextBox()
  270. Me.姓名_tb12 = New System.Windows.Forms.TextBox()
  271. Me.姓名_tb11 = New System.Windows.Forms.TextBox()
  272. Me.姓名_tb10 = New System.Windows.Forms.TextBox()
  273. Me.姓名_tb9 = New System.Windows.Forms.TextBox()
  274. Me.姓名_tb8 = New System.Windows.Forms.TextBox()
  275. Me.姓名_tb7 = New System.Windows.Forms.TextBox()
  276. Me.姓名_tb6 = New System.Windows.Forms.TextBox()
  277. Me.姓名_tb5 = New System.Windows.Forms.TextBox()
  278. Me.姓名_tb4 = New System.Windows.Forms.TextBox()
  279. Me.姓名_tb3 = New System.Windows.Forms.TextBox()
  280. Me.姓名_tb2 = New System.Windows.Forms.TextBox()
  281. Me.姓名_tb1 = New System.Windows.Forms.TextBox()
  282. Me.班別_cb20 = New System.Windows.Forms.ComboBox()
  283. Me.班別_cb19 = New System.Windows.Forms.ComboBox()
  284. Me.班別_cb18 = New System.Windows.Forms.ComboBox()
  285. Me.班別_cb17 = New System.Windows.Forms.ComboBox()
  286. Me.班別_cb16 = New System.Windows.Forms.ComboBox()
  287. Me.班別_cb15 = New System.Windows.Forms.ComboBox()
  288. Me.班別_cb14 = New System.Windows.Forms.ComboBox()
  289. Me.班別_cb13 = New System.Windows.Forms.ComboBox()
  290. Me.班別_cb12 = New System.Windows.Forms.ComboBox()
  291. Me.班別_cb11 = New System.Windows.Forms.ComboBox()
  292. Me.班別_cb10 = New System.Windows.Forms.ComboBox()
  293. Me.班別_cb9 = New System.Windows.Forms.ComboBox()
  294. Me.班別_cb8 = New System.Windows.Forms.ComboBox()
  295. Me.班別_cb7 = New System.Windows.Forms.ComboBox()
  296. Me.班別_cb6 = New System.Windows.Forms.ComboBox()
  297. Me.班別_cb5 = New System.Windows.Forms.ComboBox()
  298. Me.班別_cb4 = New System.Windows.Forms.ComboBox()
  299. Me.班別_cb3 = New System.Windows.Forms.ComboBox()
  300. Me.班別_cb2 = New System.Windows.Forms.ComboBox()
  301. Me.班別_cb1 = New System.Windows.Forms.ComboBox()
  302. Me.Label69 = New System.Windows.Forms.Label()
  303. Me.A_pb40 = New System.Windows.Forms.ProgressBar()
  304. Me.A_pb39 = New System.Windows.Forms.ProgressBar()
  305. Me.A_pb38 = New System.Windows.Forms.ProgressBar()
  306. Me.A_pb37 = New System.Windows.Forms.ProgressBar()
  307. Me.A_pb36 = New System.Windows.Forms.ProgressBar()
  308. Me.A_pb35 = New System.Windows.Forms.ProgressBar()
  309. Me.A_pb34 = New System.Windows.Forms.ProgressBar()
  310. Me.A_pb33 = New System.Windows.Forms.ProgressBar()
  311. Me.A_pb32 = New System.Windows.Forms.ProgressBar()
  312. Me.A_pb31 = New System.Windows.Forms.ProgressBar()
  313. Me.A_pb30 = New System.Windows.Forms.ProgressBar()
  314. Me.A_pb29 = New System.Windows.Forms.ProgressBar()
  315. Me.A_pb28 = New System.Windows.Forms.ProgressBar()
  316. Me.A_pb27 = New System.Windows.Forms.ProgressBar()
  317. Me.A_pb26 = New System.Windows.Forms.ProgressBar()
  318. Me.A_pb25 = New System.Windows.Forms.ProgressBar()
  319. Me.A_pb24 = New System.Windows.Forms.ProgressBar()
  320. Me.A_pb23 = New System.Windows.Forms.ProgressBar()
  321. Me.A_pb22 = New System.Windows.Forms.ProgressBar()
  322. Me.A_pb21 = New System.Windows.Forms.ProgressBar()
  323. Me.A_pb20 = New System.Windows.Forms.ProgressBar()
  324. Me.A_pb19 = New System.Windows.Forms.ProgressBar()
  325. Me.A_pb18 = New System.Windows.Forms.ProgressBar()
  326. Me.A_pb17 = New System.Windows.Forms.ProgressBar()
  327. Me.A_pb16 = New System.Windows.Forms.ProgressBar()
  328. Me.A_pb15 = New System.Windows.Forms.ProgressBar()
  329. Me.A_pb14 = New System.Windows.Forms.ProgressBar()
  330. Me.A_pb13 = New System.Windows.Forms.ProgressBar()
  331. Me.A_pb12 = New System.Windows.Forms.ProgressBar()
  332. Me.A_pb11 = New System.Windows.Forms.ProgressBar()
  333. Me.A_pb10 = New System.Windows.Forms.ProgressBar()
  334. Me.A_pb9 = New System.Windows.Forms.ProgressBar()
  335. Me.A_pb8 = New System.Windows.Forms.ProgressBar()
  336. Me.A_pb7 = New System.Windows.Forms.ProgressBar()
  337. Me.A_pb6 = New System.Windows.Forms.ProgressBar()
  338. Me.A_pb5 = New System.Windows.Forms.ProgressBar()
  339. Me.A_pb4 = New System.Windows.Forms.ProgressBar()
  340. Me.A_pb3 = New System.Windows.Forms.ProgressBar()
  341. Me.A_pb2 = New System.Windows.Forms.ProgressBar()
  342. Me.A_pb1 = New System.Windows.Forms.ProgressBar()
  343. Me.Label68 = New System.Windows.Forms.Label()
  344. Me.Label67 = New System.Windows.Forms.Label()
  345. Me.Label66 = New System.Windows.Forms.Label()
  346. Me.Label65 = New System.Windows.Forms.Label()
  347. Me.Label64 = New System.Windows.Forms.Label()
  348. Me.Label63 = New System.Windows.Forms.Label()
  349. Me.Label62 = New System.Windows.Forms.Label()
  350. Me.Label61 = New System.Windows.Forms.Label()
  351. Me.Label60 = New System.Windows.Forms.Label()
  352. Me.Label59 = New System.Windows.Forms.Label()
  353. Me.Label58 = New System.Windows.Forms.Label()
  354. Me.Label57 = New System.Windows.Forms.Label()
  355. Me.Label56 = New System.Windows.Forms.Label()
  356. Me.Label55 = New System.Windows.Forms.Label()
  357. Me.Label54 = New System.Windows.Forms.Label()
  358. Me.Label53 = New System.Windows.Forms.Label()
  359. Me.Label52 = New System.Windows.Forms.Label()
  360. Me.Label50 = New System.Windows.Forms.Label()
  361. Me.Label49 = New System.Windows.Forms.Label()
  362. Me.Label48 = New System.Windows.Forms.Label()
  363. Me.Label47 = New System.Windows.Forms.Label()
  364. Me.Label46 = New System.Windows.Forms.Label()
  365. Me.Label45 = New System.Windows.Forms.Label()
  366. Me.Label44 = New System.Windows.Forms.Label()
  367. Me.Label43 = New System.Windows.Forms.Label()
  368. Me.Label42 = New System.Windows.Forms.Label()
  369. Me.Label41 = New System.Windows.Forms.Label()
  370. Me.Label40 = New System.Windows.Forms.Label()
  371. Me.Label39 = New System.Windows.Forms.Label()
  372. Me.Label38 = New System.Windows.Forms.Label()
  373. Me.Label37 = New System.Windows.Forms.Label()
  374. Me.Label36 = New System.Windows.Forms.Label()
  375. Me.Label35 = New System.Windows.Forms.Label()
  376. Me.Label34 = New System.Windows.Forms.Label()
  377. Me.Label33 = New System.Windows.Forms.Label()
  378. Me.Label32 = New System.Windows.Forms.Label()
  379. Me.Label31 = New System.Windows.Forms.Label()
  380. Me.Label30 = New System.Windows.Forms.Label()
  381. Me.Label29 = New System.Windows.Forms.Label()
  382. Me.Label28 = New System.Windows.Forms.Label()
  383. Me.Label27 = New System.Windows.Forms.Label()
  384. Me.Label26 = New System.Windows.Forms.Label()
  385. Me.Label25 = New System.Windows.Forms.Label()
  386. Me.Label24 = New System.Windows.Forms.Label()
  387. Me.Label23 = New System.Windows.Forms.Label()
  388. Me.Label22 = New System.Windows.Forms.Label()
  389. Me.Label21 = New System.Windows.Forms.Label()
  390. Me.Label20 = New System.Windows.Forms.Label()
  391. Me.Label19 = New System.Windows.Forms.Label()
  392. Me.Label18 = New System.Windows.Forms.Label()
  393. Me.Label17 = New System.Windows.Forms.Label()
  394. Me.Label16 = New System.Windows.Forms.Label()
  395. Me.Label15 = New System.Windows.Forms.Label()
  396. Me.Label14 = New System.Windows.Forms.Label()
  397. Me.Label13 = New System.Windows.Forms.Label()
  398. Me.Label12 = New System.Windows.Forms.Label()
  399. Me.Label11 = New System.Windows.Forms.Label()
  400. Me.Label10 = New System.Windows.Forms.Label()
  401. Me.Label9 = New System.Windows.Forms.Label()
  402. Me.Label8 = New System.Windows.Forms.Label()
  403. Me.Label7 = New System.Windows.Forms.Label()
  404. Me.Label6 = New System.Windows.Forms.Label()
  405. Me.Label5 = New System.Windows.Forms.Label()
  406. Me.Label4 = New System.Windows.Forms.Label()
  407. Me.Label3 = New System.Windows.Forms.Label()
  408. Me.Label2 = New System.Windows.Forms.Label()
  409. Me.Label1 = New System.Windows.Forms.Label()
  410. Me.Label51 = New System.Windows.Forms.Label()
  411. Me.Label70 = New System.Windows.Forms.Label()
  412. Me.Label71 = New System.Windows.Forms.Label()
  413. Me.Label72 = New System.Windows.Forms.Label()
  414. Me.Label73 = New System.Windows.Forms.Label()
  415. Me.Label74 = New System.Windows.Forms.Label()
  416. Me.Label75 = New System.Windows.Forms.Label()
  417. Me.Label76 = New System.Windows.Forms.Label()
  418. Me.Label77 = New System.Windows.Forms.Label()
  419. Me.Label78 = New System.Windows.Forms.Label()
  420. Me.Label79 = New System.Windows.Forms.Label()
  421. Me.Label80 = New System.Windows.Forms.Label()
  422. Me.Label81 = New System.Windows.Forms.Label()
  423. Me.Label82 = New System.Windows.Forms.Label()
  424. Me.Label83 = New System.Windows.Forms.Label()
  425. Me.Label84 = New System.Windows.Forms.Label()
  426. Me.Label85 = New System.Windows.Forms.Label()
  427. Me.Label86 = New System.Windows.Forms.Label()
  428. Me.Label87 = New System.Windows.Forms.Label()
  429. Me.Label88 = New System.Windows.Forms.Label()
  430. Me.A_lb20 = New System.Windows.Forms.Label()
  431. Me.A_lb19 = New System.Windows.Forms.Label()
  432. Me.A_lb18 = New System.Windows.Forms.Label()
  433. Me.A_lb17 = New System.Windows.Forms.Label()
  434. Me.A_lb16 = New System.Windows.Forms.Label()
  435. Me.A_lb15 = New System.Windows.Forms.Label()
  436. Me.A_lb14 = New System.Windows.Forms.Label()
  437. Me.A_lb13 = New System.Windows.Forms.Label()
  438. Me.A_lb12 = New System.Windows.Forms.Label()
  439. Me.A_lb11 = New System.Windows.Forms.Label()
  440. Me.A_lb10 = New System.Windows.Forms.Label()
  441. Me.A_lb9 = New System.Windows.Forms.Label()
  442. Me.A_lb8 = New System.Windows.Forms.Label()
  443. Me.A_lb7 = New System.Windows.Forms.Label()
  444. Me.A_lb6 = New System.Windows.Forms.Label()
  445. Me.A_lb5 = New System.Windows.Forms.Label()
  446. Me.A_lb4 = New System.Windows.Forms.Label()
  447. Me.A_lb3 = New System.Windows.Forms.Label()
  448. Me.A_lb2 = New System.Windows.Forms.Label()
  449. Me.A_lb1 = New System.Windows.Forms.Label()
  450. Me.NUP1 = New System.Windows.Forms.NumericUpDown()
  451. Me.Label97 = New System.Windows.Forms.Label()
  452. CType(Me.NUP20, System.ComponentModel.ISupportInitialize).BeginInit()
  453. CType(Me.NUP19, System.ComponentModel.ISupportInitialize).BeginInit()
  454. CType(Me.NUP18, System.ComponentModel.ISupportInitialize).BeginInit()
  455. CType(Me.NUP17, System.ComponentModel.ISupportInitialize).BeginInit()
  456. CType(Me.NUP16, System.ComponentModel.ISupportInitialize).BeginInit()
  457. CType(Me.NUP15, System.ComponentModel.ISupportInitialize).BeginInit()
  458. CType(Me.NUP14, System.ComponentModel.ISupportInitialize).BeginInit()
  459. CType(Me.NUP13, System.ComponentModel.ISupportInitialize).BeginInit()
  460. CType(Me.NUP12, System.ComponentModel.ISupportInitialize).BeginInit()
  461. CType(Me.NUP11, System.ComponentModel.ISupportInitialize).BeginInit()
  462. CType(Me.NUP10, System.ComponentModel.ISupportInitialize).BeginInit()
  463. CType(Me.NUP9, System.ComponentModel.ISupportInitialize).BeginInit()
  464. CType(Me.NUP8, System.ComponentModel.ISupportInitialize).BeginInit()
  465. CType(Me.NUP7, System.ComponentModel.ISupportInitialize).BeginInit()
  466. CType(Me.NUP6, System.ComponentModel.ISupportInitialize).BeginInit()
  467. CType(Me.NUP5, System.ComponentModel.ISupportInitialize).BeginInit()
  468. CType(Me.NUP4, System.ComponentModel.ISupportInitialize).BeginInit()
  469. CType(Me.NUP3, System.ComponentModel.ISupportInitialize).BeginInit()
  470. CType(Me.NUP2, System.ComponentModel.ISupportInitialize).BeginInit()
  471. CType(Me.排班明細_dgv, System.ComponentModel.ISupportInitialize).BeginInit()
  472. CType(Me.NumericUpDown20, System.ComponentModel.ISupportInitialize).BeginInit()
  473. CType(Me.NumericUpDown19, System.ComponentModel.ISupportInitialize).BeginInit()
  474. CType(Me.NumericUpDown18, System.ComponentModel.ISupportInitialize).BeginInit()
  475. CType(Me.NumericUpDown17, System.ComponentModel.ISupportInitialize).BeginInit()
  476. CType(Me.NumericUpDown16, System.ComponentModel.ISupportInitialize).BeginInit()
  477. CType(Me.NumericUpDown15, System.ComponentModel.ISupportInitialize).BeginInit()
  478. CType(Me.NumericUpDown14, System.ComponentModel.ISupportInitialize).BeginInit()
  479. CType(Me.NumericUpDown13, System.ComponentModel.ISupportInitialize).BeginInit()
  480. CType(Me.NumericUpDown12, System.ComponentModel.ISupportInitialize).BeginInit()
  481. CType(Me.NumericUpDown11, System.ComponentModel.ISupportInitialize).BeginInit()
  482. CType(Me.NumericUpDown10, System.ComponentModel.ISupportInitialize).BeginInit()
  483. CType(Me.NumericUpDown9, System.ComponentModel.ISupportInitialize).BeginInit()
  484. CType(Me.NumericUpDown8, System.ComponentModel.ISupportInitialize).BeginInit()
  485. CType(Me.NumericUpDown7, System.ComponentModel.ISupportInitialize).BeginInit()
  486. CType(Me.NumericUpDown6, System.ComponentModel.ISupportInitialize).BeginInit()
  487. CType(Me.NumericUpDown5, System.ComponentModel.ISupportInitialize).BeginInit()
  488. CType(Me.NumericUpDown4, System.ComponentModel.ISupportInitialize).BeginInit()
  489. CType(Me.NumericUpDown3, System.ComponentModel.ISupportInitialize).BeginInit()
  490. CType(Me.NumericUpDown2, System.ComponentModel.ISupportInitialize).BeginInit()
  491. CType(Me.NumericUpDown1, System.ComponentModel.ISupportInitialize).BeginInit()
  492. CType(Me.人員_dgv, System.ComponentModel.ISupportInitialize).BeginInit()
  493. CType(Me.NUP1, System.ComponentModel.ISupportInitialize).BeginInit()
  494. Me.SuspendLayout()
  495. '
  496. 'Label102
  497. '
  498. Me.Label102.AutoSize = True
  499. Me.Label102.Font = New System.Drawing.Font("微軟正黑體", 12.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  500. Me.Label102.ForeColor = System.Drawing.Color.Blue
  501. Me.Label102.Location = New System.Drawing.Point(1771, 876)
  502. Me.Label102.Name = "Label102"
  503. Me.Label102.Size = New System.Drawing.Size(27, 20)
  504. Me.Label102.TabIndex = 1855
  505. Me.Label102.Text = "30"
  506. '
  507. 'Label103
  508. '
  509. Me.Label103.AutoSize = True
  510. Me.Label103.Font = New System.Drawing.Font("微軟正黑體", 12.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  511. Me.Label103.ForeColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
  512. Me.Label103.Location = New System.Drawing.Point(1696, 876)
  513. Me.Label103.Name = "Label103"
  514. Me.Label103.Size = New System.Drawing.Size(27, 20)
  515. Me.Label103.TabIndex = 1854
  516. Me.Label103.Text = "30"
  517. '
  518. 'Label104
  519. '
  520. Me.Label104.AutoSize = True
  521. Me.Label104.Font = New System.Drawing.Font("微軟正黑體", 12.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  522. Me.Label104.ForeColor = System.Drawing.Color.Blue
  523. Me.Label104.Location = New System.Drawing.Point(1621, 876)
  524. Me.Label104.Name = "Label104"
  525. Me.Label104.Size = New System.Drawing.Size(27, 20)
  526. Me.Label104.TabIndex = 1853
  527. Me.Label104.Text = "30"
  528. '
  529. 'Label105
  530. '
  531. Me.Label105.AutoSize = True
  532. Me.Label105.Font = New System.Drawing.Font("微軟正黑體", 12.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  533. Me.Label105.ForeColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
  534. Me.Label105.Location = New System.Drawing.Point(1546, 876)
  535. Me.Label105.Name = "Label105"
  536. Me.Label105.Size = New System.Drawing.Size(27, 20)
  537. Me.Label105.TabIndex = 1852
  538. Me.Label105.Text = "30"
  539. '
  540. 'Label106
  541. '
  542. Me.Label106.AutoSize = True
  543. Me.Label106.Font = New System.Drawing.Font("微軟正黑體", 12.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  544. Me.Label106.ForeColor = System.Drawing.Color.Blue
  545. Me.Label106.Location = New System.Drawing.Point(1471, 876)
  546. Me.Label106.Name = "Label106"
  547. Me.Label106.Size = New System.Drawing.Size(27, 20)
  548. Me.Label106.TabIndex = 1851
  549. Me.Label106.Text = "30"
  550. '
  551. 'Label107
  552. '
  553. Me.Label107.AutoSize = True
  554. Me.Label107.Font = New System.Drawing.Font("微軟正黑體", 12.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  555. Me.Label107.ForeColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
  556. Me.Label107.Location = New System.Drawing.Point(1396, 876)
  557. Me.Label107.Name = "Label107"
  558. Me.Label107.Size = New System.Drawing.Size(27, 20)
  559. Me.Label107.TabIndex = 1850
  560. Me.Label107.Text = "30"
  561. '
  562. 'Label108
  563. '
  564. Me.Label108.AutoSize = True
  565. Me.Label108.Font = New System.Drawing.Font("微軟正黑體", 12.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  566. Me.Label108.ForeColor = System.Drawing.Color.Blue
  567. Me.Label108.Location = New System.Drawing.Point(1321, 876)
  568. Me.Label108.Name = "Label108"
  569. Me.Label108.Size = New System.Drawing.Size(27, 20)
  570. Me.Label108.TabIndex = 1849
  571. Me.Label108.Text = "30"
  572. '
  573. 'Label109
  574. '
  575. Me.Label109.AutoSize = True
  576. Me.Label109.Font = New System.Drawing.Font("微軟正黑體", 12.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  577. Me.Label109.ForeColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
  578. Me.Label109.Location = New System.Drawing.Point(1246, 876)
  579. Me.Label109.Name = "Label109"
  580. Me.Label109.Size = New System.Drawing.Size(27, 20)
  581. Me.Label109.TabIndex = 1848
  582. Me.Label109.Text = "30"
  583. '
  584. 'Label110
  585. '
  586. Me.Label110.AutoSize = True
  587. Me.Label110.Font = New System.Drawing.Font("微軟正黑體", 12.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  588. Me.Label110.ForeColor = System.Drawing.Color.Blue
  589. Me.Label110.Location = New System.Drawing.Point(1171, 876)
  590. Me.Label110.Name = "Label110"
  591. Me.Label110.Size = New System.Drawing.Size(27, 20)
  592. Me.Label110.TabIndex = 1847
  593. Me.Label110.Text = "30"
  594. '
  595. 'Label111
  596. '
  597. Me.Label111.AutoSize = True
  598. Me.Label111.Font = New System.Drawing.Font("微軟正黑體", 12.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  599. Me.Label111.ForeColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
  600. Me.Label111.Location = New System.Drawing.Point(1096, 876)
  601. Me.Label111.Name = "Label111"
  602. Me.Label111.Size = New System.Drawing.Size(27, 20)
  603. Me.Label111.TabIndex = 1846
  604. Me.Label111.Text = "30"
  605. '
  606. 'Label112
  607. '
  608. Me.Label112.AutoSize = True
  609. Me.Label112.Font = New System.Drawing.Font("微軟正黑體", 12.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  610. Me.Label112.ForeColor = System.Drawing.Color.Blue
  611. Me.Label112.Location = New System.Drawing.Point(1021, 876)
  612. Me.Label112.Name = "Label112"
  613. Me.Label112.Size = New System.Drawing.Size(27, 20)
  614. Me.Label112.TabIndex = 1845
  615. Me.Label112.Text = "30"
  616. '
  617. 'Label113
  618. '
  619. Me.Label113.AutoSize = True
  620. Me.Label113.Font = New System.Drawing.Font("微軟正黑體", 12.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  621. Me.Label113.ForeColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
  622. Me.Label113.Location = New System.Drawing.Point(946, 876)
  623. Me.Label113.Name = "Label113"
  624. Me.Label113.Size = New System.Drawing.Size(27, 20)
  625. Me.Label113.TabIndex = 1844
  626. Me.Label113.Text = "30"
  627. '
  628. 'Label114
  629. '
  630. Me.Label114.AutoSize = True
  631. Me.Label114.Font = New System.Drawing.Font("微軟正黑體", 12.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  632. Me.Label114.ForeColor = System.Drawing.Color.Blue
  633. Me.Label114.Location = New System.Drawing.Point(871, 876)
  634. Me.Label114.Name = "Label114"
  635. Me.Label114.Size = New System.Drawing.Size(27, 20)
  636. Me.Label114.TabIndex = 1843
  637. Me.Label114.Text = "30"
  638. '
  639. 'Label115
  640. '
  641. Me.Label115.AutoSize = True
  642. Me.Label115.Font = New System.Drawing.Font("微軟正黑體", 12.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  643. Me.Label115.ForeColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
  644. Me.Label115.Location = New System.Drawing.Point(796, 876)
  645. Me.Label115.Name = "Label115"
  646. Me.Label115.Size = New System.Drawing.Size(27, 20)
  647. Me.Label115.TabIndex = 1842
  648. Me.Label115.Text = "30"
  649. '
  650. 'Label116
  651. '
  652. Me.Label116.AutoSize = True
  653. Me.Label116.Font = New System.Drawing.Font("微軟正黑體", 12.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  654. Me.Label116.ForeColor = System.Drawing.Color.Blue
  655. Me.Label116.Location = New System.Drawing.Point(721, 876)
  656. Me.Label116.Name = "Label116"
  657. Me.Label116.Size = New System.Drawing.Size(27, 20)
  658. Me.Label116.TabIndex = 1841
  659. Me.Label116.Text = "30"
  660. '
  661. 'Label117
  662. '
  663. Me.Label117.AutoSize = True
  664. Me.Label117.Font = New System.Drawing.Font("微軟正黑體", 12.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  665. Me.Label117.ForeColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
  666. Me.Label117.Location = New System.Drawing.Point(646, 876)
  667. Me.Label117.Name = "Label117"
  668. Me.Label117.Size = New System.Drawing.Size(27, 20)
  669. Me.Label117.TabIndex = 1840
  670. Me.Label117.Text = "30"
  671. '
  672. 'Label118
  673. '
  674. Me.Label118.AutoSize = True
  675. Me.Label118.Font = New System.Drawing.Font("微軟正黑體", 12.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  676. Me.Label118.Location = New System.Drawing.Point(1808, 876)
  677. Me.Label118.Name = "Label118"
  678. Me.Label118.Size = New System.Drawing.Size(27, 20)
  679. Me.Label118.TabIndex = 1839
  680. Me.Label118.Text = "00"
  681. '
  682. 'Label119
  683. '
  684. Me.Label119.AutoSize = True
  685. Me.Label119.Font = New System.Drawing.Font("微軟正黑體", 12.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  686. Me.Label119.ForeColor = System.Drawing.Color.Blue
  687. Me.Label119.Location = New System.Drawing.Point(1733, 876)
  688. Me.Label119.Name = "Label119"
  689. Me.Label119.Size = New System.Drawing.Size(27, 20)
  690. Me.Label119.TabIndex = 1838
  691. Me.Label119.Text = "00"
  692. '
  693. 'Label120
  694. '
  695. Me.Label120.AutoSize = True
  696. Me.Label120.Font = New System.Drawing.Font("微軟正黑體", 12.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  697. Me.Label120.ForeColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
  698. Me.Label120.Location = New System.Drawing.Point(1658, 876)
  699. Me.Label120.Name = "Label120"
  700. Me.Label120.Size = New System.Drawing.Size(27, 20)
  701. Me.Label120.TabIndex = 1837
  702. Me.Label120.Text = "00"
  703. '
  704. 'Label121
  705. '
  706. Me.Label121.AutoSize = True
  707. Me.Label121.Font = New System.Drawing.Font("微軟正黑體", 12.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  708. Me.Label121.ForeColor = System.Drawing.Color.Blue
  709. Me.Label121.Location = New System.Drawing.Point(1583, 876)
  710. Me.Label121.Name = "Label121"
  711. Me.Label121.Size = New System.Drawing.Size(27, 20)
  712. Me.Label121.TabIndex = 1836
  713. Me.Label121.Text = "00"
  714. '
  715. 'Label122
  716. '
  717. Me.Label122.AutoSize = True
  718. Me.Label122.Font = New System.Drawing.Font("微軟正黑體", 12.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  719. Me.Label122.ForeColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
  720. Me.Label122.Location = New System.Drawing.Point(1508, 876)
  721. Me.Label122.Name = "Label122"
  722. Me.Label122.Size = New System.Drawing.Size(27, 20)
  723. Me.Label122.TabIndex = 1835
  724. Me.Label122.Text = "00"
  725. '
  726. 'Label123
  727. '
  728. Me.Label123.AutoSize = True
  729. Me.Label123.Font = New System.Drawing.Font("微軟正黑體", 12.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  730. Me.Label123.ForeColor = System.Drawing.Color.Blue
  731. Me.Label123.Location = New System.Drawing.Point(1433, 876)
  732. Me.Label123.Name = "Label123"
  733. Me.Label123.Size = New System.Drawing.Size(27, 20)
  734. Me.Label123.TabIndex = 1834
  735. Me.Label123.Text = "00"
  736. '
  737. 'Label124
  738. '
  739. Me.Label124.AutoSize = True
  740. Me.Label124.Font = New System.Drawing.Font("微軟正黑體", 12.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  741. Me.Label124.ForeColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
  742. Me.Label124.Location = New System.Drawing.Point(1358, 876)
  743. Me.Label124.Name = "Label124"
  744. Me.Label124.Size = New System.Drawing.Size(27, 20)
  745. Me.Label124.TabIndex = 1833
  746. Me.Label124.Text = "00"
  747. '
  748. 'Label125
  749. '
  750. Me.Label125.AutoSize = True
  751. Me.Label125.Font = New System.Drawing.Font("微軟正黑體", 12.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  752. Me.Label125.ForeColor = System.Drawing.Color.Blue
  753. Me.Label125.Location = New System.Drawing.Point(1283, 876)
  754. Me.Label125.Name = "Label125"
  755. Me.Label125.Size = New System.Drawing.Size(27, 20)
  756. Me.Label125.TabIndex = 1832
  757. Me.Label125.Text = "00"
  758. '
  759. 'Label126
  760. '
  761. Me.Label126.AutoSize = True
  762. Me.Label126.Font = New System.Drawing.Font("微軟正黑體", 12.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  763. Me.Label126.ForeColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
  764. Me.Label126.Location = New System.Drawing.Point(1208, 876)
  765. Me.Label126.Name = "Label126"
  766. Me.Label126.Size = New System.Drawing.Size(27, 20)
  767. Me.Label126.TabIndex = 1831
  768. Me.Label126.Text = "00"
  769. '
  770. 'Label127
  771. '
  772. Me.Label127.AutoSize = True
  773. Me.Label127.Font = New System.Drawing.Font("微軟正黑體", 12.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  774. Me.Label127.ForeColor = System.Drawing.Color.Blue
  775. Me.Label127.Location = New System.Drawing.Point(1133, 876)
  776. Me.Label127.Name = "Label127"
  777. Me.Label127.Size = New System.Drawing.Size(27, 20)
  778. Me.Label127.TabIndex = 1830
  779. Me.Label127.Text = "00"
  780. '
  781. 'Label128
  782. '
  783. Me.Label128.AutoSize = True
  784. Me.Label128.Font = New System.Drawing.Font("微軟正黑體", 12.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  785. Me.Label128.ForeColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
  786. Me.Label128.Location = New System.Drawing.Point(1058, 876)
  787. Me.Label128.Name = "Label128"
  788. Me.Label128.Size = New System.Drawing.Size(27, 20)
  789. Me.Label128.TabIndex = 1829
  790. Me.Label128.Text = "00"
  791. '
  792. 'Label129
  793. '
  794. Me.Label129.AutoSize = True
  795. Me.Label129.Font = New System.Drawing.Font("微軟正黑體", 12.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  796. Me.Label129.ForeColor = System.Drawing.Color.Blue
  797. Me.Label129.Location = New System.Drawing.Point(983, 876)
  798. Me.Label129.Name = "Label129"
  799. Me.Label129.Size = New System.Drawing.Size(27, 20)
  800. Me.Label129.TabIndex = 1828
  801. Me.Label129.Text = "00"
  802. '
  803. 'Label130
  804. '
  805. Me.Label130.AutoSize = True
  806. Me.Label130.Font = New System.Drawing.Font("微軟正黑體", 12.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  807. Me.Label130.ForeColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
  808. Me.Label130.Location = New System.Drawing.Point(908, 876)
  809. Me.Label130.Name = "Label130"
  810. Me.Label130.Size = New System.Drawing.Size(27, 20)
  811. Me.Label130.TabIndex = 1827
  812. Me.Label130.Text = "00"
  813. '
  814. 'Label131
  815. '
  816. Me.Label131.AutoSize = True
  817. Me.Label131.Font = New System.Drawing.Font("微軟正黑體", 12.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  818. Me.Label131.ForeColor = System.Drawing.Color.Blue
  819. Me.Label131.Location = New System.Drawing.Point(833, 876)
  820. Me.Label131.Name = "Label131"
  821. Me.Label131.Size = New System.Drawing.Size(27, 20)
  822. Me.Label131.TabIndex = 1826
  823. Me.Label131.Text = "00"
  824. '
  825. 'Label132
  826. '
  827. Me.Label132.AutoSize = True
  828. Me.Label132.Font = New System.Drawing.Font("微軟正黑體", 12.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  829. Me.Label132.ForeColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
  830. Me.Label132.Location = New System.Drawing.Point(758, 876)
  831. Me.Label132.Name = "Label132"
  832. Me.Label132.Size = New System.Drawing.Size(27, 20)
  833. Me.Label132.TabIndex = 1825
  834. Me.Label132.Text = "00"
  835. '
  836. 'Label133
  837. '
  838. Me.Label133.AutoSize = True
  839. Me.Label133.Font = New System.Drawing.Font("微軟正黑體", 12.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  840. Me.Label133.ForeColor = System.Drawing.Color.Blue
  841. Me.Label133.Location = New System.Drawing.Point(683, 876)
  842. Me.Label133.Name = "Label133"
  843. Me.Label133.Size = New System.Drawing.Size(27, 20)
  844. Me.Label133.TabIndex = 1824
  845. Me.Label133.Text = "00"
  846. '
  847. 'Label134
  848. '
  849. Me.Label134.AutoSize = True
  850. Me.Label134.Font = New System.Drawing.Font("微軟正黑體", 12.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  851. Me.Label134.ForeColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
  852. Me.Label134.Location = New System.Drawing.Point(609, 876)
  853. Me.Label134.Name = "Label134"
  854. Me.Label134.Size = New System.Drawing.Size(27, 20)
  855. Me.Label134.TabIndex = 1823
  856. Me.Label134.Text = "00"
  857. '
  858. 'Label135
  859. '
  860. Me.Label135.AutoSize = True
  861. Me.Label135.Font = New System.Drawing.Font("微軟正黑體", 12.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  862. Me.Label135.Location = New System.Drawing.Point(1808, 856)
  863. Me.Label135.Name = "Label135"
  864. Me.Label135.Size = New System.Drawing.Size(27, 20)
  865. Me.Label135.TabIndex = 1822
  866. Me.Label135.Text = "24"
  867. '
  868. 'Label136
  869. '
  870. Me.Label136.AutoSize = True
  871. Me.Label136.Font = New System.Drawing.Font("微軟正黑體", 12.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  872. Me.Label136.ForeColor = System.Drawing.Color.Blue
  873. Me.Label136.Location = New System.Drawing.Point(1733, 856)
  874. Me.Label136.Name = "Label136"
  875. Me.Label136.Size = New System.Drawing.Size(27, 20)
  876. Me.Label136.TabIndex = 1821
  877. Me.Label136.Text = "23"
  878. '
  879. 'Label137
  880. '
  881. Me.Label137.AutoSize = True
  882. Me.Label137.Font = New System.Drawing.Font("微軟正黑體", 12.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  883. Me.Label137.ForeColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
  884. Me.Label137.Location = New System.Drawing.Point(1658, 856)
  885. Me.Label137.Name = "Label137"
  886. Me.Label137.Size = New System.Drawing.Size(27, 20)
  887. Me.Label137.TabIndex = 1820
  888. Me.Label137.Text = "22"
  889. '
  890. 'Label138
  891. '
  892. Me.Label138.AutoSize = True
  893. Me.Label138.Font = New System.Drawing.Font("微軟正黑體", 12.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  894. Me.Label138.ForeColor = System.Drawing.Color.Blue
  895. Me.Label138.Location = New System.Drawing.Point(1583, 856)
  896. Me.Label138.Name = "Label138"
  897. Me.Label138.Size = New System.Drawing.Size(27, 20)
  898. Me.Label138.TabIndex = 1819
  899. Me.Label138.Text = "21"
  900. '
  901. 'Label139
  902. '
  903. Me.Label139.AutoSize = True
  904. Me.Label139.Font = New System.Drawing.Font("微軟正黑體", 12.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  905. Me.Label139.ForeColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
  906. Me.Label139.Location = New System.Drawing.Point(1508, 856)
  907. Me.Label139.Name = "Label139"
  908. Me.Label139.Size = New System.Drawing.Size(27, 20)
  909. Me.Label139.TabIndex = 1818
  910. Me.Label139.Text = "20"
  911. '
  912. 'Label140
  913. '
  914. Me.Label140.AutoSize = True
  915. Me.Label140.Font = New System.Drawing.Font("微軟正黑體", 12.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  916. Me.Label140.ForeColor = System.Drawing.Color.Blue
  917. Me.Label140.Location = New System.Drawing.Point(1433, 856)
  918. Me.Label140.Name = "Label140"
  919. Me.Label140.Size = New System.Drawing.Size(27, 20)
  920. Me.Label140.TabIndex = 1817
  921. Me.Label140.Text = "19"
  922. '
  923. 'Label141
  924. '
  925. Me.Label141.AutoSize = True
  926. Me.Label141.Font = New System.Drawing.Font("微軟正黑體", 12.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  927. Me.Label141.ForeColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
  928. Me.Label141.Location = New System.Drawing.Point(1358, 856)
  929. Me.Label141.Name = "Label141"
  930. Me.Label141.Size = New System.Drawing.Size(27, 20)
  931. Me.Label141.TabIndex = 1816
  932. Me.Label141.Text = "18"
  933. '
  934. 'Label142
  935. '
  936. Me.Label142.AutoSize = True
  937. Me.Label142.Font = New System.Drawing.Font("微軟正黑體", 12.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  938. Me.Label142.ForeColor = System.Drawing.Color.Blue
  939. Me.Label142.Location = New System.Drawing.Point(1283, 856)
  940. Me.Label142.Name = "Label142"
  941. Me.Label142.Size = New System.Drawing.Size(27, 20)
  942. Me.Label142.TabIndex = 1815
  943. Me.Label142.Text = "17"
  944. '
  945. 'Label143
  946. '
  947. Me.Label143.AutoSize = True
  948. Me.Label143.Font = New System.Drawing.Font("微軟正黑體", 12.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  949. Me.Label143.ForeColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
  950. Me.Label143.Location = New System.Drawing.Point(1208, 856)
  951. Me.Label143.Name = "Label143"
  952. Me.Label143.Size = New System.Drawing.Size(27, 20)
  953. Me.Label143.TabIndex = 1814
  954. Me.Label143.Text = "16"
  955. '
  956. 'Label144
  957. '
  958. Me.Label144.AutoSize = True
  959. Me.Label144.Font = New System.Drawing.Font("微軟正黑體", 12.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  960. Me.Label144.ForeColor = System.Drawing.Color.Blue
  961. Me.Label144.Location = New System.Drawing.Point(1133, 856)
  962. Me.Label144.Name = "Label144"
  963. Me.Label144.Size = New System.Drawing.Size(27, 20)
  964. Me.Label144.TabIndex = 1813
  965. Me.Label144.Text = "15"
  966. '
  967. 'Label145
  968. '
  969. Me.Label145.AutoSize = True
  970. Me.Label145.Font = New System.Drawing.Font("微軟正黑體", 12.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  971. Me.Label145.ForeColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
  972. Me.Label145.Location = New System.Drawing.Point(1058, 856)
  973. Me.Label145.Name = "Label145"
  974. Me.Label145.Size = New System.Drawing.Size(27, 20)
  975. Me.Label145.TabIndex = 1812
  976. Me.Label145.Text = "14"
  977. '
  978. 'Label146
  979. '
  980. Me.Label146.AutoSize = True
  981. Me.Label146.Font = New System.Drawing.Font("微軟正黑體", 12.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  982. Me.Label146.ForeColor = System.Drawing.Color.Blue
  983. Me.Label146.Location = New System.Drawing.Point(983, 856)
  984. Me.Label146.Name = "Label146"
  985. Me.Label146.Size = New System.Drawing.Size(27, 20)
  986. Me.Label146.TabIndex = 1811
  987. Me.Label146.Text = "13"
  988. '
  989. 'Label147
  990. '
  991. Me.Label147.AutoSize = True
  992. Me.Label147.Font = New System.Drawing.Font("微軟正黑體", 12.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  993. Me.Label147.ForeColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
  994. Me.Label147.Location = New System.Drawing.Point(908, 856)
  995. Me.Label147.Name = "Label147"
  996. Me.Label147.Size = New System.Drawing.Size(27, 20)
  997. Me.Label147.TabIndex = 1810
  998. Me.Label147.Text = "12"
  999. '
  1000. 'Label148
  1001. '
  1002. Me.Label148.AutoSize = True
  1003. Me.Label148.Font = New System.Drawing.Font("微軟正黑體", 12.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1004. Me.Label148.ForeColor = System.Drawing.Color.Blue
  1005. Me.Label148.Location = New System.Drawing.Point(833, 856)
  1006. Me.Label148.Name = "Label148"
  1007. Me.Label148.Size = New System.Drawing.Size(27, 20)
  1008. Me.Label148.TabIndex = 1809
  1009. Me.Label148.Text = "11"
  1010. '
  1011. 'Label149
  1012. '
  1013. Me.Label149.AutoSize = True
  1014. Me.Label149.Font = New System.Drawing.Font("微軟正黑體", 12.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1015. Me.Label149.ForeColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
  1016. Me.Label149.Location = New System.Drawing.Point(758, 856)
  1017. Me.Label149.Name = "Label149"
  1018. Me.Label149.Size = New System.Drawing.Size(27, 20)
  1019. Me.Label149.TabIndex = 1808
  1020. Me.Label149.Text = "10"
  1021. '
  1022. 'Label150
  1023. '
  1024. Me.Label150.AutoSize = True
  1025. Me.Label150.Font = New System.Drawing.Font("微軟正黑體", 12.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1026. Me.Label150.ForeColor = System.Drawing.Color.Blue
  1027. Me.Label150.Location = New System.Drawing.Point(683, 856)
  1028. Me.Label150.Name = "Label150"
  1029. Me.Label150.Size = New System.Drawing.Size(27, 20)
  1030. Me.Label150.TabIndex = 1807
  1031. Me.Label150.Text = "09"
  1032. '
  1033. 'Label151
  1034. '
  1035. Me.Label151.AutoSize = True
  1036. Me.Label151.Font = New System.Drawing.Font("微軟正黑體", 12.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1037. Me.Label151.ForeColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
  1038. Me.Label151.Location = New System.Drawing.Point(608, 856)
  1039. Me.Label151.Name = "Label151"
  1040. Me.Label151.Size = New System.Drawing.Size(27, 20)
  1041. Me.Label151.TabIndex = 1806
  1042. Me.Label151.Text = "08"
  1043. '
  1044. 'Label152
  1045. '
  1046. Me.Label152.AutoSize = True
  1047. Me.Label152.Location = New System.Drawing.Point(604, 885)
  1048. Me.Label152.Name = "Label152"
  1049. Me.Label152.Size = New System.Drawing.Size(1213, 16)
  1050. Me.Label152.TabIndex = 1856
  1051. Me.Label152.Text = resources.GetString("Label152.Text")
  1052. '
  1053. 'Label101
  1054. '
  1055. Me.Label101.AutoSize = True
  1056. Me.Label101.Font = New System.Drawing.Font("微軟正黑體", 14.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1057. Me.Label101.Location = New System.Drawing.Point(1725, 9)
  1058. Me.Label101.Name = "Label101"
  1059. Me.Label101.Size = New System.Drawing.Size(87, 24)
  1060. Me.Label101.TabIndex = 1805
  1061. Me.Label101.Text = "值 日 生"
  1062. '
  1063. '值日生1_bt
  1064. '
  1065. Me.值日生1_bt.Location = New System.Drawing.Point(1720, 35)
  1066. Me.值日生1_bt.Name = "值日生1_bt"
  1067. Me.值日生1_bt.Size = New System.Drawing.Size(100, 23)
  1068. Me.值日生1_bt.TabIndex = 1804
  1069. '
  1070. '值日生2_bt
  1071. '
  1072. Me.值日生2_bt.Location = New System.Drawing.Point(1720, 61)
  1073. Me.值日生2_bt.Name = "值日生2_bt"
  1074. Me.值日生2_bt.Size = New System.Drawing.Size(100, 23)
  1075. Me.值日生2_bt.TabIndex = 1803
  1076. '
  1077. '解鎖_ch
  1078. '
  1079. Me.解鎖_ch.AutoSize = True
  1080. Me.解鎖_ch.Location = New System.Drawing.Point(159, 108)
  1081. Me.解鎖_ch.Name = "解鎖_ch"
  1082. Me.解鎖_ch.Size = New System.Drawing.Size(51, 20)
  1083. Me.解鎖_ch.TabIndex = 1802
  1084. Me.解鎖_ch.Text = "特殊"
  1085. Me.解鎖_ch.UseVisualStyleBackColor = True
  1086. '
  1087. '簽核_bt
  1088. '
  1089. Me.簽核_bt.Font = New System.Drawing.Font("微軟正黑體", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1090. Me.簽核_bt.ForeColor = System.Drawing.Color.Blue
  1091. Me.簽核_bt.Location = New System.Drawing.Point(556, 43)
  1092. Me.簽核_bt.Name = "簽核_bt"
  1093. Me.簽核_bt.Size = New System.Drawing.Size(40, 61)
  1094. Me.簽核_bt.TabIndex = 1801
  1095. Me.簽核_bt.Text = "簽核"
  1096. Me.簽核_bt.UseVisualStyleBackColor = True
  1097. '
  1098. 'TextBox10
  1099. '
  1100. Me.TextBox10.BackColor = System.Drawing.Color.Gray
  1101. Me.TextBox10.Font = New System.Drawing.Font("微軟正黑體", 12.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1102. Me.TextBox10.Location = New System.Drawing.Point(471, 75)
  1103. Me.TextBox10.Name = "TextBox10"
  1104. Me.TextBox10.Size = New System.Drawing.Size(80, 29)
  1105. Me.TextBox10.TabIndex = 1800
  1106. Me.TextBox10.Text = "休假"
  1107. Me.TextBox10.TextAlign = System.Windows.Forms.HorizontalAlignment.Center
  1108. '
  1109. 'ComboBox80
  1110. '
  1111. Me.ComboBox80.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
  1112. Me.ComboBox80.Font = New System.Drawing.Font("微軟正黑體", 14.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1113. Me.ComboBox80.FormattingEnabled = True
  1114. Me.ComboBox80.Items.AddRange(New Object() {"1", "2", "3", "4", "5", "6", "7", "8", "9", "0"})
  1115. Me.ComboBox80.Location = New System.Drawing.Point(569, 819)
  1116. Me.ComboBox80.Name = "ComboBox80"
  1117. Me.ComboBox80.Size = New System.Drawing.Size(42, 32)
  1118. Me.ComboBox80.TabIndex = 1799
  1119. '
  1120. 'ComboBox79
  1121. '
  1122. Me.ComboBox79.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
  1123. Me.ComboBox79.Font = New System.Drawing.Font("微軟正黑體", 14.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1124. Me.ComboBox79.FormattingEnabled = True
  1125. Me.ComboBox79.Items.AddRange(New Object() {"1", "2", "3", "4", "5", "6", "7", "8", "9", "0"})
  1126. Me.ComboBox79.Location = New System.Drawing.Point(524, 819)
  1127. Me.ComboBox79.Name = "ComboBox79"
  1128. Me.ComboBox79.Size = New System.Drawing.Size(42, 32)
  1129. Me.ComboBox79.TabIndex = 1798
  1130. '
  1131. 'ComboBox78
  1132. '
  1133. Me.ComboBox78.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
  1134. Me.ComboBox78.Font = New System.Drawing.Font("微軟正黑體", 14.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1135. Me.ComboBox78.FormattingEnabled = True
  1136. Me.ComboBox78.Items.AddRange(New Object() {"1", "2", "3", "4", "5", "6", "7", "8", "9", "0"})
  1137. Me.ComboBox78.Location = New System.Drawing.Point(569, 783)
  1138. Me.ComboBox78.Name = "ComboBox78"
  1139. Me.ComboBox78.Size = New System.Drawing.Size(42, 32)
  1140. Me.ComboBox78.TabIndex = 1797
  1141. '
  1142. 'ComboBox77
  1143. '
  1144. Me.ComboBox77.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
  1145. Me.ComboBox77.Font = New System.Drawing.Font("微軟正黑體", 14.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1146. Me.ComboBox77.FormattingEnabled = True
  1147. Me.ComboBox77.Items.AddRange(New Object() {"1", "2", "3", "4", "5", "6", "7", "8", "9", "0"})
  1148. Me.ComboBox77.Location = New System.Drawing.Point(524, 783)
  1149. Me.ComboBox77.Name = "ComboBox77"
  1150. Me.ComboBox77.Size = New System.Drawing.Size(42, 32)
  1151. Me.ComboBox77.TabIndex = 1796
  1152. '
  1153. 'ComboBox76
  1154. '
  1155. Me.ComboBox76.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
  1156. Me.ComboBox76.Font = New System.Drawing.Font("微軟正黑體", 14.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1157. Me.ComboBox76.FormattingEnabled = True
  1158. Me.ComboBox76.Items.AddRange(New Object() {"1", "2", "3", "4", "5", "6", "7", "8", "9", "0"})
  1159. Me.ComboBox76.Location = New System.Drawing.Point(569, 747)
  1160. Me.ComboBox76.Name = "ComboBox76"
  1161. Me.ComboBox76.Size = New System.Drawing.Size(42, 32)
  1162. Me.ComboBox76.TabIndex = 1795
  1163. '
  1164. 'ComboBox75
  1165. '
  1166. Me.ComboBox75.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
  1167. Me.ComboBox75.Font = New System.Drawing.Font("微軟正黑體", 14.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1168. Me.ComboBox75.FormattingEnabled = True
  1169. Me.ComboBox75.Items.AddRange(New Object() {"1", "2", "3", "4", "5", "6", "7", "8", "9", "0"})
  1170. Me.ComboBox75.Location = New System.Drawing.Point(524, 747)
  1171. Me.ComboBox75.Name = "ComboBox75"
  1172. Me.ComboBox75.Size = New System.Drawing.Size(42, 32)
  1173. Me.ComboBox75.TabIndex = 1794
  1174. '
  1175. 'ComboBox74
  1176. '
  1177. Me.ComboBox74.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
  1178. Me.ComboBox74.Font = New System.Drawing.Font("微軟正黑體", 14.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1179. Me.ComboBox74.FormattingEnabled = True
  1180. Me.ComboBox74.Items.AddRange(New Object() {"1", "2", "3", "4", "5", "6", "7", "8", "9", "0"})
  1181. Me.ComboBox74.Location = New System.Drawing.Point(569, 712)
  1182. Me.ComboBox74.Name = "ComboBox74"
  1183. Me.ComboBox74.Size = New System.Drawing.Size(42, 32)
  1184. Me.ComboBox74.TabIndex = 1793
  1185. '
  1186. 'ComboBox73
  1187. '
  1188. Me.ComboBox73.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
  1189. Me.ComboBox73.Font = New System.Drawing.Font("微軟正黑體", 14.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1190. Me.ComboBox73.FormattingEnabled = True
  1191. Me.ComboBox73.Items.AddRange(New Object() {"1", "2", "3", "4", "5", "6", "7", "8", "9", "0"})
  1192. Me.ComboBox73.Location = New System.Drawing.Point(524, 712)
  1193. Me.ComboBox73.Name = "ComboBox73"
  1194. Me.ComboBox73.Size = New System.Drawing.Size(42, 32)
  1195. Me.ComboBox73.TabIndex = 1792
  1196. '
  1197. 'ComboBox72
  1198. '
  1199. Me.ComboBox72.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
  1200. Me.ComboBox72.Font = New System.Drawing.Font("微軟正黑體", 14.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1201. Me.ComboBox72.FormattingEnabled = True
  1202. Me.ComboBox72.Items.AddRange(New Object() {"1", "2", "3", "4", "5", "6", "7", "8", "9", "0"})
  1203. Me.ComboBox72.Location = New System.Drawing.Point(569, 676)
  1204. Me.ComboBox72.Name = "ComboBox72"
  1205. Me.ComboBox72.Size = New System.Drawing.Size(42, 32)
  1206. Me.ComboBox72.TabIndex = 1791
  1207. '
  1208. 'ComboBox71
  1209. '
  1210. Me.ComboBox71.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
  1211. Me.ComboBox71.Font = New System.Drawing.Font("微軟正黑體", 14.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1212. Me.ComboBox71.FormattingEnabled = True
  1213. Me.ComboBox71.Items.AddRange(New Object() {"1", "2", "3", "4", "5", "6", "7", "8", "9", "0"})
  1214. Me.ComboBox71.Location = New System.Drawing.Point(524, 676)
  1215. Me.ComboBox71.Name = "ComboBox71"
  1216. Me.ComboBox71.Size = New System.Drawing.Size(42, 32)
  1217. Me.ComboBox71.TabIndex = 1790
  1218. '
  1219. 'ComboBox70
  1220. '
  1221. Me.ComboBox70.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
  1222. Me.ComboBox70.Font = New System.Drawing.Font("微軟正黑體", 14.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1223. Me.ComboBox70.FormattingEnabled = True
  1224. Me.ComboBox70.Items.AddRange(New Object() {"1", "2", "3", "4", "5", "6", "7", "8", "9", "0"})
  1225. Me.ComboBox70.Location = New System.Drawing.Point(569, 640)
  1226. Me.ComboBox70.Name = "ComboBox70"
  1227. Me.ComboBox70.Size = New System.Drawing.Size(42, 32)
  1228. Me.ComboBox70.TabIndex = 1789
  1229. '
  1230. 'ComboBox69
  1231. '
  1232. Me.ComboBox69.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
  1233. Me.ComboBox69.Font = New System.Drawing.Font("微軟正黑體", 14.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1234. Me.ComboBox69.FormattingEnabled = True
  1235. Me.ComboBox69.Items.AddRange(New Object() {"1", "2", "3", "4", "5", "6", "7", "8", "9", "0"})
  1236. Me.ComboBox69.Location = New System.Drawing.Point(524, 640)
  1237. Me.ComboBox69.Name = "ComboBox69"
  1238. Me.ComboBox69.Size = New System.Drawing.Size(42, 32)
  1239. Me.ComboBox69.TabIndex = 1788
  1240. '
  1241. 'ComboBox68
  1242. '
  1243. Me.ComboBox68.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
  1244. Me.ComboBox68.Font = New System.Drawing.Font("微軟正黑體", 14.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1245. Me.ComboBox68.FormattingEnabled = True
  1246. Me.ComboBox68.Items.AddRange(New Object() {"1", "2", "3", "4", "5", "6", "7", "8", "9", "0"})
  1247. Me.ComboBox68.Location = New System.Drawing.Point(569, 604)
  1248. Me.ComboBox68.Name = "ComboBox68"
  1249. Me.ComboBox68.Size = New System.Drawing.Size(42, 32)
  1250. Me.ComboBox68.TabIndex = 1787
  1251. '
  1252. 'ComboBox67
  1253. '
  1254. Me.ComboBox67.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
  1255. Me.ComboBox67.Font = New System.Drawing.Font("微軟正黑體", 14.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1256. Me.ComboBox67.FormattingEnabled = True
  1257. Me.ComboBox67.Items.AddRange(New Object() {"1", "2", "3", "4", "5", "6", "7", "8", "9", "0"})
  1258. Me.ComboBox67.Location = New System.Drawing.Point(524, 604)
  1259. Me.ComboBox67.Name = "ComboBox67"
  1260. Me.ComboBox67.Size = New System.Drawing.Size(42, 32)
  1261. Me.ComboBox67.TabIndex = 1786
  1262. '
  1263. 'ComboBox66
  1264. '
  1265. Me.ComboBox66.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
  1266. Me.ComboBox66.Font = New System.Drawing.Font("微軟正黑體", 14.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1267. Me.ComboBox66.FormattingEnabled = True
  1268. Me.ComboBox66.Items.AddRange(New Object() {"1", "2", "3", "4", "5", "6", "7", "8", "9", "0"})
  1269. Me.ComboBox66.Location = New System.Drawing.Point(569, 568)
  1270. Me.ComboBox66.Name = "ComboBox66"
  1271. Me.ComboBox66.Size = New System.Drawing.Size(42, 32)
  1272. Me.ComboBox66.TabIndex = 1785
  1273. '
  1274. 'ComboBox65
  1275. '
  1276. Me.ComboBox65.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
  1277. Me.ComboBox65.Font = New System.Drawing.Font("微軟正黑體", 14.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1278. Me.ComboBox65.FormattingEnabled = True
  1279. Me.ComboBox65.Items.AddRange(New Object() {"1", "2", "3", "4", "5", "6", "7", "8", "9", "0"})
  1280. Me.ComboBox65.Location = New System.Drawing.Point(524, 568)
  1281. Me.ComboBox65.Name = "ComboBox65"
  1282. Me.ComboBox65.Size = New System.Drawing.Size(42, 32)
  1283. Me.ComboBox65.TabIndex = 1784
  1284. '
  1285. 'ComboBox64
  1286. '
  1287. Me.ComboBox64.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
  1288. Me.ComboBox64.Font = New System.Drawing.Font("微軟正黑體", 14.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1289. Me.ComboBox64.FormattingEnabled = True
  1290. Me.ComboBox64.Items.AddRange(New Object() {"1", "2", "3", "4", "5", "6", "7", "8", "9", "0"})
  1291. Me.ComboBox64.Location = New System.Drawing.Point(569, 531)
  1292. Me.ComboBox64.Name = "ComboBox64"
  1293. Me.ComboBox64.Size = New System.Drawing.Size(42, 32)
  1294. Me.ComboBox64.TabIndex = 1783
  1295. '
  1296. 'ComboBox63
  1297. '
  1298. Me.ComboBox63.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
  1299. Me.ComboBox63.Font = New System.Drawing.Font("微軟正黑體", 14.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1300. Me.ComboBox63.FormattingEnabled = True
  1301. Me.ComboBox63.Items.AddRange(New Object() {"1", "2", "3", "4", "5", "6", "7", "8", "9", "0"})
  1302. Me.ComboBox63.Location = New System.Drawing.Point(524, 531)
  1303. Me.ComboBox63.Name = "ComboBox63"
  1304. Me.ComboBox63.Size = New System.Drawing.Size(42, 32)
  1305. Me.ComboBox63.TabIndex = 1782
  1306. '
  1307. 'ComboBox62
  1308. '
  1309. Me.ComboBox62.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
  1310. Me.ComboBox62.Font = New System.Drawing.Font("微軟正黑體", 14.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1311. Me.ComboBox62.FormattingEnabled = True
  1312. Me.ComboBox62.Items.AddRange(New Object() {"1", "2", "3", "4", "5", "6", "7", "8", "9", "0"})
  1313. Me.ComboBox62.Location = New System.Drawing.Point(569, 495)
  1314. Me.ComboBox62.Name = "ComboBox62"
  1315. Me.ComboBox62.Size = New System.Drawing.Size(42, 32)
  1316. Me.ComboBox62.TabIndex = 1781
  1317. '
  1318. 'ComboBox61
  1319. '
  1320. Me.ComboBox61.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
  1321. Me.ComboBox61.Font = New System.Drawing.Font("微軟正黑體", 14.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1322. Me.ComboBox61.FormattingEnabled = True
  1323. Me.ComboBox61.Items.AddRange(New Object() {"1", "2", "3", "4", "5", "6", "7", "8", "9", "0"})
  1324. Me.ComboBox61.Location = New System.Drawing.Point(524, 495)
  1325. Me.ComboBox61.Name = "ComboBox61"
  1326. Me.ComboBox61.Size = New System.Drawing.Size(42, 32)
  1327. Me.ComboBox61.TabIndex = 1780
  1328. '
  1329. 'ComboBox60
  1330. '
  1331. Me.ComboBox60.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
  1332. Me.ComboBox60.Font = New System.Drawing.Font("微軟正黑體", 14.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1333. Me.ComboBox60.FormattingEnabled = True
  1334. Me.ComboBox60.Items.AddRange(New Object() {"1", "2", "3", "4", "5", "6", "7", "8", "9", "0"})
  1335. Me.ComboBox60.Location = New System.Drawing.Point(569, 459)
  1336. Me.ComboBox60.Name = "ComboBox60"
  1337. Me.ComboBox60.Size = New System.Drawing.Size(42, 32)
  1338. Me.ComboBox60.TabIndex = 1779
  1339. '
  1340. 'ComboBox59
  1341. '
  1342. Me.ComboBox59.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
  1343. Me.ComboBox59.Font = New System.Drawing.Font("微軟正黑體", 14.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1344. Me.ComboBox59.FormattingEnabled = True
  1345. Me.ComboBox59.Items.AddRange(New Object() {"1", "2", "3", "4", "5", "6", "7", "8", "9", "0"})
  1346. Me.ComboBox59.Location = New System.Drawing.Point(524, 459)
  1347. Me.ComboBox59.Name = "ComboBox59"
  1348. Me.ComboBox59.Size = New System.Drawing.Size(42, 32)
  1349. Me.ComboBox59.TabIndex = 1778
  1350. '
  1351. 'ComboBox58
  1352. '
  1353. Me.ComboBox58.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
  1354. Me.ComboBox58.Font = New System.Drawing.Font("微軟正黑體", 14.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1355. Me.ComboBox58.FormattingEnabled = True
  1356. Me.ComboBox58.Items.AddRange(New Object() {"1", "2", "3", "4", "5", "6", "7", "8", "9", "0"})
  1357. Me.ComboBox58.Location = New System.Drawing.Point(569, 423)
  1358. Me.ComboBox58.Name = "ComboBox58"
  1359. Me.ComboBox58.Size = New System.Drawing.Size(42, 32)
  1360. Me.ComboBox58.TabIndex = 1777
  1361. '
  1362. 'ComboBox57
  1363. '
  1364. Me.ComboBox57.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
  1365. Me.ComboBox57.Font = New System.Drawing.Font("微軟正黑體", 14.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1366. Me.ComboBox57.FormattingEnabled = True
  1367. Me.ComboBox57.Items.AddRange(New Object() {"1", "2", "3", "4", "5", "6", "7", "8", "9", "0"})
  1368. Me.ComboBox57.Location = New System.Drawing.Point(524, 423)
  1369. Me.ComboBox57.Name = "ComboBox57"
  1370. Me.ComboBox57.Size = New System.Drawing.Size(42, 32)
  1371. Me.ComboBox57.TabIndex = 1776
  1372. '
  1373. 'ComboBox56
  1374. '
  1375. Me.ComboBox56.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
  1376. Me.ComboBox56.Font = New System.Drawing.Font("微軟正黑體", 14.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1377. Me.ComboBox56.FormattingEnabled = True
  1378. Me.ComboBox56.Items.AddRange(New Object() {"1", "2", "3", "4", "5", "6", "7", "8", "9", "0"})
  1379. Me.ComboBox56.Location = New System.Drawing.Point(569, 387)
  1380. Me.ComboBox56.Name = "ComboBox56"
  1381. Me.ComboBox56.Size = New System.Drawing.Size(42, 32)
  1382. Me.ComboBox56.TabIndex = 1775
  1383. '
  1384. 'ComboBox55
  1385. '
  1386. Me.ComboBox55.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
  1387. Me.ComboBox55.Font = New System.Drawing.Font("微軟正黑體", 14.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1388. Me.ComboBox55.FormattingEnabled = True
  1389. Me.ComboBox55.Items.AddRange(New Object() {"1", "2", "3", "4", "5", "6", "7", "8", "9", "0"})
  1390. Me.ComboBox55.Location = New System.Drawing.Point(524, 387)
  1391. Me.ComboBox55.Name = "ComboBox55"
  1392. Me.ComboBox55.Size = New System.Drawing.Size(42, 32)
  1393. Me.ComboBox55.TabIndex = 1774
  1394. '
  1395. 'ComboBox54
  1396. '
  1397. Me.ComboBox54.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
  1398. Me.ComboBox54.Font = New System.Drawing.Font("微軟正黑體", 14.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1399. Me.ComboBox54.FormattingEnabled = True
  1400. Me.ComboBox54.Items.AddRange(New Object() {"1", "2", "3", "4", "5", "6", "7", "8", "9", "0"})
  1401. Me.ComboBox54.Location = New System.Drawing.Point(569, 351)
  1402. Me.ComboBox54.Name = "ComboBox54"
  1403. Me.ComboBox54.Size = New System.Drawing.Size(42, 32)
  1404. Me.ComboBox54.TabIndex = 1773
  1405. '
  1406. 'ComboBox53
  1407. '
  1408. Me.ComboBox53.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
  1409. Me.ComboBox53.Font = New System.Drawing.Font("微軟正黑體", 14.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1410. Me.ComboBox53.FormattingEnabled = True
  1411. Me.ComboBox53.Items.AddRange(New Object() {"1", "2", "3", "4", "5", "6", "7", "8", "9", "0"})
  1412. Me.ComboBox53.Location = New System.Drawing.Point(524, 351)
  1413. Me.ComboBox53.Name = "ComboBox53"
  1414. Me.ComboBox53.Size = New System.Drawing.Size(42, 32)
  1415. Me.ComboBox53.TabIndex = 1772
  1416. '
  1417. 'ComboBox52
  1418. '
  1419. Me.ComboBox52.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
  1420. Me.ComboBox52.Font = New System.Drawing.Font("微軟正黑體", 14.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1421. Me.ComboBox52.FormattingEnabled = True
  1422. Me.ComboBox52.Items.AddRange(New Object() {"1", "2", "3", "4", "5", "6", "7", "8", "9", "0"})
  1423. Me.ComboBox52.Location = New System.Drawing.Point(569, 315)
  1424. Me.ComboBox52.Name = "ComboBox52"
  1425. Me.ComboBox52.Size = New System.Drawing.Size(42, 32)
  1426. Me.ComboBox52.TabIndex = 1771
  1427. '
  1428. 'ComboBox51
  1429. '
  1430. Me.ComboBox51.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
  1431. Me.ComboBox51.Font = New System.Drawing.Font("微軟正黑體", 14.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1432. Me.ComboBox51.FormattingEnabled = True
  1433. Me.ComboBox51.Items.AddRange(New Object() {"1", "2", "3", "4", "5", "6", "7", "8", "9", "0"})
  1434. Me.ComboBox51.Location = New System.Drawing.Point(524, 315)
  1435. Me.ComboBox51.Name = "ComboBox51"
  1436. Me.ComboBox51.Size = New System.Drawing.Size(42, 32)
  1437. Me.ComboBox51.TabIndex = 1770
  1438. '
  1439. 'ComboBox50
  1440. '
  1441. Me.ComboBox50.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
  1442. Me.ComboBox50.Font = New System.Drawing.Font("微軟正黑體", 14.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1443. Me.ComboBox50.FormattingEnabled = True
  1444. Me.ComboBox50.Items.AddRange(New Object() {"1", "2", "3", "4", "5", "6", "7", "8", "9", "0"})
  1445. Me.ComboBox50.Location = New System.Drawing.Point(569, 279)
  1446. Me.ComboBox50.Name = "ComboBox50"
  1447. Me.ComboBox50.Size = New System.Drawing.Size(42, 32)
  1448. Me.ComboBox50.TabIndex = 1769
  1449. '
  1450. 'ComboBox49
  1451. '
  1452. Me.ComboBox49.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
  1453. Me.ComboBox49.Font = New System.Drawing.Font("微軟正黑體", 14.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1454. Me.ComboBox49.FormattingEnabled = True
  1455. Me.ComboBox49.Items.AddRange(New Object() {"1", "2", "3", "4", "5", "6", "7", "8", "9", "0"})
  1456. Me.ComboBox49.Location = New System.Drawing.Point(524, 279)
  1457. Me.ComboBox49.Name = "ComboBox49"
  1458. Me.ComboBox49.Size = New System.Drawing.Size(42, 32)
  1459. Me.ComboBox49.TabIndex = 1768
  1460. '
  1461. 'ComboBox48
  1462. '
  1463. Me.ComboBox48.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
  1464. Me.ComboBox48.Font = New System.Drawing.Font("微軟正黑體", 14.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1465. Me.ComboBox48.FormattingEnabled = True
  1466. Me.ComboBox48.Items.AddRange(New Object() {"1", "2", "3", "4", "5", "6", "7", "8", "9", "0"})
  1467. Me.ComboBox48.Location = New System.Drawing.Point(569, 243)
  1468. Me.ComboBox48.Name = "ComboBox48"
  1469. Me.ComboBox48.Size = New System.Drawing.Size(42, 32)
  1470. Me.ComboBox48.TabIndex = 1767
  1471. '
  1472. 'ComboBox47
  1473. '
  1474. Me.ComboBox47.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
  1475. Me.ComboBox47.Font = New System.Drawing.Font("微軟正黑體", 14.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1476. Me.ComboBox47.FormattingEnabled = True
  1477. Me.ComboBox47.Items.AddRange(New Object() {"1", "2", "3", "4", "5", "6", "7", "8", "9", "0"})
  1478. Me.ComboBox47.Location = New System.Drawing.Point(524, 243)
  1479. Me.ComboBox47.Name = "ComboBox47"
  1480. Me.ComboBox47.Size = New System.Drawing.Size(42, 32)
  1481. Me.ComboBox47.TabIndex = 1766
  1482. '
  1483. 'ComboBox46
  1484. '
  1485. Me.ComboBox46.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
  1486. Me.ComboBox46.Font = New System.Drawing.Font("微軟正黑體", 14.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1487. Me.ComboBox46.FormattingEnabled = True
  1488. Me.ComboBox46.Items.AddRange(New Object() {"1", "2", "3", "4", "5", "6", "7", "8", "9", "0"})
  1489. Me.ComboBox46.Location = New System.Drawing.Point(569, 208)
  1490. Me.ComboBox46.Name = "ComboBox46"
  1491. Me.ComboBox46.Size = New System.Drawing.Size(42, 32)
  1492. Me.ComboBox46.TabIndex = 1765
  1493. '
  1494. 'ComboBox45
  1495. '
  1496. Me.ComboBox45.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
  1497. Me.ComboBox45.Font = New System.Drawing.Font("微軟正黑體", 14.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1498. Me.ComboBox45.FormattingEnabled = True
  1499. Me.ComboBox45.Items.AddRange(New Object() {"1", "2", "3", "4", "5", "6", "7", "8", "9", "0"})
  1500. Me.ComboBox45.Location = New System.Drawing.Point(524, 208)
  1501. Me.ComboBox45.Name = "ComboBox45"
  1502. Me.ComboBox45.Size = New System.Drawing.Size(42, 32)
  1503. Me.ComboBox45.TabIndex = 1764
  1504. '
  1505. 'ComboBox44
  1506. '
  1507. Me.ComboBox44.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
  1508. Me.ComboBox44.Font = New System.Drawing.Font("微軟正黑體", 14.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1509. Me.ComboBox44.FormattingEnabled = True
  1510. Me.ComboBox44.Items.AddRange(New Object() {"1", "2", "3", "4", "5", "6", "7", "8", "9", "0"})
  1511. Me.ComboBox44.Location = New System.Drawing.Point(569, 172)
  1512. Me.ComboBox44.Name = "ComboBox44"
  1513. Me.ComboBox44.Size = New System.Drawing.Size(42, 32)
  1514. Me.ComboBox44.TabIndex = 1763
  1515. '
  1516. 'ComboBox43
  1517. '
  1518. Me.ComboBox43.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
  1519. Me.ComboBox43.Font = New System.Drawing.Font("微軟正黑體", 14.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1520. Me.ComboBox43.FormattingEnabled = True
  1521. Me.ComboBox43.Items.AddRange(New Object() {"1", "2", "3", "4", "5", "6", "7", "8", "9", "0"})
  1522. Me.ComboBox43.Location = New System.Drawing.Point(524, 172)
  1523. Me.ComboBox43.Name = "ComboBox43"
  1524. Me.ComboBox43.Size = New System.Drawing.Size(42, 32)
  1525. Me.ComboBox43.TabIndex = 1762
  1526. '
  1527. 'ComboBox42
  1528. '
  1529. Me.ComboBox42.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
  1530. Me.ComboBox42.Font = New System.Drawing.Font("微軟正黑體", 14.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1531. Me.ComboBox42.FormattingEnabled = True
  1532. Me.ComboBox42.Items.AddRange(New Object() {"1", "2", "3", "4", "5", "6", "7", "8", "9", "0"})
  1533. Me.ComboBox42.Location = New System.Drawing.Point(569, 135)
  1534. Me.ComboBox42.Name = "ComboBox42"
  1535. Me.ComboBox42.Size = New System.Drawing.Size(42, 32)
  1536. Me.ComboBox42.TabIndex = 1761
  1537. '
  1538. 'ComboBox41
  1539. '
  1540. Me.ComboBox41.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
  1541. Me.ComboBox41.Font = New System.Drawing.Font("微軟正黑體", 14.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1542. Me.ComboBox41.FormattingEnabled = True
  1543. Me.ComboBox41.Items.AddRange(New Object() {"1", "2", "3", "4", "5", "6", "7", "8", "9", "0"})
  1544. Me.ComboBox41.Location = New System.Drawing.Point(524, 135)
  1545. Me.ComboBox41.Name = "ComboBox41"
  1546. Me.ComboBox41.Size = New System.Drawing.Size(42, 32)
  1547. Me.ComboBox41.TabIndex = 1760
  1548. '
  1549. 'TextBox9
  1550. '
  1551. Me.TextBox9.BackColor = System.Drawing.Color.LightSalmon
  1552. Me.TextBox9.Font = New System.Drawing.Font("微軟正黑體", 12.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1553. Me.TextBox9.Location = New System.Drawing.Point(385, 75)
  1554. Me.TextBox9.Name = "TextBox9"
  1555. Me.TextBox9.Size = New System.Drawing.Size(80, 29)
  1556. Me.TextBox9.TabIndex = 1759
  1557. Me.TextBox9.Text = "混和"
  1558. Me.TextBox9.TextAlign = System.Windows.Forms.HorizontalAlignment.Center
  1559. '
  1560. 'TextBox8
  1561. '
  1562. Me.TextBox8.BackColor = System.Drawing.Color.LightPink
  1563. Me.TextBox8.Font = New System.Drawing.Font("微軟正黑體", 12.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1564. Me.TextBox8.Location = New System.Drawing.Point(299, 75)
  1565. Me.TextBox8.Name = "TextBox8"
  1566. Me.TextBox8.Size = New System.Drawing.Size(80, 29)
  1567. Me.TextBox8.TabIndex = 1758
  1568. Me.TextBox8.Text = "治療(習)"
  1569. Me.TextBox8.TextAlign = System.Windows.Forms.HorizontalAlignment.Center
  1570. '
  1571. 'TextBox7
  1572. '
  1573. Me.TextBox7.BackColor = System.Drawing.Color.LightGreen
  1574. Me.TextBox7.Font = New System.Drawing.Font("微軟正黑體", 12.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1575. Me.TextBox7.Location = New System.Drawing.Point(213, 75)
  1576. Me.TextBox7.Name = "TextBox7"
  1577. Me.TextBox7.Size = New System.Drawing.Size(80, 29)
  1578. Me.TextBox7.TabIndex = 1757
  1579. Me.TextBox7.Text = "掛號(習)"
  1580. Me.TextBox7.TextAlign = System.Windows.Forms.HorizontalAlignment.Center
  1581. '
  1582. 'TextBox6
  1583. '
  1584. Me.TextBox6.BackColor = System.Drawing.Color.LightGray
  1585. Me.TextBox6.Font = New System.Drawing.Font("微軟正黑體", 12.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1586. Me.TextBox6.Location = New System.Drawing.Point(127, 75)
  1587. Me.TextBox6.Name = "TextBox6"
  1588. Me.TextBox6.Size = New System.Drawing.Size(80, 29)
  1589. Me.TextBox6.TabIndex = 1756
  1590. Me.TextBox6.Text = "行政"
  1591. Me.TextBox6.TextAlign = System.Windows.Forms.HorizontalAlignment.Center
  1592. '
  1593. 'TextBox5
  1594. '
  1595. Me.TextBox5.BackColor = System.Drawing.Color.LightGoldenrodYellow
  1596. Me.TextBox5.Font = New System.Drawing.Font("微軟正黑體", 12.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1597. Me.TextBox5.Location = New System.Drawing.Point(471, 43)
  1598. Me.TextBox5.Name = "TextBox5"
  1599. Me.TextBox5.Size = New System.Drawing.Size(80, 29)
  1600. Me.TextBox5.TabIndex = 1755
  1601. Me.TextBox5.Text = "醫美"
  1602. Me.TextBox5.TextAlign = System.Windows.Forms.HorizontalAlignment.Center
  1603. '
  1604. 'TextBox4
  1605. '
  1606. Me.TextBox4.BackColor = System.Drawing.Color.LightCyan
  1607. Me.TextBox4.Font = New System.Drawing.Font("微軟正黑體", 12.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1608. Me.TextBox4.Location = New System.Drawing.Point(385, 43)
  1609. Me.TextBox4.Name = "TextBox4"
  1610. Me.TextBox4.Size = New System.Drawing.Size(80, 29)
  1611. Me.TextBox4.TabIndex = 1754
  1612. Me.TextBox4.Text = "櫃台"
  1613. Me.TextBox4.TextAlign = System.Windows.Forms.HorizontalAlignment.Center
  1614. '
  1615. 'TextBox3
  1616. '
  1617. Me.TextBox3.BackColor = System.Drawing.Color.LightCoral
  1618. Me.TextBox3.Font = New System.Drawing.Font("微軟正黑體", 12.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1619. Me.TextBox3.Location = New System.Drawing.Point(299, 43)
  1620. Me.TextBox3.Name = "TextBox3"
  1621. Me.TextBox3.Size = New System.Drawing.Size(80, 29)
  1622. Me.TextBox3.TabIndex = 1753
  1623. Me.TextBox3.Text = "治療"
  1624. Me.TextBox3.TextAlign = System.Windows.Forms.HorizontalAlignment.Center
  1625. '
  1626. 'TextBox2
  1627. '
  1628. Me.TextBox2.BackColor = System.Drawing.Color.LightBlue
  1629. Me.TextBox2.Font = New System.Drawing.Font("微軟正黑體", 12.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1630. Me.TextBox2.Location = New System.Drawing.Point(213, 43)
  1631. Me.TextBox2.Name = "TextBox2"
  1632. Me.TextBox2.Size = New System.Drawing.Size(80, 29)
  1633. Me.TextBox2.TabIndex = 1752
  1634. Me.TextBox2.Text = "跟診"
  1635. Me.TextBox2.TextAlign = System.Windows.Forms.HorizontalAlignment.Center
  1636. '
  1637. 'TextBox1
  1638. '
  1639. Me.TextBox1.BackColor = System.Drawing.Color.LawnGreen
  1640. Me.TextBox1.Font = New System.Drawing.Font("微軟正黑體", 12.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1641. Me.TextBox1.Location = New System.Drawing.Point(127, 43)
  1642. Me.TextBox1.Name = "TextBox1"
  1643. Me.TextBox1.Size = New System.Drawing.Size(80, 29)
  1644. Me.TextBox1.TabIndex = 1751
  1645. Me.TextBox1.Text = "掛號"
  1646. Me.TextBox1.TextAlign = System.Windows.Forms.HorizontalAlignment.Center
  1647. '
  1648. 'DTP1
  1649. '
  1650. Me.DTP1.Format = System.Windows.Forms.DateTimePickerFormat.[Short]
  1651. Me.DTP1.Location = New System.Drawing.Point(12, 300)
  1652. Me.DTP1.Name = "DTP1"
  1653. Me.DTP1.Size = New System.Drawing.Size(100, 23)
  1654. Me.DTP1.TabIndex = 1749
  1655. Me.DTP1.Visible = False
  1656. '
  1657. '加一天_bt1
  1658. '
  1659. Me.加一天_bt1.Font = New System.Drawing.Font("微軟正黑體", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1660. Me.加一天_bt1.ForeColor = System.Drawing.Color.Blue
  1661. Me.加一天_bt1.Location = New System.Drawing.Point(557, 1)
  1662. Me.加一天_bt1.Name = "加一天_bt1"
  1663. Me.加一天_bt1.Size = New System.Drawing.Size(40, 40)
  1664. Me.加一天_bt1.TabIndex = 1748
  1665. Me.加一天_bt1.Text = "->"
  1666. Me.加一天_bt1.UseVisualStyleBackColor = True
  1667. '
  1668. '減一天_bt
  1669. '
  1670. Me.減一天_bt.Font = New System.Drawing.Font("微軟正黑體", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1671. Me.減一天_bt.ForeColor = System.Drawing.Color.Blue
  1672. Me.減一天_bt.Location = New System.Drawing.Point(415, 1)
  1673. Me.減一天_bt.Name = "減一天_bt"
  1674. Me.減一天_bt.Size = New System.Drawing.Size(40, 40)
  1675. Me.減一天_bt.TabIndex = 1747
  1676. Me.減一天_bt.Text = "<-"
  1677. Me.減一天_bt.UseVisualStyleBackColor = True
  1678. '
  1679. '指定日期_dtp
  1680. '
  1681. Me.指定日期_dtp.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  1682. Me.指定日期_dtp.Format = System.Windows.Forms.DateTimePickerFormat.[Short]
  1683. Me.指定日期_dtp.Location = New System.Drawing.Point(5, 850)
  1684. Me.指定日期_dtp.Name = "指定日期_dtp"
  1685. Me.指定日期_dtp.Size = New System.Drawing.Size(117, 23)
  1686. Me.指定日期_dtp.TabIndex = 1746
  1687. '
  1688. 'Label96
  1689. '
  1690. Me.Label96.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  1691. Me.Label96.AutoSize = True
  1692. Me.Label96.Location = New System.Drawing.Point(2, 833)
  1693. Me.Label96.Name = "Label96"
  1694. Me.Label96.Size = New System.Drawing.Size(56, 16)
  1695. Me.Label96.TabIndex = 1745
  1696. Me.Label96.Text = "指定日期"
  1697. '
  1698. 'ComboBox40
  1699. '
  1700. Me.ComboBox40.BackColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer))
  1701. Me.ComboBox40.Font = New System.Drawing.Font("新細明體", 18.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1702. Me.ComboBox40.FormattingEnabled = True
  1703. Me.ComboBox40.Items.AddRange(New Object() {"2019", "2020", "2021", "2022", "2023", "2024", "2025", "2026", "2027", "2028", "2029", "2030"})
  1704. Me.ComboBox40.Location = New System.Drawing.Point(990, 819)
  1705. Me.ComboBox40.Name = "ComboBox40"
  1706. Me.ComboBox40.Size = New System.Drawing.Size(150, 32)
  1707. Me.ComboBox40.TabIndex = 1744
  1708. '
  1709. 'ComboBox39
  1710. '
  1711. Me.ComboBox39.BackColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer))
  1712. Me.ComboBox39.Font = New System.Drawing.Font("新細明體", 18.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1713. Me.ComboBox39.FormattingEnabled = True
  1714. Me.ComboBox39.Items.AddRange(New Object() {"2019", "2020", "2021", "2022", "2023", "2024", "2025", "2026", "2027", "2028", "2029", "2030"})
  1715. Me.ComboBox39.Location = New System.Drawing.Point(615, 819)
  1716. Me.ComboBox39.Name = "ComboBox39"
  1717. Me.ComboBox39.Size = New System.Drawing.Size(150, 32)
  1718. Me.ComboBox39.TabIndex = 1743
  1719. '
  1720. 'ComboBox38
  1721. '
  1722. Me.ComboBox38.BackColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer))
  1723. Me.ComboBox38.Font = New System.Drawing.Font("新細明體", 18.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1724. Me.ComboBox38.FormattingEnabled = True
  1725. Me.ComboBox38.Items.AddRange(New Object() {"2019", "2020", "2021", "2022", "2023", "2024", "2025", "2026", "2027", "2028", "2029", "2030"})
  1726. Me.ComboBox38.Location = New System.Drawing.Point(990, 783)
  1727. Me.ComboBox38.Name = "ComboBox38"
  1728. Me.ComboBox38.Size = New System.Drawing.Size(150, 32)
  1729. Me.ComboBox38.TabIndex = 1742
  1730. '
  1731. 'ComboBox37
  1732. '
  1733. Me.ComboBox37.BackColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer))
  1734. Me.ComboBox37.Font = New System.Drawing.Font("新細明體", 18.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1735. Me.ComboBox37.FormattingEnabled = True
  1736. Me.ComboBox37.Items.AddRange(New Object() {"2019", "2020", "2021", "2022", "2023", "2024", "2025", "2026", "2027", "2028", "2029", "2030"})
  1737. Me.ComboBox37.Location = New System.Drawing.Point(615, 783)
  1738. Me.ComboBox37.Name = "ComboBox37"
  1739. Me.ComboBox37.Size = New System.Drawing.Size(150, 32)
  1740. Me.ComboBox37.TabIndex = 1741
  1741. '
  1742. 'ComboBox36
  1743. '
  1744. Me.ComboBox36.BackColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer))
  1745. Me.ComboBox36.Font = New System.Drawing.Font("新細明體", 18.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1746. Me.ComboBox36.FormattingEnabled = True
  1747. Me.ComboBox36.Items.AddRange(New Object() {"2019", "2020", "2021", "2022", "2023", "2024", "2025", "2026", "2027", "2028", "2029", "2030"})
  1748. Me.ComboBox36.Location = New System.Drawing.Point(990, 747)
  1749. Me.ComboBox36.Name = "ComboBox36"
  1750. Me.ComboBox36.Size = New System.Drawing.Size(150, 32)
  1751. Me.ComboBox36.TabIndex = 1740
  1752. '
  1753. 'ComboBox35
  1754. '
  1755. Me.ComboBox35.BackColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer))
  1756. Me.ComboBox35.Font = New System.Drawing.Font("新細明體", 18.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1757. Me.ComboBox35.FormattingEnabled = True
  1758. Me.ComboBox35.Items.AddRange(New Object() {"2019", "2020", "2021", "2022", "2023", "2024", "2025", "2026", "2027", "2028", "2029", "2030"})
  1759. Me.ComboBox35.Location = New System.Drawing.Point(615, 747)
  1760. Me.ComboBox35.Name = "ComboBox35"
  1761. Me.ComboBox35.Size = New System.Drawing.Size(150, 32)
  1762. Me.ComboBox35.TabIndex = 1739
  1763. '
  1764. 'ComboBox34
  1765. '
  1766. Me.ComboBox34.BackColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer))
  1767. Me.ComboBox34.Font = New System.Drawing.Font("新細明體", 18.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1768. Me.ComboBox34.FormattingEnabled = True
  1769. Me.ComboBox34.Items.AddRange(New Object() {"2019", "2020", "2021", "2022", "2023", "2024", "2025", "2026", "2027", "2028", "2029", "2030"})
  1770. Me.ComboBox34.Location = New System.Drawing.Point(990, 711)
  1771. Me.ComboBox34.Name = "ComboBox34"
  1772. Me.ComboBox34.Size = New System.Drawing.Size(150, 32)
  1773. Me.ComboBox34.TabIndex = 1738
  1774. '
  1775. 'ComboBox33
  1776. '
  1777. Me.ComboBox33.BackColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer))
  1778. Me.ComboBox33.Font = New System.Drawing.Font("新細明體", 18.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1779. Me.ComboBox33.FormattingEnabled = True
  1780. Me.ComboBox33.Items.AddRange(New Object() {"2019", "2020", "2021", "2022", "2023", "2024", "2025", "2026", "2027", "2028", "2029", "2030"})
  1781. Me.ComboBox33.Location = New System.Drawing.Point(615, 711)
  1782. Me.ComboBox33.Name = "ComboBox33"
  1783. Me.ComboBox33.Size = New System.Drawing.Size(150, 32)
  1784. Me.ComboBox33.TabIndex = 1737
  1785. '
  1786. 'ComboBox32
  1787. '
  1788. Me.ComboBox32.BackColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer))
  1789. Me.ComboBox32.Font = New System.Drawing.Font("新細明體", 18.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1790. Me.ComboBox32.FormattingEnabled = True
  1791. Me.ComboBox32.Items.AddRange(New Object() {"2019", "2020", "2021", "2022", "2023", "2024", "2025", "2026", "2027", "2028", "2029", "2030"})
  1792. Me.ComboBox32.Location = New System.Drawing.Point(990, 675)
  1793. Me.ComboBox32.Name = "ComboBox32"
  1794. Me.ComboBox32.Size = New System.Drawing.Size(150, 32)
  1795. Me.ComboBox32.TabIndex = 1736
  1796. '
  1797. 'ComboBox31
  1798. '
  1799. Me.ComboBox31.BackColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer))
  1800. Me.ComboBox31.Font = New System.Drawing.Font("新細明體", 18.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1801. Me.ComboBox31.FormattingEnabled = True
  1802. Me.ComboBox31.Items.AddRange(New Object() {"2019", "2020", "2021", "2022", "2023", "2024", "2025", "2026", "2027", "2028", "2029", "2030"})
  1803. Me.ComboBox31.Location = New System.Drawing.Point(615, 675)
  1804. Me.ComboBox31.Name = "ComboBox31"
  1805. Me.ComboBox31.Size = New System.Drawing.Size(150, 32)
  1806. Me.ComboBox31.TabIndex = 1735
  1807. '
  1808. 'ComboBox30
  1809. '
  1810. Me.ComboBox30.BackColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer))
  1811. Me.ComboBox30.Font = New System.Drawing.Font("新細明體", 18.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1812. Me.ComboBox30.FormattingEnabled = True
  1813. Me.ComboBox30.Items.AddRange(New Object() {"2019", "2020", "2021", "2022", "2023", "2024", "2025", "2026", "2027", "2028", "2029", "2030"})
  1814. Me.ComboBox30.Location = New System.Drawing.Point(989, 639)
  1815. Me.ComboBox30.Name = "ComboBox30"
  1816. Me.ComboBox30.Size = New System.Drawing.Size(150, 32)
  1817. Me.ComboBox30.TabIndex = 1734
  1818. '
  1819. 'ComboBox29
  1820. '
  1821. Me.ComboBox29.BackColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer))
  1822. Me.ComboBox29.Font = New System.Drawing.Font("新細明體", 18.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1823. Me.ComboBox29.FormattingEnabled = True
  1824. Me.ComboBox29.Items.AddRange(New Object() {"2019", "2020", "2021", "2022", "2023", "2024", "2025", "2026", "2027", "2028", "2029", "2030"})
  1825. Me.ComboBox29.Location = New System.Drawing.Point(615, 639)
  1826. Me.ComboBox29.Name = "ComboBox29"
  1827. Me.ComboBox29.Size = New System.Drawing.Size(150, 32)
  1828. Me.ComboBox29.TabIndex = 1733
  1829. '
  1830. 'ComboBox28
  1831. '
  1832. Me.ComboBox28.BackColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer))
  1833. Me.ComboBox28.Font = New System.Drawing.Font("新細明體", 18.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1834. Me.ComboBox28.FormattingEnabled = True
  1835. Me.ComboBox28.Items.AddRange(New Object() {"2019", "2020", "2021", "2022", "2023", "2024", "2025", "2026", "2027", "2028", "2029", "2030"})
  1836. Me.ComboBox28.Location = New System.Drawing.Point(990, 603)
  1837. Me.ComboBox28.Name = "ComboBox28"
  1838. Me.ComboBox28.Size = New System.Drawing.Size(150, 32)
  1839. Me.ComboBox28.TabIndex = 1732
  1840. '
  1841. 'ComboBox27
  1842. '
  1843. Me.ComboBox27.BackColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer))
  1844. Me.ComboBox27.Font = New System.Drawing.Font("新細明體", 18.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1845. Me.ComboBox27.FormattingEnabled = True
  1846. Me.ComboBox27.Items.AddRange(New Object() {"2019", "2020", "2021", "2022", "2023", "2024", "2025", "2026", "2027", "2028", "2029", "2030"})
  1847. Me.ComboBox27.Location = New System.Drawing.Point(615, 603)
  1848. Me.ComboBox27.Name = "ComboBox27"
  1849. Me.ComboBox27.Size = New System.Drawing.Size(150, 32)
  1850. Me.ComboBox27.TabIndex = 1731
  1851. '
  1852. 'ComboBox26
  1853. '
  1854. Me.ComboBox26.BackColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer))
  1855. Me.ComboBox26.Font = New System.Drawing.Font("新細明體", 18.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1856. Me.ComboBox26.FormattingEnabled = True
  1857. Me.ComboBox26.Items.AddRange(New Object() {"2019", "2020", "2021", "2022", "2023", "2024", "2025", "2026", "2027", "2028", "2029", "2030"})
  1858. Me.ComboBox26.Location = New System.Drawing.Point(989, 567)
  1859. Me.ComboBox26.Name = "ComboBox26"
  1860. Me.ComboBox26.Size = New System.Drawing.Size(150, 32)
  1861. Me.ComboBox26.TabIndex = 1730
  1862. '
  1863. 'ComboBox25
  1864. '
  1865. Me.ComboBox25.BackColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer))
  1866. Me.ComboBox25.Font = New System.Drawing.Font("新細明體", 18.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1867. Me.ComboBox25.FormattingEnabled = True
  1868. Me.ComboBox25.Items.AddRange(New Object() {"2019", "2020", "2021", "2022", "2023", "2024", "2025", "2026", "2027", "2028", "2029", "2030"})
  1869. Me.ComboBox25.Location = New System.Drawing.Point(615, 567)
  1870. Me.ComboBox25.Name = "ComboBox25"
  1871. Me.ComboBox25.Size = New System.Drawing.Size(150, 32)
  1872. Me.ComboBox25.TabIndex = 1729
  1873. '
  1874. 'ComboBox24
  1875. '
  1876. Me.ComboBox24.BackColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer))
  1877. Me.ComboBox24.Font = New System.Drawing.Font("新細明體", 18.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1878. Me.ComboBox24.FormattingEnabled = True
  1879. Me.ComboBox24.Items.AddRange(New Object() {"2019", "2020", "2021", "2022", "2023", "2024", "2025", "2026", "2027", "2028", "2029", "2030"})
  1880. Me.ComboBox24.Location = New System.Drawing.Point(990, 531)
  1881. Me.ComboBox24.Name = "ComboBox24"
  1882. Me.ComboBox24.Size = New System.Drawing.Size(150, 32)
  1883. Me.ComboBox24.TabIndex = 1728
  1884. '
  1885. 'ComboBox23
  1886. '
  1887. Me.ComboBox23.BackColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer))
  1888. Me.ComboBox23.Font = New System.Drawing.Font("新細明體", 18.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1889. Me.ComboBox23.FormattingEnabled = True
  1890. Me.ComboBox23.Items.AddRange(New Object() {"2019", "2020", "2021", "2022", "2023", "2024", "2025", "2026", "2027", "2028", "2029", "2030"})
  1891. Me.ComboBox23.Location = New System.Drawing.Point(615, 531)
  1892. Me.ComboBox23.Name = "ComboBox23"
  1893. Me.ComboBox23.Size = New System.Drawing.Size(150, 32)
  1894. Me.ComboBox23.TabIndex = 1727
  1895. '
  1896. 'ComboBox22
  1897. '
  1898. Me.ComboBox22.BackColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer))
  1899. Me.ComboBox22.Font = New System.Drawing.Font("新細明體", 18.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1900. Me.ComboBox22.FormattingEnabled = True
  1901. Me.ComboBox22.Items.AddRange(New Object() {"2019", "2020", "2021", "2022", "2023", "2024", "2025", "2026", "2027", "2028", "2029", "2030"})
  1902. Me.ComboBox22.Location = New System.Drawing.Point(990, 495)
  1903. Me.ComboBox22.Name = "ComboBox22"
  1904. Me.ComboBox22.Size = New System.Drawing.Size(150, 32)
  1905. Me.ComboBox22.TabIndex = 1726
  1906. '
  1907. 'ComboBox21
  1908. '
  1909. Me.ComboBox21.BackColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer))
  1910. Me.ComboBox21.Font = New System.Drawing.Font("新細明體", 18.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1911. Me.ComboBox21.FormattingEnabled = True
  1912. Me.ComboBox21.Items.AddRange(New Object() {"2019", "2020", "2021", "2022", "2023", "2024", "2025", "2026", "2027", "2028", "2029", "2030"})
  1913. Me.ComboBox21.Location = New System.Drawing.Point(615, 495)
  1914. Me.ComboBox21.Name = "ComboBox21"
  1915. Me.ComboBox21.Size = New System.Drawing.Size(150, 32)
  1916. Me.ComboBox21.TabIndex = 1725
  1917. '
  1918. 'ComboBox20
  1919. '
  1920. Me.ComboBox20.BackColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer))
  1921. Me.ComboBox20.Font = New System.Drawing.Font("新細明體", 18.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1922. Me.ComboBox20.FormattingEnabled = True
  1923. Me.ComboBox20.Items.AddRange(New Object() {"2019", "2020", "2021", "2022", "2023", "2024", "2025", "2026", "2027", "2028", "2029", "2030"})
  1924. Me.ComboBox20.Location = New System.Drawing.Point(990, 459)
  1925. Me.ComboBox20.Name = "ComboBox20"
  1926. Me.ComboBox20.Size = New System.Drawing.Size(150, 32)
  1927. Me.ComboBox20.TabIndex = 1724
  1928. '
  1929. 'ComboBox19
  1930. '
  1931. Me.ComboBox19.BackColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer))
  1932. Me.ComboBox19.Font = New System.Drawing.Font("新細明體", 18.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1933. Me.ComboBox19.FormattingEnabled = True
  1934. Me.ComboBox19.Items.AddRange(New Object() {"2019", "2020", "2021", "2022", "2023", "2024", "2025", "2026", "2027", "2028", "2029", "2030"})
  1935. Me.ComboBox19.Location = New System.Drawing.Point(615, 459)
  1936. Me.ComboBox19.Name = "ComboBox19"
  1937. Me.ComboBox19.Size = New System.Drawing.Size(150, 32)
  1938. Me.ComboBox19.TabIndex = 1723
  1939. '
  1940. 'ComboBox18
  1941. '
  1942. Me.ComboBox18.BackColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer))
  1943. Me.ComboBox18.Font = New System.Drawing.Font("新細明體", 18.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1944. Me.ComboBox18.FormattingEnabled = True
  1945. Me.ComboBox18.Items.AddRange(New Object() {"2019", "2020", "2021", "2022", "2023", "2024", "2025", "2026", "2027", "2028", "2029", "2030"})
  1946. Me.ComboBox18.Location = New System.Drawing.Point(990, 423)
  1947. Me.ComboBox18.Name = "ComboBox18"
  1948. Me.ComboBox18.Size = New System.Drawing.Size(150, 32)
  1949. Me.ComboBox18.TabIndex = 1722
  1950. '
  1951. 'ComboBox17
  1952. '
  1953. Me.ComboBox17.BackColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer))
  1954. Me.ComboBox17.Font = New System.Drawing.Font("新細明體", 18.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1955. Me.ComboBox17.FormattingEnabled = True
  1956. Me.ComboBox17.Items.AddRange(New Object() {"2019", "2020", "2021", "2022", "2023", "2024", "2025", "2026", "2027", "2028", "2029", "2030"})
  1957. Me.ComboBox17.Location = New System.Drawing.Point(615, 423)
  1958. Me.ComboBox17.Name = "ComboBox17"
  1959. Me.ComboBox17.Size = New System.Drawing.Size(150, 32)
  1960. Me.ComboBox17.TabIndex = 1721
  1961. '
  1962. 'ComboBox16
  1963. '
  1964. Me.ComboBox16.BackColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer))
  1965. Me.ComboBox16.Font = New System.Drawing.Font("新細明體", 18.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1966. Me.ComboBox16.FormattingEnabled = True
  1967. Me.ComboBox16.Items.AddRange(New Object() {"2019", "2020", "2021", "2022", "2023", "2024", "2025", "2026", "2027", "2028", "2029", "2030"})
  1968. Me.ComboBox16.Location = New System.Drawing.Point(989, 387)
  1969. Me.ComboBox16.Name = "ComboBox16"
  1970. Me.ComboBox16.Size = New System.Drawing.Size(150, 32)
  1971. Me.ComboBox16.TabIndex = 1720
  1972. '
  1973. 'ComboBox15
  1974. '
  1975. Me.ComboBox15.BackColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer))
  1976. Me.ComboBox15.Font = New System.Drawing.Font("新細明體", 18.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1977. Me.ComboBox15.FormattingEnabled = True
  1978. Me.ComboBox15.Items.AddRange(New Object() {"2019", "2020", "2021", "2022", "2023", "2024", "2025", "2026", "2027", "2028", "2029", "2030"})
  1979. Me.ComboBox15.Location = New System.Drawing.Point(615, 387)
  1980. Me.ComboBox15.Name = "ComboBox15"
  1981. Me.ComboBox15.Size = New System.Drawing.Size(150, 32)
  1982. Me.ComboBox15.TabIndex = 1719
  1983. '
  1984. 'ComboBox14
  1985. '
  1986. Me.ComboBox14.BackColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer))
  1987. Me.ComboBox14.Font = New System.Drawing.Font("新細明體", 18.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1988. Me.ComboBox14.FormattingEnabled = True
  1989. Me.ComboBox14.Items.AddRange(New Object() {"2019", "2020", "2021", "2022", "2023", "2024", "2025", "2026", "2027", "2028", "2029", "2030"})
  1990. Me.ComboBox14.Location = New System.Drawing.Point(990, 351)
  1991. Me.ComboBox14.Name = "ComboBox14"
  1992. Me.ComboBox14.Size = New System.Drawing.Size(150, 32)
  1993. Me.ComboBox14.TabIndex = 1718
  1994. '
  1995. 'ComboBox13
  1996. '
  1997. Me.ComboBox13.BackColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer))
  1998. Me.ComboBox13.Font = New System.Drawing.Font("新細明體", 18.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1999. Me.ComboBox13.FormattingEnabled = True
  2000. Me.ComboBox13.Items.AddRange(New Object() {"2019", "2020", "2021", "2022", "2023", "2024", "2025", "2026", "2027", "2028", "2029", "2030"})
  2001. Me.ComboBox13.Location = New System.Drawing.Point(615, 351)
  2002. Me.ComboBox13.Name = "ComboBox13"
  2003. Me.ComboBox13.Size = New System.Drawing.Size(150, 32)
  2004. Me.ComboBox13.TabIndex = 1717
  2005. '
  2006. 'ComboBox12
  2007. '
  2008. Me.ComboBox12.BackColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer))
  2009. Me.ComboBox12.Font = New System.Drawing.Font("新細明體", 18.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2010. Me.ComboBox12.FormattingEnabled = True
  2011. Me.ComboBox12.Items.AddRange(New Object() {"2019", "2020", "2021", "2022", "2023", "2024", "2025", "2026", "2027", "2028", "2029", "2030"})
  2012. Me.ComboBox12.Location = New System.Drawing.Point(990, 315)
  2013. Me.ComboBox12.Name = "ComboBox12"
  2014. Me.ComboBox12.Size = New System.Drawing.Size(150, 32)
  2015. Me.ComboBox12.TabIndex = 1716
  2016. '
  2017. 'ComboBox11
  2018. '
  2019. Me.ComboBox11.BackColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer))
  2020. Me.ComboBox11.Font = New System.Drawing.Font("新細明體", 18.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2021. Me.ComboBox11.FormattingEnabled = True
  2022. Me.ComboBox11.Items.AddRange(New Object() {"2019", "2020", "2021", "2022", "2023", "2024", "2025", "2026", "2027", "2028", "2029", "2030"})
  2023. Me.ComboBox11.Location = New System.Drawing.Point(615, 315)
  2024. Me.ComboBox11.Name = "ComboBox11"
  2025. Me.ComboBox11.Size = New System.Drawing.Size(150, 32)
  2026. Me.ComboBox11.TabIndex = 1715
  2027. '
  2028. 'ComboBox10
  2029. '
  2030. Me.ComboBox10.BackColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer))
  2031. Me.ComboBox10.Font = New System.Drawing.Font("新細明體", 18.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2032. Me.ComboBox10.FormattingEnabled = True
  2033. Me.ComboBox10.Items.AddRange(New Object() {"2019", "2020", "2021", "2022", "2023", "2024", "2025", "2026", "2027", "2028", "2029", "2030"})
  2034. Me.ComboBox10.Location = New System.Drawing.Point(990, 279)
  2035. Me.ComboBox10.Name = "ComboBox10"
  2036. Me.ComboBox10.Size = New System.Drawing.Size(150, 32)
  2037. Me.ComboBox10.TabIndex = 1714
  2038. '
  2039. 'ComboBox9
  2040. '
  2041. Me.ComboBox9.BackColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer))
  2042. Me.ComboBox9.Font = New System.Drawing.Font("新細明體", 18.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2043. Me.ComboBox9.FormattingEnabled = True
  2044. Me.ComboBox9.Items.AddRange(New Object() {"2019", "2020", "2021", "2022", "2023", "2024", "2025", "2026", "2027", "2028", "2029", "2030"})
  2045. Me.ComboBox9.Location = New System.Drawing.Point(615, 279)
  2046. Me.ComboBox9.Name = "ComboBox9"
  2047. Me.ComboBox9.Size = New System.Drawing.Size(150, 32)
  2048. Me.ComboBox9.TabIndex = 1713
  2049. '
  2050. 'ComboBox8
  2051. '
  2052. Me.ComboBox8.BackColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer))
  2053. Me.ComboBox8.Font = New System.Drawing.Font("新細明體", 18.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2054. Me.ComboBox8.FormattingEnabled = True
  2055. Me.ComboBox8.Items.AddRange(New Object() {"2019", "2020", "2021", "2022", "2023", "2024", "2025", "2026", "2027", "2028", "2029", "2030"})
  2056. Me.ComboBox8.Location = New System.Drawing.Point(990, 242)
  2057. Me.ComboBox8.Name = "ComboBox8"
  2058. Me.ComboBox8.Size = New System.Drawing.Size(150, 32)
  2059. Me.ComboBox8.TabIndex = 1712
  2060. '
  2061. 'ComboBox7
  2062. '
  2063. Me.ComboBox7.BackColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer))
  2064. Me.ComboBox7.Font = New System.Drawing.Font("新細明體", 18.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2065. Me.ComboBox7.FormattingEnabled = True
  2066. Me.ComboBox7.Items.AddRange(New Object() {"2019", "2020", "2021", "2022", "2023", "2024", "2025", "2026", "2027", "2028", "2029", "2030"})
  2067. Me.ComboBox7.Location = New System.Drawing.Point(615, 243)
  2068. Me.ComboBox7.Name = "ComboBox7"
  2069. Me.ComboBox7.Size = New System.Drawing.Size(150, 32)
  2070. Me.ComboBox7.TabIndex = 1711
  2071. '
  2072. 'ComboBox6
  2073. '
  2074. Me.ComboBox6.BackColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer))
  2075. Me.ComboBox6.Font = New System.Drawing.Font("新細明體", 18.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2076. Me.ComboBox6.FormattingEnabled = True
  2077. Me.ComboBox6.Items.AddRange(New Object() {"2019", "2020", "2021", "2022", "2023", "2024", "2025", "2026", "2027", "2028", "2029", "2030"})
  2078. Me.ComboBox6.Location = New System.Drawing.Point(989, 207)
  2079. Me.ComboBox6.Name = "ComboBox6"
  2080. Me.ComboBox6.Size = New System.Drawing.Size(150, 32)
  2081. Me.ComboBox6.TabIndex = 1710
  2082. '
  2083. 'ComboBox5
  2084. '
  2085. Me.ComboBox5.BackColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer))
  2086. Me.ComboBox5.Font = New System.Drawing.Font("新細明體", 18.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2087. Me.ComboBox5.FormattingEnabled = True
  2088. Me.ComboBox5.Items.AddRange(New Object() {"2019", "2020", "2021", "2022", "2023", "2024", "2025", "2026", "2027", "2028", "2029", "2030"})
  2089. Me.ComboBox5.Location = New System.Drawing.Point(615, 207)
  2090. Me.ComboBox5.Name = "ComboBox5"
  2091. Me.ComboBox5.Size = New System.Drawing.Size(150, 32)
  2092. Me.ComboBox5.TabIndex = 1709
  2093. '
  2094. 'ComboBox4
  2095. '
  2096. Me.ComboBox4.BackColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer))
  2097. Me.ComboBox4.Font = New System.Drawing.Font("新細明體", 18.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2098. Me.ComboBox4.FormattingEnabled = True
  2099. Me.ComboBox4.Items.AddRange(New Object() {"2019", "2020", "2021", "2022", "2023", "2024", "2025", "2026", "2027", "2028", "2029", "2030"})
  2100. Me.ComboBox4.Location = New System.Drawing.Point(990, 171)
  2101. Me.ComboBox4.Name = "ComboBox4"
  2102. Me.ComboBox4.Size = New System.Drawing.Size(150, 32)
  2103. Me.ComboBox4.TabIndex = 1708
  2104. '
  2105. 'ComboBox3
  2106. '
  2107. Me.ComboBox3.BackColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer))
  2108. Me.ComboBox3.Font = New System.Drawing.Font("新細明體", 18.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2109. Me.ComboBox3.FormattingEnabled = True
  2110. Me.ComboBox3.Items.AddRange(New Object() {"2019", "2020", "2021", "2022", "2023", "2024", "2025", "2026", "2027", "2028", "2029", "2030"})
  2111. Me.ComboBox3.Location = New System.Drawing.Point(615, 171)
  2112. Me.ComboBox3.Name = "ComboBox3"
  2113. Me.ComboBox3.Size = New System.Drawing.Size(150, 32)
  2114. Me.ComboBox3.TabIndex = 1707
  2115. '
  2116. 'ComboBox2
  2117. '
  2118. Me.ComboBox2.BackColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer))
  2119. Me.ComboBox2.Font = New System.Drawing.Font("新細明體", 18.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2120. Me.ComboBox2.FormattingEnabled = True
  2121. Me.ComboBox2.Items.AddRange(New Object() {"2019", "2020", "2021", "2022", "2023", "2024", "2025", "2026", "2027", "2028", "2029", "2030"})
  2122. Me.ComboBox2.Location = New System.Drawing.Point(990, 135)
  2123. Me.ComboBox2.Name = "ComboBox2"
  2124. Me.ComboBox2.Size = New System.Drawing.Size(150, 32)
  2125. Me.ComboBox2.TabIndex = 1706
  2126. '
  2127. 'ComboBox1
  2128. '
  2129. Me.ComboBox1.BackColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer))
  2130. Me.ComboBox1.Font = New System.Drawing.Font("新細明體", 18.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2131. Me.ComboBox1.FormattingEnabled = True
  2132. Me.ComboBox1.Items.AddRange(New Object() {"2019", "2020", "2021", "2022", "2023", "2024", "2025", "2026", "2027", "2028", "2029", "2030"})
  2133. Me.ComboBox1.Location = New System.Drawing.Point(615, 135)
  2134. Me.ComboBox1.Name = "ComboBox1"
  2135. Me.ComboBox1.Size = New System.Drawing.Size(150, 32)
  2136. Me.ComboBox1.TabIndex = 1705
  2137. '
  2138. 'B6_lb
  2139. '
  2140. Me.B6_lb.AutoSize = True
  2141. Me.B6_lb.Font = New System.Drawing.Font("微軟正黑體", 21.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2142. Me.B6_lb.Location = New System.Drawing.Point(1377, 47)
  2143. Me.B6_lb.Name = "B6_lb"
  2144. Me.B6_lb.Size = New System.Drawing.Size(93, 37)
  2145. Me.B6_lb.TabIndex = 1704
  2146. Me.B6_lb.Text = "XXXX"
  2147. '
  2148. 'B5_lb
  2149. '
  2150. Me.B5_lb.AutoSize = True
  2151. Me.B5_lb.Font = New System.Drawing.Font("微軟正黑體", 21.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2152. Me.B5_lb.Location = New System.Drawing.Point(1076, 46)
  2153. Me.B5_lb.Name = "B5_lb"
  2154. Me.B5_lb.Size = New System.Drawing.Size(93, 37)
  2155. Me.B5_lb.TabIndex = 1703
  2156. Me.B5_lb.Text = "XXXX"
  2157. '
  2158. 'B4_lb
  2159. '
  2160. Me.B4_lb.AutoSize = True
  2161. Me.B4_lb.Font = New System.Drawing.Font("微軟正黑體", 21.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2162. Me.B4_lb.Location = New System.Drawing.Point(701, 47)
  2163. Me.B4_lb.Name = "B4_lb"
  2164. Me.B4_lb.Size = New System.Drawing.Size(93, 37)
  2165. Me.B4_lb.TabIndex = 1702
  2166. Me.B4_lb.Text = "XXXX"
  2167. '
  2168. 'B3_lb
  2169. '
  2170. Me.B3_lb.AutoSize = True
  2171. Me.B3_lb.Font = New System.Drawing.Font("微軟正黑體", 21.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2172. Me.B3_lb.Location = New System.Drawing.Point(1376, 6)
  2173. Me.B3_lb.Name = "B3_lb"
  2174. Me.B3_lb.Size = New System.Drawing.Size(93, 37)
  2175. Me.B3_lb.TabIndex = 1701
  2176. Me.B3_lb.Text = "XXXX"
  2177. '
  2178. 'B2_lb
  2179. '
  2180. Me.B2_lb.AutoSize = True
  2181. Me.B2_lb.Font = New System.Drawing.Font("微軟正黑體", 21.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2182. Me.B2_lb.Location = New System.Drawing.Point(1076, 5)
  2183. Me.B2_lb.Name = "B2_lb"
  2184. Me.B2_lb.Size = New System.Drawing.Size(93, 37)
  2185. Me.B2_lb.TabIndex = 1700
  2186. Me.B2_lb.Text = "XXXX"
  2187. '
  2188. 'B1_lb
  2189. '
  2190. Me.B1_lb.AutoSize = True
  2191. Me.B1_lb.Font = New System.Drawing.Font("微軟正黑體", 21.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2192. Me.B1_lb.Location = New System.Drawing.Point(701, 7)
  2193. Me.B1_lb.Name = "B1_lb"
  2194. Me.B1_lb.Size = New System.Drawing.Size(93, 37)
  2195. Me.B1_lb.TabIndex = 1699
  2196. Me.B1_lb.Text = "XXXX"
  2197. '
  2198. 'Label100
  2199. '
  2200. Me.Label100.AutoSize = True
  2201. Me.Label100.Location = New System.Drawing.Point(1359, 4)
  2202. Me.Label100.Name = "Label100"
  2203. Me.Label100.Size = New System.Drawing.Size(11, 80)
  2204. Me.Label100.TabIndex = 1698
  2205. Me.Label100.Text = "I" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "I" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "I" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "I" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "I"
  2206. '
  2207. 'Label99
  2208. '
  2209. Me.Label99.AutoSize = True
  2210. Me.Label99.Location = New System.Drawing.Point(1059, 4)
  2211. Me.Label99.Name = "Label99"
  2212. Me.Label99.Size = New System.Drawing.Size(11, 80)
  2213. Me.Label99.TabIndex = 1697
  2214. Me.Label99.Text = "I" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "I" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "I" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "I" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "I"
  2215. '
  2216. 'Label98
  2217. '
  2218. Me.Label98.AutoSize = True
  2219. Me.Label98.Location = New System.Drawing.Point(684, 5)
  2220. Me.Label98.Name = "Label98"
  2221. Me.Label98.Size = New System.Drawing.Size(11, 80)
  2222. Me.Label98.TabIndex = 1696
  2223. Me.Label98.Text = "I" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "I" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "I" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "I" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "I"
  2224. '
  2225. '美容_lb
  2226. '
  2227. Me.美容_lb.AutoSize = True
  2228. Me.美容_lb.Font = New System.Drawing.Font("微軟正黑體", 20.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2229. Me.美容_lb.Location = New System.Drawing.Point(609, 48)
  2230. Me.美容_lb.Name = "美容_lb"
  2231. Me.美容_lb.Size = New System.Drawing.Size(69, 35)
  2232. Me.美容_lb.TabIndex = 1695
  2233. Me.美容_lb.Text = "美容"
  2234. '
  2235. '健保_lb
  2236. '
  2237. Me.健保_lb.AutoSize = True
  2238. Me.健保_lb.Font = New System.Drawing.Font("微軟正黑體", 20.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2239. Me.健保_lb.Location = New System.Drawing.Point(609, 7)
  2240. Me.健保_lb.Name = "健保_lb"
  2241. Me.健保_lb.Size = New System.Drawing.Size(69, 35)
  2242. Me.健保_lb.TabIndex = 1694
  2243. Me.健保_lb.Text = "健保"
  2244. '
  2245. 'Label95
  2246. '
  2247. Me.Label95.AutoSize = True
  2248. Me.Label95.Location = New System.Drawing.Point(602, 32)
  2249. Me.Label95.Name = "Label95"
  2250. Me.Label95.Size = New System.Drawing.Size(1218, 16)
  2251. Me.Label95.TabIndex = 1693
  2252. Me.Label95.Text = resources.GetString("Label95.Text")
  2253. '
  2254. 'Label94
  2255. '
  2256. Me.Label94.AutoSize = True
  2257. Me.Label94.Location = New System.Drawing.Point(602, -10)
  2258. Me.Label94.Name = "Label94"
  2259. Me.Label94.Size = New System.Drawing.Size(1213, 16)
  2260. Me.Label94.TabIndex = 1692
  2261. Me.Label94.Text = resources.GetString("Label94.Text")
  2262. '
  2263. '星期_lb
  2264. '
  2265. Me.星期_lb.AutoSize = True
  2266. Me.星期_lb.Font = New System.Drawing.Font("微軟正黑體", 21.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2267. Me.星期_lb.Location = New System.Drawing.Point(453, 3)
  2268. Me.星期_lb.Name = "星期_lb"
  2269. Me.星期_lb.Size = New System.Drawing.Size(93, 37)
  2270. Me.星期_lb.TabIndex = 1691
  2271. Me.星期_lb.Text = "XXXX"
  2272. '
  2273. '全_ch
  2274. '
  2275. Me.全_ch.AutoSize = True
  2276. Me.全_ch.Location = New System.Drawing.Point(125, 108)
  2277. Me.全_ch.Name = "全_ch"
  2278. Me.全_ch.Size = New System.Drawing.Size(39, 20)
  2279. Me.全_ch.TabIndex = 1690
  2280. Me.全_ch.Text = "全"
  2281. Me.全_ch.UseVisualStyleBackColor = True
  2282. '
  2283. 'Label93
  2284. '
  2285. Me.Label93.AutoSize = True
  2286. Me.Label93.Font = New System.Drawing.Font("微軟正黑體", 14.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2287. Me.Label93.Location = New System.Drawing.Point(235, 107)
  2288. Me.Label93.Name = "Label93"
  2289. Me.Label93.Size = New System.Drawing.Size(48, 24)
  2290. Me.Label93.TabIndex = 1689
  2291. Me.Label93.Text = "班別"
  2292. '
  2293. 'Label92
  2294. '
  2295. Me.Label92.AutoSize = True
  2296. Me.Label92.Font = New System.Drawing.Font("微軟正黑體", 14.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2297. Me.Label92.Location = New System.Drawing.Point(352, 107)
  2298. Me.Label92.Name = "Label92"
  2299. Me.Label92.Size = New System.Drawing.Size(124, 24)
  2300. Me.Label92.TabIndex = 1688
  2301. Me.Label92.Text = "單班時長設定"
  2302. '
  2303. 'Label90
  2304. '
  2305. Me.Label90.AutoSize = True
  2306. Me.Label90.Font = New System.Drawing.Font("微軟正黑體", 14.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2307. Me.Label90.Location = New System.Drawing.Point(475, 107)
  2308. Me.Label90.Name = "Label90"
  2309. Me.Label90.Size = New System.Drawing.Size(48, 24)
  2310. Me.Label90.TabIndex = 1687
  2311. Me.Label90.Text = "休息"
  2312. '
  2313. 'NUP20
  2314. '
  2315. Me.NUP20.DecimalPlaces = 1
  2316. Me.NUP20.Font = New System.Drawing.Font("微軟正黑體", 14.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2317. Me.NUP20.Increment = New Decimal(New Integer() {1, 0, 0, 65536})
  2318. Me.NUP20.Location = New System.Drawing.Point(474, 819)
  2319. Me.NUP20.Maximum = New Decimal(New Integer() {4, 0, 0, 0})
  2320. Me.NUP20.Minimum = New Decimal(New Integer() {5, 0, 0, 65536})
  2321. Me.NUP20.Name = "NUP20"
  2322. Me.NUP20.Size = New System.Drawing.Size(47, 33)
  2323. Me.NUP20.TabIndex = 1686
  2324. Me.NUP20.Value = New Decimal(New Integer() {2, 0, 0, 0})
  2325. '
  2326. 'NUP19
  2327. '
  2328. Me.NUP19.DecimalPlaces = 1
  2329. Me.NUP19.Font = New System.Drawing.Font("微軟正黑體", 14.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2330. Me.NUP19.Increment = New Decimal(New Integer() {1, 0, 0, 65536})
  2331. Me.NUP19.Location = New System.Drawing.Point(474, 783)
  2332. Me.NUP19.Maximum = New Decimal(New Integer() {4, 0, 0, 0})
  2333. Me.NUP19.Minimum = New Decimal(New Integer() {5, 0, 0, 65536})
  2334. Me.NUP19.Name = "NUP19"
  2335. Me.NUP19.Size = New System.Drawing.Size(47, 33)
  2336. Me.NUP19.TabIndex = 1685
  2337. Me.NUP19.Value = New Decimal(New Integer() {2, 0, 0, 0})
  2338. '
  2339. 'NUP18
  2340. '
  2341. Me.NUP18.DecimalPlaces = 1
  2342. Me.NUP18.Font = New System.Drawing.Font("微軟正黑體", 14.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2343. Me.NUP18.Increment = New Decimal(New Integer() {1, 0, 0, 65536})
  2344. Me.NUP18.Location = New System.Drawing.Point(474, 748)
  2345. Me.NUP18.Maximum = New Decimal(New Integer() {4, 0, 0, 0})
  2346. Me.NUP18.Minimum = New Decimal(New Integer() {5, 0, 0, 65536})
  2347. Me.NUP18.Name = "NUP18"
  2348. Me.NUP18.Size = New System.Drawing.Size(47, 33)
  2349. Me.NUP18.TabIndex = 1684
  2350. Me.NUP18.Value = New Decimal(New Integer() {2, 0, 0, 0})
  2351. '
  2352. 'NUP17
  2353. '
  2354. Me.NUP17.DecimalPlaces = 1
  2355. Me.NUP17.Font = New System.Drawing.Font("微軟正黑體", 14.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2356. Me.NUP17.Increment = New Decimal(New Integer() {1, 0, 0, 65536})
  2357. Me.NUP17.Location = New System.Drawing.Point(474, 712)
  2358. Me.NUP17.Maximum = New Decimal(New Integer() {4, 0, 0, 0})
  2359. Me.NUP17.Minimum = New Decimal(New Integer() {5, 0, 0, 65536})
  2360. Me.NUP17.Name = "NUP17"
  2361. Me.NUP17.Size = New System.Drawing.Size(47, 33)
  2362. Me.NUP17.TabIndex = 1683
  2363. Me.NUP17.Value = New Decimal(New Integer() {2, 0, 0, 0})
  2364. '
  2365. 'NUP16
  2366. '
  2367. Me.NUP16.DecimalPlaces = 1
  2368. Me.NUP16.Font = New System.Drawing.Font("微軟正黑體", 14.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2369. Me.NUP16.Increment = New Decimal(New Integer() {1, 0, 0, 65536})
  2370. Me.NUP16.Location = New System.Drawing.Point(474, 675)
  2371. Me.NUP16.Maximum = New Decimal(New Integer() {4, 0, 0, 0})
  2372. Me.NUP16.Minimum = New Decimal(New Integer() {5, 0, 0, 65536})
  2373. Me.NUP16.Name = "NUP16"
  2374. Me.NUP16.Size = New System.Drawing.Size(47, 33)
  2375. Me.NUP16.TabIndex = 1682
  2376. Me.NUP16.Value = New Decimal(New Integer() {2, 0, 0, 0})
  2377. '
  2378. 'NUP15
  2379. '
  2380. Me.NUP15.DecimalPlaces = 1
  2381. Me.NUP15.Font = New System.Drawing.Font("微軟正黑體", 14.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2382. Me.NUP15.Increment = New Decimal(New Integer() {1, 0, 0, 65536})
  2383. Me.NUP15.Location = New System.Drawing.Point(474, 640)
  2384. Me.NUP15.Maximum = New Decimal(New Integer() {4, 0, 0, 0})
  2385. Me.NUP15.Minimum = New Decimal(New Integer() {5, 0, 0, 65536})
  2386. Me.NUP15.Name = "NUP15"
  2387. Me.NUP15.Size = New System.Drawing.Size(47, 33)
  2388. Me.NUP15.TabIndex = 1681
  2389. Me.NUP15.Value = New Decimal(New Integer() {2, 0, 0, 0})
  2390. '
  2391. 'NUP14
  2392. '
  2393. Me.NUP14.DecimalPlaces = 1
  2394. Me.NUP14.Font = New System.Drawing.Font("微軟正黑體", 14.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2395. Me.NUP14.Increment = New Decimal(New Integer() {1, 0, 0, 65536})
  2396. Me.NUP14.Location = New System.Drawing.Point(474, 603)
  2397. Me.NUP14.Maximum = New Decimal(New Integer() {4, 0, 0, 0})
  2398. Me.NUP14.Minimum = New Decimal(New Integer() {5, 0, 0, 65536})
  2399. Me.NUP14.Name = "NUP14"
  2400. Me.NUP14.Size = New System.Drawing.Size(47, 33)
  2401. Me.NUP14.TabIndex = 1680
  2402. Me.NUP14.Value = New Decimal(New Integer() {2, 0, 0, 0})
  2403. '
  2404. 'NUP13
  2405. '
  2406. Me.NUP13.DecimalPlaces = 1
  2407. Me.NUP13.Font = New System.Drawing.Font("微軟正黑體", 14.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2408. Me.NUP13.Increment = New Decimal(New Integer() {1, 0, 0, 65536})
  2409. Me.NUP13.Location = New System.Drawing.Point(474, 567)
  2410. Me.NUP13.Maximum = New Decimal(New Integer() {4, 0, 0, 0})
  2411. Me.NUP13.Minimum = New Decimal(New Integer() {5, 0, 0, 65536})
  2412. Me.NUP13.Name = "NUP13"
  2413. Me.NUP13.Size = New System.Drawing.Size(47, 33)
  2414. Me.NUP13.TabIndex = 1679
  2415. Me.NUP13.Value = New Decimal(New Integer() {2, 0, 0, 0})
  2416. '
  2417. 'NUP12
  2418. '
  2419. Me.NUP12.DecimalPlaces = 1
  2420. Me.NUP12.Font = New System.Drawing.Font("微軟正黑體", 14.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2421. Me.NUP12.Increment = New Decimal(New Integer() {1, 0, 0, 65536})
  2422. Me.NUP12.Location = New System.Drawing.Point(473, 531)
  2423. Me.NUP12.Maximum = New Decimal(New Integer() {4, 0, 0, 0})
  2424. Me.NUP12.Minimum = New Decimal(New Integer() {5, 0, 0, 65536})
  2425. Me.NUP12.Name = "NUP12"
  2426. Me.NUP12.Size = New System.Drawing.Size(47, 33)
  2427. Me.NUP12.TabIndex = 1678
  2428. Me.NUP12.Value = New Decimal(New Integer() {2, 0, 0, 0})
  2429. '
  2430. 'NUP11
  2431. '
  2432. Me.NUP11.DecimalPlaces = 1
  2433. Me.NUP11.Font = New System.Drawing.Font("微軟正黑體", 14.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2434. Me.NUP11.Increment = New Decimal(New Integer() {1, 0, 0, 65536})
  2435. Me.NUP11.Location = New System.Drawing.Point(474, 495)
  2436. Me.NUP11.Maximum = New Decimal(New Integer() {4, 0, 0, 0})
  2437. Me.NUP11.Minimum = New Decimal(New Integer() {5, 0, 0, 65536})
  2438. Me.NUP11.Name = "NUP11"
  2439. Me.NUP11.Size = New System.Drawing.Size(47, 33)
  2440. Me.NUP11.TabIndex = 1677
  2441. Me.NUP11.Value = New Decimal(New Integer() {2, 0, 0, 0})
  2442. '
  2443. 'NUP10
  2444. '
  2445. Me.NUP10.DecimalPlaces = 1
  2446. Me.NUP10.Font = New System.Drawing.Font("微軟正黑體", 14.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2447. Me.NUP10.Increment = New Decimal(New Integer() {1, 0, 0, 65536})
  2448. Me.NUP10.Location = New System.Drawing.Point(474, 459)
  2449. Me.NUP10.Maximum = New Decimal(New Integer() {4, 0, 0, 0})
  2450. Me.NUP10.Minimum = New Decimal(New Integer() {5, 0, 0, 65536})
  2451. Me.NUP10.Name = "NUP10"
  2452. Me.NUP10.Size = New System.Drawing.Size(47, 33)
  2453. Me.NUP10.TabIndex = 1676
  2454. Me.NUP10.Value = New Decimal(New Integer() {2, 0, 0, 0})
  2455. '
  2456. 'NUP9
  2457. '
  2458. Me.NUP9.DecimalPlaces = 1
  2459. Me.NUP9.Font = New System.Drawing.Font("微軟正黑體", 14.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2460. Me.NUP9.Increment = New Decimal(New Integer() {1, 0, 0, 65536})
  2461. Me.NUP9.Location = New System.Drawing.Point(474, 422)
  2462. Me.NUP9.Maximum = New Decimal(New Integer() {4, 0, 0, 0})
  2463. Me.NUP9.Minimum = New Decimal(New Integer() {5, 0, 0, 65536})
  2464. Me.NUP9.Name = "NUP9"
  2465. Me.NUP9.Size = New System.Drawing.Size(47, 33)
  2466. Me.NUP9.TabIndex = 1675
  2467. Me.NUP9.Value = New Decimal(New Integer() {2, 0, 0, 0})
  2468. '
  2469. 'NUP8
  2470. '
  2471. Me.NUP8.DecimalPlaces = 1
  2472. Me.NUP8.Font = New System.Drawing.Font("微軟正黑體", 14.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2473. Me.NUP8.Increment = New Decimal(New Integer() {1, 0, 0, 65536})
  2474. Me.NUP8.Location = New System.Drawing.Point(474, 387)
  2475. Me.NUP8.Maximum = New Decimal(New Integer() {4, 0, 0, 0})
  2476. Me.NUP8.Minimum = New Decimal(New Integer() {5, 0, 0, 65536})
  2477. Me.NUP8.Name = "NUP8"
  2478. Me.NUP8.Size = New System.Drawing.Size(47, 33)
  2479. Me.NUP8.TabIndex = 1674
  2480. Me.NUP8.Value = New Decimal(New Integer() {2, 0, 0, 0})
  2481. '
  2482. 'NUP7
  2483. '
  2484. Me.NUP7.DecimalPlaces = 1
  2485. Me.NUP7.Font = New System.Drawing.Font("微軟正黑體", 14.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2486. Me.NUP7.Increment = New Decimal(New Integer() {1, 0, 0, 65536})
  2487. Me.NUP7.Location = New System.Drawing.Point(474, 351)
  2488. Me.NUP7.Maximum = New Decimal(New Integer() {4, 0, 0, 0})
  2489. Me.NUP7.Minimum = New Decimal(New Integer() {5, 0, 0, 65536})
  2490. Me.NUP7.Name = "NUP7"
  2491. Me.NUP7.Size = New System.Drawing.Size(47, 33)
  2492. Me.NUP7.TabIndex = 1673
  2493. Me.NUP7.Value = New Decimal(New Integer() {2, 0, 0, 0})
  2494. '
  2495. 'NUP6
  2496. '
  2497. Me.NUP6.DecimalPlaces = 1
  2498. Me.NUP6.Font = New System.Drawing.Font("微軟正黑體", 14.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2499. Me.NUP6.Increment = New Decimal(New Integer() {1, 0, 0, 65536})
  2500. Me.NUP6.Location = New System.Drawing.Point(474, 315)
  2501. Me.NUP6.Maximum = New Decimal(New Integer() {4, 0, 0, 0})
  2502. Me.NUP6.Minimum = New Decimal(New Integer() {5, 0, 0, 65536})
  2503. Me.NUP6.Name = "NUP6"
  2504. Me.NUP6.Size = New System.Drawing.Size(47, 33)
  2505. Me.NUP6.TabIndex = 1672
  2506. Me.NUP6.Value = New Decimal(New Integer() {2, 0, 0, 0})
  2507. '
  2508. 'NUP5
  2509. '
  2510. Me.NUP5.DecimalPlaces = 1
  2511. Me.NUP5.Font = New System.Drawing.Font("微軟正黑體", 14.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2512. Me.NUP5.Increment = New Decimal(New Integer() {1, 0, 0, 65536})
  2513. Me.NUP5.Location = New System.Drawing.Point(474, 279)
  2514. Me.NUP5.Maximum = New Decimal(New Integer() {4, 0, 0, 0})
  2515. Me.NUP5.Minimum = New Decimal(New Integer() {5, 0, 0, 65536})
  2516. Me.NUP5.Name = "NUP5"
  2517. Me.NUP5.Size = New System.Drawing.Size(47, 33)
  2518. Me.NUP5.TabIndex = 1671
  2519. Me.NUP5.Value = New Decimal(New Integer() {2, 0, 0, 0})
  2520. '
  2521. 'NUP4
  2522. '
  2523. Me.NUP4.DecimalPlaces = 1
  2524. Me.NUP4.Font = New System.Drawing.Font("微軟正黑體", 14.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2525. Me.NUP4.Increment = New Decimal(New Integer() {1, 0, 0, 65536})
  2526. Me.NUP4.Location = New System.Drawing.Point(474, 243)
  2527. Me.NUP4.Maximum = New Decimal(New Integer() {4, 0, 0, 0})
  2528. Me.NUP4.Minimum = New Decimal(New Integer() {5, 0, 0, 65536})
  2529. Me.NUP4.Name = "NUP4"
  2530. Me.NUP4.Size = New System.Drawing.Size(47, 33)
  2531. Me.NUP4.TabIndex = 1670
  2532. Me.NUP4.Value = New Decimal(New Integer() {2, 0, 0, 0})
  2533. '
  2534. 'NUP3
  2535. '
  2536. Me.NUP3.DecimalPlaces = 1
  2537. Me.NUP3.Font = New System.Drawing.Font("微軟正黑體", 14.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2538. Me.NUP3.Increment = New Decimal(New Integer() {1, 0, 0, 65536})
  2539. Me.NUP3.Location = New System.Drawing.Point(474, 207)
  2540. Me.NUP3.Maximum = New Decimal(New Integer() {4, 0, 0, 0})
  2541. Me.NUP3.Minimum = New Decimal(New Integer() {5, 0, 0, 65536})
  2542. Me.NUP3.Name = "NUP3"
  2543. Me.NUP3.Size = New System.Drawing.Size(47, 33)
  2544. Me.NUP3.TabIndex = 1669
  2545. Me.NUP3.Value = New Decimal(New Integer() {2, 0, 0, 0})
  2546. '
  2547. 'NUP2
  2548. '
  2549. Me.NUP2.DecimalPlaces = 1
  2550. Me.NUP2.Font = New System.Drawing.Font("微軟正黑體", 14.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2551. Me.NUP2.Increment = New Decimal(New Integer() {1, 0, 0, 65536})
  2552. Me.NUP2.Location = New System.Drawing.Point(474, 172)
  2553. Me.NUP2.Maximum = New Decimal(New Integer() {4, 0, 0, 0})
  2554. Me.NUP2.Minimum = New Decimal(New Integer() {5, 0, 0, 65536})
  2555. Me.NUP2.Name = "NUP2"
  2556. Me.NUP2.Size = New System.Drawing.Size(47, 33)
  2557. Me.NUP2.TabIndex = 1668
  2558. Me.NUP2.Value = New Decimal(New Integer() {2, 0, 0, 0})
  2559. '
  2560. '排班明細_dgv
  2561. '
  2562. DataGridViewCellStyle1.BackColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(255, Byte), Integer), CType(CType(192, Byte), Integer))
  2563. Me.排班明細_dgv.AlternatingRowsDefaultCellStyle = DataGridViewCellStyle1
  2564. Me.排班明細_dgv.Anchor = CType(((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
  2565. Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  2566. Me.排班明細_dgv.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill
  2567. Me.排班明細_dgv.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize
  2568. Me.排班明細_dgv.Location = New System.Drawing.Point(29, 92)
  2569. Me.排班明細_dgv.Name = "排班明細_dgv"
  2570. Me.排班明細_dgv.RowHeadersWidth = 5
  2571. Me.排班明細_dgv.RowTemplate.Height = 24
  2572. Me.排班明細_dgv.Size = New System.Drawing.Size(67, 236)
  2573. Me.排班明細_dgv.TabIndex = 1666
  2574. Me.排班明細_dgv.Visible = False
  2575. '
  2576. 'NumericUpDown20
  2577. '
  2578. Me.NumericUpDown20.DecimalPlaces = 1
  2579. Me.NumericUpDown20.Font = New System.Drawing.Font("微軟正黑體", 14.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2580. Me.NumericUpDown20.Increment = New Decimal(New Integer() {5, 0, 0, 65536})
  2581. Me.NumericUpDown20.Location = New System.Drawing.Point(424, 819)
  2582. Me.NumericUpDown20.Maximum = New Decimal(New Integer() {8, 0, 0, 0})
  2583. Me.NumericUpDown20.Minimum = New Decimal(New Integer() {2, 0, 0, 0})
  2584. Me.NumericUpDown20.Name = "NumericUpDown20"
  2585. Me.NumericUpDown20.Size = New System.Drawing.Size(47, 33)
  2586. Me.NumericUpDown20.TabIndex = 1665
  2587. Me.NumericUpDown20.Value = New Decimal(New Integer() {4, 0, 0, 0})
  2588. '
  2589. 'CheckBox20
  2590. '
  2591. Me.CheckBox20.AutoSize = True
  2592. Me.CheckBox20.Font = New System.Drawing.Font("微軟正黑體", 14.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2593. Me.CheckBox20.Location = New System.Drawing.Point(362, 820)
  2594. Me.CheckBox20.Name = "CheckBox20"
  2595. Me.CheckBox20.Size = New System.Drawing.Size(67, 28)
  2596. Me.CheckBox20.TabIndex = 1664
  2597. Me.CheckBox20.Text = "半天"
  2598. Me.CheckBox20.UseVisualStyleBackColor = True
  2599. '
  2600. 'NumericUpDown19
  2601. '
  2602. Me.NumericUpDown19.DecimalPlaces = 1
  2603. Me.NumericUpDown19.Font = New System.Drawing.Font("微軟正黑體", 14.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2604. Me.NumericUpDown19.Increment = New Decimal(New Integer() {5, 0, 0, 65536})
  2605. Me.NumericUpDown19.Location = New System.Drawing.Point(424, 783)
  2606. Me.NumericUpDown19.Maximum = New Decimal(New Integer() {8, 0, 0, 0})
  2607. Me.NumericUpDown19.Minimum = New Decimal(New Integer() {2, 0, 0, 0})
  2608. Me.NumericUpDown19.Name = "NumericUpDown19"
  2609. Me.NumericUpDown19.Size = New System.Drawing.Size(47, 33)
  2610. Me.NumericUpDown19.TabIndex = 1663
  2611. Me.NumericUpDown19.Value = New Decimal(New Integer() {4, 0, 0, 0})
  2612. '
  2613. 'CheckBox19
  2614. '
  2615. Me.CheckBox19.AutoSize = True
  2616. Me.CheckBox19.Font = New System.Drawing.Font("微軟正黑體", 14.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2617. Me.CheckBox19.Location = New System.Drawing.Point(362, 784)
  2618. Me.CheckBox19.Name = "CheckBox19"
  2619. Me.CheckBox19.Size = New System.Drawing.Size(67, 28)
  2620. Me.CheckBox19.TabIndex = 1662
  2621. Me.CheckBox19.Text = "半天"
  2622. Me.CheckBox19.UseVisualStyleBackColor = True
  2623. '
  2624. 'NumericUpDown18
  2625. '
  2626. Me.NumericUpDown18.DecimalPlaces = 1
  2627. Me.NumericUpDown18.Font = New System.Drawing.Font("微軟正黑體", 14.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2628. Me.NumericUpDown18.Increment = New Decimal(New Integer() {5, 0, 0, 65536})
  2629. Me.NumericUpDown18.Location = New System.Drawing.Point(424, 748)
  2630. Me.NumericUpDown18.Maximum = New Decimal(New Integer() {8, 0, 0, 0})
  2631. Me.NumericUpDown18.Minimum = New Decimal(New Integer() {2, 0, 0, 0})
  2632. Me.NumericUpDown18.Name = "NumericUpDown18"
  2633. Me.NumericUpDown18.Size = New System.Drawing.Size(47, 33)
  2634. Me.NumericUpDown18.TabIndex = 1661
  2635. Me.NumericUpDown18.Value = New Decimal(New Integer() {4, 0, 0, 0})
  2636. '
  2637. 'CheckBox18
  2638. '
  2639. Me.CheckBox18.AutoSize = True
  2640. Me.CheckBox18.Font = New System.Drawing.Font("微軟正黑體", 14.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2641. Me.CheckBox18.Location = New System.Drawing.Point(362, 749)
  2642. Me.CheckBox18.Name = "CheckBox18"
  2643. Me.CheckBox18.Size = New System.Drawing.Size(67, 28)
  2644. Me.CheckBox18.TabIndex = 1660
  2645. Me.CheckBox18.Text = "半天"
  2646. Me.CheckBox18.UseVisualStyleBackColor = True
  2647. '
  2648. 'NumericUpDown17
  2649. '
  2650. Me.NumericUpDown17.DecimalPlaces = 1
  2651. Me.NumericUpDown17.Font = New System.Drawing.Font("微軟正黑體", 14.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2652. Me.NumericUpDown17.Increment = New Decimal(New Integer() {5, 0, 0, 65536})
  2653. Me.NumericUpDown17.Location = New System.Drawing.Point(424, 712)
  2654. Me.NumericUpDown17.Maximum = New Decimal(New Integer() {8, 0, 0, 0})
  2655. Me.NumericUpDown17.Minimum = New Decimal(New Integer() {2, 0, 0, 0})
  2656. Me.NumericUpDown17.Name = "NumericUpDown17"
  2657. Me.NumericUpDown17.Size = New System.Drawing.Size(47, 33)
  2658. Me.NumericUpDown17.TabIndex = 1659
  2659. Me.NumericUpDown17.Value = New Decimal(New Integer() {4, 0, 0, 0})
  2660. '
  2661. 'CheckBox17
  2662. '
  2663. Me.CheckBox17.AutoSize = True
  2664. Me.CheckBox17.Font = New System.Drawing.Font("微軟正黑體", 14.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2665. Me.CheckBox17.Location = New System.Drawing.Point(362, 713)
  2666. Me.CheckBox17.Name = "CheckBox17"
  2667. Me.CheckBox17.Size = New System.Drawing.Size(67, 28)
  2668. Me.CheckBox17.TabIndex = 1658
  2669. Me.CheckBox17.Text = "半天"
  2670. Me.CheckBox17.UseVisualStyleBackColor = True
  2671. '
  2672. 'NumericUpDown16
  2673. '
  2674. Me.NumericUpDown16.DecimalPlaces = 1
  2675. Me.NumericUpDown16.Font = New System.Drawing.Font("微軟正黑體", 14.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2676. Me.NumericUpDown16.Increment = New Decimal(New Integer() {5, 0, 0, 65536})
  2677. Me.NumericUpDown16.Location = New System.Drawing.Point(424, 675)
  2678. Me.NumericUpDown16.Maximum = New Decimal(New Integer() {8, 0, 0, 0})
  2679. Me.NumericUpDown16.Minimum = New Decimal(New Integer() {2, 0, 0, 0})
  2680. Me.NumericUpDown16.Name = "NumericUpDown16"
  2681. Me.NumericUpDown16.Size = New System.Drawing.Size(47, 33)
  2682. Me.NumericUpDown16.TabIndex = 1657
  2683. Me.NumericUpDown16.Value = New Decimal(New Integer() {4, 0, 0, 0})
  2684. '
  2685. 'CheckBox16
  2686. '
  2687. Me.CheckBox16.AutoSize = True
  2688. Me.CheckBox16.Font = New System.Drawing.Font("微軟正黑體", 14.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2689. Me.CheckBox16.Location = New System.Drawing.Point(362, 676)
  2690. Me.CheckBox16.Name = "CheckBox16"
  2691. Me.CheckBox16.Size = New System.Drawing.Size(67, 28)
  2692. Me.CheckBox16.TabIndex = 1656
  2693. Me.CheckBox16.Text = "半天"
  2694. Me.CheckBox16.UseVisualStyleBackColor = True
  2695. '
  2696. 'NumericUpDown15
  2697. '
  2698. Me.NumericUpDown15.DecimalPlaces = 1
  2699. Me.NumericUpDown15.Font = New System.Drawing.Font("微軟正黑體", 14.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2700. Me.NumericUpDown15.Increment = New Decimal(New Integer() {5, 0, 0, 65536})
  2701. Me.NumericUpDown15.Location = New System.Drawing.Point(424, 640)
  2702. Me.NumericUpDown15.Maximum = New Decimal(New Integer() {8, 0, 0, 0})
  2703. Me.NumericUpDown15.Minimum = New Decimal(New Integer() {2, 0, 0, 0})
  2704. Me.NumericUpDown15.Name = "NumericUpDown15"
  2705. Me.NumericUpDown15.Size = New System.Drawing.Size(47, 33)
  2706. Me.NumericUpDown15.TabIndex = 1655
  2707. Me.NumericUpDown15.Value = New Decimal(New Integer() {4, 0, 0, 0})
  2708. '
  2709. 'CheckBox15
  2710. '
  2711. Me.CheckBox15.AutoSize = True
  2712. Me.CheckBox15.Font = New System.Drawing.Font("微軟正黑體", 14.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2713. Me.CheckBox15.Location = New System.Drawing.Point(362, 641)
  2714. Me.CheckBox15.Name = "CheckBox15"
  2715. Me.CheckBox15.Size = New System.Drawing.Size(67, 28)
  2716. Me.CheckBox15.TabIndex = 1654
  2717. Me.CheckBox15.Text = "半天"
  2718. Me.CheckBox15.UseVisualStyleBackColor = True
  2719. '
  2720. 'NumericUpDown14
  2721. '
  2722. Me.NumericUpDown14.DecimalPlaces = 1
  2723. Me.NumericUpDown14.Font = New System.Drawing.Font("微軟正黑體", 14.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2724. Me.NumericUpDown14.Increment = New Decimal(New Integer() {5, 0, 0, 65536})
  2725. Me.NumericUpDown14.Location = New System.Drawing.Point(424, 603)
  2726. Me.NumericUpDown14.Maximum = New Decimal(New Integer() {8, 0, 0, 0})
  2727. Me.NumericUpDown14.Minimum = New Decimal(New Integer() {2, 0, 0, 0})
  2728. Me.NumericUpDown14.Name = "NumericUpDown14"
  2729. Me.NumericUpDown14.Size = New System.Drawing.Size(47, 33)
  2730. Me.NumericUpDown14.TabIndex = 1653
  2731. Me.NumericUpDown14.Value = New Decimal(New Integer() {4, 0, 0, 0})
  2732. '
  2733. 'CheckBox14
  2734. '
  2735. Me.CheckBox14.AutoSize = True
  2736. Me.CheckBox14.Font = New System.Drawing.Font("微軟正黑體", 14.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2737. Me.CheckBox14.Location = New System.Drawing.Point(362, 604)
  2738. Me.CheckBox14.Name = "CheckBox14"
  2739. Me.CheckBox14.Size = New System.Drawing.Size(67, 28)
  2740. Me.CheckBox14.TabIndex = 1652
  2741. Me.CheckBox14.Text = "半天"
  2742. Me.CheckBox14.UseVisualStyleBackColor = True
  2743. '
  2744. 'NumericUpDown13
  2745. '
  2746. Me.NumericUpDown13.DecimalPlaces = 1
  2747. Me.NumericUpDown13.Font = New System.Drawing.Font("微軟正黑體", 14.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2748. Me.NumericUpDown13.Increment = New Decimal(New Integer() {5, 0, 0, 65536})
  2749. Me.NumericUpDown13.Location = New System.Drawing.Point(424, 567)
  2750. Me.NumericUpDown13.Maximum = New Decimal(New Integer() {8, 0, 0, 0})
  2751. Me.NumericUpDown13.Minimum = New Decimal(New Integer() {2, 0, 0, 0})
  2752. Me.NumericUpDown13.Name = "NumericUpDown13"
  2753. Me.NumericUpDown13.Size = New System.Drawing.Size(47, 33)
  2754. Me.NumericUpDown13.TabIndex = 1651
  2755. Me.NumericUpDown13.Value = New Decimal(New Integer() {4, 0, 0, 0})
  2756. '
  2757. 'CheckBox13
  2758. '
  2759. Me.CheckBox13.AutoSize = True
  2760. Me.CheckBox13.Font = New System.Drawing.Font("微軟正黑體", 14.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2761. Me.CheckBox13.Location = New System.Drawing.Point(362, 568)
  2762. Me.CheckBox13.Name = "CheckBox13"
  2763. Me.CheckBox13.Size = New System.Drawing.Size(67, 28)
  2764. Me.CheckBox13.TabIndex = 1650
  2765. Me.CheckBox13.Text = "半天"
  2766. Me.CheckBox13.UseVisualStyleBackColor = True
  2767. '
  2768. 'NumericUpDown12
  2769. '
  2770. Me.NumericUpDown12.DecimalPlaces = 1
  2771. Me.NumericUpDown12.Font = New System.Drawing.Font("微軟正黑體", 14.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2772. Me.NumericUpDown12.Increment = New Decimal(New Integer() {5, 0, 0, 65536})
  2773. Me.NumericUpDown12.Location = New System.Drawing.Point(424, 531)
  2774. Me.NumericUpDown12.Maximum = New Decimal(New Integer() {8, 0, 0, 0})
  2775. Me.NumericUpDown12.Minimum = New Decimal(New Integer() {2, 0, 0, 0})
  2776. Me.NumericUpDown12.Name = "NumericUpDown12"
  2777. Me.NumericUpDown12.Size = New System.Drawing.Size(47, 33)
  2778. Me.NumericUpDown12.TabIndex = 1649
  2779. Me.NumericUpDown12.Value = New Decimal(New Integer() {4, 0, 0, 0})
  2780. '
  2781. 'CheckBox12
  2782. '
  2783. Me.CheckBox12.AutoSize = True
  2784. Me.CheckBox12.Font = New System.Drawing.Font("微軟正黑體", 14.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2785. Me.CheckBox12.Location = New System.Drawing.Point(362, 532)
  2786. Me.CheckBox12.Name = "CheckBox12"
  2787. Me.CheckBox12.Size = New System.Drawing.Size(67, 28)
  2788. Me.CheckBox12.TabIndex = 1648
  2789. Me.CheckBox12.Text = "半天"
  2790. Me.CheckBox12.UseVisualStyleBackColor = True
  2791. '
  2792. 'NumericUpDown11
  2793. '
  2794. Me.NumericUpDown11.DecimalPlaces = 1
  2795. Me.NumericUpDown11.Font = New System.Drawing.Font("微軟正黑體", 14.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2796. Me.NumericUpDown11.Increment = New Decimal(New Integer() {5, 0, 0, 65536})
  2797. Me.NumericUpDown11.Location = New System.Drawing.Point(424, 495)
  2798. Me.NumericUpDown11.Maximum = New Decimal(New Integer() {8, 0, 0, 0})
  2799. Me.NumericUpDown11.Minimum = New Decimal(New Integer() {2, 0, 0, 0})
  2800. Me.NumericUpDown11.Name = "NumericUpDown11"
  2801. Me.NumericUpDown11.Size = New System.Drawing.Size(47, 33)
  2802. Me.NumericUpDown11.TabIndex = 1647
  2803. Me.NumericUpDown11.Value = New Decimal(New Integer() {4, 0, 0, 0})
  2804. '
  2805. 'CheckBox11
  2806. '
  2807. Me.CheckBox11.AutoSize = True
  2808. Me.CheckBox11.Font = New System.Drawing.Font("微軟正黑體", 14.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2809. Me.CheckBox11.Location = New System.Drawing.Point(362, 497)
  2810. Me.CheckBox11.Name = "CheckBox11"
  2811. Me.CheckBox11.Size = New System.Drawing.Size(67, 28)
  2812. Me.CheckBox11.TabIndex = 1646
  2813. Me.CheckBox11.Text = "半天"
  2814. Me.CheckBox11.UseVisualStyleBackColor = True
  2815. '
  2816. 'NumericUpDown10
  2817. '
  2818. Me.NumericUpDown10.DecimalPlaces = 1
  2819. Me.NumericUpDown10.Font = New System.Drawing.Font("微軟正黑體", 14.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2820. Me.NumericUpDown10.Increment = New Decimal(New Integer() {5, 0, 0, 65536})
  2821. Me.NumericUpDown10.Location = New System.Drawing.Point(424, 459)
  2822. Me.NumericUpDown10.Maximum = New Decimal(New Integer() {8, 0, 0, 0})
  2823. Me.NumericUpDown10.Minimum = New Decimal(New Integer() {2, 0, 0, 0})
  2824. Me.NumericUpDown10.Name = "NumericUpDown10"
  2825. Me.NumericUpDown10.Size = New System.Drawing.Size(47, 33)
  2826. Me.NumericUpDown10.TabIndex = 1645
  2827. Me.NumericUpDown10.Value = New Decimal(New Integer() {4, 0, 0, 0})
  2828. '
  2829. 'CheckBox10
  2830. '
  2831. Me.CheckBox10.AutoSize = True
  2832. Me.CheckBox10.Font = New System.Drawing.Font("微軟正黑體", 14.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2833. Me.CheckBox10.Location = New System.Drawing.Point(362, 459)
  2834. Me.CheckBox10.Name = "CheckBox10"
  2835. Me.CheckBox10.Size = New System.Drawing.Size(67, 28)
  2836. Me.CheckBox10.TabIndex = 1644
  2837. Me.CheckBox10.Text = "半天"
  2838. Me.CheckBox10.UseVisualStyleBackColor = True
  2839. '
  2840. 'NumericUpDown9
  2841. '
  2842. Me.NumericUpDown9.DecimalPlaces = 1
  2843. Me.NumericUpDown9.Font = New System.Drawing.Font("微軟正黑體", 14.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2844. Me.NumericUpDown9.Increment = New Decimal(New Integer() {5, 0, 0, 65536})
  2845. Me.NumericUpDown9.Location = New System.Drawing.Point(424, 422)
  2846. Me.NumericUpDown9.Maximum = New Decimal(New Integer() {8, 0, 0, 0})
  2847. Me.NumericUpDown9.Minimum = New Decimal(New Integer() {2, 0, 0, 0})
  2848. Me.NumericUpDown9.Name = "NumericUpDown9"
  2849. Me.NumericUpDown9.Size = New System.Drawing.Size(47, 33)
  2850. Me.NumericUpDown9.TabIndex = 1643
  2851. Me.NumericUpDown9.Value = New Decimal(New Integer() {4, 0, 0, 0})
  2852. '
  2853. 'CheckBox9
  2854. '
  2855. Me.CheckBox9.AutoSize = True
  2856. Me.CheckBox9.Font = New System.Drawing.Font("微軟正黑體", 14.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2857. Me.CheckBox9.Location = New System.Drawing.Point(362, 424)
  2858. Me.CheckBox9.Name = "CheckBox9"
  2859. Me.CheckBox9.Size = New System.Drawing.Size(67, 28)
  2860. Me.CheckBox9.TabIndex = 1642
  2861. Me.CheckBox9.Text = "半天"
  2862. Me.CheckBox9.UseVisualStyleBackColor = True
  2863. '
  2864. 'NumericUpDown8
  2865. '
  2866. Me.NumericUpDown8.DecimalPlaces = 1
  2867. Me.NumericUpDown8.Font = New System.Drawing.Font("微軟正黑體", 14.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2868. Me.NumericUpDown8.Increment = New Decimal(New Integer() {5, 0, 0, 65536})
  2869. Me.NumericUpDown8.Location = New System.Drawing.Point(424, 387)
  2870. Me.NumericUpDown8.Maximum = New Decimal(New Integer() {8, 0, 0, 0})
  2871. Me.NumericUpDown8.Minimum = New Decimal(New Integer() {2, 0, 0, 0})
  2872. Me.NumericUpDown8.Name = "NumericUpDown8"
  2873. Me.NumericUpDown8.Size = New System.Drawing.Size(47, 33)
  2874. Me.NumericUpDown8.TabIndex = 1641
  2875. Me.NumericUpDown8.Value = New Decimal(New Integer() {4, 0, 0, 0})
  2876. '
  2877. 'CheckBox8
  2878. '
  2879. Me.CheckBox8.AutoSize = True
  2880. Me.CheckBox8.Font = New System.Drawing.Font("微軟正黑體", 14.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2881. Me.CheckBox8.Location = New System.Drawing.Point(362, 388)
  2882. Me.CheckBox8.Name = "CheckBox8"
  2883. Me.CheckBox8.Size = New System.Drawing.Size(67, 28)
  2884. Me.CheckBox8.TabIndex = 1640
  2885. Me.CheckBox8.Text = "半天"
  2886. Me.CheckBox8.UseVisualStyleBackColor = True
  2887. '
  2888. 'NumericUpDown7
  2889. '
  2890. Me.NumericUpDown7.DecimalPlaces = 1
  2891. Me.NumericUpDown7.Font = New System.Drawing.Font("微軟正黑體", 14.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2892. Me.NumericUpDown7.Increment = New Decimal(New Integer() {5, 0, 0, 65536})
  2893. Me.NumericUpDown7.Location = New System.Drawing.Point(424, 351)
  2894. Me.NumericUpDown7.Maximum = New Decimal(New Integer() {8, 0, 0, 0})
  2895. Me.NumericUpDown7.Minimum = New Decimal(New Integer() {2, 0, 0, 0})
  2896. Me.NumericUpDown7.Name = "NumericUpDown7"
  2897. Me.NumericUpDown7.Size = New System.Drawing.Size(47, 33)
  2898. Me.NumericUpDown7.TabIndex = 1639
  2899. Me.NumericUpDown7.Value = New Decimal(New Integer() {4, 0, 0, 0})
  2900. '
  2901. 'CheckBox7
  2902. '
  2903. Me.CheckBox7.AutoSize = True
  2904. Me.CheckBox7.Font = New System.Drawing.Font("微軟正黑體", 14.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2905. Me.CheckBox7.Location = New System.Drawing.Point(362, 352)
  2906. Me.CheckBox7.Name = "CheckBox7"
  2907. Me.CheckBox7.Size = New System.Drawing.Size(67, 28)
  2908. Me.CheckBox7.TabIndex = 1638
  2909. Me.CheckBox7.Text = "半天"
  2910. Me.CheckBox7.UseVisualStyleBackColor = True
  2911. '
  2912. 'NumericUpDown6
  2913. '
  2914. Me.NumericUpDown6.DecimalPlaces = 1
  2915. Me.NumericUpDown6.Font = New System.Drawing.Font("微軟正黑體", 14.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2916. Me.NumericUpDown6.Increment = New Decimal(New Integer() {5, 0, 0, 65536})
  2917. Me.NumericUpDown6.Location = New System.Drawing.Point(424, 315)
  2918. Me.NumericUpDown6.Maximum = New Decimal(New Integer() {8, 0, 0, 0})
  2919. Me.NumericUpDown6.Minimum = New Decimal(New Integer() {2, 0, 0, 0})
  2920. Me.NumericUpDown6.Name = "NumericUpDown6"
  2921. Me.NumericUpDown6.Size = New System.Drawing.Size(47, 33)
  2922. Me.NumericUpDown6.TabIndex = 1637
  2923. Me.NumericUpDown6.Value = New Decimal(New Integer() {4, 0, 0, 0})
  2924. '
  2925. 'CheckBox6
  2926. '
  2927. Me.CheckBox6.AutoSize = True
  2928. Me.CheckBox6.Font = New System.Drawing.Font("微軟正黑體", 14.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2929. Me.CheckBox6.Location = New System.Drawing.Point(362, 316)
  2930. Me.CheckBox6.Name = "CheckBox6"
  2931. Me.CheckBox6.Size = New System.Drawing.Size(67, 28)
  2932. Me.CheckBox6.TabIndex = 1636
  2933. Me.CheckBox6.Text = "半天"
  2934. Me.CheckBox6.UseVisualStyleBackColor = True
  2935. '
  2936. 'NumericUpDown5
  2937. '
  2938. Me.NumericUpDown5.DecimalPlaces = 1
  2939. Me.NumericUpDown5.Font = New System.Drawing.Font("微軟正黑體", 14.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2940. Me.NumericUpDown5.Increment = New Decimal(New Integer() {5, 0, 0, 65536})
  2941. Me.NumericUpDown5.Location = New System.Drawing.Point(424, 279)
  2942. Me.NumericUpDown5.Maximum = New Decimal(New Integer() {8, 0, 0, 0})
  2943. Me.NumericUpDown5.Minimum = New Decimal(New Integer() {2, 0, 0, 0})
  2944. Me.NumericUpDown5.Name = "NumericUpDown5"
  2945. Me.NumericUpDown5.Size = New System.Drawing.Size(47, 33)
  2946. Me.NumericUpDown5.TabIndex = 1635
  2947. Me.NumericUpDown5.Value = New Decimal(New Integer() {4, 0, 0, 0})
  2948. '
  2949. 'CheckBox5
  2950. '
  2951. Me.CheckBox5.AutoSize = True
  2952. Me.CheckBox5.Font = New System.Drawing.Font("微軟正黑體", 14.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2953. Me.CheckBox5.Location = New System.Drawing.Point(362, 280)
  2954. Me.CheckBox5.Name = "CheckBox5"
  2955. Me.CheckBox5.Size = New System.Drawing.Size(67, 28)
  2956. Me.CheckBox5.TabIndex = 1634
  2957. Me.CheckBox5.Text = "半天"
  2958. Me.CheckBox5.UseVisualStyleBackColor = True
  2959. '
  2960. 'NumericUpDown4
  2961. '
  2962. Me.NumericUpDown4.DecimalPlaces = 1
  2963. Me.NumericUpDown4.Font = New System.Drawing.Font("微軟正黑體", 14.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2964. Me.NumericUpDown4.Increment = New Decimal(New Integer() {5, 0, 0, 65536})
  2965. Me.NumericUpDown4.Location = New System.Drawing.Point(424, 243)
  2966. Me.NumericUpDown4.Maximum = New Decimal(New Integer() {8, 0, 0, 0})
  2967. Me.NumericUpDown4.Minimum = New Decimal(New Integer() {2, 0, 0, 0})
  2968. Me.NumericUpDown4.Name = "NumericUpDown4"
  2969. Me.NumericUpDown4.Size = New System.Drawing.Size(47, 33)
  2970. Me.NumericUpDown4.TabIndex = 1633
  2971. Me.NumericUpDown4.Value = New Decimal(New Integer() {4, 0, 0, 0})
  2972. '
  2973. 'CheckBox4
  2974. '
  2975. Me.CheckBox4.AutoSize = True
  2976. Me.CheckBox4.Font = New System.Drawing.Font("微軟正黑體", 14.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2977. Me.CheckBox4.Location = New System.Drawing.Point(362, 244)
  2978. Me.CheckBox4.Name = "CheckBox4"
  2979. Me.CheckBox4.Size = New System.Drawing.Size(67, 28)
  2980. Me.CheckBox4.TabIndex = 1632
  2981. Me.CheckBox4.Text = "半天"
  2982. Me.CheckBox4.UseVisualStyleBackColor = True
  2983. '
  2984. 'NumericUpDown3
  2985. '
  2986. Me.NumericUpDown3.DecimalPlaces = 1
  2987. Me.NumericUpDown3.Font = New System.Drawing.Font("微軟正黑體", 14.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2988. Me.NumericUpDown3.Increment = New Decimal(New Integer() {5, 0, 0, 65536})
  2989. Me.NumericUpDown3.Location = New System.Drawing.Point(424, 207)
  2990. Me.NumericUpDown3.Maximum = New Decimal(New Integer() {8, 0, 0, 0})
  2991. Me.NumericUpDown3.Minimum = New Decimal(New Integer() {2, 0, 0, 0})
  2992. Me.NumericUpDown3.Name = "NumericUpDown3"
  2993. Me.NumericUpDown3.Size = New System.Drawing.Size(47, 33)
  2994. Me.NumericUpDown3.TabIndex = 1631
  2995. Me.NumericUpDown3.Value = New Decimal(New Integer() {4, 0, 0, 0})
  2996. '
  2997. 'CheckBox3
  2998. '
  2999. Me.CheckBox3.AutoSize = True
  3000. Me.CheckBox3.Font = New System.Drawing.Font("微軟正黑體", 14.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  3001. Me.CheckBox3.Location = New System.Drawing.Point(362, 208)
  3002. Me.CheckBox3.Name = "CheckBox3"
  3003. Me.CheckBox3.Size = New System.Drawing.Size(67, 28)
  3004. Me.CheckBox3.TabIndex = 1630
  3005. Me.CheckBox3.Text = "半天"
  3006. Me.CheckBox3.UseVisualStyleBackColor = True
  3007. '
  3008. 'NumericUpDown2
  3009. '
  3010. Me.NumericUpDown2.DecimalPlaces = 1
  3011. Me.NumericUpDown2.Font = New System.Drawing.Font("微軟正黑體", 14.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  3012. Me.NumericUpDown2.Increment = New Decimal(New Integer() {5, 0, 0, 65536})
  3013. Me.NumericUpDown2.Location = New System.Drawing.Point(424, 172)
  3014. Me.NumericUpDown2.Maximum = New Decimal(New Integer() {8, 0, 0, 0})
  3015. Me.NumericUpDown2.Minimum = New Decimal(New Integer() {2, 0, 0, 0})
  3016. Me.NumericUpDown2.Name = "NumericUpDown2"
  3017. Me.NumericUpDown2.Size = New System.Drawing.Size(47, 33)
  3018. Me.NumericUpDown2.TabIndex = 1629
  3019. Me.NumericUpDown2.Value = New Decimal(New Integer() {4, 0, 0, 0})
  3020. '
  3021. 'CheckBox2
  3022. '
  3023. Me.CheckBox2.AutoSize = True
  3024. Me.CheckBox2.Font = New System.Drawing.Font("微軟正黑體", 14.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  3025. Me.CheckBox2.Location = New System.Drawing.Point(362, 173)
  3026. Me.CheckBox2.Name = "CheckBox2"
  3027. Me.CheckBox2.Size = New System.Drawing.Size(67, 28)
  3028. Me.CheckBox2.TabIndex = 1628
  3029. Me.CheckBox2.Text = "半天"
  3030. Me.CheckBox2.UseVisualStyleBackColor = True
  3031. '
  3032. 'NumericUpDown1
  3033. '
  3034. Me.NumericUpDown1.DecimalPlaces = 1
  3035. Me.NumericUpDown1.Font = New System.Drawing.Font("微軟正黑體", 14.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  3036. Me.NumericUpDown1.Increment = New Decimal(New Integer() {5, 0, 0, 65536})
  3037. Me.NumericUpDown1.Location = New System.Drawing.Point(424, 135)
  3038. Me.NumericUpDown1.Maximum = New Decimal(New Integer() {8, 0, 0, 0})
  3039. Me.NumericUpDown1.Minimum = New Decimal(New Integer() {2, 0, 0, 0})
  3040. Me.NumericUpDown1.Name = "NumericUpDown1"
  3041. Me.NumericUpDown1.Size = New System.Drawing.Size(47, 33)
  3042. Me.NumericUpDown1.TabIndex = 1627
  3043. Me.NumericUpDown1.Value = New Decimal(New Integer() {4, 0, 0, 0})
  3044. '
  3045. 'CheckBox1
  3046. '
  3047. Me.CheckBox1.AutoSize = True
  3048. Me.CheckBox1.Font = New System.Drawing.Font("微軟正黑體", 14.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  3049. Me.CheckBox1.Location = New System.Drawing.Point(362, 136)
  3050. Me.CheckBox1.Name = "CheckBox1"
  3051. Me.CheckBox1.Size = New System.Drawing.Size(67, 28)
  3052. Me.CheckBox1.TabIndex = 1626
  3053. Me.CheckBox1.Text = "半天"
  3054. Me.CheckBox1.UseVisualStyleBackColor = True
  3055. '
  3056. '存檔_bt
  3057. '
  3058. Me.存檔_bt.Location = New System.Drawing.Point(5, 3)
  3059. Me.存檔_bt.Name = "存檔_bt"
  3060. Me.存檔_bt.Size = New System.Drawing.Size(117, 23)
  3061. Me.存檔_bt.TabIndex = 1625
  3062. Me.存檔_bt.Text = "存檔"
  3063. Me.存檔_bt.UseVisualStyleBackColor = True
  3064. '
  3065. '複製班表_bt
  3066. '
  3067. Me.複製班表_bt.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  3068. Me.複製班表_bt.Location = New System.Drawing.Point(5, 875)
  3069. Me.複製班表_bt.Name = "複製班表_bt"
  3070. Me.複製班表_bt.Size = New System.Drawing.Size(117, 23)
  3071. Me.複製班表_bt.TabIndex = 1624
  3072. Me.複製班表_bt.Text = "複製班表到其他日期"
  3073. Me.複製班表_bt.UseVisualStyleBackColor = True
  3074. '
  3075. '日_lb
  3076. '
  3077. Me.日_lb.AutoSize = True
  3078. Me.日_lb.Font = New System.Drawing.Font("微軟正黑體", 21.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  3079. Me.日_lb.Location = New System.Drawing.Point(357, 3)
  3080. Me.日_lb.Name = "日_lb"
  3081. Me.日_lb.Size = New System.Drawing.Size(55, 37)
  3082. Me.日_lb.TabIndex = 1623
  3083. Me.日_lb.Text = "XX"
  3084. '
  3085. 'Label91
  3086. '
  3087. Me.Label91.AutoSize = True
  3088. Me.Label91.Font = New System.Drawing.Font("微軟正黑體", 21.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  3089. Me.Label91.Location = New System.Drawing.Point(321, 3)
  3090. Me.Label91.Name = "Label91"
  3091. Me.Label91.Size = New System.Drawing.Size(30, 37)
  3092. Me.Label91.TabIndex = 1622
  3093. Me.Label91.Text = "/"
  3094. '
  3095. '月_lb
  3096. '
  3097. Me.月_lb.AutoSize = True
  3098. Me.月_lb.Font = New System.Drawing.Font("微軟正黑體", 21.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  3099. Me.月_lb.Location = New System.Drawing.Point(260, 3)
  3100. Me.月_lb.Name = "月_lb"
  3101. Me.月_lb.Size = New System.Drawing.Size(55, 37)
  3102. Me.月_lb.TabIndex = 1621
  3103. Me.月_lb.Text = "XX"
  3104. '
  3105. 'Label89
  3106. '
  3107. Me.Label89.AutoSize = True
  3108. Me.Label89.Font = New System.Drawing.Font("微軟正黑體", 21.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  3109. Me.Label89.Location = New System.Drawing.Point(224, 3)
  3110. Me.Label89.Name = "Label89"
  3111. Me.Label89.Size = New System.Drawing.Size(30, 37)
  3112. Me.Label89.TabIndex = 1620
  3113. Me.Label89.Text = "/"
  3114. '
  3115. '年_lb
  3116. '
  3117. Me.年_lb.AutoSize = True
  3118. Me.年_lb.Font = New System.Drawing.Font("微軟正黑體", 21.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  3119. Me.年_lb.Location = New System.Drawing.Point(125, 3)
  3120. Me.年_lb.Name = "年_lb"
  3121. Me.年_lb.Size = New System.Drawing.Size(93, 37)
  3122. Me.年_lb.TabIndex = 1619
  3123. Me.年_lb.Text = "XXXX"
  3124. '
  3125. '人員_dgv
  3126. '
  3127. DataGridViewCellStyle2.BackColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(255, Byte), Integer), CType(CType(192, Byte), Integer))
  3128. Me.人員_dgv.AlternatingRowsDefaultCellStyle = DataGridViewCellStyle2
  3129. Me.人員_dgv.Anchor = CType(((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
  3130. Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  3131. Me.人員_dgv.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill
  3132. Me.人員_dgv.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize
  3133. Me.人員_dgv.Location = New System.Drawing.Point(5, 30)
  3134. Me.人員_dgv.Name = "人員_dgv"
  3135. Me.人員_dgv.RowHeadersWidth = 5
  3136. Me.人員_dgv.RowTemplate.Height = 24
  3137. Me.人員_dgv.Size = New System.Drawing.Size(117, 799)
  3138. Me.人員_dgv.TabIndex = 1618
  3139. '
  3140. '姓名_tb20
  3141. '
  3142. Me.姓名_tb20.Font = New System.Drawing.Font("微軟正黑體", 14.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  3143. Me.姓名_tb20.Location = New System.Drawing.Point(154, 818)
  3144. Me.姓名_tb20.Name = "姓名_tb20"
  3145. Me.姓名_tb20.Size = New System.Drawing.Size(80, 33)
  3146. Me.姓名_tb20.TabIndex = 1597
  3147. '
  3148. '姓名_tb19
  3149. '
  3150. Me.姓名_tb19.Font = New System.Drawing.Font("微軟正黑體", 14.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  3151. Me.姓名_tb19.Location = New System.Drawing.Point(154, 782)
  3152. Me.姓名_tb19.Name = "姓名_tb19"
  3153. Me.姓名_tb19.Size = New System.Drawing.Size(80, 33)
  3154. Me.姓名_tb19.TabIndex = 1596
  3155. '
  3156. '姓名_tb18
  3157. '
  3158. Me.姓名_tb18.Font = New System.Drawing.Font("微軟正黑體", 14.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  3159. Me.姓名_tb18.Location = New System.Drawing.Point(154, 746)
  3160. Me.姓名_tb18.Name = "姓名_tb18"
  3161. Me.姓名_tb18.Size = New System.Drawing.Size(80, 33)
  3162. Me.姓名_tb18.TabIndex = 1595
  3163. '
  3164. '姓名_tb17
  3165. '
  3166. Me.姓名_tb17.Font = New System.Drawing.Font("微軟正黑體", 14.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  3167. Me.姓名_tb17.Location = New System.Drawing.Point(154, 710)
  3168. Me.姓名_tb17.Name = "姓名_tb17"
  3169. Me.姓名_tb17.Size = New System.Drawing.Size(80, 33)
  3170. Me.姓名_tb17.TabIndex = 1594
  3171. '
  3172. '姓名_tb16
  3173. '
  3174. Me.姓名_tb16.Font = New System.Drawing.Font("微軟正黑體", 14.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  3175. Me.姓名_tb16.Location = New System.Drawing.Point(154, 674)
  3176. Me.姓名_tb16.Name = "姓名_tb16"
  3177. Me.姓名_tb16.Size = New System.Drawing.Size(80, 33)
  3178. Me.姓名_tb16.TabIndex = 1593
  3179. '
  3180. '姓名_tb15
  3181. '
  3182. Me.姓名_tb15.Font = New System.Drawing.Font("微軟正黑體", 14.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  3183. Me.姓名_tb15.Location = New System.Drawing.Point(154, 638)
  3184. Me.姓名_tb15.Name = "姓名_tb15"
  3185. Me.姓名_tb15.Size = New System.Drawing.Size(80, 33)
  3186. Me.姓名_tb15.TabIndex = 1592
  3187. '
  3188. '姓名_tb14
  3189. '
  3190. Me.姓名_tb14.Font = New System.Drawing.Font("微軟正黑體", 14.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  3191. Me.姓名_tb14.Location = New System.Drawing.Point(154, 602)
  3192. Me.姓名_tb14.Name = "姓名_tb14"
  3193. Me.姓名_tb14.Size = New System.Drawing.Size(80, 33)
  3194. Me.姓名_tb14.TabIndex = 1591
  3195. '
  3196. '姓名_tb13
  3197. '
  3198. Me.姓名_tb13.Font = New System.Drawing.Font("微軟正黑體", 14.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  3199. Me.姓名_tb13.Location = New System.Drawing.Point(154, 566)
  3200. Me.姓名_tb13.Name = "姓名_tb13"
  3201. Me.姓名_tb13.Size = New System.Drawing.Size(80, 33)
  3202. Me.姓名_tb13.TabIndex = 1590
  3203. '
  3204. '姓名_tb12
  3205. '
  3206. Me.姓名_tb12.Font = New System.Drawing.Font("微軟正黑體", 14.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  3207. Me.姓名_tb12.Location = New System.Drawing.Point(154, 530)
  3208. Me.姓名_tb12.Name = "姓名_tb12"
  3209. Me.姓名_tb12.Size = New System.Drawing.Size(80, 33)
  3210. Me.姓名_tb12.TabIndex = 1589
  3211. '
  3212. '姓名_tb11
  3213. '
  3214. Me.姓名_tb11.Font = New System.Drawing.Font("微軟正黑體", 14.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  3215. Me.姓名_tb11.Location = New System.Drawing.Point(154, 494)
  3216. Me.姓名_tb11.Name = "姓名_tb11"
  3217. Me.姓名_tb11.Size = New System.Drawing.Size(80, 33)
  3218. Me.姓名_tb11.TabIndex = 1588
  3219. '
  3220. '姓名_tb10
  3221. '
  3222. Me.姓名_tb10.Font = New System.Drawing.Font("微軟正黑體", 14.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  3223. Me.姓名_tb10.Location = New System.Drawing.Point(154, 458)
  3224. Me.姓名_tb10.Name = "姓名_tb10"
  3225. Me.姓名_tb10.Size = New System.Drawing.Size(80, 33)
  3226. Me.姓名_tb10.TabIndex = 1587
  3227. '
  3228. '姓名_tb9
  3229. '
  3230. Me.姓名_tb9.Font = New System.Drawing.Font("微軟正黑體", 14.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  3231. Me.姓名_tb9.Location = New System.Drawing.Point(154, 422)
  3232. Me.姓名_tb9.Name = "姓名_tb9"
  3233. Me.姓名_tb9.Size = New System.Drawing.Size(80, 33)
  3234. Me.姓名_tb9.TabIndex = 1586
  3235. '
  3236. '姓名_tb8
  3237. '
  3238. Me.姓名_tb8.Font = New System.Drawing.Font("微軟正黑體", 14.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  3239. Me.姓名_tb8.Location = New System.Drawing.Point(154, 386)
  3240. Me.姓名_tb8.Name = "姓名_tb8"
  3241. Me.姓名_tb8.Size = New System.Drawing.Size(80, 33)
  3242. Me.姓名_tb8.TabIndex = 1585
  3243. '
  3244. '姓名_tb7
  3245. '
  3246. Me.姓名_tb7.Font = New System.Drawing.Font("微軟正黑體", 14.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  3247. Me.姓名_tb7.Location = New System.Drawing.Point(154, 350)
  3248. Me.姓名_tb7.Name = "姓名_tb7"
  3249. Me.姓名_tb7.Size = New System.Drawing.Size(80, 33)
  3250. Me.姓名_tb7.TabIndex = 1584
  3251. '
  3252. '姓名_tb6
  3253. '
  3254. Me.姓名_tb6.Font = New System.Drawing.Font("微軟正黑體", 14.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  3255. Me.姓名_tb6.Location = New System.Drawing.Point(154, 314)
  3256. Me.姓名_tb6.Name = "姓名_tb6"
  3257. Me.姓名_tb6.Size = New System.Drawing.Size(80, 33)
  3258. Me.姓名_tb6.TabIndex = 1583
  3259. '
  3260. '姓名_tb5
  3261. '
  3262. Me.姓名_tb5.Font = New System.Drawing.Font("微軟正黑體", 14.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  3263. Me.姓名_tb5.Location = New System.Drawing.Point(154, 278)
  3264. Me.姓名_tb5.Name = "姓名_tb5"
  3265. Me.姓名_tb5.Size = New System.Drawing.Size(80, 33)
  3266. Me.姓名_tb5.TabIndex = 1582
  3267. '
  3268. '姓名_tb4
  3269. '
  3270. Me.姓名_tb4.Font = New System.Drawing.Font("微軟正黑體", 14.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  3271. Me.姓名_tb4.Location = New System.Drawing.Point(154, 242)
  3272. Me.姓名_tb4.Name = "姓名_tb4"
  3273. Me.姓名_tb4.Size = New System.Drawing.Size(80, 33)
  3274. Me.姓名_tb4.TabIndex = 1581
  3275. '
  3276. '姓名_tb3
  3277. '
  3278. Me.姓名_tb3.Font = New System.Drawing.Font("微軟正黑體", 14.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  3279. Me.姓名_tb3.Location = New System.Drawing.Point(154, 206)
  3280. Me.姓名_tb3.Name = "姓名_tb3"
  3281. Me.姓名_tb3.Size = New System.Drawing.Size(80, 33)
  3282. Me.姓名_tb3.TabIndex = 1580
  3283. '
  3284. '姓名_tb2
  3285. '
  3286. Me.姓名_tb2.Font = New System.Drawing.Font("微軟正黑體", 14.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  3287. Me.姓名_tb2.Location = New System.Drawing.Point(154, 170)
  3288. Me.姓名_tb2.Name = "姓名_tb2"
  3289. Me.姓名_tb2.Size = New System.Drawing.Size(80, 33)
  3290. Me.姓名_tb2.TabIndex = 1579
  3291. '
  3292. '姓名_tb1
  3293. '
  3294. Me.姓名_tb1.Font = New System.Drawing.Font("微軟正黑體", 14.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  3295. Me.姓名_tb1.Location = New System.Drawing.Point(154, 134)
  3296. Me.姓名_tb1.Name = "姓名_tb1"
  3297. Me.姓名_tb1.Size = New System.Drawing.Size(80, 33)
  3298. Me.姓名_tb1.TabIndex = 1578
  3299. '
  3300. '班別_cb20
  3301. '
  3302. Me.班別_cb20.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
  3303. Me.班別_cb20.Font = New System.Drawing.Font("微軟正黑體", 14.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  3304. Me.班別_cb20.FormattingEnabled = True
  3305. Me.班別_cb20.Items.AddRange(New Object() {"2019", "2020", "2021", "2022", "2023", "2024", "2025", "2026", "2027", "2028", "2029", "2030"})
  3306. Me.班別_cb20.Location = New System.Drawing.Point(237, 818)
  3307. Me.班別_cb20.Name = "班別_cb20"
  3308. Me.班別_cb20.Size = New System.Drawing.Size(119, 32)
  3309. Me.班別_cb20.TabIndex = 1558
  3310. '
  3311. '班別_cb19
  3312. '
  3313. Me.班別_cb19.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
  3314. Me.班別_cb19.Font = New System.Drawing.Font("微軟正黑體", 14.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  3315. Me.班別_cb19.FormattingEnabled = True
  3316. Me.班別_cb19.Items.AddRange(New Object() {"2019", "2020", "2021", "2022", "2023", "2024", "2025", "2026", "2027", "2028", "2029", "2030"})
  3317. Me.班別_cb19.Location = New System.Drawing.Point(237, 782)
  3318. Me.班別_cb19.Name = "班別_cb19"
  3319. Me.班別_cb19.Size = New System.Drawing.Size(119, 32)
  3320. Me.班別_cb19.TabIndex = 1557
  3321. '
  3322. '班別_cb18
  3323. '
  3324. Me.班別_cb18.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
  3325. Me.班別_cb18.Font = New System.Drawing.Font("微軟正黑體", 14.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  3326. Me.班別_cb18.FormattingEnabled = True
  3327. Me.班別_cb18.Items.AddRange(New Object() {"2019", "2020", "2021", "2022", "2023", "2024", "2025", "2026", "2027", "2028", "2029", "2030"})
  3328. Me.班別_cb18.Location = New System.Drawing.Point(237, 746)
  3329. Me.班別_cb18.Name = "班別_cb18"
  3330. Me.班別_cb18.Size = New System.Drawing.Size(119, 32)
  3331. Me.班別_cb18.TabIndex = 1556
  3332. '
  3333. '班別_cb17
  3334. '
  3335. Me.班別_cb17.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
  3336. Me.班別_cb17.Font = New System.Drawing.Font("微軟正黑體", 14.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  3337. Me.班別_cb17.FormattingEnabled = True
  3338. Me.班別_cb17.Items.AddRange(New Object() {"2019", "2020", "2021", "2022", "2023", "2024", "2025", "2026", "2027", "2028", "2029", "2030"})
  3339. Me.班別_cb17.Location = New System.Drawing.Point(237, 710)
  3340. Me.班別_cb17.Name = "班別_cb17"
  3341. Me.班別_cb17.Size = New System.Drawing.Size(119, 32)
  3342. Me.班別_cb17.TabIndex = 1555
  3343. '
  3344. '班別_cb16
  3345. '
  3346. Me.班別_cb16.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
  3347. Me.班別_cb16.Font = New System.Drawing.Font("微軟正黑體", 14.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  3348. Me.班別_cb16.FormattingEnabled = True
  3349. Me.班別_cb16.Items.AddRange(New Object() {"2019", "2020", "2021", "2022", "2023", "2024", "2025", "2026", "2027", "2028", "2029", "2030"})
  3350. Me.班別_cb16.Location = New System.Drawing.Point(237, 674)
  3351. Me.班別_cb16.Name = "班別_cb16"
  3352. Me.班別_cb16.Size = New System.Drawing.Size(119, 32)
  3353. Me.班別_cb16.TabIndex = 1554
  3354. '
  3355. '班別_cb15
  3356. '
  3357. Me.班別_cb15.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
  3358. Me.班別_cb15.Font = New System.Drawing.Font("微軟正黑體", 14.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  3359. Me.班別_cb15.FormattingEnabled = True
  3360. Me.班別_cb15.Items.AddRange(New Object() {"2019", "2020", "2021", "2022", "2023", "2024", "2025", "2026", "2027", "2028", "2029", "2030"})
  3361. Me.班別_cb15.Location = New System.Drawing.Point(237, 638)
  3362. Me.班別_cb15.Name = "班別_cb15"
  3363. Me.班別_cb15.Size = New System.Drawing.Size(119, 32)
  3364. Me.班別_cb15.TabIndex = 1553
  3365. '
  3366. '班別_cb14
  3367. '
  3368. Me.班別_cb14.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
  3369. Me.班別_cb14.Font = New System.Drawing.Font("微軟正黑體", 14.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  3370. Me.班別_cb14.FormattingEnabled = True
  3371. Me.班別_cb14.Items.AddRange(New Object() {"2019", "2020", "2021", "2022", "2023", "2024", "2025", "2026", "2027", "2028", "2029", "2030"})
  3372. Me.班別_cb14.Location = New System.Drawing.Point(237, 602)
  3373. Me.班別_cb14.Name = "班別_cb14"
  3374. Me.班別_cb14.Size = New System.Drawing.Size(119, 32)
  3375. Me.班別_cb14.TabIndex = 1552
  3376. '
  3377. '班別_cb13
  3378. '
  3379. Me.班別_cb13.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
  3380. Me.班別_cb13.Font = New System.Drawing.Font("微軟正黑體", 14.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  3381. Me.班別_cb13.FormattingEnabled = True
  3382. Me.班別_cb13.Items.AddRange(New Object() {"2019", "2020", "2021", "2022", "2023", "2024", "2025", "2026", "2027", "2028", "2029", "2030"})
  3383. Me.班別_cb13.Location = New System.Drawing.Point(237, 566)
  3384. Me.班別_cb13.Name = "班別_cb13"
  3385. Me.班別_cb13.Size = New System.Drawing.Size(119, 32)
  3386. Me.班別_cb13.TabIndex = 1551
  3387. '
  3388. '班別_cb12
  3389. '
  3390. Me.班別_cb12.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
  3391. Me.班別_cb12.Font = New System.Drawing.Font("微軟正黑體", 14.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  3392. Me.班別_cb12.FormattingEnabled = True
  3393. Me.班別_cb12.Items.AddRange(New Object() {"2019", "2020", "2021", "2022", "2023", "2024", "2025", "2026", "2027", "2028", "2029", "2030"})
  3394. Me.班別_cb12.Location = New System.Drawing.Point(237, 530)
  3395. Me.班別_cb12.Name = "班別_cb12"
  3396. Me.班別_cb12.Size = New System.Drawing.Size(119, 32)
  3397. Me.班別_cb12.TabIndex = 1550
  3398. '
  3399. '班別_cb11
  3400. '
  3401. Me.班別_cb11.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
  3402. Me.班別_cb11.Font = New System.Drawing.Font("微軟正黑體", 14.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  3403. Me.班別_cb11.FormattingEnabled = True
  3404. Me.班別_cb11.Items.AddRange(New Object() {"2019", "2020", "2021", "2022", "2023", "2024", "2025", "2026", "2027", "2028", "2029", "2030"})
  3405. Me.班別_cb11.Location = New System.Drawing.Point(237, 494)
  3406. Me.班別_cb11.Name = "班別_cb11"
  3407. Me.班別_cb11.Size = New System.Drawing.Size(119, 32)
  3408. Me.班別_cb11.TabIndex = 1549
  3409. '
  3410. '班別_cb10
  3411. '
  3412. Me.班別_cb10.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
  3413. Me.班別_cb10.Font = New System.Drawing.Font("微軟正黑體", 14.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  3414. Me.班別_cb10.FormattingEnabled = True
  3415. Me.班別_cb10.Items.AddRange(New Object() {"2019", "2020", "2021", "2022", "2023", "2024", "2025", "2026", "2027", "2028", "2029", "2030"})
  3416. Me.班別_cb10.Location = New System.Drawing.Point(237, 458)
  3417. Me.班別_cb10.Name = "班別_cb10"
  3418. Me.班別_cb10.Size = New System.Drawing.Size(119, 32)
  3419. Me.班別_cb10.TabIndex = 1548
  3420. '
  3421. '班別_cb9
  3422. '
  3423. Me.班別_cb9.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
  3424. Me.班別_cb9.Font = New System.Drawing.Font("微軟正黑體", 14.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  3425. Me.班別_cb9.FormattingEnabled = True
  3426. Me.班別_cb9.Items.AddRange(New Object() {"2019", "2020", "2021", "2022", "2023", "2024", "2025", "2026", "2027", "2028", "2029", "2030"})
  3427. Me.班別_cb9.Location = New System.Drawing.Point(237, 422)
  3428. Me.班別_cb9.Name = "班別_cb9"
  3429. Me.班別_cb9.Size = New System.Drawing.Size(119, 32)
  3430. Me.班別_cb9.TabIndex = 1547
  3431. '
  3432. '班別_cb8
  3433. '
  3434. Me.班別_cb8.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
  3435. Me.班別_cb8.Font = New System.Drawing.Font("微軟正黑體", 14.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  3436. Me.班別_cb8.FormattingEnabled = True
  3437. Me.班別_cb8.Items.AddRange(New Object() {"2019", "2020", "2021", "2022", "2023", "2024", "2025", "2026", "2027", "2028", "2029", "2030"})
  3438. Me.班別_cb8.Location = New System.Drawing.Point(237, 386)
  3439. Me.班別_cb8.Name = "班別_cb8"
  3440. Me.班別_cb8.Size = New System.Drawing.Size(119, 32)
  3441. Me.班別_cb8.TabIndex = 1546
  3442. '
  3443. '班別_cb7
  3444. '
  3445. Me.班別_cb7.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
  3446. Me.班別_cb7.Font = New System.Drawing.Font("微軟正黑體", 14.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  3447. Me.班別_cb7.FormattingEnabled = True
  3448. Me.班別_cb7.Items.AddRange(New Object() {"2019", "2020", "2021", "2022", "2023", "2024", "2025", "2026", "2027", "2028", "2029", "2030"})
  3449. Me.班別_cb7.Location = New System.Drawing.Point(237, 350)
  3450. Me.班別_cb7.Name = "班別_cb7"
  3451. Me.班別_cb7.Size = New System.Drawing.Size(119, 32)
  3452. Me.班別_cb7.TabIndex = 1545
  3453. '
  3454. '班別_cb6
  3455. '
  3456. Me.班別_cb6.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
  3457. Me.班別_cb6.Font = New System.Drawing.Font("微軟正黑體", 14.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  3458. Me.班別_cb6.FormattingEnabled = True
  3459. Me.班別_cb6.Items.AddRange(New Object() {"2019", "2020", "2021", "2022", "2023", "2024", "2025", "2026", "2027", "2028", "2029", "2030"})
  3460. Me.班別_cb6.Location = New System.Drawing.Point(237, 314)
  3461. Me.班別_cb6.Name = "班別_cb6"
  3462. Me.班別_cb6.Size = New System.Drawing.Size(119, 32)
  3463. Me.班別_cb6.TabIndex = 1544
  3464. '
  3465. '班別_cb5
  3466. '
  3467. Me.班別_cb5.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
  3468. Me.班別_cb5.Font = New System.Drawing.Font("微軟正黑體", 14.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  3469. Me.班別_cb5.FormattingEnabled = True
  3470. Me.班別_cb5.Items.AddRange(New Object() {"2019", "2020", "2021", "2022", "2023", "2024", "2025", "2026", "2027", "2028", "2029", "2030"})
  3471. Me.班別_cb5.Location = New System.Drawing.Point(237, 278)
  3472. Me.班別_cb5.Name = "班別_cb5"
  3473. Me.班別_cb5.Size = New System.Drawing.Size(119, 32)
  3474. Me.班別_cb5.TabIndex = 1543
  3475. '
  3476. '班別_cb4
  3477. '
  3478. Me.班別_cb4.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
  3479. Me.班別_cb4.Font = New System.Drawing.Font("微軟正黑體", 14.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  3480. Me.班別_cb4.FormattingEnabled = True
  3481. Me.班別_cb4.Items.AddRange(New Object() {"2019", "2020", "2021", "2022", "2023", "2024", "2025", "2026", "2027", "2028", "2029", "2030"})
  3482. Me.班別_cb4.Location = New System.Drawing.Point(237, 242)
  3483. Me.班別_cb4.Name = "班別_cb4"
  3484. Me.班別_cb4.Size = New System.Drawing.Size(119, 32)
  3485. Me.班別_cb4.TabIndex = 1542
  3486. '
  3487. '班別_cb3
  3488. '
  3489. Me.班別_cb3.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
  3490. Me.班別_cb3.Font = New System.Drawing.Font("微軟正黑體", 14.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  3491. Me.班別_cb3.FormattingEnabled = True
  3492. Me.班別_cb3.Items.AddRange(New Object() {"2019", "2020", "2021", "2022", "2023", "2024", "2025", "2026", "2027", "2028", "2029", "2030"})
  3493. Me.班別_cb3.Location = New System.Drawing.Point(237, 206)
  3494. Me.班別_cb3.Name = "班別_cb3"
  3495. Me.班別_cb3.Size = New System.Drawing.Size(119, 32)
  3496. Me.班別_cb3.TabIndex = 1541
  3497. '
  3498. '班別_cb2
  3499. '
  3500. Me.班別_cb2.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
  3501. Me.班別_cb2.Font = New System.Drawing.Font("微軟正黑體", 14.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  3502. Me.班別_cb2.FormattingEnabled = True
  3503. Me.班別_cb2.Items.AddRange(New Object() {"2019", "2020", "2021", "2022", "2023", "2024", "2025", "2026", "2027", "2028", "2029", "2030"})
  3504. Me.班別_cb2.Location = New System.Drawing.Point(237, 170)
  3505. Me.班別_cb2.Name = "班別_cb2"
  3506. Me.班別_cb2.Size = New System.Drawing.Size(119, 32)
  3507. Me.班別_cb2.TabIndex = 1540
  3508. '
  3509. '班別_cb1
  3510. '
  3511. Me.班別_cb1.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
  3512. Me.班別_cb1.Font = New System.Drawing.Font("微軟正黑體", 14.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  3513. Me.班別_cb1.FormattingEnabled = True
  3514. Me.班別_cb1.Items.AddRange(New Object() {"2019", "2020", "2021", "2022", "2023", "2024", "2025", "2026", "2027", "2028", "2029", "2030"})
  3515. Me.班別_cb1.Location = New System.Drawing.Point(237, 134)
  3516. Me.班別_cb1.Name = "班別_cb1"
  3517. Me.班別_cb1.Size = New System.Drawing.Size(119, 32)
  3518. Me.班別_cb1.TabIndex = 1539
  3519. '
  3520. 'Label69
  3521. '
  3522. Me.Label69.AutoSize = True
  3523. Me.Label69.Location = New System.Drawing.Point(602, 73)
  3524. Me.Label69.Name = "Label69"
  3525. Me.Label69.Size = New System.Drawing.Size(1213, 16)
  3526. Me.Label69.TabIndex = 1538
  3527. Me.Label69.Text = resources.GetString("Label69.Text")
  3528. '
  3529. 'A_pb40
  3530. '
  3531. Me.A_pb40.Location = New System.Drawing.Point(990, 818)
  3532. Me.A_pb40.Maximum = 1
  3533. Me.A_pb40.Name = "A_pb40"
  3534. Me.A_pb40.Size = New System.Drawing.Size(297, 27)
  3535. Me.A_pb40.TabIndex = 1537
  3536. Me.A_pb40.Value = 1
  3537. '
  3538. 'A_pb39
  3539. '
  3540. Me.A_pb39.Location = New System.Drawing.Point(616, 818)
  3541. Me.A_pb39.Maximum = 1
  3542. Me.A_pb39.Name = "A_pb39"
  3543. Me.A_pb39.Size = New System.Drawing.Size(297, 27)
  3544. Me.A_pb39.TabIndex = 1536
  3545. Me.A_pb39.Value = 1
  3546. '
  3547. 'A_pb38
  3548. '
  3549. Me.A_pb38.Location = New System.Drawing.Point(989, 782)
  3550. Me.A_pb38.Maximum = 1
  3551. Me.A_pb38.Name = "A_pb38"
  3552. Me.A_pb38.Size = New System.Drawing.Size(297, 27)
  3553. Me.A_pb38.TabIndex = 1535
  3554. Me.A_pb38.Value = 1
  3555. '
  3556. 'A_pb37
  3557. '
  3558. Me.A_pb37.Location = New System.Drawing.Point(615, 782)
  3559. Me.A_pb37.Maximum = 1
  3560. Me.A_pb37.Name = "A_pb37"
  3561. Me.A_pb37.Size = New System.Drawing.Size(297, 27)
  3562. Me.A_pb37.TabIndex = 1534
  3563. Me.A_pb37.Value = 1
  3564. '
  3565. 'A_pb36
  3566. '
  3567. Me.A_pb36.Location = New System.Drawing.Point(989, 746)
  3568. Me.A_pb36.Maximum = 1
  3569. Me.A_pb36.Name = "A_pb36"
  3570. Me.A_pb36.Size = New System.Drawing.Size(297, 27)
  3571. Me.A_pb36.TabIndex = 1533
  3572. Me.A_pb36.Value = 1
  3573. '
  3574. 'A_pb35
  3575. '
  3576. Me.A_pb35.Location = New System.Drawing.Point(615, 746)
  3577. Me.A_pb35.Maximum = 1
  3578. Me.A_pb35.Name = "A_pb35"
  3579. Me.A_pb35.Size = New System.Drawing.Size(297, 27)
  3580. Me.A_pb35.TabIndex = 1532
  3581. Me.A_pb35.Value = 1
  3582. '
  3583. 'A_pb34
  3584. '
  3585. Me.A_pb34.Location = New System.Drawing.Point(990, 710)
  3586. Me.A_pb34.Maximum = 1
  3587. Me.A_pb34.Name = "A_pb34"
  3588. Me.A_pb34.Size = New System.Drawing.Size(297, 27)
  3589. Me.A_pb34.TabIndex = 1531
  3590. Me.A_pb34.Value = 1
  3591. '
  3592. 'A_pb33
  3593. '
  3594. Me.A_pb33.Location = New System.Drawing.Point(616, 710)
  3595. Me.A_pb33.Maximum = 1
  3596. Me.A_pb33.Name = "A_pb33"
  3597. Me.A_pb33.Size = New System.Drawing.Size(297, 27)
  3598. Me.A_pb33.TabIndex = 1530
  3599. Me.A_pb33.Value = 1
  3600. '
  3601. 'A_pb32
  3602. '
  3603. Me.A_pb32.Location = New System.Drawing.Point(990, 674)
  3604. Me.A_pb32.Maximum = 1
  3605. Me.A_pb32.Name = "A_pb32"
  3606. Me.A_pb32.Size = New System.Drawing.Size(297, 27)
  3607. Me.A_pb32.TabIndex = 1529
  3608. Me.A_pb32.Value = 1
  3609. '
  3610. 'A_pb31
  3611. '
  3612. Me.A_pb31.Location = New System.Drawing.Point(616, 674)
  3613. Me.A_pb31.Maximum = 1
  3614. Me.A_pb31.Name = "A_pb31"
  3615. Me.A_pb31.Size = New System.Drawing.Size(297, 27)
  3616. Me.A_pb31.TabIndex = 1528
  3617. Me.A_pb31.Value = 1
  3618. '
  3619. 'A_pb30
  3620. '
  3621. Me.A_pb30.Location = New System.Drawing.Point(990, 638)
  3622. Me.A_pb30.Maximum = 1
  3623. Me.A_pb30.Name = "A_pb30"
  3624. Me.A_pb30.Size = New System.Drawing.Size(297, 27)
  3625. Me.A_pb30.TabIndex = 1527
  3626. Me.A_pb30.Value = 1
  3627. '
  3628. 'A_pb29
  3629. '
  3630. Me.A_pb29.Location = New System.Drawing.Point(616, 638)
  3631. Me.A_pb29.Maximum = 1
  3632. Me.A_pb29.Name = "A_pb29"
  3633. Me.A_pb29.Size = New System.Drawing.Size(297, 27)
  3634. Me.A_pb29.TabIndex = 1526
  3635. Me.A_pb29.Value = 1
  3636. '
  3637. 'A_pb28
  3638. '
  3639. Me.A_pb28.Location = New System.Drawing.Point(990, 602)
  3640. Me.A_pb28.Maximum = 1
  3641. Me.A_pb28.Name = "A_pb28"
  3642. Me.A_pb28.Size = New System.Drawing.Size(297, 27)
  3643. Me.A_pb28.TabIndex = 1525
  3644. Me.A_pb28.Value = 1
  3645. '
  3646. 'A_pb27
  3647. '
  3648. Me.A_pb27.Location = New System.Drawing.Point(616, 602)
  3649. Me.A_pb27.Maximum = 1
  3650. Me.A_pb27.Name = "A_pb27"
  3651. Me.A_pb27.Size = New System.Drawing.Size(297, 27)
  3652. Me.A_pb27.TabIndex = 1524
  3653. Me.A_pb27.Value = 1
  3654. '
  3655. 'A_pb26
  3656. '
  3657. Me.A_pb26.Location = New System.Drawing.Point(990, 566)
  3658. Me.A_pb26.Maximum = 1
  3659. Me.A_pb26.Name = "A_pb26"
  3660. Me.A_pb26.Size = New System.Drawing.Size(297, 27)
  3661. Me.A_pb26.TabIndex = 1523
  3662. Me.A_pb26.Value = 1
  3663. '
  3664. 'A_pb25
  3665. '
  3666. Me.A_pb25.Location = New System.Drawing.Point(616, 566)
  3667. Me.A_pb25.Maximum = 1
  3668. Me.A_pb25.Name = "A_pb25"
  3669. Me.A_pb25.Size = New System.Drawing.Size(297, 27)
  3670. Me.A_pb25.TabIndex = 1522
  3671. Me.A_pb25.Value = 1
  3672. '
  3673. 'A_pb24
  3674. '
  3675. Me.A_pb24.Location = New System.Drawing.Point(990, 530)
  3676. Me.A_pb24.Maximum = 1
  3677. Me.A_pb24.Name = "A_pb24"
  3678. Me.A_pb24.Size = New System.Drawing.Size(297, 27)
  3679. Me.A_pb24.TabIndex = 1521
  3680. Me.A_pb24.Value = 1
  3681. '
  3682. 'A_pb23
  3683. '
  3684. Me.A_pb23.Location = New System.Drawing.Point(616, 530)
  3685. Me.A_pb23.Maximum = 1
  3686. Me.A_pb23.Name = "A_pb23"
  3687. Me.A_pb23.Size = New System.Drawing.Size(297, 27)
  3688. Me.A_pb23.TabIndex = 1520
  3689. Me.A_pb23.Value = 1
  3690. '
  3691. 'A_pb22
  3692. '
  3693. Me.A_pb22.Location = New System.Drawing.Point(990, 494)
  3694. Me.A_pb22.Maximum = 1
  3695. Me.A_pb22.Name = "A_pb22"
  3696. Me.A_pb22.Size = New System.Drawing.Size(297, 27)
  3697. Me.A_pb22.TabIndex = 1519
  3698. Me.A_pb22.Value = 1
  3699. '
  3700. 'A_pb21
  3701. '
  3702. Me.A_pb21.Location = New System.Drawing.Point(616, 494)
  3703. Me.A_pb21.Maximum = 1
  3704. Me.A_pb21.Name = "A_pb21"
  3705. Me.A_pb21.Size = New System.Drawing.Size(297, 27)
  3706. Me.A_pb21.TabIndex = 1518
  3707. Me.A_pb21.Value = 1
  3708. '
  3709. 'A_pb20
  3710. '
  3711. Me.A_pb20.Location = New System.Drawing.Point(989, 458)
  3712. Me.A_pb20.Maximum = 1
  3713. Me.A_pb20.Name = "A_pb20"
  3714. Me.A_pb20.Size = New System.Drawing.Size(297, 27)
  3715. Me.A_pb20.TabIndex = 1517
  3716. Me.A_pb20.Value = 1
  3717. '
  3718. 'A_pb19
  3719. '
  3720. Me.A_pb19.Location = New System.Drawing.Point(615, 458)
  3721. Me.A_pb19.Maximum = 1
  3722. Me.A_pb19.Name = "A_pb19"
  3723. Me.A_pb19.Size = New System.Drawing.Size(297, 27)
  3724. Me.A_pb19.TabIndex = 1516
  3725. Me.A_pb19.Value = 1
  3726. '
  3727. 'A_pb18
  3728. '
  3729. Me.A_pb18.Location = New System.Drawing.Point(989, 422)
  3730. Me.A_pb18.Maximum = 1
  3731. Me.A_pb18.Name = "A_pb18"
  3732. Me.A_pb18.Size = New System.Drawing.Size(297, 27)
  3733. Me.A_pb18.TabIndex = 1515
  3734. Me.A_pb18.Value = 1
  3735. '
  3736. 'A_pb17
  3737. '
  3738. Me.A_pb17.Location = New System.Drawing.Point(615, 422)
  3739. Me.A_pb17.Maximum = 1
  3740. Me.A_pb17.Name = "A_pb17"
  3741. Me.A_pb17.Size = New System.Drawing.Size(297, 27)
  3742. Me.A_pb17.TabIndex = 1514
  3743. Me.A_pb17.Value = 1
  3744. '
  3745. 'A_pb16
  3746. '
  3747. Me.A_pb16.Location = New System.Drawing.Point(990, 386)
  3748. Me.A_pb16.Maximum = 1
  3749. Me.A_pb16.Name = "A_pb16"
  3750. Me.A_pb16.Size = New System.Drawing.Size(297, 27)
  3751. Me.A_pb16.TabIndex = 1513
  3752. Me.A_pb16.Value = 1
  3753. '
  3754. 'A_pb15
  3755. '
  3756. Me.A_pb15.Location = New System.Drawing.Point(616, 386)
  3757. Me.A_pb15.Maximum = 1
  3758. Me.A_pb15.Name = "A_pb15"
  3759. Me.A_pb15.Size = New System.Drawing.Size(297, 27)
  3760. Me.A_pb15.TabIndex = 1512
  3761. Me.A_pb15.Value = 1
  3762. '
  3763. 'A_pb14
  3764. '
  3765. Me.A_pb14.Location = New System.Drawing.Point(990, 350)
  3766. Me.A_pb14.Maximum = 1
  3767. Me.A_pb14.Name = "A_pb14"
  3768. Me.A_pb14.Size = New System.Drawing.Size(297, 27)
  3769. Me.A_pb14.TabIndex = 1511
  3770. Me.A_pb14.Value = 1
  3771. '
  3772. 'A_pb13
  3773. '
  3774. Me.A_pb13.Location = New System.Drawing.Point(616, 350)
  3775. Me.A_pb13.Maximum = 1
  3776. Me.A_pb13.Name = "A_pb13"
  3777. Me.A_pb13.Size = New System.Drawing.Size(297, 27)
  3778. Me.A_pb13.TabIndex = 1510
  3779. Me.A_pb13.Value = 1
  3780. '
  3781. 'A_pb12
  3782. '
  3783. Me.A_pb12.Location = New System.Drawing.Point(990, 314)
  3784. Me.A_pb12.Maximum = 1
  3785. Me.A_pb12.Name = "A_pb12"
  3786. Me.A_pb12.Size = New System.Drawing.Size(297, 27)
  3787. Me.A_pb12.TabIndex = 1509
  3788. Me.A_pb12.Value = 1
  3789. '
  3790. 'A_pb11
  3791. '
  3792. Me.A_pb11.Location = New System.Drawing.Point(616, 314)
  3793. Me.A_pb11.Maximum = 1
  3794. Me.A_pb11.Name = "A_pb11"
  3795. Me.A_pb11.Size = New System.Drawing.Size(297, 27)
  3796. Me.A_pb11.TabIndex = 1508
  3797. Me.A_pb11.Value = 1
  3798. '
  3799. 'A_pb10
  3800. '
  3801. Me.A_pb10.Location = New System.Drawing.Point(990, 278)
  3802. Me.A_pb10.Maximum = 1
  3803. Me.A_pb10.Name = "A_pb10"
  3804. Me.A_pb10.Size = New System.Drawing.Size(297, 27)
  3805. Me.A_pb10.TabIndex = 1507
  3806. Me.A_pb10.Value = 1
  3807. '
  3808. 'A_pb9
  3809. '
  3810. Me.A_pb9.Location = New System.Drawing.Point(616, 278)
  3811. Me.A_pb9.Maximum = 1
  3812. Me.A_pb9.Name = "A_pb9"
  3813. Me.A_pb9.Size = New System.Drawing.Size(297, 27)
  3814. Me.A_pb9.TabIndex = 1506
  3815. Me.A_pb9.Value = 1
  3816. '
  3817. 'A_pb8
  3818. '
  3819. Me.A_pb8.Location = New System.Drawing.Point(990, 242)
  3820. Me.A_pb8.Maximum = 1
  3821. Me.A_pb8.Name = "A_pb8"
  3822. Me.A_pb8.Size = New System.Drawing.Size(297, 27)
  3823. Me.A_pb8.TabIndex = 1505
  3824. Me.A_pb8.Value = 1
  3825. '
  3826. 'A_pb7
  3827. '
  3828. Me.A_pb7.Location = New System.Drawing.Point(616, 242)
  3829. Me.A_pb7.Maximum = 1
  3830. Me.A_pb7.Name = "A_pb7"
  3831. Me.A_pb7.Size = New System.Drawing.Size(297, 27)
  3832. Me.A_pb7.TabIndex = 1504
  3833. Me.A_pb7.Value = 1
  3834. '
  3835. 'A_pb6
  3836. '
  3837. Me.A_pb6.Location = New System.Drawing.Point(990, 206)
  3838. Me.A_pb6.Maximum = 1
  3839. Me.A_pb6.Name = "A_pb6"
  3840. Me.A_pb6.Size = New System.Drawing.Size(297, 27)
  3841. Me.A_pb6.TabIndex = 1503
  3842. Me.A_pb6.Value = 1
  3843. '
  3844. 'A_pb5
  3845. '
  3846. Me.A_pb5.Location = New System.Drawing.Point(616, 206)
  3847. Me.A_pb5.Maximum = 1
  3848. Me.A_pb5.Name = "A_pb5"
  3849. Me.A_pb5.Size = New System.Drawing.Size(297, 27)
  3850. Me.A_pb5.TabIndex = 1502
  3851. Me.A_pb5.Value = 1
  3852. '
  3853. 'A_pb4
  3854. '
  3855. Me.A_pb4.Location = New System.Drawing.Point(990, 170)
  3856. Me.A_pb4.Maximum = 1
  3857. Me.A_pb4.Name = "A_pb4"
  3858. Me.A_pb4.Size = New System.Drawing.Size(297, 27)
  3859. Me.A_pb4.TabIndex = 1501
  3860. Me.A_pb4.Value = 1
  3861. '
  3862. 'A_pb3
  3863. '
  3864. Me.A_pb3.Location = New System.Drawing.Point(616, 170)
  3865. Me.A_pb3.Maximum = 1
  3866. Me.A_pb3.Name = "A_pb3"
  3867. Me.A_pb3.Size = New System.Drawing.Size(297, 27)
  3868. Me.A_pb3.TabIndex = 1500
  3869. Me.A_pb3.Value = 1
  3870. '
  3871. 'A_pb2
  3872. '
  3873. Me.A_pb2.Location = New System.Drawing.Point(990, 134)
  3874. Me.A_pb2.Maximum = 1
  3875. Me.A_pb2.Name = "A_pb2"
  3876. Me.A_pb2.Size = New System.Drawing.Size(297, 27)
  3877. Me.A_pb2.TabIndex = 1499
  3878. Me.A_pb2.Value = 1
  3879. '
  3880. 'A_pb1
  3881. '
  3882. Me.A_pb1.Location = New System.Drawing.Point(616, 134)
  3883. Me.A_pb1.Maximum = 1
  3884. Me.A_pb1.Name = "A_pb1"
  3885. Me.A_pb1.Size = New System.Drawing.Size(297, 27)
  3886. Me.A_pb1.TabIndex = 1482
  3887. Me.A_pb1.Value = 1
  3888. '
  3889. 'Label68
  3890. '
  3891. Me.Label68.AutoSize = True
  3892. Me.Label68.Location = New System.Drawing.Point(1809, 134)
  3893. Me.Label68.Name = "Label68"
  3894. Me.Label68.Size = New System.Drawing.Size(11, 720)
  3895. Me.Label68.TabIndex = 1498
  3896. Me.Label68.Text = "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) &
  3897. "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l"
  3898. '
  3899. 'Label67
  3900. '
  3901. Me.Label67.AutoSize = True
  3902. Me.Label67.Location = New System.Drawing.Point(1734, 134)
  3903. Me.Label67.Name = "Label67"
  3904. Me.Label67.Size = New System.Drawing.Size(11, 720)
  3905. Me.Label67.TabIndex = 1497
  3906. Me.Label67.Text = "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) &
  3907. "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l"
  3908. '
  3909. 'Label66
  3910. '
  3911. Me.Label66.AutoSize = True
  3912. Me.Label66.Location = New System.Drawing.Point(1660, 134)
  3913. Me.Label66.Name = "Label66"
  3914. Me.Label66.Size = New System.Drawing.Size(11, 720)
  3915. Me.Label66.TabIndex = 1496
  3916. Me.Label66.Text = "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) &
  3917. "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l"
  3918. '
  3919. 'Label65
  3920. '
  3921. Me.Label65.AutoSize = True
  3922. Me.Label65.Location = New System.Drawing.Point(1582, 134)
  3923. Me.Label65.Name = "Label65"
  3924. Me.Label65.Size = New System.Drawing.Size(11, 720)
  3925. Me.Label65.TabIndex = 1495
  3926. Me.Label65.Text = "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) &
  3927. "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l"
  3928. '
  3929. 'Label64
  3930. '
  3931. Me.Label64.AutoSize = True
  3932. Me.Label64.Location = New System.Drawing.Point(1509, 134)
  3933. Me.Label64.Name = "Label64"
  3934. Me.Label64.Size = New System.Drawing.Size(11, 720)
  3935. Me.Label64.TabIndex = 1494
  3936. Me.Label64.Text = "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) &
  3937. "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l"
  3938. '
  3939. 'Label63
  3940. '
  3941. Me.Label63.AutoSize = True
  3942. Me.Label63.Location = New System.Drawing.Point(1434, 134)
  3943. Me.Label63.Name = "Label63"
  3944. Me.Label63.Size = New System.Drawing.Size(11, 720)
  3945. Me.Label63.TabIndex = 1493
  3946. Me.Label63.Text = "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) &
  3947. "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l"
  3948. '
  3949. 'Label62
  3950. '
  3951. Me.Label62.AutoSize = True
  3952. Me.Label62.Location = New System.Drawing.Point(1359, 134)
  3953. Me.Label62.Name = "Label62"
  3954. Me.Label62.Size = New System.Drawing.Size(11, 720)
  3955. Me.Label62.TabIndex = 1492
  3956. Me.Label62.Text = "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) &
  3957. "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l"
  3958. '
  3959. 'Label61
  3960. '
  3961. Me.Label61.AutoSize = True
  3962. Me.Label61.Location = New System.Drawing.Point(1284, 134)
  3963. Me.Label61.Name = "Label61"
  3964. Me.Label61.Size = New System.Drawing.Size(11, 720)
  3965. Me.Label61.TabIndex = 1491
  3966. Me.Label61.Text = "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) &
  3967. "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l"
  3968. '
  3969. 'Label60
  3970. '
  3971. Me.Label60.AutoSize = True
  3972. Me.Label60.Location = New System.Drawing.Point(1209, 134)
  3973. Me.Label60.Name = "Label60"
  3974. Me.Label60.Size = New System.Drawing.Size(11, 720)
  3975. Me.Label60.TabIndex = 1490
  3976. Me.Label60.Text = "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) &
  3977. "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l"
  3978. '
  3979. 'Label59
  3980. '
  3981. Me.Label59.AutoSize = True
  3982. Me.Label59.Location = New System.Drawing.Point(1134, 134)
  3983. Me.Label59.Name = "Label59"
  3984. Me.Label59.Size = New System.Drawing.Size(11, 720)
  3985. Me.Label59.TabIndex = 1489
  3986. Me.Label59.Text = "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) &
  3987. "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l"
  3988. '
  3989. 'Label58
  3990. '
  3991. Me.Label58.AutoSize = True
  3992. Me.Label58.Location = New System.Drawing.Point(1059, 134)
  3993. Me.Label58.Name = "Label58"
  3994. Me.Label58.Size = New System.Drawing.Size(11, 720)
  3995. Me.Label58.TabIndex = 1488
  3996. Me.Label58.Text = "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) &
  3997. "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l"
  3998. '
  3999. 'Label57
  4000. '
  4001. Me.Label57.AutoSize = True
  4002. Me.Label57.Location = New System.Drawing.Point(984, 134)
  4003. Me.Label57.Name = "Label57"
  4004. Me.Label57.Size = New System.Drawing.Size(11, 720)
  4005. Me.Label57.TabIndex = 1487
  4006. Me.Label57.Text = "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) &
  4007. "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l"
  4008. '
  4009. 'Label56
  4010. '
  4011. Me.Label56.AutoSize = True
  4012. Me.Label56.Location = New System.Drawing.Point(909, 134)
  4013. Me.Label56.Name = "Label56"
  4014. Me.Label56.Size = New System.Drawing.Size(11, 720)
  4015. Me.Label56.TabIndex = 1486
  4016. Me.Label56.Text = "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) &
  4017. "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l"
  4018. '
  4019. 'Label55
  4020. '
  4021. Me.Label55.AutoSize = True
  4022. Me.Label55.Location = New System.Drawing.Point(834, 134)
  4023. Me.Label55.Name = "Label55"
  4024. Me.Label55.Size = New System.Drawing.Size(11, 720)
  4025. Me.Label55.TabIndex = 1485
  4026. Me.Label55.Text = "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) &
  4027. "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l"
  4028. '
  4029. 'Label54
  4030. '
  4031. Me.Label54.AutoSize = True
  4032. Me.Label54.Location = New System.Drawing.Point(759, 134)
  4033. Me.Label54.Name = "Label54"
  4034. Me.Label54.Size = New System.Drawing.Size(11, 720)
  4035. Me.Label54.TabIndex = 1484
  4036. Me.Label54.Text = "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) &
  4037. "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l"
  4038. '
  4039. 'Label53
  4040. '
  4041. Me.Label53.AutoSize = True
  4042. Me.Label53.Location = New System.Drawing.Point(684, 134)
  4043. Me.Label53.Name = "Label53"
  4044. Me.Label53.Size = New System.Drawing.Size(11, 720)
  4045. Me.Label53.TabIndex = 1483
  4046. Me.Label53.Text = "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) &
  4047. "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l"
  4048. '
  4049. 'Label52
  4050. '
  4051. Me.Label52.AutoSize = True
  4052. Me.Label52.Location = New System.Drawing.Point(609, 134)
  4053. Me.Label52.Name = "Label52"
  4054. Me.Label52.Size = New System.Drawing.Size(11, 720)
  4055. Me.Label52.TabIndex = 1481
  4056. Me.Label52.Text = "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) &
  4057. "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "l" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "I"
  4058. '
  4059. 'Label50
  4060. '
  4061. Me.Label50.AutoSize = True
  4062. Me.Label50.Font = New System.Drawing.Font("微軟正黑體", 12.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  4063. Me.Label50.ForeColor = System.Drawing.Color.Blue
  4064. Me.Label50.Location = New System.Drawing.Point(1771, 109)
  4065. Me.Label50.Name = "Label50"
  4066. Me.Label50.Size = New System.Drawing.Size(27, 20)
  4067. Me.Label50.TabIndex = 1479
  4068. Me.Label50.Text = "30"
  4069. '
  4070. 'Label49
  4071. '
  4072. Me.Label49.AutoSize = True
  4073. Me.Label49.Font = New System.Drawing.Font("微軟正黑體", 12.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  4074. Me.Label49.ForeColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
  4075. Me.Label49.Location = New System.Drawing.Point(1696, 109)
  4076. Me.Label49.Name = "Label49"
  4077. Me.Label49.Size = New System.Drawing.Size(27, 20)
  4078. Me.Label49.TabIndex = 1478
  4079. Me.Label49.Text = "30"
  4080. '
  4081. 'Label48
  4082. '
  4083. Me.Label48.AutoSize = True
  4084. Me.Label48.Font = New System.Drawing.Font("微軟正黑體", 12.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  4085. Me.Label48.ForeColor = System.Drawing.Color.Blue
  4086. Me.Label48.Location = New System.Drawing.Point(1621, 109)
  4087. Me.Label48.Name = "Label48"
  4088. Me.Label48.Size = New System.Drawing.Size(27, 20)
  4089. Me.Label48.TabIndex = 1477
  4090. Me.Label48.Text = "30"
  4091. '
  4092. 'Label47
  4093. '
  4094. Me.Label47.AutoSize = True
  4095. Me.Label47.Font = New System.Drawing.Font("微軟正黑體", 12.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  4096. Me.Label47.ForeColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
  4097. Me.Label47.Location = New System.Drawing.Point(1546, 109)
  4098. Me.Label47.Name = "Label47"
  4099. Me.Label47.Size = New System.Drawing.Size(27, 20)
  4100. Me.Label47.TabIndex = 1476
  4101. Me.Label47.Text = "30"
  4102. '
  4103. 'Label46
  4104. '
  4105. Me.Label46.AutoSize = True
  4106. Me.Label46.Font = New System.Drawing.Font("微軟正黑體", 12.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  4107. Me.Label46.ForeColor = System.Drawing.Color.Blue
  4108. Me.Label46.Location = New System.Drawing.Point(1471, 109)
  4109. Me.Label46.Name = "Label46"
  4110. Me.Label46.Size = New System.Drawing.Size(27, 20)
  4111. Me.Label46.TabIndex = 1475
  4112. Me.Label46.Text = "30"
  4113. '
  4114. 'Label45
  4115. '
  4116. Me.Label45.AutoSize = True
  4117. Me.Label45.Font = New System.Drawing.Font("微軟正黑體", 12.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  4118. Me.Label45.ForeColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
  4119. Me.Label45.Location = New System.Drawing.Point(1396, 109)
  4120. Me.Label45.Name = "Label45"
  4121. Me.Label45.Size = New System.Drawing.Size(27, 20)
  4122. Me.Label45.TabIndex = 1474
  4123. Me.Label45.Text = "30"
  4124. '
  4125. 'Label44
  4126. '
  4127. Me.Label44.AutoSize = True
  4128. Me.Label44.Font = New System.Drawing.Font("微軟正黑體", 12.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  4129. Me.Label44.ForeColor = System.Drawing.Color.Blue
  4130. Me.Label44.Location = New System.Drawing.Point(1321, 109)
  4131. Me.Label44.Name = "Label44"
  4132. Me.Label44.Size = New System.Drawing.Size(27, 20)
  4133. Me.Label44.TabIndex = 1473
  4134. Me.Label44.Text = "30"
  4135. '
  4136. 'Label43
  4137. '
  4138. Me.Label43.AutoSize = True
  4139. Me.Label43.Font = New System.Drawing.Font("微軟正黑體", 12.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  4140. Me.Label43.ForeColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
  4141. Me.Label43.Location = New System.Drawing.Point(1246, 109)
  4142. Me.Label43.Name = "Label43"
  4143. Me.Label43.Size = New System.Drawing.Size(27, 20)
  4144. Me.Label43.TabIndex = 1472
  4145. Me.Label43.Text = "30"
  4146. '
  4147. 'Label42
  4148. '
  4149. Me.Label42.AutoSize = True
  4150. Me.Label42.Font = New System.Drawing.Font("微軟正黑體", 12.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  4151. Me.Label42.ForeColor = System.Drawing.Color.Blue
  4152. Me.Label42.Location = New System.Drawing.Point(1171, 109)
  4153. Me.Label42.Name = "Label42"
  4154. Me.Label42.Size = New System.Drawing.Size(27, 20)
  4155. Me.Label42.TabIndex = 1471
  4156. Me.Label42.Text = "30"
  4157. '
  4158. 'Label41
  4159. '
  4160. Me.Label41.AutoSize = True
  4161. Me.Label41.Font = New System.Drawing.Font("微軟正黑體", 12.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  4162. Me.Label41.ForeColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
  4163. Me.Label41.Location = New System.Drawing.Point(1096, 109)
  4164. Me.Label41.Name = "Label41"
  4165. Me.Label41.Size = New System.Drawing.Size(27, 20)
  4166. Me.Label41.TabIndex = 1470
  4167. Me.Label41.Text = "30"
  4168. '
  4169. 'Label40
  4170. '
  4171. Me.Label40.AutoSize = True
  4172. Me.Label40.Font = New System.Drawing.Font("微軟正黑體", 12.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  4173. Me.Label40.ForeColor = System.Drawing.Color.Blue
  4174. Me.Label40.Location = New System.Drawing.Point(1021, 109)
  4175. Me.Label40.Name = "Label40"
  4176. Me.Label40.Size = New System.Drawing.Size(27, 20)
  4177. Me.Label40.TabIndex = 1469
  4178. Me.Label40.Text = "30"
  4179. '
  4180. 'Label39
  4181. '
  4182. Me.Label39.AutoSize = True
  4183. Me.Label39.Font = New System.Drawing.Font("微軟正黑體", 12.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  4184. Me.Label39.ForeColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
  4185. Me.Label39.Location = New System.Drawing.Point(946, 109)
  4186. Me.Label39.Name = "Label39"
  4187. Me.Label39.Size = New System.Drawing.Size(27, 20)
  4188. Me.Label39.TabIndex = 1468
  4189. Me.Label39.Text = "30"
  4190. '
  4191. 'Label38
  4192. '
  4193. Me.Label38.AutoSize = True
  4194. Me.Label38.Font = New System.Drawing.Font("微軟正黑體", 12.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  4195. Me.Label38.ForeColor = System.Drawing.Color.Blue
  4196. Me.Label38.Location = New System.Drawing.Point(871, 109)
  4197. Me.Label38.Name = "Label38"
  4198. Me.Label38.Size = New System.Drawing.Size(27, 20)
  4199. Me.Label38.TabIndex = 1467
  4200. Me.Label38.Text = "30"
  4201. '
  4202. 'Label37
  4203. '
  4204. Me.Label37.AutoSize = True
  4205. Me.Label37.Font = New System.Drawing.Font("微軟正黑體", 12.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  4206. Me.Label37.ForeColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
  4207. Me.Label37.Location = New System.Drawing.Point(796, 109)
  4208. Me.Label37.Name = "Label37"
  4209. Me.Label37.Size = New System.Drawing.Size(27, 20)
  4210. Me.Label37.TabIndex = 1466
  4211. Me.Label37.Text = "30"
  4212. '
  4213. 'Label36
  4214. '
  4215. Me.Label36.AutoSize = True
  4216. Me.Label36.Font = New System.Drawing.Font("微軟正黑體", 12.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  4217. Me.Label36.ForeColor = System.Drawing.Color.Blue
  4218. Me.Label36.Location = New System.Drawing.Point(721, 109)
  4219. Me.Label36.Name = "Label36"
  4220. Me.Label36.Size = New System.Drawing.Size(27, 20)
  4221. Me.Label36.TabIndex = 1465
  4222. Me.Label36.Text = "30"
  4223. '
  4224. 'Label35
  4225. '
  4226. Me.Label35.AutoSize = True
  4227. Me.Label35.Font = New System.Drawing.Font("微軟正黑體", 12.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  4228. Me.Label35.ForeColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
  4229. Me.Label35.Location = New System.Drawing.Point(646, 109)
  4230. Me.Label35.Name = "Label35"
  4231. Me.Label35.Size = New System.Drawing.Size(27, 20)
  4232. Me.Label35.TabIndex = 1464
  4233. Me.Label35.Text = "30"
  4234. '
  4235. 'Label34
  4236. '
  4237. Me.Label34.AutoSize = True
  4238. Me.Label34.Font = New System.Drawing.Font("微軟正黑體", 12.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  4239. Me.Label34.Location = New System.Drawing.Point(1808, 109)
  4240. Me.Label34.Name = "Label34"
  4241. Me.Label34.Size = New System.Drawing.Size(27, 20)
  4242. Me.Label34.TabIndex = 1463
  4243. Me.Label34.Text = "00"
  4244. '
  4245. 'Label33
  4246. '
  4247. Me.Label33.AutoSize = True
  4248. Me.Label33.Font = New System.Drawing.Font("微軟正黑體", 12.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  4249. Me.Label33.ForeColor = System.Drawing.Color.Blue
  4250. Me.Label33.Location = New System.Drawing.Point(1733, 109)
  4251. Me.Label33.Name = "Label33"
  4252. Me.Label33.Size = New System.Drawing.Size(27, 20)
  4253. Me.Label33.TabIndex = 1462
  4254. Me.Label33.Text = "00"
  4255. '
  4256. 'Label32
  4257. '
  4258. Me.Label32.AutoSize = True
  4259. Me.Label32.Font = New System.Drawing.Font("微軟正黑體", 12.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  4260. Me.Label32.ForeColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
  4261. Me.Label32.Location = New System.Drawing.Point(1658, 109)
  4262. Me.Label32.Name = "Label32"
  4263. Me.Label32.Size = New System.Drawing.Size(27, 20)
  4264. Me.Label32.TabIndex = 1461
  4265. Me.Label32.Text = "00"
  4266. '
  4267. 'Label31
  4268. '
  4269. Me.Label31.AutoSize = True
  4270. Me.Label31.Font = New System.Drawing.Font("微軟正黑體", 12.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  4271. Me.Label31.ForeColor = System.Drawing.Color.Blue
  4272. Me.Label31.Location = New System.Drawing.Point(1583, 109)
  4273. Me.Label31.Name = "Label31"
  4274. Me.Label31.Size = New System.Drawing.Size(27, 20)
  4275. Me.Label31.TabIndex = 1460
  4276. Me.Label31.Text = "00"
  4277. '
  4278. 'Label30
  4279. '
  4280. Me.Label30.AutoSize = True
  4281. Me.Label30.Font = New System.Drawing.Font("微軟正黑體", 12.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  4282. Me.Label30.ForeColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
  4283. Me.Label30.Location = New System.Drawing.Point(1508, 109)
  4284. Me.Label30.Name = "Label30"
  4285. Me.Label30.Size = New System.Drawing.Size(27, 20)
  4286. Me.Label30.TabIndex = 1459
  4287. Me.Label30.Text = "00"
  4288. '
  4289. 'Label29
  4290. '
  4291. Me.Label29.AutoSize = True
  4292. Me.Label29.Font = New System.Drawing.Font("微軟正黑體", 12.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  4293. Me.Label29.ForeColor = System.Drawing.Color.Blue
  4294. Me.Label29.Location = New System.Drawing.Point(1433, 109)
  4295. Me.Label29.Name = "Label29"
  4296. Me.Label29.Size = New System.Drawing.Size(27, 20)
  4297. Me.Label29.TabIndex = 1458
  4298. Me.Label29.Text = "00"
  4299. '
  4300. 'Label28
  4301. '
  4302. Me.Label28.AutoSize = True
  4303. Me.Label28.Font = New System.Drawing.Font("微軟正黑體", 12.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  4304. Me.Label28.ForeColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
  4305. Me.Label28.Location = New System.Drawing.Point(1358, 109)
  4306. Me.Label28.Name = "Label28"
  4307. Me.Label28.Size = New System.Drawing.Size(27, 20)
  4308. Me.Label28.TabIndex = 1457
  4309. Me.Label28.Text = "00"
  4310. '
  4311. 'Label27
  4312. '
  4313. Me.Label27.AutoSize = True
  4314. Me.Label27.Font = New System.Drawing.Font("微軟正黑體", 12.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  4315. Me.Label27.ForeColor = System.Drawing.Color.Blue
  4316. Me.Label27.Location = New System.Drawing.Point(1283, 109)
  4317. Me.Label27.Name = "Label27"
  4318. Me.Label27.Size = New System.Drawing.Size(27, 20)
  4319. Me.Label27.TabIndex = 1456
  4320. Me.Label27.Text = "00"
  4321. '
  4322. 'Label26
  4323. '
  4324. Me.Label26.AutoSize = True
  4325. Me.Label26.Font = New System.Drawing.Font("微軟正黑體", 12.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  4326. Me.Label26.ForeColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
  4327. Me.Label26.Location = New System.Drawing.Point(1208, 109)
  4328. Me.Label26.Name = "Label26"
  4329. Me.Label26.Size = New System.Drawing.Size(27, 20)
  4330. Me.Label26.TabIndex = 1455
  4331. Me.Label26.Text = "00"
  4332. '
  4333. 'Label25
  4334. '
  4335. Me.Label25.AutoSize = True
  4336. Me.Label25.Font = New System.Drawing.Font("微軟正黑體", 12.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  4337. Me.Label25.ForeColor = System.Drawing.Color.Blue
  4338. Me.Label25.Location = New System.Drawing.Point(1133, 109)
  4339. Me.Label25.Name = "Label25"
  4340. Me.Label25.Size = New System.Drawing.Size(27, 20)
  4341. Me.Label25.TabIndex = 1454
  4342. Me.Label25.Text = "00"
  4343. '
  4344. 'Label24
  4345. '
  4346. Me.Label24.AutoSize = True
  4347. Me.Label24.Font = New System.Drawing.Font("微軟正黑體", 12.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  4348. Me.Label24.ForeColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
  4349. Me.Label24.Location = New System.Drawing.Point(1058, 109)
  4350. Me.Label24.Name = "Label24"
  4351. Me.Label24.Size = New System.Drawing.Size(27, 20)
  4352. Me.Label24.TabIndex = 1453
  4353. Me.Label24.Text = "00"
  4354. '
  4355. 'Label23
  4356. '
  4357. Me.Label23.AutoSize = True
  4358. Me.Label23.Font = New System.Drawing.Font("微軟正黑體", 12.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  4359. Me.Label23.ForeColor = System.Drawing.Color.Blue
  4360. Me.Label23.Location = New System.Drawing.Point(983, 109)
  4361. Me.Label23.Name = "Label23"
  4362. Me.Label23.Size = New System.Drawing.Size(27, 20)
  4363. Me.Label23.TabIndex = 1452
  4364. Me.Label23.Text = "00"
  4365. '
  4366. 'Label22
  4367. '
  4368. Me.Label22.AutoSize = True
  4369. Me.Label22.Font = New System.Drawing.Font("微軟正黑體", 12.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  4370. Me.Label22.ForeColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
  4371. Me.Label22.Location = New System.Drawing.Point(908, 109)
  4372. Me.Label22.Name = "Label22"
  4373. Me.Label22.Size = New System.Drawing.Size(27, 20)
  4374. Me.Label22.TabIndex = 1451
  4375. Me.Label22.Text = "00"
  4376. '
  4377. 'Label21
  4378. '
  4379. Me.Label21.AutoSize = True
  4380. Me.Label21.Font = New System.Drawing.Font("微軟正黑體", 12.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  4381. Me.Label21.ForeColor = System.Drawing.Color.Blue
  4382. Me.Label21.Location = New System.Drawing.Point(833, 109)
  4383. Me.Label21.Name = "Label21"
  4384. Me.Label21.Size = New System.Drawing.Size(27, 20)
  4385. Me.Label21.TabIndex = 1450
  4386. Me.Label21.Text = "00"
  4387. '
  4388. 'Label20
  4389. '
  4390. Me.Label20.AutoSize = True
  4391. Me.Label20.Font = New System.Drawing.Font("微軟正黑體", 12.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  4392. Me.Label20.ForeColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
  4393. Me.Label20.Location = New System.Drawing.Point(758, 109)
  4394. Me.Label20.Name = "Label20"
  4395. Me.Label20.Size = New System.Drawing.Size(27, 20)
  4396. Me.Label20.TabIndex = 1449
  4397. Me.Label20.Text = "00"
  4398. '
  4399. 'Label19
  4400. '
  4401. Me.Label19.AutoSize = True
  4402. Me.Label19.Font = New System.Drawing.Font("微軟正黑體", 12.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  4403. Me.Label19.ForeColor = System.Drawing.Color.Blue
  4404. Me.Label19.Location = New System.Drawing.Point(683, 109)
  4405. Me.Label19.Name = "Label19"
  4406. Me.Label19.Size = New System.Drawing.Size(27, 20)
  4407. Me.Label19.TabIndex = 1448
  4408. Me.Label19.Text = "00"
  4409. '
  4410. 'Label18
  4411. '
  4412. Me.Label18.AutoSize = True
  4413. Me.Label18.Font = New System.Drawing.Font("微軟正黑體", 12.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  4414. Me.Label18.ForeColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
  4415. Me.Label18.Location = New System.Drawing.Point(609, 109)
  4416. Me.Label18.Name = "Label18"
  4417. Me.Label18.Size = New System.Drawing.Size(27, 20)
  4418. Me.Label18.TabIndex = 1447
  4419. Me.Label18.Text = "00"
  4420. '
  4421. 'Label17
  4422. '
  4423. Me.Label17.AutoSize = True
  4424. Me.Label17.Font = New System.Drawing.Font("微軟正黑體", 12.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  4425. Me.Label17.Location = New System.Drawing.Point(1808, 89)
  4426. Me.Label17.Name = "Label17"
  4427. Me.Label17.Size = New System.Drawing.Size(27, 20)
  4428. Me.Label17.TabIndex = 1446
  4429. Me.Label17.Text = "24"
  4430. '
  4431. 'Label16
  4432. '
  4433. Me.Label16.AutoSize = True
  4434. Me.Label16.Font = New System.Drawing.Font("微軟正黑體", 12.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  4435. Me.Label16.ForeColor = System.Drawing.Color.Blue
  4436. Me.Label16.Location = New System.Drawing.Point(1733, 89)
  4437. Me.Label16.Name = "Label16"
  4438. Me.Label16.Size = New System.Drawing.Size(27, 20)
  4439. Me.Label16.TabIndex = 1445
  4440. Me.Label16.Text = "23"
  4441. '
  4442. 'Label15
  4443. '
  4444. Me.Label15.AutoSize = True
  4445. Me.Label15.Font = New System.Drawing.Font("微軟正黑體", 12.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  4446. Me.Label15.ForeColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
  4447. Me.Label15.Location = New System.Drawing.Point(1658, 89)
  4448. Me.Label15.Name = "Label15"
  4449. Me.Label15.Size = New System.Drawing.Size(27, 20)
  4450. Me.Label15.TabIndex = 1444
  4451. Me.Label15.Text = "22"
  4452. '
  4453. 'Label14
  4454. '
  4455. Me.Label14.AutoSize = True
  4456. Me.Label14.Font = New System.Drawing.Font("微軟正黑體", 12.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  4457. Me.Label14.ForeColor = System.Drawing.Color.Blue
  4458. Me.Label14.Location = New System.Drawing.Point(1583, 89)
  4459. Me.Label14.Name = "Label14"
  4460. Me.Label14.Size = New System.Drawing.Size(27, 20)
  4461. Me.Label14.TabIndex = 1443
  4462. Me.Label14.Text = "21"
  4463. '
  4464. 'Label13
  4465. '
  4466. Me.Label13.AutoSize = True
  4467. Me.Label13.Font = New System.Drawing.Font("微軟正黑體", 12.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  4468. Me.Label13.ForeColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
  4469. Me.Label13.Location = New System.Drawing.Point(1508, 89)
  4470. Me.Label13.Name = "Label13"
  4471. Me.Label13.Size = New System.Drawing.Size(27, 20)
  4472. Me.Label13.TabIndex = 1442
  4473. Me.Label13.Text = "20"
  4474. '
  4475. 'Label12
  4476. '
  4477. Me.Label12.AutoSize = True
  4478. Me.Label12.Font = New System.Drawing.Font("微軟正黑體", 12.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  4479. Me.Label12.ForeColor = System.Drawing.Color.Blue
  4480. Me.Label12.Location = New System.Drawing.Point(1433, 89)
  4481. Me.Label12.Name = "Label12"
  4482. Me.Label12.Size = New System.Drawing.Size(27, 20)
  4483. Me.Label12.TabIndex = 1441
  4484. Me.Label12.Text = "19"
  4485. '
  4486. 'Label11
  4487. '
  4488. Me.Label11.AutoSize = True
  4489. Me.Label11.Font = New System.Drawing.Font("微軟正黑體", 12.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  4490. Me.Label11.ForeColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
  4491. Me.Label11.Location = New System.Drawing.Point(1358, 89)
  4492. Me.Label11.Name = "Label11"
  4493. Me.Label11.Size = New System.Drawing.Size(27, 20)
  4494. Me.Label11.TabIndex = 1440
  4495. Me.Label11.Text = "18"
  4496. '
  4497. 'Label10
  4498. '
  4499. Me.Label10.AutoSize = True
  4500. Me.Label10.Font = New System.Drawing.Font("微軟正黑體", 12.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  4501. Me.Label10.ForeColor = System.Drawing.Color.Blue
  4502. Me.Label10.Location = New System.Drawing.Point(1283, 89)
  4503. Me.Label10.Name = "Label10"
  4504. Me.Label10.Size = New System.Drawing.Size(27, 20)
  4505. Me.Label10.TabIndex = 1439
  4506. Me.Label10.Text = "17"
  4507. '
  4508. 'Label9
  4509. '
  4510. Me.Label9.AutoSize = True
  4511. Me.Label9.Font = New System.Drawing.Font("微軟正黑體", 12.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  4512. Me.Label9.ForeColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
  4513. Me.Label9.Location = New System.Drawing.Point(1208, 89)
  4514. Me.Label9.Name = "Label9"
  4515. Me.Label9.Size = New System.Drawing.Size(27, 20)
  4516. Me.Label9.TabIndex = 1438
  4517. Me.Label9.Text = "16"
  4518. '
  4519. 'Label8
  4520. '
  4521. Me.Label8.AutoSize = True
  4522. Me.Label8.Font = New System.Drawing.Font("微軟正黑體", 12.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  4523. Me.Label8.ForeColor = System.Drawing.Color.Blue
  4524. Me.Label8.Location = New System.Drawing.Point(1133, 89)
  4525. Me.Label8.Name = "Label8"
  4526. Me.Label8.Size = New System.Drawing.Size(27, 20)
  4527. Me.Label8.TabIndex = 1437
  4528. Me.Label8.Text = "15"
  4529. '
  4530. 'Label7
  4531. '
  4532. Me.Label7.AutoSize = True
  4533. Me.Label7.Font = New System.Drawing.Font("微軟正黑體", 12.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  4534. Me.Label7.ForeColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
  4535. Me.Label7.Location = New System.Drawing.Point(1058, 89)
  4536. Me.Label7.Name = "Label7"
  4537. Me.Label7.Size = New System.Drawing.Size(27, 20)
  4538. Me.Label7.TabIndex = 1436
  4539. Me.Label7.Text = "14"
  4540. '
  4541. 'Label6
  4542. '
  4543. Me.Label6.AutoSize = True
  4544. Me.Label6.Font = New System.Drawing.Font("微軟正黑體", 12.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  4545. Me.Label6.ForeColor = System.Drawing.Color.Blue
  4546. Me.Label6.Location = New System.Drawing.Point(983, 89)
  4547. Me.Label6.Name = "Label6"
  4548. Me.Label6.Size = New System.Drawing.Size(27, 20)
  4549. Me.Label6.TabIndex = 1435
  4550. Me.Label6.Text = "13"
  4551. '
  4552. 'Label5
  4553. '
  4554. Me.Label5.AutoSize = True
  4555. Me.Label5.Font = New System.Drawing.Font("微軟正黑體", 12.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  4556. Me.Label5.ForeColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
  4557. Me.Label5.Location = New System.Drawing.Point(908, 89)
  4558. Me.Label5.Name = "Label5"
  4559. Me.Label5.Size = New System.Drawing.Size(27, 20)
  4560. Me.Label5.TabIndex = 1434
  4561. Me.Label5.Text = "12"
  4562. '
  4563. 'Label4
  4564. '
  4565. Me.Label4.AutoSize = True
  4566. Me.Label4.Font = New System.Drawing.Font("微軟正黑體", 12.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  4567. Me.Label4.ForeColor = System.Drawing.Color.Blue
  4568. Me.Label4.Location = New System.Drawing.Point(833, 89)
  4569. Me.Label4.Name = "Label4"
  4570. Me.Label4.Size = New System.Drawing.Size(27, 20)
  4571. Me.Label4.TabIndex = 1433
  4572. Me.Label4.Text = "11"
  4573. '
  4574. 'Label3
  4575. '
  4576. Me.Label3.AutoSize = True
  4577. Me.Label3.Font = New System.Drawing.Font("微軟正黑體", 12.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  4578. Me.Label3.ForeColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
  4579. Me.Label3.Location = New System.Drawing.Point(758, 89)
  4580. Me.Label3.Name = "Label3"
  4581. Me.Label3.Size = New System.Drawing.Size(27, 20)
  4582. Me.Label3.TabIndex = 1432
  4583. Me.Label3.Text = "10"
  4584. '
  4585. 'Label2
  4586. '
  4587. Me.Label2.AutoSize = True
  4588. Me.Label2.Font = New System.Drawing.Font("微軟正黑體", 12.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  4589. Me.Label2.ForeColor = System.Drawing.Color.Blue
  4590. Me.Label2.Location = New System.Drawing.Point(683, 89)
  4591. Me.Label2.Name = "Label2"
  4592. Me.Label2.Size = New System.Drawing.Size(27, 20)
  4593. Me.Label2.TabIndex = 1431
  4594. Me.Label2.Text = "09"
  4595. '
  4596. 'Label1
  4597. '
  4598. Me.Label1.AutoSize = True
  4599. Me.Label1.Font = New System.Drawing.Font("微軟正黑體", 12.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  4600. Me.Label1.ForeColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
  4601. Me.Label1.Location = New System.Drawing.Point(608, 89)
  4602. Me.Label1.Name = "Label1"
  4603. Me.Label1.Size = New System.Drawing.Size(27, 20)
  4604. Me.Label1.TabIndex = 1430
  4605. Me.Label1.Text = "08"
  4606. '
  4607. 'Label51
  4608. '
  4609. Me.Label51.AutoSize = True
  4610. Me.Label51.Location = New System.Drawing.Point(604, 118)
  4611. Me.Label51.Name = "Label51"
  4612. Me.Label51.Size = New System.Drawing.Size(1213, 16)
  4613. Me.Label51.TabIndex = 1480
  4614. Me.Label51.Text = resources.GetString("Label51.Text")
  4615. '
  4616. 'Label70
  4617. '
  4618. Me.Label70.AutoSize = True
  4619. Me.Label70.Location = New System.Drawing.Point(608, 156)
  4620. Me.Label70.Name = "Label70"
  4621. Me.Label70.Size = New System.Drawing.Size(1208, 16)
  4622. Me.Label70.TabIndex = 1559
  4623. Me.Label70.Text = resources.GetString("Label70.Text")
  4624. '
  4625. 'Label71
  4626. '
  4627. Me.Label71.AutoSize = True
  4628. Me.Label71.Location = New System.Drawing.Point(608, 192)
  4629. Me.Label71.Name = "Label71"
  4630. Me.Label71.Size = New System.Drawing.Size(1208, 16)
  4631. Me.Label71.TabIndex = 1560
  4632. Me.Label71.Text = resources.GetString("Label71.Text")
  4633. '
  4634. 'Label72
  4635. '
  4636. Me.Label72.AutoSize = True
  4637. Me.Label72.Location = New System.Drawing.Point(608, 228)
  4638. Me.Label72.Name = "Label72"
  4639. Me.Label72.Size = New System.Drawing.Size(1208, 16)
  4640. Me.Label72.TabIndex = 1561
  4641. Me.Label72.Text = resources.GetString("Label72.Text")
  4642. '
  4643. 'Label73
  4644. '
  4645. Me.Label73.AutoSize = True
  4646. Me.Label73.Location = New System.Drawing.Point(608, 264)
  4647. Me.Label73.Name = "Label73"
  4648. Me.Label73.Size = New System.Drawing.Size(1208, 16)
  4649. Me.Label73.TabIndex = 1562
  4650. Me.Label73.Text = resources.GetString("Label73.Text")
  4651. '
  4652. 'Label74
  4653. '
  4654. Me.Label74.AutoSize = True
  4655. Me.Label74.Location = New System.Drawing.Point(608, 300)
  4656. Me.Label74.Name = "Label74"
  4657. Me.Label74.Size = New System.Drawing.Size(1208, 16)
  4658. Me.Label74.TabIndex = 1563
  4659. Me.Label74.Text = resources.GetString("Label74.Text")
  4660. '
  4661. 'Label75
  4662. '
  4663. Me.Label75.AutoSize = True
  4664. Me.Label75.Location = New System.Drawing.Point(608, 336)
  4665. Me.Label75.Name = "Label75"
  4666. Me.Label75.Size = New System.Drawing.Size(1208, 16)
  4667. Me.Label75.TabIndex = 1564
  4668. Me.Label75.Text = resources.GetString("Label75.Text")
  4669. '
  4670. 'Label76
  4671. '
  4672. Me.Label76.AutoSize = True
  4673. Me.Label76.Location = New System.Drawing.Point(608, 372)
  4674. Me.Label76.Name = "Label76"
  4675. Me.Label76.Size = New System.Drawing.Size(1208, 16)
  4676. Me.Label76.TabIndex = 1565
  4677. Me.Label76.Text = resources.GetString("Label76.Text")
  4678. '
  4679. 'Label77
  4680. '
  4681. Me.Label77.AutoSize = True
  4682. Me.Label77.Location = New System.Drawing.Point(608, 408)
  4683. Me.Label77.Name = "Label77"
  4684. Me.Label77.Size = New System.Drawing.Size(1208, 16)
  4685. Me.Label77.TabIndex = 1566
  4686. Me.Label77.Text = resources.GetString("Label77.Text")
  4687. '
  4688. 'Label78
  4689. '
  4690. Me.Label78.AutoSize = True
  4691. Me.Label78.Location = New System.Drawing.Point(608, 444)
  4692. Me.Label78.Name = "Label78"
  4693. Me.Label78.Size = New System.Drawing.Size(1208, 16)
  4694. Me.Label78.TabIndex = 1567
  4695. Me.Label78.Text = resources.GetString("Label78.Text")
  4696. '
  4697. 'Label79
  4698. '
  4699. Me.Label79.AutoSize = True
  4700. Me.Label79.Location = New System.Drawing.Point(608, 480)
  4701. Me.Label79.Name = "Label79"
  4702. Me.Label79.Size = New System.Drawing.Size(1208, 16)
  4703. Me.Label79.TabIndex = 1568
  4704. Me.Label79.Text = resources.GetString("Label79.Text")
  4705. '
  4706. 'Label80
  4707. '
  4708. Me.Label80.AutoSize = True
  4709. Me.Label80.Location = New System.Drawing.Point(608, 516)
  4710. Me.Label80.Name = "Label80"
  4711. Me.Label80.Size = New System.Drawing.Size(1208, 16)
  4712. Me.Label80.TabIndex = 1569
  4713. Me.Label80.Text = resources.GetString("Label80.Text")
  4714. '
  4715. 'Label81
  4716. '
  4717. Me.Label81.AutoSize = True
  4718. Me.Label81.Location = New System.Drawing.Point(608, 552)
  4719. Me.Label81.Name = "Label81"
  4720. Me.Label81.Size = New System.Drawing.Size(1208, 16)
  4721. Me.Label81.TabIndex = 1570
  4722. Me.Label81.Text = resources.GetString("Label81.Text")
  4723. '
  4724. 'Label82
  4725. '
  4726. Me.Label82.AutoSize = True
  4727. Me.Label82.Location = New System.Drawing.Point(608, 588)
  4728. Me.Label82.Name = "Label82"
  4729. Me.Label82.Size = New System.Drawing.Size(1213, 16)
  4730. Me.Label82.TabIndex = 1571
  4731. Me.Label82.Text = resources.GetString("Label82.Text")
  4732. '
  4733. 'Label83
  4734. '
  4735. Me.Label83.AutoSize = True
  4736. Me.Label83.Location = New System.Drawing.Point(608, 624)
  4737. Me.Label83.Name = "Label83"
  4738. Me.Label83.Size = New System.Drawing.Size(1213, 16)
  4739. Me.Label83.TabIndex = 1572
  4740. Me.Label83.Text = resources.GetString("Label83.Text")
  4741. '
  4742. 'Label84
  4743. '
  4744. Me.Label84.AutoSize = True
  4745. Me.Label84.Location = New System.Drawing.Point(608, 660)
  4746. Me.Label84.Name = "Label84"
  4747. Me.Label84.Size = New System.Drawing.Size(1213, 16)
  4748. Me.Label84.TabIndex = 1573
  4749. Me.Label84.Text = resources.GetString("Label84.Text")
  4750. '
  4751. 'Label85
  4752. '
  4753. Me.Label85.AutoSize = True
  4754. Me.Label85.Location = New System.Drawing.Point(608, 696)
  4755. Me.Label85.Name = "Label85"
  4756. Me.Label85.Size = New System.Drawing.Size(1208, 16)
  4757. Me.Label85.TabIndex = 1574
  4758. Me.Label85.Text = resources.GetString("Label85.Text")
  4759. '
  4760. 'Label86
  4761. '
  4762. Me.Label86.AutoSize = True
  4763. Me.Label86.Location = New System.Drawing.Point(608, 732)
  4764. Me.Label86.Name = "Label86"
  4765. Me.Label86.Size = New System.Drawing.Size(1208, 16)
  4766. Me.Label86.TabIndex = 1575
  4767. Me.Label86.Text = resources.GetString("Label86.Text")
  4768. '
  4769. 'Label87
  4770. '
  4771. Me.Label87.AutoSize = True
  4772. Me.Label87.Location = New System.Drawing.Point(608, 768)
  4773. Me.Label87.Name = "Label87"
  4774. Me.Label87.Size = New System.Drawing.Size(1208, 16)
  4775. Me.Label87.TabIndex = 1576
  4776. Me.Label87.Text = resources.GetString("Label87.Text")
  4777. '
  4778. 'Label88
  4779. '
  4780. Me.Label88.AutoSize = True
  4781. Me.Label88.Location = New System.Drawing.Point(608, 804)
  4782. Me.Label88.Name = "Label88"
  4783. Me.Label88.Size = New System.Drawing.Size(1208, 16)
  4784. Me.Label88.TabIndex = 1577
  4785. Me.Label88.Text = resources.GetString("Label88.Text")
  4786. '
  4787. 'A_lb20
  4788. '
  4789. Me.A_lb20.AutoSize = True
  4790. Me.A_lb20.Font = New System.Drawing.Font("微軟正黑體", 14.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  4791. Me.A_lb20.Location = New System.Drawing.Point(123, 821)
  4792. Me.A_lb20.Name = "A_lb20"
  4793. Me.A_lb20.Size = New System.Drawing.Size(32, 24)
  4794. Me.A_lb20.TabIndex = 1617
  4795. Me.A_lb20.Text = "20"
  4796. '
  4797. 'A_lb19
  4798. '
  4799. Me.A_lb19.AutoSize = True
  4800. Me.A_lb19.Font = New System.Drawing.Font("微軟正黑體", 14.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  4801. Me.A_lb19.Location = New System.Drawing.Point(123, 785)
  4802. Me.A_lb19.Name = "A_lb19"
  4803. Me.A_lb19.Size = New System.Drawing.Size(32, 24)
  4804. Me.A_lb19.TabIndex = 1616
  4805. Me.A_lb19.Text = "19"
  4806. '
  4807. 'A_lb18
  4808. '
  4809. Me.A_lb18.AutoSize = True
  4810. Me.A_lb18.Font = New System.Drawing.Font("微軟正黑體", 14.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  4811. Me.A_lb18.Location = New System.Drawing.Point(124, 749)
  4812. Me.A_lb18.Name = "A_lb18"
  4813. Me.A_lb18.Size = New System.Drawing.Size(32, 24)
  4814. Me.A_lb18.TabIndex = 1615
  4815. Me.A_lb18.Text = "18"
  4816. '
  4817. 'A_lb17
  4818. '
  4819. Me.A_lb17.AutoSize = True
  4820. Me.A_lb17.Font = New System.Drawing.Font("微軟正黑體", 14.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  4821. Me.A_lb17.Location = New System.Drawing.Point(123, 713)
  4822. Me.A_lb17.Name = "A_lb17"
  4823. Me.A_lb17.Size = New System.Drawing.Size(32, 24)
  4824. Me.A_lb17.TabIndex = 1614
  4825. Me.A_lb17.Text = "17"
  4826. '
  4827. 'A_lb16
  4828. '
  4829. Me.A_lb16.AutoSize = True
  4830. Me.A_lb16.Font = New System.Drawing.Font("微軟正黑體", 14.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  4831. Me.A_lb16.Location = New System.Drawing.Point(123, 677)
  4832. Me.A_lb16.Name = "A_lb16"
  4833. Me.A_lb16.Size = New System.Drawing.Size(32, 24)
  4834. Me.A_lb16.TabIndex = 1613
  4835. Me.A_lb16.Text = "16"
  4836. '
  4837. 'A_lb15
  4838. '
  4839. Me.A_lb15.AutoSize = True
  4840. Me.A_lb15.Font = New System.Drawing.Font("微軟正黑體", 14.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  4841. Me.A_lb15.Location = New System.Drawing.Point(124, 641)
  4842. Me.A_lb15.Name = "A_lb15"
  4843. Me.A_lb15.Size = New System.Drawing.Size(32, 24)
  4844. Me.A_lb15.TabIndex = 1612
  4845. Me.A_lb15.Text = "15"
  4846. '
  4847. 'A_lb14
  4848. '
  4849. Me.A_lb14.AutoSize = True
  4850. Me.A_lb14.Font = New System.Drawing.Font("微軟正黑體", 14.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  4851. Me.A_lb14.Location = New System.Drawing.Point(124, 605)
  4852. Me.A_lb14.Name = "A_lb14"
  4853. Me.A_lb14.Size = New System.Drawing.Size(32, 24)
  4854. Me.A_lb14.TabIndex = 1611
  4855. Me.A_lb14.Text = "14"
  4856. '
  4857. 'A_lb13
  4858. '
  4859. Me.A_lb13.AutoSize = True
  4860. Me.A_lb13.Font = New System.Drawing.Font("微軟正黑體", 14.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  4861. Me.A_lb13.Location = New System.Drawing.Point(124, 569)
  4862. Me.A_lb13.Name = "A_lb13"
  4863. Me.A_lb13.Size = New System.Drawing.Size(32, 24)
  4864. Me.A_lb13.TabIndex = 1610
  4865. Me.A_lb13.Text = "13"
  4866. '
  4867. 'A_lb12
  4868. '
  4869. Me.A_lb12.AutoSize = True
  4870. Me.A_lb12.Font = New System.Drawing.Font("微軟正黑體", 14.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  4871. Me.A_lb12.Location = New System.Drawing.Point(124, 533)
  4872. Me.A_lb12.Name = "A_lb12"
  4873. Me.A_lb12.Size = New System.Drawing.Size(32, 24)
  4874. Me.A_lb12.TabIndex = 1609
  4875. Me.A_lb12.Text = "12"
  4876. '
  4877. 'A_lb11
  4878. '
  4879. Me.A_lb11.AutoSize = True
  4880. Me.A_lb11.Font = New System.Drawing.Font("微軟正黑體", 14.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  4881. Me.A_lb11.Location = New System.Drawing.Point(124, 497)
  4882. Me.A_lb11.Name = "A_lb11"
  4883. Me.A_lb11.Size = New System.Drawing.Size(32, 24)
  4884. Me.A_lb11.TabIndex = 1608
  4885. Me.A_lb11.Text = "11"
  4886. '
  4887. 'A_lb10
  4888. '
  4889. Me.A_lb10.AutoSize = True
  4890. Me.A_lb10.Font = New System.Drawing.Font("微軟正黑體", 14.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  4891. Me.A_lb10.Location = New System.Drawing.Point(124, 461)
  4892. Me.A_lb10.Name = "A_lb10"
  4893. Me.A_lb10.Size = New System.Drawing.Size(32, 24)
  4894. Me.A_lb10.TabIndex = 1607
  4895. Me.A_lb10.Text = "10"
  4896. '
  4897. 'A_lb9
  4898. '
  4899. Me.A_lb9.AutoSize = True
  4900. Me.A_lb9.Font = New System.Drawing.Font("微軟正黑體", 14.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  4901. Me.A_lb9.Location = New System.Drawing.Point(132, 425)
  4902. Me.A_lb9.Name = "A_lb9"
  4903. Me.A_lb9.Size = New System.Drawing.Size(21, 24)
  4904. Me.A_lb9.TabIndex = 1606
  4905. Me.A_lb9.Text = "9"
  4906. '
  4907. 'A_lb8
  4908. '
  4909. Me.A_lb8.AutoSize = True
  4910. Me.A_lb8.Font = New System.Drawing.Font("微軟正黑體", 14.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  4911. Me.A_lb8.Location = New System.Drawing.Point(132, 389)
  4912. Me.A_lb8.Name = "A_lb8"
  4913. Me.A_lb8.Size = New System.Drawing.Size(21, 24)
  4914. Me.A_lb8.TabIndex = 1605
  4915. Me.A_lb8.Text = "8"
  4916. '
  4917. 'A_lb7
  4918. '
  4919. Me.A_lb7.AutoSize = True
  4920. Me.A_lb7.Font = New System.Drawing.Font("微軟正黑體", 14.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  4921. Me.A_lb7.Location = New System.Drawing.Point(132, 353)
  4922. Me.A_lb7.Name = "A_lb7"
  4923. Me.A_lb7.Size = New System.Drawing.Size(21, 24)
  4924. Me.A_lb7.TabIndex = 1604
  4925. Me.A_lb7.Text = "7"
  4926. '
  4927. 'A_lb6
  4928. '
  4929. Me.A_lb6.AutoSize = True
  4930. Me.A_lb6.Font = New System.Drawing.Font("微軟正黑體", 14.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  4931. Me.A_lb6.Location = New System.Drawing.Point(132, 317)
  4932. Me.A_lb6.Name = "A_lb6"
  4933. Me.A_lb6.Size = New System.Drawing.Size(21, 24)
  4934. Me.A_lb6.TabIndex = 1603
  4935. Me.A_lb6.Text = "6"
  4936. '
  4937. 'A_lb5
  4938. '
  4939. Me.A_lb5.AutoSize = True
  4940. Me.A_lb5.Font = New System.Drawing.Font("微軟正黑體", 14.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  4941. Me.A_lb5.Location = New System.Drawing.Point(132, 281)
  4942. Me.A_lb5.Name = "A_lb5"
  4943. Me.A_lb5.Size = New System.Drawing.Size(21, 24)
  4944. Me.A_lb5.TabIndex = 1602
  4945. Me.A_lb5.Text = "5"
  4946. '
  4947. 'A_lb4
  4948. '
  4949. Me.A_lb4.AutoSize = True
  4950. Me.A_lb4.Font = New System.Drawing.Font("微軟正黑體", 14.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  4951. Me.A_lb4.Location = New System.Drawing.Point(132, 245)
  4952. Me.A_lb4.Name = "A_lb4"
  4953. Me.A_lb4.Size = New System.Drawing.Size(21, 24)
  4954. Me.A_lb4.TabIndex = 1601
  4955. Me.A_lb4.Text = "4"
  4956. '
  4957. 'A_lb3
  4958. '
  4959. Me.A_lb3.AutoSize = True
  4960. Me.A_lb3.Font = New System.Drawing.Font("微軟正黑體", 14.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  4961. Me.A_lb3.Location = New System.Drawing.Point(132, 209)
  4962. Me.A_lb3.Name = "A_lb3"
  4963. Me.A_lb3.Size = New System.Drawing.Size(21, 24)
  4964. Me.A_lb3.TabIndex = 1600
  4965. Me.A_lb3.Text = "3"
  4966. '
  4967. 'A_lb2
  4968. '
  4969. Me.A_lb2.AutoSize = True
  4970. Me.A_lb2.Font = New System.Drawing.Font("微軟正黑體", 14.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  4971. Me.A_lb2.Location = New System.Drawing.Point(132, 173)
  4972. Me.A_lb2.Name = "A_lb2"
  4973. Me.A_lb2.Size = New System.Drawing.Size(21, 24)
  4974. Me.A_lb2.TabIndex = 1599
  4975. Me.A_lb2.Text = "2"
  4976. '
  4977. 'A_lb1
  4978. '
  4979. Me.A_lb1.AutoSize = True
  4980. Me.A_lb1.Font = New System.Drawing.Font("微軟正黑體", 14.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  4981. Me.A_lb1.Location = New System.Drawing.Point(132, 137)
  4982. Me.A_lb1.Name = "A_lb1"
  4983. Me.A_lb1.Size = New System.Drawing.Size(21, 24)
  4984. Me.A_lb1.TabIndex = 1598
  4985. Me.A_lb1.Text = "1"
  4986. '
  4987. 'NUP1
  4988. '
  4989. Me.NUP1.DecimalPlaces = 1
  4990. Me.NUP1.Font = New System.Drawing.Font("微軟正黑體", 14.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  4991. Me.NUP1.Increment = New Decimal(New Integer() {1, 0, 0, 65536})
  4992. Me.NUP1.Location = New System.Drawing.Point(474, 135)
  4993. Me.NUP1.Maximum = New Decimal(New Integer() {4, 0, 0, 0})
  4994. Me.NUP1.Minimum = New Decimal(New Integer() {5, 0, 0, 65536})
  4995. Me.NUP1.Name = "NUP1"
  4996. Me.NUP1.Size = New System.Drawing.Size(47, 33)
  4997. Me.NUP1.TabIndex = 1667
  4998. Me.NUP1.Value = New Decimal(New Integer() {2, 0, 0, 0})
  4999. '
  5000. 'Label97
  5001. '
  5002. Me.Label97.AutoSize = True
  5003. Me.Label97.Location = New System.Drawing.Point(616, 840)
  5004. Me.Label97.Name = "Label97"
  5005. Me.Label97.Size = New System.Drawing.Size(1203, 16)
  5006. Me.Label97.TabIndex = 1750
  5007. Me.Label97.Text = resources.GetString("Label97.Text")
  5008. '
  5009. '排班明細_參考
  5010. '
  5011. Me.AutoScaleDimensions = New System.Drawing.SizeF(7.0!, 16.0!)
  5012. Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font
  5013. Me.ClientSize = New System.Drawing.Size(1859, 906)
  5014. Me.Controls.Add(Me.Label102)
  5015. Me.Controls.Add(Me.Label103)
  5016. Me.Controls.Add(Me.Label104)
  5017. Me.Controls.Add(Me.Label105)
  5018. Me.Controls.Add(Me.Label106)
  5019. Me.Controls.Add(Me.Label107)
  5020. Me.Controls.Add(Me.Label108)
  5021. Me.Controls.Add(Me.Label109)
  5022. Me.Controls.Add(Me.Label110)
  5023. Me.Controls.Add(Me.Label111)
  5024. Me.Controls.Add(Me.Label112)
  5025. Me.Controls.Add(Me.Label113)
  5026. Me.Controls.Add(Me.Label114)
  5027. Me.Controls.Add(Me.Label115)
  5028. Me.Controls.Add(Me.Label116)
  5029. Me.Controls.Add(Me.Label117)
  5030. Me.Controls.Add(Me.Label118)
  5031. Me.Controls.Add(Me.Label119)
  5032. Me.Controls.Add(Me.Label120)
  5033. Me.Controls.Add(Me.Label121)
  5034. Me.Controls.Add(Me.Label122)
  5035. Me.Controls.Add(Me.Label123)
  5036. Me.Controls.Add(Me.Label124)
  5037. Me.Controls.Add(Me.Label125)
  5038. Me.Controls.Add(Me.Label126)
  5039. Me.Controls.Add(Me.Label127)
  5040. Me.Controls.Add(Me.Label128)
  5041. Me.Controls.Add(Me.Label129)
  5042. Me.Controls.Add(Me.Label130)
  5043. Me.Controls.Add(Me.Label131)
  5044. Me.Controls.Add(Me.Label132)
  5045. Me.Controls.Add(Me.Label133)
  5046. Me.Controls.Add(Me.Label134)
  5047. Me.Controls.Add(Me.Label135)
  5048. Me.Controls.Add(Me.Label136)
  5049. Me.Controls.Add(Me.Label137)
  5050. Me.Controls.Add(Me.Label138)
  5051. Me.Controls.Add(Me.Label139)
  5052. Me.Controls.Add(Me.Label140)
  5053. Me.Controls.Add(Me.Label141)
  5054. Me.Controls.Add(Me.Label142)
  5055. Me.Controls.Add(Me.Label143)
  5056. Me.Controls.Add(Me.Label144)
  5057. Me.Controls.Add(Me.Label145)
  5058. Me.Controls.Add(Me.Label146)
  5059. Me.Controls.Add(Me.Label147)
  5060. Me.Controls.Add(Me.Label148)
  5061. Me.Controls.Add(Me.Label149)
  5062. Me.Controls.Add(Me.Label150)
  5063. Me.Controls.Add(Me.Label151)
  5064. Me.Controls.Add(Me.Label152)
  5065. Me.Controls.Add(Me.Label101)
  5066. Me.Controls.Add(Me.值日生1_bt)
  5067. Me.Controls.Add(Me.值日生2_bt)
  5068. Me.Controls.Add(Me.解鎖_ch)
  5069. Me.Controls.Add(Me.簽核_bt)
  5070. Me.Controls.Add(Me.TextBox10)
  5071. Me.Controls.Add(Me.ComboBox80)
  5072. Me.Controls.Add(Me.ComboBox79)
  5073. Me.Controls.Add(Me.ComboBox78)
  5074. Me.Controls.Add(Me.ComboBox77)
  5075. Me.Controls.Add(Me.ComboBox76)
  5076. Me.Controls.Add(Me.ComboBox75)
  5077. Me.Controls.Add(Me.ComboBox74)
  5078. Me.Controls.Add(Me.ComboBox73)
  5079. Me.Controls.Add(Me.ComboBox72)
  5080. Me.Controls.Add(Me.ComboBox71)
  5081. Me.Controls.Add(Me.ComboBox70)
  5082. Me.Controls.Add(Me.ComboBox69)
  5083. Me.Controls.Add(Me.ComboBox68)
  5084. Me.Controls.Add(Me.ComboBox67)
  5085. Me.Controls.Add(Me.ComboBox66)
  5086. Me.Controls.Add(Me.ComboBox65)
  5087. Me.Controls.Add(Me.ComboBox64)
  5088. Me.Controls.Add(Me.ComboBox63)
  5089. Me.Controls.Add(Me.ComboBox62)
  5090. Me.Controls.Add(Me.ComboBox61)
  5091. Me.Controls.Add(Me.ComboBox60)
  5092. Me.Controls.Add(Me.ComboBox59)
  5093. Me.Controls.Add(Me.ComboBox58)
  5094. Me.Controls.Add(Me.ComboBox57)
  5095. Me.Controls.Add(Me.ComboBox56)
  5096. Me.Controls.Add(Me.ComboBox55)
  5097. Me.Controls.Add(Me.ComboBox54)
  5098. Me.Controls.Add(Me.ComboBox53)
  5099. Me.Controls.Add(Me.ComboBox52)
  5100. Me.Controls.Add(Me.ComboBox51)
  5101. Me.Controls.Add(Me.ComboBox50)
  5102. Me.Controls.Add(Me.ComboBox49)
  5103. Me.Controls.Add(Me.ComboBox48)
  5104. Me.Controls.Add(Me.ComboBox47)
  5105. Me.Controls.Add(Me.ComboBox46)
  5106. Me.Controls.Add(Me.ComboBox45)
  5107. Me.Controls.Add(Me.ComboBox44)
  5108. Me.Controls.Add(Me.ComboBox43)
  5109. Me.Controls.Add(Me.ComboBox42)
  5110. Me.Controls.Add(Me.ComboBox41)
  5111. Me.Controls.Add(Me.TextBox9)
  5112. Me.Controls.Add(Me.TextBox8)
  5113. Me.Controls.Add(Me.TextBox7)
  5114. Me.Controls.Add(Me.TextBox6)
  5115. Me.Controls.Add(Me.TextBox5)
  5116. Me.Controls.Add(Me.TextBox4)
  5117. Me.Controls.Add(Me.TextBox3)
  5118. Me.Controls.Add(Me.TextBox2)
  5119. Me.Controls.Add(Me.TextBox1)
  5120. Me.Controls.Add(Me.DTP1)
  5121. Me.Controls.Add(Me.加一天_bt1)
  5122. Me.Controls.Add(Me.減一天_bt)
  5123. Me.Controls.Add(Me.指定日期_dtp)
  5124. Me.Controls.Add(Me.Label96)
  5125. Me.Controls.Add(Me.ComboBox40)
  5126. Me.Controls.Add(Me.ComboBox39)
  5127. Me.Controls.Add(Me.ComboBox38)
  5128. Me.Controls.Add(Me.ComboBox37)
  5129. Me.Controls.Add(Me.ComboBox36)
  5130. Me.Controls.Add(Me.ComboBox35)
  5131. Me.Controls.Add(Me.ComboBox34)
  5132. Me.Controls.Add(Me.ComboBox33)
  5133. Me.Controls.Add(Me.ComboBox32)
  5134. Me.Controls.Add(Me.ComboBox31)
  5135. Me.Controls.Add(Me.ComboBox30)
  5136. Me.Controls.Add(Me.ComboBox29)
  5137. Me.Controls.Add(Me.ComboBox28)
  5138. Me.Controls.Add(Me.ComboBox27)
  5139. Me.Controls.Add(Me.ComboBox26)
  5140. Me.Controls.Add(Me.ComboBox25)
  5141. Me.Controls.Add(Me.ComboBox24)
  5142. Me.Controls.Add(Me.ComboBox23)
  5143. Me.Controls.Add(Me.ComboBox22)
  5144. Me.Controls.Add(Me.ComboBox21)
  5145. Me.Controls.Add(Me.ComboBox20)
  5146. Me.Controls.Add(Me.ComboBox19)
  5147. Me.Controls.Add(Me.ComboBox18)
  5148. Me.Controls.Add(Me.ComboBox17)
  5149. Me.Controls.Add(Me.ComboBox16)
  5150. Me.Controls.Add(Me.ComboBox15)
  5151. Me.Controls.Add(Me.ComboBox14)
  5152. Me.Controls.Add(Me.ComboBox13)
  5153. Me.Controls.Add(Me.ComboBox12)
  5154. Me.Controls.Add(Me.ComboBox11)
  5155. Me.Controls.Add(Me.ComboBox10)
  5156. Me.Controls.Add(Me.ComboBox9)
  5157. Me.Controls.Add(Me.ComboBox8)
  5158. Me.Controls.Add(Me.ComboBox7)
  5159. Me.Controls.Add(Me.ComboBox6)
  5160. Me.Controls.Add(Me.ComboBox5)
  5161. Me.Controls.Add(Me.ComboBox4)
  5162. Me.Controls.Add(Me.ComboBox3)
  5163. Me.Controls.Add(Me.ComboBox2)
  5164. Me.Controls.Add(Me.ComboBox1)
  5165. Me.Controls.Add(Me.B6_lb)
  5166. Me.Controls.Add(Me.B5_lb)
  5167. Me.Controls.Add(Me.B4_lb)
  5168. Me.Controls.Add(Me.B3_lb)
  5169. Me.Controls.Add(Me.B2_lb)
  5170. Me.Controls.Add(Me.B1_lb)
  5171. Me.Controls.Add(Me.Label100)
  5172. Me.Controls.Add(Me.Label99)
  5173. Me.Controls.Add(Me.Label98)
  5174. Me.Controls.Add(Me.美容_lb)
  5175. Me.Controls.Add(Me.健保_lb)
  5176. Me.Controls.Add(Me.Label95)
  5177. Me.Controls.Add(Me.Label94)
  5178. Me.Controls.Add(Me.星期_lb)
  5179. Me.Controls.Add(Me.全_ch)
  5180. Me.Controls.Add(Me.Label93)
  5181. Me.Controls.Add(Me.Label92)
  5182. Me.Controls.Add(Me.Label90)
  5183. Me.Controls.Add(Me.NUP20)
  5184. Me.Controls.Add(Me.NUP19)
  5185. Me.Controls.Add(Me.NUP18)
  5186. Me.Controls.Add(Me.NUP17)
  5187. Me.Controls.Add(Me.NUP16)
  5188. Me.Controls.Add(Me.NUP15)
  5189. Me.Controls.Add(Me.NUP14)
  5190. Me.Controls.Add(Me.NUP13)
  5191. Me.Controls.Add(Me.NUP12)
  5192. Me.Controls.Add(Me.NUP11)
  5193. Me.Controls.Add(Me.NUP10)
  5194. Me.Controls.Add(Me.NUP9)
  5195. Me.Controls.Add(Me.NUP8)
  5196. Me.Controls.Add(Me.NUP7)
  5197. Me.Controls.Add(Me.NUP6)
  5198. Me.Controls.Add(Me.NUP5)
  5199. Me.Controls.Add(Me.NUP4)
  5200. Me.Controls.Add(Me.NUP3)
  5201. Me.Controls.Add(Me.NUP2)
  5202. Me.Controls.Add(Me.排班明細_dgv)
  5203. Me.Controls.Add(Me.NumericUpDown20)
  5204. Me.Controls.Add(Me.CheckBox20)
  5205. Me.Controls.Add(Me.NumericUpDown19)
  5206. Me.Controls.Add(Me.CheckBox19)
  5207. Me.Controls.Add(Me.NumericUpDown18)
  5208. Me.Controls.Add(Me.CheckBox18)
  5209. Me.Controls.Add(Me.NumericUpDown17)
  5210. Me.Controls.Add(Me.CheckBox17)
  5211. Me.Controls.Add(Me.NumericUpDown16)
  5212. Me.Controls.Add(Me.CheckBox16)
  5213. Me.Controls.Add(Me.NumericUpDown15)
  5214. Me.Controls.Add(Me.CheckBox15)
  5215. Me.Controls.Add(Me.NumericUpDown14)
  5216. Me.Controls.Add(Me.CheckBox14)
  5217. Me.Controls.Add(Me.NumericUpDown13)
  5218. Me.Controls.Add(Me.CheckBox13)
  5219. Me.Controls.Add(Me.NumericUpDown12)
  5220. Me.Controls.Add(Me.CheckBox12)
  5221. Me.Controls.Add(Me.NumericUpDown11)
  5222. Me.Controls.Add(Me.CheckBox11)
  5223. Me.Controls.Add(Me.NumericUpDown10)
  5224. Me.Controls.Add(Me.CheckBox10)
  5225. Me.Controls.Add(Me.NumericUpDown9)
  5226. Me.Controls.Add(Me.CheckBox9)
  5227. Me.Controls.Add(Me.NumericUpDown8)
  5228. Me.Controls.Add(Me.CheckBox8)
  5229. Me.Controls.Add(Me.NumericUpDown7)
  5230. Me.Controls.Add(Me.CheckBox7)
  5231. Me.Controls.Add(Me.NumericUpDown6)
  5232. Me.Controls.Add(Me.CheckBox6)
  5233. Me.Controls.Add(Me.NumericUpDown5)
  5234. Me.Controls.Add(Me.CheckBox5)
  5235. Me.Controls.Add(Me.NumericUpDown4)
  5236. Me.Controls.Add(Me.CheckBox4)
  5237. Me.Controls.Add(Me.NumericUpDown3)
  5238. Me.Controls.Add(Me.CheckBox3)
  5239. Me.Controls.Add(Me.NumericUpDown2)
  5240. Me.Controls.Add(Me.CheckBox2)
  5241. Me.Controls.Add(Me.NumericUpDown1)
  5242. Me.Controls.Add(Me.CheckBox1)
  5243. Me.Controls.Add(Me.存檔_bt)
  5244. Me.Controls.Add(Me.複製班表_bt)
  5245. Me.Controls.Add(Me.日_lb)
  5246. Me.Controls.Add(Me.Label91)
  5247. Me.Controls.Add(Me.月_lb)
  5248. Me.Controls.Add(Me.Label89)
  5249. Me.Controls.Add(Me.年_lb)
  5250. Me.Controls.Add(Me.人員_dgv)
  5251. Me.Controls.Add(Me.姓名_tb20)
  5252. Me.Controls.Add(Me.姓名_tb19)
  5253. Me.Controls.Add(Me.姓名_tb18)
  5254. Me.Controls.Add(Me.姓名_tb17)
  5255. Me.Controls.Add(Me.姓名_tb16)
  5256. Me.Controls.Add(Me.姓名_tb15)
  5257. Me.Controls.Add(Me.姓名_tb14)
  5258. Me.Controls.Add(Me.姓名_tb13)
  5259. Me.Controls.Add(Me.姓名_tb12)
  5260. Me.Controls.Add(Me.姓名_tb11)
  5261. Me.Controls.Add(Me.姓名_tb10)
  5262. Me.Controls.Add(Me.姓名_tb9)
  5263. Me.Controls.Add(Me.姓名_tb8)
  5264. Me.Controls.Add(Me.姓名_tb7)
  5265. Me.Controls.Add(Me.姓名_tb6)
  5266. Me.Controls.Add(Me.姓名_tb5)
  5267. Me.Controls.Add(Me.姓名_tb4)
  5268. Me.Controls.Add(Me.姓名_tb3)
  5269. Me.Controls.Add(Me.姓名_tb2)
  5270. Me.Controls.Add(Me.姓名_tb1)
  5271. Me.Controls.Add(Me.班別_cb20)
  5272. Me.Controls.Add(Me.班別_cb19)
  5273. Me.Controls.Add(Me.班別_cb18)
  5274. Me.Controls.Add(Me.班別_cb17)
  5275. Me.Controls.Add(Me.班別_cb16)
  5276. Me.Controls.Add(Me.班別_cb15)
  5277. Me.Controls.Add(Me.班別_cb14)
  5278. Me.Controls.Add(Me.班別_cb13)
  5279. Me.Controls.Add(Me.班別_cb12)
  5280. Me.Controls.Add(Me.班別_cb11)
  5281. Me.Controls.Add(Me.班別_cb10)
  5282. Me.Controls.Add(Me.班別_cb9)
  5283. Me.Controls.Add(Me.班別_cb8)
  5284. Me.Controls.Add(Me.班別_cb7)
  5285. Me.Controls.Add(Me.班別_cb6)
  5286. Me.Controls.Add(Me.班別_cb5)
  5287. Me.Controls.Add(Me.班別_cb4)
  5288. Me.Controls.Add(Me.班別_cb3)
  5289. Me.Controls.Add(Me.班別_cb2)
  5290. Me.Controls.Add(Me.班別_cb1)
  5291. Me.Controls.Add(Me.Label69)
  5292. Me.Controls.Add(Me.A_pb40)
  5293. Me.Controls.Add(Me.A_pb39)
  5294. Me.Controls.Add(Me.A_pb38)
  5295. Me.Controls.Add(Me.A_pb37)
  5296. Me.Controls.Add(Me.A_pb36)
  5297. Me.Controls.Add(Me.A_pb35)
  5298. Me.Controls.Add(Me.A_pb34)
  5299. Me.Controls.Add(Me.A_pb33)
  5300. Me.Controls.Add(Me.A_pb32)
  5301. Me.Controls.Add(Me.A_pb31)
  5302. Me.Controls.Add(Me.A_pb30)
  5303. Me.Controls.Add(Me.A_pb29)
  5304. Me.Controls.Add(Me.A_pb28)
  5305. Me.Controls.Add(Me.A_pb27)
  5306. Me.Controls.Add(Me.A_pb26)
  5307. Me.Controls.Add(Me.A_pb25)
  5308. Me.Controls.Add(Me.A_pb24)
  5309. Me.Controls.Add(Me.A_pb23)
  5310. Me.Controls.Add(Me.A_pb22)
  5311. Me.Controls.Add(Me.A_pb21)
  5312. Me.Controls.Add(Me.A_pb20)
  5313. Me.Controls.Add(Me.A_pb19)
  5314. Me.Controls.Add(Me.A_pb18)
  5315. Me.Controls.Add(Me.A_pb17)
  5316. Me.Controls.Add(Me.A_pb16)
  5317. Me.Controls.Add(Me.A_pb15)
  5318. Me.Controls.Add(Me.A_pb14)
  5319. Me.Controls.Add(Me.A_pb13)
  5320. Me.Controls.Add(Me.A_pb12)
  5321. Me.Controls.Add(Me.A_pb11)
  5322. Me.Controls.Add(Me.A_pb10)
  5323. Me.Controls.Add(Me.A_pb9)
  5324. Me.Controls.Add(Me.A_pb8)
  5325. Me.Controls.Add(Me.A_pb7)
  5326. Me.Controls.Add(Me.A_pb6)
  5327. Me.Controls.Add(Me.A_pb5)
  5328. Me.Controls.Add(Me.A_pb4)
  5329. Me.Controls.Add(Me.A_pb3)
  5330. Me.Controls.Add(Me.A_pb2)
  5331. Me.Controls.Add(Me.A_pb1)
  5332. Me.Controls.Add(Me.Label68)
  5333. Me.Controls.Add(Me.Label67)
  5334. Me.Controls.Add(Me.Label66)
  5335. Me.Controls.Add(Me.Label65)
  5336. Me.Controls.Add(Me.Label64)
  5337. Me.Controls.Add(Me.Label63)
  5338. Me.Controls.Add(Me.Label62)
  5339. Me.Controls.Add(Me.Label61)
  5340. Me.Controls.Add(Me.Label60)
  5341. Me.Controls.Add(Me.Label59)
  5342. Me.Controls.Add(Me.Label58)
  5343. Me.Controls.Add(Me.Label57)
  5344. Me.Controls.Add(Me.Label56)
  5345. Me.Controls.Add(Me.Label55)
  5346. Me.Controls.Add(Me.Label54)
  5347. Me.Controls.Add(Me.Label53)
  5348. Me.Controls.Add(Me.Label52)
  5349. Me.Controls.Add(Me.Label50)
  5350. Me.Controls.Add(Me.Label49)
  5351. Me.Controls.Add(Me.Label48)
  5352. Me.Controls.Add(Me.Label47)
  5353. Me.Controls.Add(Me.Label46)
  5354. Me.Controls.Add(Me.Label45)
  5355. Me.Controls.Add(Me.Label44)
  5356. Me.Controls.Add(Me.Label43)
  5357. Me.Controls.Add(Me.Label42)
  5358. Me.Controls.Add(Me.Label41)
  5359. Me.Controls.Add(Me.Label40)
  5360. Me.Controls.Add(Me.Label39)
  5361. Me.Controls.Add(Me.Label38)
  5362. Me.Controls.Add(Me.Label37)
  5363. Me.Controls.Add(Me.Label36)
  5364. Me.Controls.Add(Me.Label35)
  5365. Me.Controls.Add(Me.Label34)
  5366. Me.Controls.Add(Me.Label33)
  5367. Me.Controls.Add(Me.Label32)
  5368. Me.Controls.Add(Me.Label31)
  5369. Me.Controls.Add(Me.Label30)
  5370. Me.Controls.Add(Me.Label29)
  5371. Me.Controls.Add(Me.Label28)
  5372. Me.Controls.Add(Me.Label27)
  5373. Me.Controls.Add(Me.Label26)
  5374. Me.Controls.Add(Me.Label25)
  5375. Me.Controls.Add(Me.Label24)
  5376. Me.Controls.Add(Me.Label23)
  5377. Me.Controls.Add(Me.Label22)
  5378. Me.Controls.Add(Me.Label21)
  5379. Me.Controls.Add(Me.Label20)
  5380. Me.Controls.Add(Me.Label19)
  5381. Me.Controls.Add(Me.Label18)
  5382. Me.Controls.Add(Me.Label17)
  5383. Me.Controls.Add(Me.Label16)
  5384. Me.Controls.Add(Me.Label15)
  5385. Me.Controls.Add(Me.Label14)
  5386. Me.Controls.Add(Me.Label13)
  5387. Me.Controls.Add(Me.Label12)
  5388. Me.Controls.Add(Me.Label11)
  5389. Me.Controls.Add(Me.Label10)
  5390. Me.Controls.Add(Me.Label9)
  5391. Me.Controls.Add(Me.Label8)
  5392. Me.Controls.Add(Me.Label7)
  5393. Me.Controls.Add(Me.Label6)
  5394. Me.Controls.Add(Me.Label5)
  5395. Me.Controls.Add(Me.Label4)
  5396. Me.Controls.Add(Me.Label3)
  5397. Me.Controls.Add(Me.Label2)
  5398. Me.Controls.Add(Me.Label1)
  5399. Me.Controls.Add(Me.Label51)
  5400. Me.Controls.Add(Me.Label70)
  5401. Me.Controls.Add(Me.Label71)
  5402. Me.Controls.Add(Me.Label72)
  5403. Me.Controls.Add(Me.Label73)
  5404. Me.Controls.Add(Me.Label74)
  5405. Me.Controls.Add(Me.Label75)
  5406. Me.Controls.Add(Me.Label76)
  5407. Me.Controls.Add(Me.Label77)
  5408. Me.Controls.Add(Me.Label78)
  5409. Me.Controls.Add(Me.Label79)
  5410. Me.Controls.Add(Me.Label80)
  5411. Me.Controls.Add(Me.Label81)
  5412. Me.Controls.Add(Me.Label82)
  5413. Me.Controls.Add(Me.Label83)
  5414. Me.Controls.Add(Me.Label84)
  5415. Me.Controls.Add(Me.Label85)
  5416. Me.Controls.Add(Me.Label86)
  5417. Me.Controls.Add(Me.Label87)
  5418. Me.Controls.Add(Me.Label88)
  5419. Me.Controls.Add(Me.A_lb20)
  5420. Me.Controls.Add(Me.A_lb19)
  5421. Me.Controls.Add(Me.A_lb18)
  5422. Me.Controls.Add(Me.A_lb17)
  5423. Me.Controls.Add(Me.A_lb16)
  5424. Me.Controls.Add(Me.A_lb15)
  5425. Me.Controls.Add(Me.A_lb14)
  5426. Me.Controls.Add(Me.A_lb13)
  5427. Me.Controls.Add(Me.A_lb12)
  5428. Me.Controls.Add(Me.A_lb11)
  5429. Me.Controls.Add(Me.A_lb10)
  5430. Me.Controls.Add(Me.A_lb9)
  5431. Me.Controls.Add(Me.A_lb8)
  5432. Me.Controls.Add(Me.A_lb7)
  5433. Me.Controls.Add(Me.A_lb6)
  5434. Me.Controls.Add(Me.A_lb5)
  5435. Me.Controls.Add(Me.A_lb4)
  5436. Me.Controls.Add(Me.A_lb3)
  5437. Me.Controls.Add(Me.A_lb2)
  5438. Me.Controls.Add(Me.A_lb1)
  5439. Me.Controls.Add(Me.NUP1)
  5440. Me.Controls.Add(Me.Label97)
  5441. Me.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  5442. Me.Icon = CType(resources.GetObject("$this.Icon"), System.Drawing.Icon)
  5443. Me.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4)
  5444. Me.Name = "排班明細_參考"
  5445. Me.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen
  5446. Me.Text = "排班明細_參考"
  5447. CType(Me.NUP20, System.ComponentModel.ISupportInitialize).EndInit()
  5448. CType(Me.NUP19, System.ComponentModel.ISupportInitialize).EndInit()
  5449. CType(Me.NUP18, System.ComponentModel.ISupportInitialize).EndInit()
  5450. CType(Me.NUP17, System.ComponentModel.ISupportInitialize).EndInit()
  5451. CType(Me.NUP16, System.ComponentModel.ISupportInitialize).EndInit()
  5452. CType(Me.NUP15, System.ComponentModel.ISupportInitialize).EndInit()
  5453. CType(Me.NUP14, System.ComponentModel.ISupportInitialize).EndInit()
  5454. CType(Me.NUP13, System.ComponentModel.ISupportInitialize).EndInit()
  5455. CType(Me.NUP12, System.ComponentModel.ISupportInitialize).EndInit()
  5456. CType(Me.NUP11, System.ComponentModel.ISupportInitialize).EndInit()
  5457. CType(Me.NUP10, System.ComponentModel.ISupportInitialize).EndInit()
  5458. CType(Me.NUP9, System.ComponentModel.ISupportInitialize).EndInit()
  5459. CType(Me.NUP8, System.ComponentModel.ISupportInitialize).EndInit()
  5460. CType(Me.NUP7, System.ComponentModel.ISupportInitialize).EndInit()
  5461. CType(Me.NUP6, System.ComponentModel.ISupportInitialize).EndInit()
  5462. CType(Me.NUP5, System.ComponentModel.ISupportInitialize).EndInit()
  5463. CType(Me.NUP4, System.ComponentModel.ISupportInitialize).EndInit()
  5464. CType(Me.NUP3, System.ComponentModel.ISupportInitialize).EndInit()
  5465. CType(Me.NUP2, System.ComponentModel.ISupportInitialize).EndInit()
  5466. CType(Me.排班明細_dgv, System.ComponentModel.ISupportInitialize).EndInit()
  5467. CType(Me.NumericUpDown20, System.ComponentModel.ISupportInitialize).EndInit()
  5468. CType(Me.NumericUpDown19, System.ComponentModel.ISupportInitialize).EndInit()
  5469. CType(Me.NumericUpDown18, System.ComponentModel.ISupportInitialize).EndInit()
  5470. CType(Me.NumericUpDown17, System.ComponentModel.ISupportInitialize).EndInit()
  5471. CType(Me.NumericUpDown16, System.ComponentModel.ISupportInitialize).EndInit()
  5472. CType(Me.NumericUpDown15, System.ComponentModel.ISupportInitialize).EndInit()
  5473. CType(Me.NumericUpDown14, System.ComponentModel.ISupportInitialize).EndInit()
  5474. CType(Me.NumericUpDown13, System.ComponentModel.ISupportInitialize).EndInit()
  5475. CType(Me.NumericUpDown12, System.ComponentModel.ISupportInitialize).EndInit()
  5476. CType(Me.NumericUpDown11, System.ComponentModel.ISupportInitialize).EndInit()
  5477. CType(Me.NumericUpDown10, System.ComponentModel.ISupportInitialize).EndInit()
  5478. CType(Me.NumericUpDown9, System.ComponentModel.ISupportInitialize).EndInit()
  5479. CType(Me.NumericUpDown8, System.ComponentModel.ISupportInitialize).EndInit()
  5480. CType(Me.NumericUpDown7, System.ComponentModel.ISupportInitialize).EndInit()
  5481. CType(Me.NumericUpDown6, System.ComponentModel.ISupportInitialize).EndInit()
  5482. CType(Me.NumericUpDown5, System.ComponentModel.ISupportInitialize).EndInit()
  5483. CType(Me.NumericUpDown4, System.ComponentModel.ISupportInitialize).EndInit()
  5484. CType(Me.NumericUpDown3, System.ComponentModel.ISupportInitialize).EndInit()
  5485. CType(Me.NumericUpDown2, System.ComponentModel.ISupportInitialize).EndInit()
  5486. CType(Me.NumericUpDown1, System.ComponentModel.ISupportInitialize).EndInit()
  5487. CType(Me.人員_dgv, System.ComponentModel.ISupportInitialize).EndInit()
  5488. CType(Me.NUP1, System.ComponentModel.ISupportInitialize).EndInit()
  5489. Me.ResumeLayout(False)
  5490. Me.PerformLayout()
  5491. End Sub
  5492. Friend WithEvents Label102 As Label
  5493. Friend WithEvents Label103 As Label
  5494. Friend WithEvents Label104 As Label
  5495. Friend WithEvents Label105 As Label
  5496. Friend WithEvents Label106 As Label
  5497. Friend WithEvents Label107 As Label
  5498. Friend WithEvents Label108 As Label
  5499. Friend WithEvents Label109 As Label
  5500. Friend WithEvents Label110 As Label
  5501. Friend WithEvents Label111 As Label
  5502. Friend WithEvents Label112 As Label
  5503. Friend WithEvents Label113 As Label
  5504. Friend WithEvents Label114 As Label
  5505. Friend WithEvents Label115 As Label
  5506. Friend WithEvents Label116 As Label
  5507. Friend WithEvents Label117 As Label
  5508. Friend WithEvents Label118 As Label
  5509. Friend WithEvents Label119 As Label
  5510. Friend WithEvents Label120 As Label
  5511. Friend WithEvents Label121 As Label
  5512. Friend WithEvents Label122 As Label
  5513. Friend WithEvents Label123 As Label
  5514. Friend WithEvents Label124 As Label
  5515. Friend WithEvents Label125 As Label
  5516. Friend WithEvents Label126 As Label
  5517. Friend WithEvents Label127 As Label
  5518. Friend WithEvents Label128 As Label
  5519. Friend WithEvents Label129 As Label
  5520. Friend WithEvents Label130 As Label
  5521. Friend WithEvents Label131 As Label
  5522. Friend WithEvents Label132 As Label
  5523. Friend WithEvents Label133 As Label
  5524. Friend WithEvents Label134 As Label
  5525. Friend WithEvents Label135 As Label
  5526. Friend WithEvents Label136 As Label
  5527. Friend WithEvents Label137 As Label
  5528. Friend WithEvents Label138 As Label
  5529. Friend WithEvents Label139 As Label
  5530. Friend WithEvents Label140 As Label
  5531. Friend WithEvents Label141 As Label
  5532. Friend WithEvents Label142 As Label
  5533. Friend WithEvents Label143 As Label
  5534. Friend WithEvents Label144 As Label
  5535. Friend WithEvents Label145 As Label
  5536. Friend WithEvents Label146 As Label
  5537. Friend WithEvents Label147 As Label
  5538. Friend WithEvents Label148 As Label
  5539. Friend WithEvents Label149 As Label
  5540. Friend WithEvents Label150 As Label
  5541. Friend WithEvents Label151 As Label
  5542. Friend WithEvents Label152 As Label
  5543. Friend WithEvents Label101 As Label
  5544. Friend WithEvents 值日生1_bt As TextBox
  5545. Friend WithEvents 值日生2_bt As TextBox
  5546. Friend WithEvents 解鎖_ch As CheckBox
  5547. Friend WithEvents 簽核_bt As Button
  5548. Friend WithEvents TextBox10 As TextBox
  5549. Friend WithEvents ComboBox80 As ComboBox
  5550. Friend WithEvents ComboBox79 As ComboBox
  5551. Friend WithEvents ComboBox78 As ComboBox
  5552. Friend WithEvents ComboBox77 As ComboBox
  5553. Friend WithEvents ComboBox76 As ComboBox
  5554. Friend WithEvents ComboBox75 As ComboBox
  5555. Friend WithEvents ComboBox74 As ComboBox
  5556. Friend WithEvents ComboBox73 As ComboBox
  5557. Friend WithEvents ComboBox72 As ComboBox
  5558. Friend WithEvents ComboBox71 As ComboBox
  5559. Friend WithEvents ComboBox70 As ComboBox
  5560. Friend WithEvents ComboBox69 As ComboBox
  5561. Friend WithEvents ComboBox68 As ComboBox
  5562. Friend WithEvents ComboBox67 As ComboBox
  5563. Friend WithEvents ComboBox66 As ComboBox
  5564. Friend WithEvents ComboBox65 As ComboBox
  5565. Friend WithEvents ComboBox64 As ComboBox
  5566. Friend WithEvents ComboBox63 As ComboBox
  5567. Friend WithEvents ComboBox62 As ComboBox
  5568. Friend WithEvents ComboBox61 As ComboBox
  5569. Friend WithEvents ComboBox60 As ComboBox
  5570. Friend WithEvents ComboBox59 As ComboBox
  5571. Friend WithEvents ComboBox58 As ComboBox
  5572. Friend WithEvents ComboBox57 As ComboBox
  5573. Friend WithEvents ComboBox56 As ComboBox
  5574. Friend WithEvents ComboBox55 As ComboBox
  5575. Friend WithEvents ComboBox54 As ComboBox
  5576. Friend WithEvents ComboBox53 As ComboBox
  5577. Friend WithEvents ComboBox52 As ComboBox
  5578. Friend WithEvents ComboBox51 As ComboBox
  5579. Friend WithEvents ComboBox50 As ComboBox
  5580. Friend WithEvents ComboBox49 As ComboBox
  5581. Friend WithEvents ComboBox48 As ComboBox
  5582. Friend WithEvents ComboBox47 As ComboBox
  5583. Friend WithEvents ComboBox46 As ComboBox
  5584. Friend WithEvents ComboBox45 As ComboBox
  5585. Friend WithEvents ComboBox44 As ComboBox
  5586. Friend WithEvents ComboBox43 As ComboBox
  5587. Friend WithEvents ComboBox42 As ComboBox
  5588. Friend WithEvents ComboBox41 As ComboBox
  5589. Friend WithEvents TextBox9 As TextBox
  5590. Friend WithEvents TextBox8 As TextBox
  5591. Friend WithEvents TextBox7 As TextBox
  5592. Friend WithEvents TextBox6 As TextBox
  5593. Friend WithEvents TextBox5 As TextBox
  5594. Friend WithEvents TextBox4 As TextBox
  5595. Friend WithEvents TextBox3 As TextBox
  5596. Friend WithEvents TextBox2 As TextBox
  5597. Friend WithEvents TextBox1 As TextBox
  5598. Friend WithEvents DTP1 As DateTimePicker
  5599. Friend WithEvents 加一天_bt1 As Button
  5600. Friend WithEvents 減一天_bt As Button
  5601. Friend WithEvents 指定日期_dtp As DateTimePicker
  5602. Friend WithEvents Label96 As Label
  5603. Friend WithEvents ComboBox40 As ComboBox
  5604. Friend WithEvents ComboBox39 As ComboBox
  5605. Friend WithEvents ComboBox38 As ComboBox
  5606. Friend WithEvents ComboBox37 As ComboBox
  5607. Friend WithEvents ComboBox36 As ComboBox
  5608. Friend WithEvents ComboBox35 As ComboBox
  5609. Friend WithEvents ComboBox34 As ComboBox
  5610. Friend WithEvents ComboBox33 As ComboBox
  5611. Friend WithEvents ComboBox32 As ComboBox
  5612. Friend WithEvents ComboBox31 As ComboBox
  5613. Friend WithEvents ComboBox30 As ComboBox
  5614. Friend WithEvents ComboBox29 As ComboBox
  5615. Friend WithEvents ComboBox28 As ComboBox
  5616. Friend WithEvents ComboBox27 As ComboBox
  5617. Friend WithEvents ComboBox26 As ComboBox
  5618. Friend WithEvents ComboBox25 As ComboBox
  5619. Friend WithEvents ComboBox24 As ComboBox
  5620. Friend WithEvents ComboBox23 As ComboBox
  5621. Friend WithEvents ComboBox22 As ComboBox
  5622. Friend WithEvents ComboBox21 As ComboBox
  5623. Friend WithEvents ComboBox20 As ComboBox
  5624. Friend WithEvents ComboBox19 As ComboBox
  5625. Friend WithEvents ComboBox18 As ComboBox
  5626. Friend WithEvents ComboBox17 As ComboBox
  5627. Friend WithEvents ComboBox16 As ComboBox
  5628. Friend WithEvents ComboBox15 As ComboBox
  5629. Friend WithEvents ComboBox14 As ComboBox
  5630. Friend WithEvents ComboBox13 As ComboBox
  5631. Friend WithEvents ComboBox12 As ComboBox
  5632. Friend WithEvents ComboBox11 As ComboBox
  5633. Friend WithEvents ComboBox10 As ComboBox
  5634. Friend WithEvents ComboBox9 As ComboBox
  5635. Friend WithEvents ComboBox8 As ComboBox
  5636. Friend WithEvents ComboBox7 As ComboBox
  5637. Friend WithEvents ComboBox6 As ComboBox
  5638. Friend WithEvents ComboBox5 As ComboBox
  5639. Friend WithEvents ComboBox4 As ComboBox
  5640. Friend WithEvents ComboBox3 As ComboBox
  5641. Friend WithEvents ComboBox2 As ComboBox
  5642. Friend WithEvents ComboBox1 As ComboBox
  5643. Friend WithEvents B6_lb As Label
  5644. Friend WithEvents B5_lb As Label
  5645. Friend WithEvents B4_lb As Label
  5646. Friend WithEvents B3_lb As Label
  5647. Friend WithEvents B2_lb As Label
  5648. Friend WithEvents B1_lb As Label
  5649. Friend WithEvents Label100 As Label
  5650. Friend WithEvents Label99 As Label
  5651. Friend WithEvents Label98 As Label
  5652. Friend WithEvents 美容_lb As Label
  5653. Friend WithEvents 健保_lb As Label
  5654. Friend WithEvents Label95 As Label
  5655. Friend WithEvents Label94 As Label
  5656. Friend WithEvents 星期_lb As Label
  5657. Friend WithEvents 全_ch As CheckBox
  5658. Friend WithEvents Label93 As Label
  5659. Friend WithEvents Label92 As Label
  5660. Friend WithEvents Label90 As Label
  5661. Friend WithEvents NUP20 As NumericUpDown
  5662. Friend WithEvents NUP19 As NumericUpDown
  5663. Friend WithEvents NUP18 As NumericUpDown
  5664. Friend WithEvents NUP17 As NumericUpDown
  5665. Friend WithEvents NUP16 As NumericUpDown
  5666. Friend WithEvents NUP15 As NumericUpDown
  5667. Friend WithEvents NUP14 As NumericUpDown
  5668. Friend WithEvents NUP13 As NumericUpDown
  5669. Friend WithEvents NUP12 As NumericUpDown
  5670. Friend WithEvents NUP11 As NumericUpDown
  5671. Friend WithEvents NUP10 As NumericUpDown
  5672. Friend WithEvents NUP9 As NumericUpDown
  5673. Friend WithEvents NUP8 As NumericUpDown
  5674. Friend WithEvents NUP7 As NumericUpDown
  5675. Friend WithEvents NUP6 As NumericUpDown
  5676. Friend WithEvents NUP5 As NumericUpDown
  5677. Friend WithEvents NUP4 As NumericUpDown
  5678. Friend WithEvents NUP3 As NumericUpDown
  5679. Friend WithEvents NUP2 As NumericUpDown
  5680. Friend WithEvents 排班明細_dgv As DataGridView
  5681. Friend WithEvents NumericUpDown20 As NumericUpDown
  5682. Friend WithEvents CheckBox20 As CheckBox
  5683. Friend WithEvents NumericUpDown19 As NumericUpDown
  5684. Friend WithEvents CheckBox19 As CheckBox
  5685. Friend WithEvents NumericUpDown18 As NumericUpDown
  5686. Friend WithEvents CheckBox18 As CheckBox
  5687. Friend WithEvents NumericUpDown17 As NumericUpDown
  5688. Friend WithEvents CheckBox17 As CheckBox
  5689. Friend WithEvents NumericUpDown16 As NumericUpDown
  5690. Friend WithEvents CheckBox16 As CheckBox
  5691. Friend WithEvents NumericUpDown15 As NumericUpDown
  5692. Friend WithEvents CheckBox15 As CheckBox
  5693. Friend WithEvents NumericUpDown14 As NumericUpDown
  5694. Friend WithEvents CheckBox14 As CheckBox
  5695. Friend WithEvents NumericUpDown13 As NumericUpDown
  5696. Friend WithEvents CheckBox13 As CheckBox
  5697. Friend WithEvents NumericUpDown12 As NumericUpDown
  5698. Friend WithEvents CheckBox12 As CheckBox
  5699. Friend WithEvents NumericUpDown11 As NumericUpDown
  5700. Friend WithEvents CheckBox11 As CheckBox
  5701. Friend WithEvents NumericUpDown10 As NumericUpDown
  5702. Friend WithEvents CheckBox10 As CheckBox
  5703. Friend WithEvents NumericUpDown9 As NumericUpDown
  5704. Friend WithEvents CheckBox9 As CheckBox
  5705. Friend WithEvents NumericUpDown8 As NumericUpDown
  5706. Friend WithEvents CheckBox8 As CheckBox
  5707. Friend WithEvents NumericUpDown7 As NumericUpDown
  5708. Friend WithEvents CheckBox7 As CheckBox
  5709. Friend WithEvents NumericUpDown6 As NumericUpDown
  5710. Friend WithEvents CheckBox6 As CheckBox
  5711. Friend WithEvents NumericUpDown5 As NumericUpDown
  5712. Friend WithEvents CheckBox5 As CheckBox
  5713. Friend WithEvents NumericUpDown4 As NumericUpDown
  5714. Friend WithEvents CheckBox4 As CheckBox
  5715. Friend WithEvents NumericUpDown3 As NumericUpDown
  5716. Friend WithEvents CheckBox3 As CheckBox
  5717. Friend WithEvents NumericUpDown2 As NumericUpDown
  5718. Friend WithEvents CheckBox2 As CheckBox
  5719. Friend WithEvents NumericUpDown1 As NumericUpDown
  5720. Friend WithEvents CheckBox1 As CheckBox
  5721. Friend WithEvents 存檔_bt As Button
  5722. Friend WithEvents 複製班表_bt As Button
  5723. Friend WithEvents 日_lb As Label
  5724. Friend WithEvents Label91 As Label
  5725. Friend WithEvents 月_lb As Label
  5726. Friend WithEvents Label89 As Label
  5727. Friend WithEvents 年_lb As Label
  5728. Friend WithEvents 人員_dgv As DataGridView
  5729. Friend WithEvents 姓名_tb20 As TextBox
  5730. Friend WithEvents 姓名_tb19 As TextBox
  5731. Friend WithEvents 姓名_tb18 As TextBox
  5732. Friend WithEvents 姓名_tb17 As TextBox
  5733. Friend WithEvents 姓名_tb16 As TextBox
  5734. Friend WithEvents 姓名_tb15 As TextBox
  5735. Friend WithEvents 姓名_tb14 As TextBox
  5736. Friend WithEvents 姓名_tb13 As TextBox
  5737. Friend WithEvents 姓名_tb12 As TextBox
  5738. Friend WithEvents 姓名_tb11 As TextBox
  5739. Friend WithEvents 姓名_tb10 As TextBox
  5740. Friend WithEvents 姓名_tb9 As TextBox
  5741. Friend WithEvents 姓名_tb8 As TextBox
  5742. Friend WithEvents 姓名_tb7 As TextBox
  5743. Friend WithEvents 姓名_tb6 As TextBox
  5744. Friend WithEvents 姓名_tb5 As TextBox
  5745. Friend WithEvents 姓名_tb4 As TextBox
  5746. Friend WithEvents 姓名_tb3 As TextBox
  5747. Friend WithEvents 姓名_tb2 As TextBox
  5748. Friend WithEvents 姓名_tb1 As TextBox
  5749. Friend WithEvents 班別_cb20 As ComboBox
  5750. Friend WithEvents 班別_cb19 As ComboBox
  5751. Friend WithEvents 班別_cb18 As ComboBox
  5752. Friend WithEvents 班別_cb17 As ComboBox
  5753. Friend WithEvents 班別_cb16 As ComboBox
  5754. Friend WithEvents 班別_cb15 As ComboBox
  5755. Friend WithEvents 班別_cb14 As ComboBox
  5756. Friend WithEvents 班別_cb13 As ComboBox
  5757. Friend WithEvents 班別_cb12 As ComboBox
  5758. Friend WithEvents 班別_cb11 As ComboBox
  5759. Friend WithEvents 班別_cb10 As ComboBox
  5760. Friend WithEvents 班別_cb9 As ComboBox
  5761. Friend WithEvents 班別_cb8 As ComboBox
  5762. Friend WithEvents 班別_cb7 As ComboBox
  5763. Friend WithEvents 班別_cb6 As ComboBox
  5764. Friend WithEvents 班別_cb5 As ComboBox
  5765. Friend WithEvents 班別_cb4 As ComboBox
  5766. Friend WithEvents 班別_cb3 As ComboBox
  5767. Friend WithEvents 班別_cb2 As ComboBox
  5768. Friend WithEvents 班別_cb1 As ComboBox
  5769. Friend WithEvents Label69 As Label
  5770. Friend WithEvents A_pb40 As ProgressBar
  5771. Friend WithEvents A_pb39 As ProgressBar
  5772. Friend WithEvents A_pb38 As ProgressBar
  5773. Friend WithEvents A_pb37 As ProgressBar
  5774. Friend WithEvents A_pb36 As ProgressBar
  5775. Friend WithEvents A_pb35 As ProgressBar
  5776. Friend WithEvents A_pb34 As ProgressBar
  5777. Friend WithEvents A_pb33 As ProgressBar
  5778. Friend WithEvents A_pb32 As ProgressBar
  5779. Friend WithEvents A_pb31 As ProgressBar
  5780. Friend WithEvents A_pb30 As ProgressBar
  5781. Friend WithEvents A_pb29 As ProgressBar
  5782. Friend WithEvents A_pb28 As ProgressBar
  5783. Friend WithEvents A_pb27 As ProgressBar
  5784. Friend WithEvents A_pb26 As ProgressBar
  5785. Friend WithEvents A_pb25 As ProgressBar
  5786. Friend WithEvents A_pb24 As ProgressBar
  5787. Friend WithEvents A_pb23 As ProgressBar
  5788. Friend WithEvents A_pb22 As ProgressBar
  5789. Friend WithEvents A_pb21 As ProgressBar
  5790. Friend WithEvents A_pb20 As ProgressBar
  5791. Friend WithEvents A_pb19 As ProgressBar
  5792. Friend WithEvents A_pb18 As ProgressBar
  5793. Friend WithEvents A_pb17 As ProgressBar
  5794. Friend WithEvents A_pb16 As ProgressBar
  5795. Friend WithEvents A_pb15 As ProgressBar
  5796. Friend WithEvents A_pb14 As ProgressBar
  5797. Friend WithEvents A_pb13 As ProgressBar
  5798. Friend WithEvents A_pb12 As ProgressBar
  5799. Friend WithEvents A_pb11 As ProgressBar
  5800. Friend WithEvents A_pb10 As ProgressBar
  5801. Friend WithEvents A_pb9 As ProgressBar
  5802. Friend WithEvents A_pb8 As ProgressBar
  5803. Friend WithEvents A_pb7 As ProgressBar
  5804. Friend WithEvents A_pb6 As ProgressBar
  5805. Friend WithEvents A_pb5 As ProgressBar
  5806. Friend WithEvents A_pb4 As ProgressBar
  5807. Friend WithEvents A_pb3 As ProgressBar
  5808. Friend WithEvents A_pb2 As ProgressBar
  5809. Friend WithEvents A_pb1 As ProgressBar
  5810. Friend WithEvents Label68 As Label
  5811. Friend WithEvents Label67 As Label
  5812. Friend WithEvents Label66 As Label
  5813. Friend WithEvents Label65 As Label
  5814. Friend WithEvents Label64 As Label
  5815. Friend WithEvents Label63 As Label
  5816. Friend WithEvents Label62 As Label
  5817. Friend WithEvents Label61 As Label
  5818. Friend WithEvents Label60 As Label
  5819. Friend WithEvents Label59 As Label
  5820. Friend WithEvents Label58 As Label
  5821. Friend WithEvents Label57 As Label
  5822. Friend WithEvents Label56 As Label
  5823. Friend WithEvents Label55 As Label
  5824. Friend WithEvents Label54 As Label
  5825. Friend WithEvents Label53 As Label
  5826. Friend WithEvents Label52 As Label
  5827. Friend WithEvents Label50 As Label
  5828. Friend WithEvents Label49 As Label
  5829. Friend WithEvents Label48 As Label
  5830. Friend WithEvents Label47 As Label
  5831. Friend WithEvents Label46 As Label
  5832. Friend WithEvents Label45 As Label
  5833. Friend WithEvents Label44 As Label
  5834. Friend WithEvents Label43 As Label
  5835. Friend WithEvents Label42 As Label
  5836. Friend WithEvents Label41 As Label
  5837. Friend WithEvents Label40 As Label
  5838. Friend WithEvents Label39 As Label
  5839. Friend WithEvents Label38 As Label
  5840. Friend WithEvents Label37 As Label
  5841. Friend WithEvents Label36 As Label
  5842. Friend WithEvents Label35 As Label
  5843. Friend WithEvents Label34 As Label
  5844. Friend WithEvents Label33 As Label
  5845. Friend WithEvents Label32 As Label
  5846. Friend WithEvents Label31 As Label
  5847. Friend WithEvents Label30 As Label
  5848. Friend WithEvents Label29 As Label
  5849. Friend WithEvents Label28 As Label
  5850. Friend WithEvents Label27 As Label
  5851. Friend WithEvents Label26 As Label
  5852. Friend WithEvents Label25 As Label
  5853. Friend WithEvents Label24 As Label
  5854. Friend WithEvents Label23 As Label
  5855. Friend WithEvents Label22 As Label
  5856. Friend WithEvents Label21 As Label
  5857. Friend WithEvents Label20 As Label
  5858. Friend WithEvents Label19 As Label
  5859. Friend WithEvents Label18 As Label
  5860. Friend WithEvents Label17 As Label
  5861. Friend WithEvents Label16 As Label
  5862. Friend WithEvents Label15 As Label
  5863. Friend WithEvents Label14 As Label
  5864. Friend WithEvents Label13 As Label
  5865. Friend WithEvents Label12 As Label
  5866. Friend WithEvents Label11 As Label
  5867. Friend WithEvents Label10 As Label
  5868. Friend WithEvents Label9 As Label
  5869. Friend WithEvents Label8 As Label
  5870. Friend WithEvents Label7 As Label
  5871. Friend WithEvents Label6 As Label
  5872. Friend WithEvents Label5 As Label
  5873. Friend WithEvents Label4 As Label
  5874. Friend WithEvents Label3 As Label
  5875. Friend WithEvents Label2 As Label
  5876. Friend WithEvents Label1 As Label
  5877. Friend WithEvents Label51 As Label
  5878. Friend WithEvents Label70 As Label
  5879. Friend WithEvents Label71 As Label
  5880. Friend WithEvents Label72 As Label
  5881. Friend WithEvents Label73 As Label
  5882. Friend WithEvents Label74 As Label
  5883. Friend WithEvents Label75 As Label
  5884. Friend WithEvents Label76 As Label
  5885. Friend WithEvents Label77 As Label
  5886. Friend WithEvents Label78 As Label
  5887. Friend WithEvents Label79 As Label
  5888. Friend WithEvents Label80 As Label
  5889. Friend WithEvents Label81 As Label
  5890. Friend WithEvents Label82 As Label
  5891. Friend WithEvents Label83 As Label
  5892. Friend WithEvents Label84 As Label
  5893. Friend WithEvents Label85 As Label
  5894. Friend WithEvents Label86 As Label
  5895. Friend WithEvents Label87 As Label
  5896. Friend WithEvents Label88 As Label
  5897. Friend WithEvents A_lb20 As Label
  5898. Friend WithEvents A_lb19 As Label
  5899. Friend WithEvents A_lb18 As Label
  5900. Friend WithEvents A_lb17 As Label
  5901. Friend WithEvents A_lb16 As Label
  5902. Friend WithEvents A_lb15 As Label
  5903. Friend WithEvents A_lb14 As Label
  5904. Friend WithEvents A_lb13 As Label
  5905. Friend WithEvents A_lb12 As Label
  5906. Friend WithEvents A_lb11 As Label
  5907. Friend WithEvents A_lb10 As Label
  5908. Friend WithEvents A_lb9 As Label
  5909. Friend WithEvents A_lb8 As Label
  5910. Friend WithEvents A_lb7 As Label
  5911. Friend WithEvents A_lb6 As Label
  5912. Friend WithEvents A_lb5 As Label
  5913. Friend WithEvents A_lb4 As Label
  5914. Friend WithEvents A_lb3 As Label
  5915. Friend WithEvents A_lb2 As Label
  5916. Friend WithEvents A_lb1 As Label
  5917. Friend WithEvents NUP1 As NumericUpDown
  5918. Friend WithEvents Label97 As Label
  5919. End Class