Без опису
Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.

拆帳制薪資試算表.Designer.vb 395KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653
  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. Me.components = New System.ComponentModel.Container()
  23. Dim DataGridViewCellStyle15 As System.Windows.Forms.DataGridViewCellStyle = New System.Windows.Forms.DataGridViewCellStyle()
  24. Dim DataGridViewCellStyle16 As System.Windows.Forms.DataGridViewCellStyle = New System.Windows.Forms.DataGridViewCellStyle()
  25. Dim DataGridViewCellStyle17 As System.Windows.Forms.DataGridViewCellStyle = New System.Windows.Forms.DataGridViewCellStyle()
  26. Dim DataGridViewCellStyle18 As System.Windows.Forms.DataGridViewCellStyle = New System.Windows.Forms.DataGridViewCellStyle()
  27. Dim DataGridViewCellStyle19 As System.Windows.Forms.DataGridViewCellStyle = New System.Windows.Forms.DataGridViewCellStyle()
  28. Dim resources As System.ComponentModel.ComponentResourceManager = New System.ComponentModel.ComponentResourceManager(GetType(拆帳制薪資試算表))
  29. Dim DataGridViewCellStyle20 As System.Windows.Forms.DataGridViewCellStyle = New System.Windows.Forms.DataGridViewCellStyle()
  30. Dim DataGridViewCellStyle21 As System.Windows.Forms.DataGridViewCellStyle = New System.Windows.Forms.DataGridViewCellStyle()
  31. Dim DataGridViewCellStyle22 As System.Windows.Forms.DataGridViewCellStyle = New System.Windows.Forms.DataGridViewCellStyle()
  32. Dim DataGridViewCellStyle23 As System.Windows.Forms.DataGridViewCellStyle = New System.Windows.Forms.DataGridViewCellStyle()
  33. Dim DataGridViewCellStyle24 As System.Windows.Forms.DataGridViewCellStyle = New System.Windows.Forms.DataGridViewCellStyle()
  34. Dim DataGridViewCellStyle25 As System.Windows.Forms.DataGridViewCellStyle = New System.Windows.Forms.DataGridViewCellStyle()
  35. Dim DataGridViewCellStyle26 As System.Windows.Forms.DataGridViewCellStyle = New System.Windows.Forms.DataGridViewCellStyle()
  36. Dim DataGridViewCellStyle27 As System.Windows.Forms.DataGridViewCellStyle = New System.Windows.Forms.DataGridViewCellStyle()
  37. Dim DataGridViewCellStyle28 As System.Windows.Forms.DataGridViewCellStyle = New System.Windows.Forms.DataGridViewCellStyle()
  38. Me.TabControl1 = New System.Windows.Forms.TabControl()
  39. Me.TabPage1 = New System.Windows.Forms.TabPage()
  40. Me.公司負擔成本_ch = New System.Windows.Forms.CheckBox()
  41. Me.薪資加項_ch = New System.Windows.Forms.CheckBox()
  42. Me.比對後_bt = New System.Windows.Forms.Button()
  43. Me.比對前_bt = New System.Windows.Forms.Button()
  44. Me.人員向後_bt = New System.Windows.Forms.Button()
  45. Me.人員向前_bt = New System.Windows.Forms.Button()
  46. Me.薪資條_bt = New System.Windows.Forms.Button()
  47. Me.其它_ch = New System.Windows.Forms.CheckBox()
  48. Me.存檔3_bt = New System.Windows.Forms.Button()
  49. Me.減項總計_ch = New System.Windows.Forms.CheckBox()
  50. Me.加項總計_ch = New System.Windows.Forms.CheckBox()
  51. Me.時數表_ch = New System.Windows.Forms.CheckBox()
  52. Me.主表_ch = New System.Windows.Forms.CheckBox()
  53. Me.重讀_bt = New System.Windows.Forms.Button()
  54. Me.設定1_bt = New System.Windows.Forms.Button()
  55. Me.月份_cb = New System.Windows.Forms.ComboBox()
  56. Me.年份_cb = New System.Windows.Forms.ComboBox()
  57. Me.Label6 = New System.Windows.Forms.Label()
  58. Me.Panel4 = New System.Windows.Forms.Panel()
  59. Me.列印_tb = New System.Windows.Forms.Button()
  60. Me.Panel11 = New System.Windows.Forms.Panel()
  61. Me.Label69 = New System.Windows.Forms.Label()
  62. Me.小42_lb = New System.Windows.Forms.Label()
  63. Me.正常轉時_lb = New System.Windows.Forms.Label()
  64. Me.Label58 = New System.Windows.Forms.Label()
  65. Me.最低薪資_lb = New System.Windows.Forms.Label()
  66. Me.DateTimePicker1 = New System.Windows.Forms.DateTimePicker()
  67. Me.Label66 = New System.Windows.Forms.Label()
  68. Me.公司名_lb = New System.Windows.Forms.Label()
  69. Me.Label173 = New System.Windows.Forms.Label()
  70. Me.Label32 = New System.Windows.Forms.Label()
  71. Me.Panel10 = New System.Windows.Forms.Panel()
  72. Me.Label108 = New System.Windows.Forms.Label()
  73. Me.小5_lb = New System.Windows.Forms.Label()
  74. Me.Label107 = New System.Windows.Forms.Label()
  75. Me.轉費5_tb = New System.Windows.Forms.Label()
  76. Me.轉薪5_lb = New System.Windows.Forms.Label()
  77. Me.轉時5_lb = New System.Windows.Forms.Label()
  78. Me.轉費4_tb = New System.Windows.Forms.Label()
  79. Me.轉薪4_lb = New System.Windows.Forms.Label()
  80. Me.轉時4_lb = New System.Windows.Forms.Label()
  81. Me.轉費3_tb = New System.Windows.Forms.Label()
  82. Me.轉薪3_lb = New System.Windows.Forms.Label()
  83. Me.轉時3_lb = New System.Windows.Forms.Label()
  84. Me.轉費2_tb = New System.Windows.Forms.Label()
  85. Me.轉薪2_lb = New System.Windows.Forms.Label()
  86. Me.轉時2_lb = New System.Windows.Forms.Label()
  87. Me.轉費1_tb = New System.Windows.Forms.Label()
  88. Me.Label94 = New System.Windows.Forms.Label()
  89. Me.轉薪1_lb = New System.Windows.Forms.Label()
  90. Me.轉時1_lb = New System.Windows.Forms.Label()
  91. Me.Label104 = New System.Windows.Forms.Label()
  92. Me.Label105 = New System.Windows.Forms.Label()
  93. Me.小1_lb = New System.Windows.Forms.Label()
  94. Me.Label171 = New System.Windows.Forms.Label()
  95. Me.費5_tb = New System.Windows.Forms.Label()
  96. Me.薪5_lb = New System.Windows.Forms.Label()
  97. Me.時5_lb = New System.Windows.Forms.Label()
  98. Me.倍5_lb = New System.Windows.Forms.Label()
  99. Me.Label165 = New System.Windows.Forms.Label()
  100. Me.費4_tb = New System.Windows.Forms.Label()
  101. Me.薪4_lb = New System.Windows.Forms.Label()
  102. Me.時4_lb = New System.Windows.Forms.Label()
  103. Me.倍4_lb = New System.Windows.Forms.Label()
  104. Me.Label160 = New System.Windows.Forms.Label()
  105. Me.費3_tb = New System.Windows.Forms.Label()
  106. Me.薪3_lb = New System.Windows.Forms.Label()
  107. Me.時3_lb = New System.Windows.Forms.Label()
  108. Me.倍3_lb = New System.Windows.Forms.Label()
  109. Me.Label155 = New System.Windows.Forms.Label()
  110. Me.費2_tb = New System.Windows.Forms.Label()
  111. Me.薪2_lb = New System.Windows.Forms.Label()
  112. Me.時2_lb = New System.Windows.Forms.Label()
  113. Me.倍2_lb = New System.Windows.Forms.Label()
  114. Me.Label150 = New System.Windows.Forms.Label()
  115. Me.費1_tb = New System.Windows.Forms.Label()
  116. Me.Label136 = New System.Windows.Forms.Label()
  117. Me.薪1_lb = New System.Windows.Forms.Label()
  118. Me.時1_lb = New System.Windows.Forms.Label()
  119. Me.倍1_lb = New System.Windows.Forms.Label()
  120. Me.Label141 = New System.Windows.Forms.Label()
  121. Me.Label142 = New System.Windows.Forms.Label()
  122. Me.Label143 = New System.Windows.Forms.Label()
  123. Me.Label144 = New System.Windows.Forms.Label()
  124. Me.Label145 = New System.Windows.Forms.Label()
  125. Me.Label146 = New System.Windows.Forms.Label()
  126. Me.Label30 = New System.Windows.Forms.Label()
  127. Me.Panel9 = New System.Windows.Forms.Panel()
  128. Me.小2_lb = New System.Windows.Forms.Label()
  129. Me.Label101 = New System.Windows.Forms.Label()
  130. Me.A12_alb = New System.Windows.Forms.Label()
  131. Me.A12_clb = New System.Windows.Forms.Label()
  132. Me.A11_alb = New System.Windows.Forms.Label()
  133. Me.A11_clb = New System.Windows.Forms.Label()
  134. Me.A10_alb = New System.Windows.Forms.Label()
  135. Me.A10_clb = New System.Windows.Forms.Label()
  136. Me.A09_alb = New System.Windows.Forms.Label()
  137. Me.A09_clb = New System.Windows.Forms.Label()
  138. Me.A08_alb = New System.Windows.Forms.Label()
  139. Me.A08_clb = New System.Windows.Forms.Label()
  140. Me.A07_alb = New System.Windows.Forms.Label()
  141. Me.A07_clb = New System.Windows.Forms.Label()
  142. Me.A06_alb = New System.Windows.Forms.Label()
  143. Me.A06_clb = New System.Windows.Forms.Label()
  144. Me.A05_alb = New System.Windows.Forms.Label()
  145. Me.A05_clb = New System.Windows.Forms.Label()
  146. Me.A04_alb = New System.Windows.Forms.Label()
  147. Me.A04_clb = New System.Windows.Forms.Label()
  148. Me.A03_alb = New System.Windows.Forms.Label()
  149. Me.A03_clb = New System.Windows.Forms.Label()
  150. Me.Label122 = New System.Windows.Forms.Label()
  151. Me.Label123 = New System.Windows.Forms.Label()
  152. Me.A02_alb = New System.Windows.Forms.Label()
  153. Me.A02_clb = New System.Windows.Forms.Label()
  154. Me.A01_alb = New System.Windows.Forms.Label()
  155. Me.A01_clb = New System.Windows.Forms.Label()
  156. Me.Label128 = New System.Windows.Forms.Label()
  157. Me.Label129 = New System.Windows.Forms.Label()
  158. Me.Label130 = New System.Windows.Forms.Label()
  159. Me.Label131 = New System.Windows.Forms.Label()
  160. Me.Label132 = New System.Windows.Forms.Label()
  161. Me.姓名_lb = New System.Windows.Forms.Label()
  162. Me.Panel8 = New System.Windows.Forms.Panel()
  163. Me.小3_lb = New System.Windows.Forms.Label()
  164. Me.Label98 = New System.Windows.Forms.Label()
  165. Me.B12_alb = New System.Windows.Forms.Label()
  166. Me.B12_clb = New System.Windows.Forms.Label()
  167. Me.B11_alb = New System.Windows.Forms.Label()
  168. Me.B11_clb = New System.Windows.Forms.Label()
  169. Me.B10_alb = New System.Windows.Forms.Label()
  170. Me.B10_clb = New System.Windows.Forms.Label()
  171. Me.B09_alb = New System.Windows.Forms.Label()
  172. Me.B09_clb = New System.Windows.Forms.Label()
  173. Me.B08_alb = New System.Windows.Forms.Label()
  174. Me.B08_clb = New System.Windows.Forms.Label()
  175. Me.B07_alb = New System.Windows.Forms.Label()
  176. Me.B07_clb = New System.Windows.Forms.Label()
  177. Me.B06_alb = New System.Windows.Forms.Label()
  178. Me.B06_clb = New System.Windows.Forms.Label()
  179. Me.B05_alb = New System.Windows.Forms.Label()
  180. Me.B05_clb = New System.Windows.Forms.Label()
  181. Me.B04_alb = New System.Windows.Forms.Label()
  182. Me.B04_clb = New System.Windows.Forms.Label()
  183. Me.B03_alb = New System.Windows.Forms.Label()
  184. Me.B03_clb = New System.Windows.Forms.Label()
  185. Me.Label78 = New System.Windows.Forms.Label()
  186. Me.Label79 = New System.Windows.Forms.Label()
  187. Me.B02_alb = New System.Windows.Forms.Label()
  188. Me.B02_clb = New System.Windows.Forms.Label()
  189. Me.B01_alb = New System.Windows.Forms.Label()
  190. Me.B01_clb = New System.Windows.Forms.Label()
  191. Me.Label71 = New System.Windows.Forms.Label()
  192. Me.Label72 = New System.Windows.Forms.Label()
  193. Me.Label73 = New System.Windows.Forms.Label()
  194. Me.Label74 = New System.Windows.Forms.Label()
  195. Me.Label75 = New System.Windows.Forms.Label()
  196. Me.年_lb = New System.Windows.Forms.Label()
  197. Me.Panel7 = New System.Windows.Forms.Panel()
  198. Me.轉場津貼1_lb = New System.Windows.Forms.Label()
  199. Me.小4_lb = New System.Windows.Forms.Label()
  200. Me.轉場津貼_lb = New System.Windows.Forms.Label()
  201. Me.Label51 = New System.Windows.Forms.Label()
  202. Me.服務津貼1_lb = New System.Windows.Forms.Label()
  203. Me.D12_alb = New System.Windows.Forms.Label()
  204. Me.服務津貼_lb = New System.Windows.Forms.Label()
  205. Me.D12_clb = New System.Windows.Forms.Label()
  206. Me.D11_alb = New System.Windows.Forms.Label()
  207. Me.D11_clb = New System.Windows.Forms.Label()
  208. Me.D10_alb = New System.Windows.Forms.Label()
  209. Me.D10_clb = New System.Windows.Forms.Label()
  210. Me.D09_alb = New System.Windows.Forms.Label()
  211. Me.D09_clb = New System.Windows.Forms.Label()
  212. Me.D08_alb = New System.Windows.Forms.Label()
  213. Me.D08_clb = New System.Windows.Forms.Label()
  214. Me.D07_alb = New System.Windows.Forms.Label()
  215. Me.D07_clb = New System.Windows.Forms.Label()
  216. Me.D06_alb = New System.Windows.Forms.Label()
  217. Me.D06_clb = New System.Windows.Forms.Label()
  218. Me.D05_alb = New System.Windows.Forms.Label()
  219. Me.D05_clb = New System.Windows.Forms.Label()
  220. Me.D04_alb = New System.Windows.Forms.Label()
  221. Me.D04_clb = New System.Windows.Forms.Label()
  222. Me.D03_alb = New System.Windows.Forms.Label()
  223. Me.D03_clb = New System.Windows.Forms.Label()
  224. Me.Label91 = New System.Windows.Forms.Label()
  225. Me.Label92 = New System.Windows.Forms.Label()
  226. Me.D02_alb = New System.Windows.Forms.Label()
  227. Me.D02_clb = New System.Windows.Forms.Label()
  228. Me.D01_alb = New System.Windows.Forms.Label()
  229. Me.D01_clb = New System.Windows.Forms.Label()
  230. Me.Label97 = New System.Windows.Forms.Label()
  231. Me.Label99 = New System.Windows.Forms.Label()
  232. Me.Label100 = New System.Windows.Forms.Label()
  233. Me.Label102 = New System.Windows.Forms.Label()
  234. Me.Label103 = New System.Windows.Forms.Label()
  235. Me.Label34 = New System.Windows.Forms.Label()
  236. Me.Panel6 = New System.Windows.Forms.Panel()
  237. Me.實領_lb = New System.Windows.Forms.Label()
  238. Me.小21_lb = New System.Windows.Forms.Label()
  239. Me.小31_lb = New System.Windows.Forms.Label()
  240. Me.合1_lb = New System.Windows.Forms.Label()
  241. Me.Label52 = New System.Windows.Forms.Label()
  242. Me.Label53 = New System.Windows.Forms.Label()
  243. Me.特休_lb = New System.Windows.Forms.Label()
  244. Me.Label54 = New System.Windows.Forms.Label()
  245. Me.Label55 = New System.Windows.Forms.Label()
  246. Me.Label56 = New System.Windows.Forms.Label()
  247. Me.Label43 = New System.Windows.Forms.Label()
  248. Me.月_lb = New System.Windows.Forms.Label()
  249. Me.Panel5 = New System.Windows.Forms.Panel()
  250. Me.小51_lb = New System.Windows.Forms.Label()
  251. Me.Label110 = New System.Windows.Forms.Label()
  252. Me.轉正常_lb = New System.Windows.Forms.Label()
  253. Me.Label59 = New System.Windows.Forms.Label()
  254. Me.小41_lb = New System.Windows.Forms.Label()
  255. Me.Label57 = New System.Windows.Forms.Label()
  256. Me.加班_lb = New System.Windows.Forms.Label()
  257. Me.AA1_lb = New System.Windows.Forms.Label()
  258. Me.正常_lb = New System.Windows.Forms.Label()
  259. Me.Label42 = New System.Windows.Forms.Label()
  260. Me.Label41 = New System.Windows.Forms.Label()
  261. Me.Label40 = New System.Windows.Forms.Label()
  262. Me.Label39 = New System.Windows.Forms.Label()
  263. Me.Label36 = New System.Windows.Forms.Label()
  264. Me.Label37 = New System.Windows.Forms.Label()
  265. Me.Label68 = New System.Windows.Forms.Label()
  266. Me.Label65 = New System.Windows.Forms.Label()
  267. Me.Label64 = New System.Windows.Forms.Label()
  268. Me.Label63 = New System.Windows.Forms.Label()
  269. Me.Label62 = New System.Windows.Forms.Label()
  270. Me.Label61 = New System.Windows.Forms.Label()
  271. Me.正常1_lb = New System.Windows.Forms.Label()
  272. Me.AA2_lb = New System.Windows.Forms.Label()
  273. Me.正常工_lb = New System.Windows.Forms.Label()
  274. Me.平日轉_lb = New System.Windows.Forms.Label()
  275. Me.Label134 = New System.Windows.Forms.Label()
  276. Me.平時新_lb = New System.Windows.Forms.Label()
  277. Me.Label174 = New System.Windows.Forms.Label()
  278. Me.Panel14 = New System.Windows.Forms.Panel()
  279. Me.Label67 = New System.Windows.Forms.Label()
  280. Me.轉場存檔_bt = New System.Windows.Forms.Button()
  281. Me.轉場薪資_tb = New System.Windows.Forms.TextBox()
  282. Me.扣除狀態_ch = New System.Windows.Forms.CheckBox()
  283. Me.Panel2 = New System.Windows.Forms.Panel()
  284. Me.轉場津貼_cb = New System.Windows.Forms.CheckBox()
  285. Me.服務津貼_cb = New System.Windows.Forms.CheckBox()
  286. Me.Label31 = New System.Windows.Forms.Label()
  287. Me.差異_tb = New System.Windows.Forms.TextBox()
  288. Me.Label28 = New System.Windows.Forms.Label()
  289. Me.差異_dgv = New System.Windows.Forms.DataGridView()
  290. Me.新增_bt = New System.Windows.Forms.Button()
  291. Me.存檔4_bt = New System.Windows.Forms.Button()
  292. Me.碼別_dgv = New System.Windows.Forms.DataGridView()
  293. Me.存檔2_bt = New System.Windows.Forms.Button()
  294. Me.表頭_dgv = New System.Windows.Forms.DataGridView()
  295. Me.存檔1_bt = New System.Windows.Forms.Button()
  296. Me.BA比_dgv = New System.Windows.Forms.DataGridView()
  297. Me.存檔_bt = New System.Windows.Forms.Button()
  298. Me.階級津貼_dgv = New System.Windows.Forms.DataGridView()
  299. Me.Label27 = New System.Windows.Forms.Label()
  300. Me.Panel1 = New System.Windows.Forms.Panel()
  301. Me.AA剃除_dgv = New System.Windows.Forms.DataGridView()
  302. Me.轉場加班_dgv = New System.Windows.Forms.DataGridView()
  303. Me.BA比1_dgv = New System.Windows.Forms.DataGridView()
  304. Me.服務資料_dgv = New System.Windows.Forms.DataGridView()
  305. Me.加班計算_dgv = New System.Windows.Forms.DataGridView()
  306. Me.Panel3 = New System.Windows.Forms.Panel()
  307. Me.Dgv1 = New System.Windows.Forms.DataGridView()
  308. Me.Dgv = New System.Windows.Forms.DataGridView()
  309. Me.Panel12 = New System.Windows.Forms.Panel()
  310. Me.重讀1_bt = New System.Windows.Forms.Button()
  311. Me.修正月_tb = New System.Windows.Forms.TextBox()
  312. Me.Label14 = New System.Windows.Forms.Label()
  313. Me.平日月薪_tb = New System.Windows.Forms.TextBox()
  314. Me.Label11 = New System.Windows.Forms.Label()
  315. Me.加班扣除_tb = New System.Windows.Forms.TextBox()
  316. Me.Label10 = New System.Windows.Forms.Label()
  317. Me.總薪_tb = New System.Windows.Forms.TextBox()
  318. Me.Label9 = New System.Windows.Forms.Label()
  319. Me.副薪_tb = New System.Windows.Forms.TextBox()
  320. Me.Label8 = New System.Windows.Forms.Label()
  321. Me.主薪_tb = New System.Windows.Forms.TextBox()
  322. Me.Label5 = New System.Windows.Forms.Label()
  323. Me.其他_tb = New System.Windows.Forms.TextBox()
  324. Me.Label4 = New System.Windows.Forms.Label()
  325. Me.主表_P = New System.Windows.Forms.Panel()
  326. Me.SplitContainer1 = New System.Windows.Forms.SplitContainer()
  327. Me.SplitContainer2 = New System.Windows.Forms.SplitContainer()
  328. Me.BA正_tb = New System.Windows.Forms.TextBox()
  329. Me.Label1 = New System.Windows.Forms.Label()
  330. Me.SplitContainer3 = New System.Windows.Forms.SplitContainer()
  331. Me.GA正_tb = New System.Windows.Forms.TextBox()
  332. Me.Label2 = New System.Windows.Forms.Label()
  333. Me.SplitContainer4 = New System.Windows.Forms.SplitContainer()
  334. Me.GA加_tb = New System.Windows.Forms.TextBox()
  335. Me.Label3 = New System.Windows.Forms.Label()
  336. Me.SplitContainer5 = New System.Windows.Forms.SplitContainer()
  337. Me.AA_tb = New System.Windows.Forms.TextBox()
  338. Me.Label7 = New System.Windows.Forms.Label()
  339. Me.SplitContainer6 = New System.Windows.Forms.SplitContainer()
  340. Me.服務_tb = New System.Windows.Forms.TextBox()
  341. Me.Label12 = New System.Windows.Forms.Label()
  342. Me.SplitContainer7 = New System.Windows.Forms.SplitContainer()
  343. Me.轉場_tb = New System.Windows.Forms.TextBox()
  344. Me.Label13 = New System.Windows.Forms.Label()
  345. Me.SplitContainer8 = New System.Windows.Forms.SplitContainer()
  346. Me.加班費_tb = New System.Windows.Forms.TextBox()
  347. Me.Label15 = New System.Windows.Forms.Label()
  348. Me.SplitContainer82 = New System.Windows.Forms.SplitContainer()
  349. Me.總薪資_tb = New System.Windows.Forms.TextBox()
  350. Me.Label16 = New System.Windows.Forms.Label()
  351. Me.實際薪資1_tb = New System.Windows.Forms.TextBox()
  352. Me.Label60 = New System.Windows.Forms.Label()
  353. Me.時數表_P = New System.Windows.Forms.Panel()
  354. Me.SplitContainer50 = New System.Windows.Forms.SplitContainer()
  355. Me.SplitContainer51 = New System.Windows.Forms.SplitContainer()
  356. Me.平均1_tb = New System.Windows.Forms.TextBox()
  357. Me.Label33 = New System.Windows.Forms.Label()
  358. Me.SplitContainer52 = New System.Windows.Forms.SplitContainer()
  359. Me.平均2_tb = New System.Windows.Forms.TextBox()
  360. Me.Label35 = New System.Windows.Forms.Label()
  361. Me.SplitContainer53 = New System.Windows.Forms.SplitContainer()
  362. Me.平均3_tb = New System.Windows.Forms.TextBox()
  363. Me.Label38 = New System.Windows.Forms.Label()
  364. Me.SplitContainer54 = New System.Windows.Forms.SplitContainer()
  365. Me.平均4_tb = New System.Windows.Forms.TextBox()
  366. Me.Label44 = New System.Windows.Forms.Label()
  367. Me.SplitContainer55 = New System.Windows.Forms.SplitContainer()
  368. Me.平均5_tb = New System.Windows.Forms.TextBox()
  369. Me.Label48 = New System.Windows.Forms.Label()
  370. Me.SplitContainer56 = New System.Windows.Forms.SplitContainer()
  371. Me.平均6_tb = New System.Windows.Forms.TextBox()
  372. Me.Label47 = New System.Windows.Forms.Label()
  373. Me.SplitContainer57 = New System.Windows.Forms.SplitContainer()
  374. Me.平均7_tb = New System.Windows.Forms.TextBox()
  375. Me.Label46 = New System.Windows.Forms.Label()
  376. Me.SplitContainer58 = New System.Windows.Forms.SplitContainer()
  377. Me.平均8_tb = New System.Windows.Forms.TextBox()
  378. Me.Label45 = New System.Windows.Forms.Label()
  379. Me.SplitContainer59 = New System.Windows.Forms.SplitContainer()
  380. Me.Label49 = New System.Windows.Forms.Label()
  381. Me.平均9_tb = New System.Windows.Forms.TextBox()
  382. Me.SplitContainer60 = New System.Windows.Forms.SplitContainer()
  383. Me.公司負擔_P = New System.Windows.Forms.Panel()
  384. Me.SplitContainer68 = New System.Windows.Forms.SplitContainer()
  385. Me.SplitContainer69 = New System.Windows.Forms.SplitContainer()
  386. Me.SplitContainer70 = New System.Windows.Forms.SplitContainer()
  387. Me.E01_tb = New System.Windows.Forms.TextBox()
  388. Me.E01_lb = New System.Windows.Forms.Label()
  389. Me.E02_tb = New System.Windows.Forms.TextBox()
  390. Me.E02_lb = New System.Windows.Forms.Label()
  391. Me.SplitContainer71 = New System.Windows.Forms.SplitContainer()
  392. Me.SplitContainer72 = New System.Windows.Forms.SplitContainer()
  393. Me.E03_tb = New System.Windows.Forms.TextBox()
  394. Me.E03_lb = New System.Windows.Forms.Label()
  395. Me.E04_tb = New System.Windows.Forms.TextBox()
  396. Me.E04_lb = New System.Windows.Forms.Label()
  397. Me.SplitContainer73 = New System.Windows.Forms.SplitContainer()
  398. Me.SplitContainer74 = New System.Windows.Forms.SplitContainer()
  399. Me.E05_tb = New System.Windows.Forms.TextBox()
  400. Me.E05_lb = New System.Windows.Forms.Label()
  401. Me.E06_tb = New System.Windows.Forms.TextBox()
  402. Me.E06_lb = New System.Windows.Forms.Label()
  403. Me.SplitContainer75 = New System.Windows.Forms.SplitContainer()
  404. Me.E07_tb = New System.Windows.Forms.TextBox()
  405. Me.E07_lb = New System.Windows.Forms.Label()
  406. Me.SplitContainer76 = New System.Windows.Forms.SplitContainer()
  407. Me.E08_tb = New System.Windows.Forms.TextBox()
  408. Me.E08_lb = New System.Windows.Forms.Label()
  409. Me.SplitContainer77 = New System.Windows.Forms.SplitContainer()
  410. Me.E09_tb = New System.Windows.Forms.TextBox()
  411. Me.E09_lb = New System.Windows.Forms.Label()
  412. Me.SplitContainer78 = New System.Windows.Forms.SplitContainer()
  413. Me.E10_tb = New System.Windows.Forms.TextBox()
  414. Me.E10_lb = New System.Windows.Forms.Label()
  415. Me.SplitContainer79 = New System.Windows.Forms.SplitContainer()
  416. Me.E11_tb = New System.Windows.Forms.TextBox()
  417. Me.E11_lb = New System.Windows.Forms.Label()
  418. Me.SplitContainer80 = New System.Windows.Forms.SplitContainer()
  419. Me.E12_tb = New System.Windows.Forms.TextBox()
  420. Me.E12_lb = New System.Windows.Forms.Label()
  421. Me.公司負擔總計_tb = New System.Windows.Forms.TextBox()
  422. Me.Label81 = New System.Windows.Forms.Label()
  423. Me.薪資加項_P = New System.Windows.Forms.Panel()
  424. Me.SplitContainer9 = New System.Windows.Forms.SplitContainer()
  425. Me.SplitContainer10 = New System.Windows.Forms.SplitContainer()
  426. Me.SplitContainer11 = New System.Windows.Forms.SplitContainer()
  427. Me.D01_tb = New System.Windows.Forms.TextBox()
  428. Me.D01_lb = New System.Windows.Forms.Label()
  429. Me.D02_tb = New System.Windows.Forms.TextBox()
  430. Me.D02_lb = New System.Windows.Forms.Label()
  431. Me.SplitContainer12 = New System.Windows.Forms.SplitContainer()
  432. Me.SplitContainer13 = New System.Windows.Forms.SplitContainer()
  433. Me.D03_tb = New System.Windows.Forms.TextBox()
  434. Me.D03_lb = New System.Windows.Forms.Label()
  435. Me.D04_tb = New System.Windows.Forms.TextBox()
  436. Me.D04_lb = New System.Windows.Forms.Label()
  437. Me.SplitContainer14 = New System.Windows.Forms.SplitContainer()
  438. Me.SplitContainer61 = New System.Windows.Forms.SplitContainer()
  439. Me.D05_tb = New System.Windows.Forms.TextBox()
  440. Me.D05_lb = New System.Windows.Forms.Label()
  441. Me.D06_tb = New System.Windows.Forms.TextBox()
  442. Me.D06_lb = New System.Windows.Forms.Label()
  443. Me.SplitContainer62 = New System.Windows.Forms.SplitContainer()
  444. Me.D07_tb = New System.Windows.Forms.TextBox()
  445. Me.D07_lb = New System.Windows.Forms.Label()
  446. Me.SplitContainer63 = New System.Windows.Forms.SplitContainer()
  447. Me.D08_tb = New System.Windows.Forms.TextBox()
  448. Me.D08_lb = New System.Windows.Forms.Label()
  449. Me.SplitContainer64 = New System.Windows.Forms.SplitContainer()
  450. Me.D09_tb = New System.Windows.Forms.TextBox()
  451. Me.D09_lb = New System.Windows.Forms.Label()
  452. Me.SplitContainer65 = New System.Windows.Forms.SplitContainer()
  453. Me.D10_tb = New System.Windows.Forms.TextBox()
  454. Me.D10_lb = New System.Windows.Forms.Label()
  455. Me.SplitContainer66 = New System.Windows.Forms.SplitContainer()
  456. Me.D11_tb = New System.Windows.Forms.TextBox()
  457. Me.D11_lb = New System.Windows.Forms.Label()
  458. Me.SplitContainer67 = New System.Windows.Forms.SplitContainer()
  459. Me.D12_tb = New System.Windows.Forms.TextBox()
  460. Me.D12_lb = New System.Windows.Forms.Label()
  461. Me.薪資加項總計_tb = New System.Windows.Forms.TextBox()
  462. Me.Label80 = New System.Windows.Forms.Label()
  463. Me.減項總計_P = New System.Windows.Forms.Panel()
  464. Me.SplitContainer28 = New System.Windows.Forms.SplitContainer()
  465. Me.A01_tb = New System.Windows.Forms.TextBox()
  466. Me.A01_lb = New System.Windows.Forms.Label()
  467. Me.SplitContainer29 = New System.Windows.Forms.SplitContainer()
  468. Me.SplitContainer30 = New System.Windows.Forms.SplitContainer()
  469. Me.A02_tb = New System.Windows.Forms.TextBox()
  470. Me.A02_lb = New System.Windows.Forms.Label()
  471. Me.A03_tb = New System.Windows.Forms.TextBox()
  472. Me.A03_lb = New System.Windows.Forms.Label()
  473. Me.SplitContainer31 = New System.Windows.Forms.SplitContainer()
  474. Me.SplitContainer32 = New System.Windows.Forms.SplitContainer()
  475. Me.A04_tb = New System.Windows.Forms.TextBox()
  476. Me.A04_lb = New System.Windows.Forms.Label()
  477. Me.A05_tb = New System.Windows.Forms.TextBox()
  478. Me.A05_lb = New System.Windows.Forms.Label()
  479. Me.SplitContainer33 = New System.Windows.Forms.SplitContainer()
  480. Me.SplitContainer34 = New System.Windows.Forms.SplitContainer()
  481. Me.A06_tb = New System.Windows.Forms.TextBox()
  482. Me.A06_lb = New System.Windows.Forms.Label()
  483. Me.A07_tb = New System.Windows.Forms.TextBox()
  484. Me.A07_lb = New System.Windows.Forms.Label()
  485. Me.SplitContainer35 = New System.Windows.Forms.SplitContainer()
  486. Me.A08_tb = New System.Windows.Forms.TextBox()
  487. Me.A08_lb = New System.Windows.Forms.Label()
  488. Me.SplitContainer36 = New System.Windows.Forms.SplitContainer()
  489. Me.A09_tb = New System.Windows.Forms.TextBox()
  490. Me.A09_lb = New System.Windows.Forms.Label()
  491. Me.SplitContainer37 = New System.Windows.Forms.SplitContainer()
  492. Me.A10_tb = New System.Windows.Forms.TextBox()
  493. Me.A10_lb = New System.Windows.Forms.Label()
  494. Me.SplitContainer38 = New System.Windows.Forms.SplitContainer()
  495. Me.A11_tb = New System.Windows.Forms.TextBox()
  496. Me.A11_lb = New System.Windows.Forms.Label()
  497. Me.SplitContainer39 = New System.Windows.Forms.SplitContainer()
  498. Me.A12_tb = New System.Windows.Forms.TextBox()
  499. Me.A12_lb = New System.Windows.Forms.Label()
  500. Me.SplitContainer40 = New System.Windows.Forms.SplitContainer()
  501. Me.減項總計_tb = New System.Windows.Forms.TextBox()
  502. Me.Label29 = New System.Windows.Forms.Label()
  503. Me.C01_1_tb = New System.Windows.Forms.TextBox()
  504. Me.C01_1_lb = New System.Windows.Forms.Label()
  505. Me.加項總計_P = New System.Windows.Forms.Panel()
  506. Me.SplitContainer15 = New System.Windows.Forms.SplitContainer()
  507. Me.B01_tb = New System.Windows.Forms.TextBox()
  508. Me.B01_lb = New System.Windows.Forms.Label()
  509. Me.SplitContainer16 = New System.Windows.Forms.SplitContainer()
  510. Me.SplitContainer19 = New System.Windows.Forms.SplitContainer()
  511. Me.B02_tb = New System.Windows.Forms.TextBox()
  512. Me.B02_lb = New System.Windows.Forms.Label()
  513. Me.B03_tb = New System.Windows.Forms.TextBox()
  514. Me.B03_lb = New System.Windows.Forms.Label()
  515. Me.SplitContainer17 = New System.Windows.Forms.SplitContainer()
  516. Me.SplitContainer20 = New System.Windows.Forms.SplitContainer()
  517. Me.B04_tb = New System.Windows.Forms.TextBox()
  518. Me.B04_lb = New System.Windows.Forms.Label()
  519. Me.B05_tb = New System.Windows.Forms.TextBox()
  520. Me.B05_lb = New System.Windows.Forms.Label()
  521. Me.SplitContainer18 = New System.Windows.Forms.SplitContainer()
  522. Me.SplitContainer21 = New System.Windows.Forms.SplitContainer()
  523. Me.B06_tb = New System.Windows.Forms.TextBox()
  524. Me.B06_lb = New System.Windows.Forms.Label()
  525. Me.B07_tb = New System.Windows.Forms.TextBox()
  526. Me.B07_lb = New System.Windows.Forms.Label()
  527. Me.SplitContainer22 = New System.Windows.Forms.SplitContainer()
  528. Me.B08_tb = New System.Windows.Forms.TextBox()
  529. Me.B08_lb = New System.Windows.Forms.Label()
  530. Me.SplitContainer23 = New System.Windows.Forms.SplitContainer()
  531. Me.B09_tb = New System.Windows.Forms.TextBox()
  532. Me.B09_lb = New System.Windows.Forms.Label()
  533. Me.SplitContainer24 = New System.Windows.Forms.SplitContainer()
  534. Me.B10_tb = New System.Windows.Forms.TextBox()
  535. Me.B10_lb = New System.Windows.Forms.Label()
  536. Me.SplitContainer25 = New System.Windows.Forms.SplitContainer()
  537. Me.B11_tb = New System.Windows.Forms.TextBox()
  538. Me.B11_lb = New System.Windows.Forms.Label()
  539. Me.SplitContainer26 = New System.Windows.Forms.SplitContainer()
  540. Me.B12_tb = New System.Windows.Forms.TextBox()
  541. Me.B12_lb = New System.Windows.Forms.Label()
  542. Me.SplitContainer27 = New System.Windows.Forms.SplitContainer()
  543. Me.加項總計_tb = New System.Windows.Forms.TextBox()
  544. Me.加項總計_lb = New System.Windows.Forms.Label()
  545. Me.C01_tb = New System.Windows.Forms.TextBox()
  546. Me.C01_lb = New System.Windows.Forms.Label()
  547. Me.其它_P = New System.Windows.Forms.Panel()
  548. Me.SplitContainer41 = New System.Windows.Forms.SplitContainer()
  549. Me.BA正1_tb = New System.Windows.Forms.TextBox()
  550. Me.Label26 = New System.Windows.Forms.Label()
  551. Me.SplitContainer42 = New System.Windows.Forms.SplitContainer()
  552. Me.AA1_tb = New System.Windows.Forms.TextBox()
  553. Me.Label25 = New System.Windows.Forms.Label()
  554. Me.SplitContainer43 = New System.Windows.Forms.SplitContainer()
  555. Me.修正月1_tb = New System.Windows.Forms.TextBox()
  556. Me.Label24 = New System.Windows.Forms.Label()
  557. Me.SplitContainer44 = New System.Windows.Forms.SplitContainer()
  558. Me.加班費1_tb = New System.Windows.Forms.TextBox()
  559. Me.Label23 = New System.Windows.Forms.Label()
  560. Me.SplitContainer45 = New System.Windows.Forms.SplitContainer()
  561. Me.總薪資1_tb = New System.Windows.Forms.TextBox()
  562. Me.Label22 = New System.Windows.Forms.Label()
  563. Me.SplitContainer46 = New System.Windows.Forms.SplitContainer()
  564. Me.總時數_tb = New System.Windows.Forms.TextBox()
  565. Me.Label21 = New System.Windows.Forms.Label()
  566. Me.SplitContainer47 = New System.Windows.Forms.SplitContainer()
  567. Me.平均時薪_tb = New System.Windows.Forms.TextBox()
  568. Me.Label20 = New System.Windows.Forms.Label()
  569. Me.SplitContainer48 = New System.Windows.Forms.SplitContainer()
  570. Me.BAAA加_tb = New System.Windows.Forms.TextBox()
  571. Me.Label19 = New System.Windows.Forms.Label()
  572. Me.SplitContainer49 = New System.Windows.Forms.SplitContainer()
  573. Me.餘額_tb = New System.Windows.Forms.TextBox()
  574. Me.Label18 = New System.Windows.Forms.Label()
  575. Me.SplitContainer81 = New System.Windows.Forms.SplitContainer()
  576. Me.餘額比_tb = New System.Windows.Forms.TextBox()
  577. Me.Label17 = New System.Windows.Forms.Label()
  578. Me.實際薪資_tb = New System.Windows.Forms.TextBox()
  579. Me.Label50 = New System.Windows.Forms.Label()
  580. Me.TabPage2 = New System.Windows.Forms.TabPage()
  581. Me.分流計算 = New System.Windows.Forms.Timer(Me.components)
  582. Me.PrintDocument1 = New System.Drawing.Printing.PrintDocument()
  583. Me.ToolTip1 = New System.Windows.Forms.ToolTip(Me.components)
  584. Me.重讀2_bt = New System.Windows.Forms.Button()
  585. Me.查詢_bt = New System.Windows.Forms.Button()
  586. Me.Panel13 = New System.Windows.Forms.Panel()
  587. Me.TabControl1.SuspendLayout
  588. Me.TabPage1.SuspendLayout
  589. Me.Panel4.SuspendLayout
  590. Me.Panel11.SuspendLayout
  591. Me.Panel10.SuspendLayout
  592. Me.Panel9.SuspendLayout
  593. Me.Panel8.SuspendLayout
  594. Me.Panel7.SuspendLayout
  595. Me.Panel6.SuspendLayout
  596. Me.Panel5.SuspendLayout
  597. Me.Panel14.SuspendLayout
  598. Me.Panel2.SuspendLayout
  599. CType(Me.差異_dgv, System.ComponentModel.ISupportInitialize).BeginInit
  600. CType(Me.碼別_dgv, System.ComponentModel.ISupportInitialize).BeginInit
  601. CType(Me.表頭_dgv, System.ComponentModel.ISupportInitialize).BeginInit
  602. CType(Me.BA比_dgv, System.ComponentModel.ISupportInitialize).BeginInit
  603. CType(Me.階級津貼_dgv, System.ComponentModel.ISupportInitialize).BeginInit
  604. Me.Panel1.SuspendLayout
  605. CType(Me.AA剃除_dgv, System.ComponentModel.ISupportInitialize).BeginInit
  606. CType(Me.轉場加班_dgv, System.ComponentModel.ISupportInitialize).BeginInit
  607. CType(Me.BA比1_dgv, System.ComponentModel.ISupportInitialize).BeginInit
  608. CType(Me.服務資料_dgv, System.ComponentModel.ISupportInitialize).BeginInit
  609. CType(Me.加班計算_dgv, System.ComponentModel.ISupportInitialize).BeginInit
  610. Me.Panel3.SuspendLayout
  611. CType(Me.Dgv1, System.ComponentModel.ISupportInitialize).BeginInit
  612. CType(Me.Dgv, System.ComponentModel.ISupportInitialize).BeginInit
  613. Me.Panel12.SuspendLayout
  614. Me.主表_P.SuspendLayout
  615. CType(Me.SplitContainer1, System.ComponentModel.ISupportInitialize).BeginInit
  616. Me.SplitContainer1.Panel2.SuspendLayout
  617. Me.SplitContainer1.SuspendLayout
  618. CType(Me.SplitContainer2, System.ComponentModel.ISupportInitialize).BeginInit
  619. Me.SplitContainer2.Panel1.SuspendLayout
  620. Me.SplitContainer2.Panel2.SuspendLayout
  621. Me.SplitContainer2.SuspendLayout
  622. CType(Me.SplitContainer3, System.ComponentModel.ISupportInitialize).BeginInit
  623. Me.SplitContainer3.Panel1.SuspendLayout
  624. Me.SplitContainer3.Panel2.SuspendLayout
  625. Me.SplitContainer3.SuspendLayout
  626. CType(Me.SplitContainer4, System.ComponentModel.ISupportInitialize).BeginInit
  627. Me.SplitContainer4.Panel1.SuspendLayout
  628. Me.SplitContainer4.Panel2.SuspendLayout
  629. Me.SplitContainer4.SuspendLayout
  630. CType(Me.SplitContainer5, System.ComponentModel.ISupportInitialize).BeginInit
  631. Me.SplitContainer5.Panel1.SuspendLayout
  632. Me.SplitContainer5.Panel2.SuspendLayout
  633. Me.SplitContainer5.SuspendLayout
  634. CType(Me.SplitContainer6, System.ComponentModel.ISupportInitialize).BeginInit
  635. Me.SplitContainer6.Panel1.SuspendLayout
  636. Me.SplitContainer6.Panel2.SuspendLayout
  637. Me.SplitContainer6.SuspendLayout
  638. CType(Me.SplitContainer7, System.ComponentModel.ISupportInitialize).BeginInit
  639. Me.SplitContainer7.Panel1.SuspendLayout
  640. Me.SplitContainer7.Panel2.SuspendLayout
  641. Me.SplitContainer7.SuspendLayout
  642. CType(Me.SplitContainer8, System.ComponentModel.ISupportInitialize).BeginInit
  643. Me.SplitContainer8.Panel1.SuspendLayout
  644. Me.SplitContainer8.Panel2.SuspendLayout
  645. Me.SplitContainer8.SuspendLayout
  646. CType(Me.SplitContainer82, System.ComponentModel.ISupportInitialize).BeginInit
  647. Me.SplitContainer82.Panel1.SuspendLayout
  648. Me.SplitContainer82.Panel2.SuspendLayout
  649. Me.SplitContainer82.SuspendLayout
  650. Me.時數表_P.SuspendLayout
  651. CType(Me.SplitContainer50, System.ComponentModel.ISupportInitialize).BeginInit
  652. Me.SplitContainer50.Panel2.SuspendLayout
  653. Me.SplitContainer50.SuspendLayout
  654. CType(Me.SplitContainer51, System.ComponentModel.ISupportInitialize).BeginInit
  655. Me.SplitContainer51.Panel1.SuspendLayout
  656. Me.SplitContainer51.Panel2.SuspendLayout
  657. Me.SplitContainer51.SuspendLayout
  658. CType(Me.SplitContainer52, System.ComponentModel.ISupportInitialize).BeginInit
  659. Me.SplitContainer52.Panel1.SuspendLayout
  660. Me.SplitContainer52.Panel2.SuspendLayout
  661. Me.SplitContainer52.SuspendLayout
  662. CType(Me.SplitContainer53, System.ComponentModel.ISupportInitialize).BeginInit
  663. Me.SplitContainer53.Panel1.SuspendLayout
  664. Me.SplitContainer53.Panel2.SuspendLayout
  665. Me.SplitContainer53.SuspendLayout
  666. CType(Me.SplitContainer54, System.ComponentModel.ISupportInitialize).BeginInit
  667. Me.SplitContainer54.Panel1.SuspendLayout
  668. Me.SplitContainer54.Panel2.SuspendLayout
  669. Me.SplitContainer54.SuspendLayout
  670. CType(Me.SplitContainer55, System.ComponentModel.ISupportInitialize).BeginInit
  671. Me.SplitContainer55.Panel1.SuspendLayout
  672. Me.SplitContainer55.Panel2.SuspendLayout
  673. Me.SplitContainer55.SuspendLayout
  674. CType(Me.SplitContainer56, System.ComponentModel.ISupportInitialize).BeginInit
  675. Me.SplitContainer56.Panel1.SuspendLayout
  676. Me.SplitContainer56.Panel2.SuspendLayout
  677. Me.SplitContainer56.SuspendLayout
  678. CType(Me.SplitContainer57, System.ComponentModel.ISupportInitialize).BeginInit
  679. Me.SplitContainer57.Panel1.SuspendLayout
  680. Me.SplitContainer57.Panel2.SuspendLayout
  681. Me.SplitContainer57.SuspendLayout
  682. CType(Me.SplitContainer58, System.ComponentModel.ISupportInitialize).BeginInit
  683. Me.SplitContainer58.Panel1.SuspendLayout
  684. Me.SplitContainer58.Panel2.SuspendLayout
  685. Me.SplitContainer58.SuspendLayout
  686. CType(Me.SplitContainer59, System.ComponentModel.ISupportInitialize).BeginInit
  687. Me.SplitContainer59.Panel1.SuspendLayout
  688. Me.SplitContainer59.Panel2.SuspendLayout
  689. Me.SplitContainer59.SuspendLayout
  690. CType(Me.SplitContainer60, System.ComponentModel.ISupportInitialize).BeginInit
  691. Me.SplitContainer60.SuspendLayout
  692. Me.公司負擔_P.SuspendLayout
  693. CType(Me.SplitContainer68, System.ComponentModel.ISupportInitialize).BeginInit
  694. Me.SplitContainer68.Panel2.SuspendLayout
  695. Me.SplitContainer68.SuspendLayout
  696. CType(Me.SplitContainer69, System.ComponentModel.ISupportInitialize).BeginInit
  697. Me.SplitContainer69.Panel1.SuspendLayout
  698. Me.SplitContainer69.Panel2.SuspendLayout
  699. Me.SplitContainer69.SuspendLayout
  700. CType(Me.SplitContainer70, System.ComponentModel.ISupportInitialize).BeginInit
  701. Me.SplitContainer70.Panel1.SuspendLayout
  702. Me.SplitContainer70.Panel2.SuspendLayout
  703. Me.SplitContainer70.SuspendLayout
  704. CType(Me.SplitContainer71, System.ComponentModel.ISupportInitialize).BeginInit
  705. Me.SplitContainer71.Panel1.SuspendLayout
  706. Me.SplitContainer71.Panel2.SuspendLayout
  707. Me.SplitContainer71.SuspendLayout
  708. CType(Me.SplitContainer72, System.ComponentModel.ISupportInitialize).BeginInit
  709. Me.SplitContainer72.Panel1.SuspendLayout
  710. Me.SplitContainer72.Panel2.SuspendLayout
  711. Me.SplitContainer72.SuspendLayout
  712. CType(Me.SplitContainer73, System.ComponentModel.ISupportInitialize).BeginInit
  713. Me.SplitContainer73.Panel1.SuspendLayout
  714. Me.SplitContainer73.Panel2.SuspendLayout
  715. Me.SplitContainer73.SuspendLayout
  716. CType(Me.SplitContainer74, System.ComponentModel.ISupportInitialize).BeginInit
  717. Me.SplitContainer74.Panel1.SuspendLayout
  718. Me.SplitContainer74.Panel2.SuspendLayout
  719. Me.SplitContainer74.SuspendLayout
  720. CType(Me.SplitContainer75, System.ComponentModel.ISupportInitialize).BeginInit
  721. Me.SplitContainer75.Panel1.SuspendLayout
  722. Me.SplitContainer75.Panel2.SuspendLayout
  723. Me.SplitContainer75.SuspendLayout
  724. CType(Me.SplitContainer76, System.ComponentModel.ISupportInitialize).BeginInit
  725. Me.SplitContainer76.Panel1.SuspendLayout
  726. Me.SplitContainer76.Panel2.SuspendLayout
  727. Me.SplitContainer76.SuspendLayout
  728. CType(Me.SplitContainer77, System.ComponentModel.ISupportInitialize).BeginInit
  729. Me.SplitContainer77.Panel1.SuspendLayout
  730. Me.SplitContainer77.Panel2.SuspendLayout
  731. Me.SplitContainer77.SuspendLayout
  732. CType(Me.SplitContainer78, System.ComponentModel.ISupportInitialize).BeginInit
  733. Me.SplitContainer78.Panel1.SuspendLayout
  734. Me.SplitContainer78.Panel2.SuspendLayout
  735. Me.SplitContainer78.SuspendLayout
  736. CType(Me.SplitContainer79, System.ComponentModel.ISupportInitialize).BeginInit
  737. Me.SplitContainer79.Panel1.SuspendLayout
  738. Me.SplitContainer79.Panel2.SuspendLayout
  739. Me.SplitContainer79.SuspendLayout
  740. CType(Me.SplitContainer80, System.ComponentModel.ISupportInitialize).BeginInit
  741. Me.SplitContainer80.Panel1.SuspendLayout
  742. Me.SplitContainer80.Panel2.SuspendLayout
  743. Me.SplitContainer80.SuspendLayout
  744. Me.薪資加項_P.SuspendLayout
  745. CType(Me.SplitContainer9, System.ComponentModel.ISupportInitialize).BeginInit
  746. Me.SplitContainer9.Panel2.SuspendLayout
  747. Me.SplitContainer9.SuspendLayout
  748. CType(Me.SplitContainer10, System.ComponentModel.ISupportInitialize).BeginInit
  749. Me.SplitContainer10.Panel1.SuspendLayout
  750. Me.SplitContainer10.Panel2.SuspendLayout
  751. Me.SplitContainer10.SuspendLayout
  752. CType(Me.SplitContainer11, System.ComponentModel.ISupportInitialize).BeginInit
  753. Me.SplitContainer11.Panel1.SuspendLayout
  754. Me.SplitContainer11.Panel2.SuspendLayout
  755. Me.SplitContainer11.SuspendLayout
  756. CType(Me.SplitContainer12, System.ComponentModel.ISupportInitialize).BeginInit
  757. Me.SplitContainer12.Panel1.SuspendLayout
  758. Me.SplitContainer12.Panel2.SuspendLayout
  759. Me.SplitContainer12.SuspendLayout
  760. CType(Me.SplitContainer13, System.ComponentModel.ISupportInitialize).BeginInit
  761. Me.SplitContainer13.Panel1.SuspendLayout
  762. Me.SplitContainer13.Panel2.SuspendLayout
  763. Me.SplitContainer13.SuspendLayout
  764. CType(Me.SplitContainer14, System.ComponentModel.ISupportInitialize).BeginInit
  765. Me.SplitContainer14.Panel1.SuspendLayout
  766. Me.SplitContainer14.Panel2.SuspendLayout
  767. Me.SplitContainer14.SuspendLayout
  768. CType(Me.SplitContainer61, System.ComponentModel.ISupportInitialize).BeginInit
  769. Me.SplitContainer61.Panel1.SuspendLayout
  770. Me.SplitContainer61.Panel2.SuspendLayout
  771. Me.SplitContainer61.SuspendLayout
  772. CType(Me.SplitContainer62, System.ComponentModel.ISupportInitialize).BeginInit
  773. Me.SplitContainer62.Panel1.SuspendLayout
  774. Me.SplitContainer62.Panel2.SuspendLayout
  775. Me.SplitContainer62.SuspendLayout
  776. CType(Me.SplitContainer63, System.ComponentModel.ISupportInitialize).BeginInit
  777. Me.SplitContainer63.Panel1.SuspendLayout
  778. Me.SplitContainer63.Panel2.SuspendLayout
  779. Me.SplitContainer63.SuspendLayout
  780. CType(Me.SplitContainer64, System.ComponentModel.ISupportInitialize).BeginInit
  781. Me.SplitContainer64.Panel1.SuspendLayout
  782. Me.SplitContainer64.Panel2.SuspendLayout
  783. Me.SplitContainer64.SuspendLayout
  784. CType(Me.SplitContainer65, System.ComponentModel.ISupportInitialize).BeginInit
  785. Me.SplitContainer65.Panel1.SuspendLayout
  786. Me.SplitContainer65.Panel2.SuspendLayout
  787. Me.SplitContainer65.SuspendLayout
  788. CType(Me.SplitContainer66, System.ComponentModel.ISupportInitialize).BeginInit
  789. Me.SplitContainer66.Panel1.SuspendLayout
  790. Me.SplitContainer66.Panel2.SuspendLayout
  791. Me.SplitContainer66.SuspendLayout
  792. CType(Me.SplitContainer67, System.ComponentModel.ISupportInitialize).BeginInit
  793. Me.SplitContainer67.Panel1.SuspendLayout
  794. Me.SplitContainer67.Panel2.SuspendLayout
  795. Me.SplitContainer67.SuspendLayout
  796. Me.減項總計_P.SuspendLayout
  797. CType(Me.SplitContainer28, System.ComponentModel.ISupportInitialize).BeginInit
  798. Me.SplitContainer28.Panel1.SuspendLayout
  799. Me.SplitContainer28.Panel2.SuspendLayout
  800. Me.SplitContainer28.SuspendLayout
  801. CType(Me.SplitContainer29, System.ComponentModel.ISupportInitialize).BeginInit
  802. Me.SplitContainer29.Panel1.SuspendLayout
  803. Me.SplitContainer29.Panel2.SuspendLayout
  804. Me.SplitContainer29.SuspendLayout
  805. CType(Me.SplitContainer30, System.ComponentModel.ISupportInitialize).BeginInit
  806. Me.SplitContainer30.Panel1.SuspendLayout
  807. Me.SplitContainer30.Panel2.SuspendLayout
  808. Me.SplitContainer30.SuspendLayout
  809. CType(Me.SplitContainer31, System.ComponentModel.ISupportInitialize).BeginInit
  810. Me.SplitContainer31.Panel1.SuspendLayout
  811. Me.SplitContainer31.Panel2.SuspendLayout
  812. Me.SplitContainer31.SuspendLayout
  813. CType(Me.SplitContainer32, System.ComponentModel.ISupportInitialize).BeginInit
  814. Me.SplitContainer32.Panel1.SuspendLayout
  815. Me.SplitContainer32.Panel2.SuspendLayout
  816. Me.SplitContainer32.SuspendLayout
  817. CType(Me.SplitContainer33, System.ComponentModel.ISupportInitialize).BeginInit
  818. Me.SplitContainer33.Panel1.SuspendLayout
  819. Me.SplitContainer33.Panel2.SuspendLayout
  820. Me.SplitContainer33.SuspendLayout
  821. CType(Me.SplitContainer34, System.ComponentModel.ISupportInitialize).BeginInit
  822. Me.SplitContainer34.Panel1.SuspendLayout
  823. Me.SplitContainer34.Panel2.SuspendLayout
  824. Me.SplitContainer34.SuspendLayout
  825. CType(Me.SplitContainer35, System.ComponentModel.ISupportInitialize).BeginInit
  826. Me.SplitContainer35.Panel1.SuspendLayout
  827. Me.SplitContainer35.Panel2.SuspendLayout
  828. Me.SplitContainer35.SuspendLayout
  829. CType(Me.SplitContainer36, System.ComponentModel.ISupportInitialize).BeginInit
  830. Me.SplitContainer36.Panel1.SuspendLayout
  831. Me.SplitContainer36.Panel2.SuspendLayout
  832. Me.SplitContainer36.SuspendLayout
  833. CType(Me.SplitContainer37, System.ComponentModel.ISupportInitialize).BeginInit
  834. Me.SplitContainer37.Panel1.SuspendLayout
  835. Me.SplitContainer37.Panel2.SuspendLayout
  836. Me.SplitContainer37.SuspendLayout
  837. CType(Me.SplitContainer38, System.ComponentModel.ISupportInitialize).BeginInit
  838. Me.SplitContainer38.Panel1.SuspendLayout
  839. Me.SplitContainer38.Panel2.SuspendLayout
  840. Me.SplitContainer38.SuspendLayout
  841. CType(Me.SplitContainer39, System.ComponentModel.ISupportInitialize).BeginInit
  842. Me.SplitContainer39.Panel1.SuspendLayout
  843. Me.SplitContainer39.Panel2.SuspendLayout
  844. Me.SplitContainer39.SuspendLayout
  845. CType(Me.SplitContainer40, System.ComponentModel.ISupportInitialize).BeginInit
  846. Me.SplitContainer40.Panel1.SuspendLayout
  847. Me.SplitContainer40.Panel2.SuspendLayout
  848. Me.SplitContainer40.SuspendLayout
  849. Me.加項總計_P.SuspendLayout
  850. CType(Me.SplitContainer15, System.ComponentModel.ISupportInitialize).BeginInit
  851. Me.SplitContainer15.Panel1.SuspendLayout
  852. Me.SplitContainer15.Panel2.SuspendLayout
  853. Me.SplitContainer15.SuspendLayout
  854. CType(Me.SplitContainer16, System.ComponentModel.ISupportInitialize).BeginInit
  855. Me.SplitContainer16.Panel1.SuspendLayout
  856. Me.SplitContainer16.Panel2.SuspendLayout
  857. Me.SplitContainer16.SuspendLayout
  858. CType(Me.SplitContainer19, System.ComponentModel.ISupportInitialize).BeginInit
  859. Me.SplitContainer19.Panel1.SuspendLayout
  860. Me.SplitContainer19.Panel2.SuspendLayout
  861. Me.SplitContainer19.SuspendLayout
  862. CType(Me.SplitContainer17, System.ComponentModel.ISupportInitialize).BeginInit
  863. Me.SplitContainer17.Panel1.SuspendLayout
  864. Me.SplitContainer17.Panel2.SuspendLayout
  865. Me.SplitContainer17.SuspendLayout
  866. CType(Me.SplitContainer20, System.ComponentModel.ISupportInitialize).BeginInit
  867. Me.SplitContainer20.Panel1.SuspendLayout
  868. Me.SplitContainer20.Panel2.SuspendLayout
  869. Me.SplitContainer20.SuspendLayout
  870. CType(Me.SplitContainer18, System.ComponentModel.ISupportInitialize).BeginInit
  871. Me.SplitContainer18.Panel1.SuspendLayout
  872. Me.SplitContainer18.Panel2.SuspendLayout
  873. Me.SplitContainer18.SuspendLayout
  874. CType(Me.SplitContainer21, System.ComponentModel.ISupportInitialize).BeginInit
  875. Me.SplitContainer21.Panel1.SuspendLayout
  876. Me.SplitContainer21.Panel2.SuspendLayout
  877. Me.SplitContainer21.SuspendLayout
  878. CType(Me.SplitContainer22, System.ComponentModel.ISupportInitialize).BeginInit
  879. Me.SplitContainer22.Panel1.SuspendLayout
  880. Me.SplitContainer22.Panel2.SuspendLayout
  881. Me.SplitContainer22.SuspendLayout
  882. CType(Me.SplitContainer23, System.ComponentModel.ISupportInitialize).BeginInit
  883. Me.SplitContainer23.Panel1.SuspendLayout
  884. Me.SplitContainer23.Panel2.SuspendLayout
  885. Me.SplitContainer23.SuspendLayout
  886. CType(Me.SplitContainer24, System.ComponentModel.ISupportInitialize).BeginInit
  887. Me.SplitContainer24.Panel1.SuspendLayout
  888. Me.SplitContainer24.Panel2.SuspendLayout
  889. Me.SplitContainer24.SuspendLayout
  890. CType(Me.SplitContainer25, System.ComponentModel.ISupportInitialize).BeginInit
  891. Me.SplitContainer25.Panel1.SuspendLayout
  892. Me.SplitContainer25.Panel2.SuspendLayout
  893. Me.SplitContainer25.SuspendLayout
  894. CType(Me.SplitContainer26, System.ComponentModel.ISupportInitialize).BeginInit
  895. Me.SplitContainer26.Panel1.SuspendLayout
  896. Me.SplitContainer26.Panel2.SuspendLayout
  897. Me.SplitContainer26.SuspendLayout
  898. CType(Me.SplitContainer27, System.ComponentModel.ISupportInitialize).BeginInit
  899. Me.SplitContainer27.Panel1.SuspendLayout
  900. Me.SplitContainer27.Panel2.SuspendLayout
  901. Me.SplitContainer27.SuspendLayout
  902. Me.其它_P.SuspendLayout
  903. CType(Me.SplitContainer41, System.ComponentModel.ISupportInitialize).BeginInit
  904. Me.SplitContainer41.Panel1.SuspendLayout
  905. Me.SplitContainer41.Panel2.SuspendLayout
  906. Me.SplitContainer41.SuspendLayout
  907. CType(Me.SplitContainer42, System.ComponentModel.ISupportInitialize).BeginInit
  908. Me.SplitContainer42.Panel1.SuspendLayout
  909. Me.SplitContainer42.Panel2.SuspendLayout
  910. Me.SplitContainer42.SuspendLayout
  911. CType(Me.SplitContainer43, System.ComponentModel.ISupportInitialize).BeginInit
  912. Me.SplitContainer43.Panel1.SuspendLayout
  913. Me.SplitContainer43.Panel2.SuspendLayout
  914. Me.SplitContainer43.SuspendLayout
  915. CType(Me.SplitContainer44, System.ComponentModel.ISupportInitialize).BeginInit
  916. Me.SplitContainer44.Panel1.SuspendLayout
  917. Me.SplitContainer44.Panel2.SuspendLayout
  918. Me.SplitContainer44.SuspendLayout
  919. CType(Me.SplitContainer45, System.ComponentModel.ISupportInitialize).BeginInit
  920. Me.SplitContainer45.Panel1.SuspendLayout
  921. Me.SplitContainer45.Panel2.SuspendLayout
  922. Me.SplitContainer45.SuspendLayout
  923. CType(Me.SplitContainer46, System.ComponentModel.ISupportInitialize).BeginInit
  924. Me.SplitContainer46.Panel1.SuspendLayout
  925. Me.SplitContainer46.Panel2.SuspendLayout
  926. Me.SplitContainer46.SuspendLayout
  927. CType(Me.SplitContainer47, System.ComponentModel.ISupportInitialize).BeginInit
  928. Me.SplitContainer47.Panel1.SuspendLayout
  929. Me.SplitContainer47.Panel2.SuspendLayout
  930. Me.SplitContainer47.SuspendLayout
  931. CType(Me.SplitContainer48, System.ComponentModel.ISupportInitialize).BeginInit
  932. Me.SplitContainer48.Panel1.SuspendLayout
  933. Me.SplitContainer48.Panel2.SuspendLayout
  934. Me.SplitContainer48.SuspendLayout
  935. CType(Me.SplitContainer49, System.ComponentModel.ISupportInitialize).BeginInit
  936. Me.SplitContainer49.Panel1.SuspendLayout
  937. Me.SplitContainer49.Panel2.SuspendLayout
  938. Me.SplitContainer49.SuspendLayout
  939. CType(Me.SplitContainer81, System.ComponentModel.ISupportInitialize).BeginInit
  940. Me.SplitContainer81.Panel1.SuspendLayout
  941. Me.SplitContainer81.Panel2.SuspendLayout
  942. Me.SplitContainer81.SuspendLayout
  943. Me.Panel13.SuspendLayout
  944. Me.SuspendLayout
  945. '
  946. 'TabControl1
  947. '
  948. Me.TabControl1.Appearance = System.Windows.Forms.TabAppearance.Buttons
  949. Me.TabControl1.Controls.Add(Me.TabPage1)
  950. Me.TabControl1.Controls.Add(Me.TabPage2)
  951. Me.TabControl1.Dock = System.Windows.Forms.DockStyle.Fill
  952. Me.TabControl1.Location = New System.Drawing.Point(0, 0)
  953. Me.TabControl1.Name = "TabControl1"
  954. Me.TabControl1.SelectedIndex = 0
  955. Me.TabControl1.Size = New System.Drawing.Size(1301, 651)
  956. Me.TabControl1.TabIndex = 1
  957. '
  958. 'TabPage1
  959. '
  960. Me.TabPage1.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D
  961. Me.TabPage1.Controls.Add(Me.公司負擔成本_ch)
  962. Me.TabPage1.Controls.Add(Me.薪資加項_ch)
  963. Me.TabPage1.Controls.Add(Me.比對後_bt)
  964. Me.TabPage1.Controls.Add(Me.比對前_bt)
  965. Me.TabPage1.Controls.Add(Me.人員向後_bt)
  966. Me.TabPage1.Controls.Add(Me.人員向前_bt)
  967. Me.TabPage1.Controls.Add(Me.薪資條_bt)
  968. Me.TabPage1.Controls.Add(Me.其它_ch)
  969. Me.TabPage1.Controls.Add(Me.存檔3_bt)
  970. Me.TabPage1.Controls.Add(Me.減項總計_ch)
  971. Me.TabPage1.Controls.Add(Me.加項總計_ch)
  972. Me.TabPage1.Controls.Add(Me.時數表_ch)
  973. Me.TabPage1.Controls.Add(Me.主表_ch)
  974. Me.TabPage1.Controls.Add(Me.重讀_bt)
  975. Me.TabPage1.Controls.Add(Me.設定1_bt)
  976. Me.TabPage1.Controls.Add(Me.月份_cb)
  977. Me.TabPage1.Controls.Add(Me.年份_cb)
  978. Me.TabPage1.Controls.Add(Me.Label6)
  979. Me.TabPage1.Controls.Add(Me.Panel1)
  980. Me.TabPage1.Controls.Add(Me.Panel3)
  981. Me.TabPage1.Controls.Add(Me.Panel4)
  982. Me.TabPage1.Controls.Add(Me.Panel2)
  983. Me.TabPage1.Location = New System.Drawing.Point(4, 28)
  984. Me.TabPage1.Name = "TabPage1"
  985. Me.TabPage1.Padding = New System.Windows.Forms.Padding(3)
  986. Me.TabPage1.Size = New System.Drawing.Size(1293, 619)
  987. Me.TabPage1.TabIndex = 0
  988. Me.TabPage1.Text = "仁寶系統-對接資料"
  989. Me.TabPage1.UseVisualStyleBackColor = True
  990. '
  991. '公司負擔成本_ch
  992. '
  993. Me.公司負擔成本_ch.AutoSize = True
  994. Me.公司負擔成本_ch.ForeColor = System.Drawing.Color.Purple
  995. Me.公司負擔成本_ch.Location = New System.Drawing.Point(706, 4)
  996. Me.公司負擔成本_ch.Name = "公司負擔成本_ch"
  997. Me.公司負擔成本_ch.Size = New System.Drawing.Size(98, 20)
  998. Me.公司負擔成本_ch.TabIndex = 1735
  999. Me.公司負擔成本_ch.Text = "公司負擔成本"
  1000. Me.公司負擔成本_ch.UseVisualStyleBackColor = True
  1001. '
  1002. '薪資加項_ch
  1003. '
  1004. Me.薪資加項_ch.AutoSize = True
  1005. Me.薪資加項_ch.ForeColor = System.Drawing.Color.Red
  1006. Me.薪資加項_ch.Location = New System.Drawing.Point(232, 4)
  1007. Me.薪資加項_ch.Name = "薪資加項_ch"
  1008. Me.薪資加項_ch.Size = New System.Drawing.Size(156, 20)
  1009. Me.薪資加項_ch.TabIndex = 1734
  1010. Me.薪資加項_ch.Text = "薪資加項(D)-影響加班費"
  1011. Me.薪資加項_ch.UseVisualStyleBackColor = True
  1012. '
  1013. '比對後_bt
  1014. '
  1015. Me.比對後_bt.BackgroundImage = Global.ICS_ASMS_ERP_SYS.My.Resources.Resources.下一頁
  1016. Me.比對後_bt.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom
  1017. Me.比對後_bt.Location = New System.Drawing.Point(1002, 0)
  1018. Me.比對後_bt.Name = "比對後_bt"
  1019. Me.比對後_bt.Size = New System.Drawing.Size(30, 26)
  1020. Me.比對後_bt.TabIndex = 1733
  1021. Me.比對後_bt.UseVisualStyleBackColor = True
  1022. '
  1023. '比對前_bt
  1024. '
  1025. Me.比對前_bt.BackgroundImage = Global.ICS_ASMS_ERP_SYS.My.Resources.Resources.上一頁
  1026. Me.比對前_bt.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom
  1027. Me.比對前_bt.Location = New System.Drawing.Point(971, 0)
  1028. Me.比對前_bt.Name = "比對前_bt"
  1029. Me.比對前_bt.Size = New System.Drawing.Size(30, 26)
  1030. Me.比對前_bt.TabIndex = 1732
  1031. Me.比對前_bt.UseVisualStyleBackColor = True
  1032. '
  1033. '人員向後_bt
  1034. '
  1035. Me.人員向後_bt.BackgroundImage = Global.ICS_ASMS_ERP_SYS.My.Resources.Resources.arrow_right
  1036. Me.人員向後_bt.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom
  1037. Me.人員向後_bt.Font = New System.Drawing.Font("微軟正黑體", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1038. Me.人員向後_bt.ForeColor = System.Drawing.Color.Blue
  1039. Me.人員向後_bt.Location = New System.Drawing.Point(1111, 0)
  1040. Me.人員向後_bt.Name = "人員向後_bt"
  1041. Me.人員向後_bt.Size = New System.Drawing.Size(30, 26)
  1042. Me.人員向後_bt.TabIndex = 1730
  1043. Me.人員向後_bt.UseVisualStyleBackColor = True
  1044. '
  1045. '人員向前_bt
  1046. '
  1047. Me.人員向前_bt.BackgroundImage = Global.ICS_ASMS_ERP_SYS.My.Resources.Resources.arrow_left
  1048. Me.人員向前_bt.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom
  1049. Me.人員向前_bt.Font = New System.Drawing.Font("微軟正黑體", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1050. Me.人員向前_bt.ForeColor = System.Drawing.Color.Blue
  1051. Me.人員向前_bt.Location = New System.Drawing.Point(1081, 0)
  1052. Me.人員向前_bt.Name = "人員向前_bt"
  1053. Me.人員向前_bt.Size = New System.Drawing.Size(30, 26)
  1054. Me.人員向前_bt.TabIndex = 1731
  1055. Me.人員向前_bt.UseVisualStyleBackColor = True
  1056. '
  1057. '薪資條_bt
  1058. '
  1059. Me.薪資條_bt.BackgroundImage = Global.ICS_ASMS_ERP_SYS.My.Resources.Resources.Report1
  1060. Me.薪資條_bt.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom
  1061. Me.薪資條_bt.Location = New System.Drawing.Point(1051, 0)
  1062. Me.薪資條_bt.Name = "薪資條_bt"
  1063. Me.薪資條_bt.Size = New System.Drawing.Size(30, 26)
  1064. Me.薪資條_bt.TabIndex = 1420
  1065. Me.薪資條_bt.UseVisualStyleBackColor = True
  1066. '
  1067. '其它_ch
  1068. '
  1069. Me.其它_ch.AutoSize = True
  1070. Me.其它_ch.Location = New System.Drawing.Point(876, 4)
  1071. Me.其它_ch.Name = "其它_ch"
  1072. Me.其它_ch.Size = New System.Drawing.Size(50, 20)
  1073. Me.其它_ch.TabIndex = 1419
  1074. Me.其它_ch.Text = "其它"
  1075. Me.其它_ch.UseVisualStyleBackColor = True
  1076. '
  1077. '存檔3_bt
  1078. '
  1079. Me.存檔3_bt.BackgroundImage = Global.ICS_ASMS_ERP_SYS.My.Resources.Resources.SAVER
  1080. Me.存檔3_bt.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom
  1081. Me.存檔3_bt.Location = New System.Drawing.Point(940, 0)
  1082. Me.存檔3_bt.Name = "存檔3_bt"
  1083. Me.存檔3_bt.Size = New System.Drawing.Size(30, 26)
  1084. Me.存檔3_bt.TabIndex = 1417
  1085. Me.存檔3_bt.UseVisualStyleBackColor = True
  1086. '
  1087. '減項總計_ch
  1088. '
  1089. Me.減項總計_ch.AutoSize = True
  1090. Me.減項總計_ch.ForeColor = System.Drawing.Color.Green
  1091. Me.減項總計_ch.Location = New System.Drawing.Point(550, 4)
  1092. Me.減項總計_ch.Name = "減項總計_ch"
  1093. Me.減項總計_ch.Size = New System.Drawing.Size(155, 20)
  1094. Me.減項總計_ch.TabIndex = 1416
  1095. Me.減項總計_ch.Text = "減項總計(A)-不影響加班"
  1096. Me.減項總計_ch.UseVisualStyleBackColor = True
  1097. '
  1098. '加項總計_ch
  1099. '
  1100. Me.加項總計_ch.AutoSize = True
  1101. Me.加項總計_ch.ForeColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
  1102. Me.加項總計_ch.Location = New System.Drawing.Point(390, 4)
  1103. Me.加項總計_ch.Name = "加項總計_ch"
  1104. Me.加項總計_ch.Size = New System.Drawing.Size(154, 20)
  1105. Me.加項總計_ch.TabIndex = 1415
  1106. Me.加項總計_ch.Text = "加項總計(B)-不影響加班"
  1107. Me.加項總計_ch.UseVisualStyleBackColor = True
  1108. '
  1109. '時數表_ch
  1110. '
  1111. Me.時數表_ch.AutoSize = True
  1112. Me.時數表_ch.Location = New System.Drawing.Point(808, 4)
  1113. Me.時數表_ch.Name = "時數表_ch"
  1114. Me.時數表_ch.Size = New System.Drawing.Size(62, 20)
  1115. Me.時數表_ch.TabIndex = 1414
  1116. Me.時數表_ch.Text = "時數表"
  1117. Me.時數表_ch.UseVisualStyleBackColor = True
  1118. '
  1119. '主表_ch
  1120. '
  1121. Me.主表_ch.AutoSize = True
  1122. Me.主表_ch.Checked = True
  1123. Me.主表_ch.CheckState = System.Windows.Forms.CheckState.Checked
  1124. Me.主表_ch.Location = New System.Drawing.Point(176, 4)
  1125. Me.主表_ch.Name = "主表_ch"
  1126. Me.主表_ch.Size = New System.Drawing.Size(50, 20)
  1127. Me.主表_ch.TabIndex = 1413
  1128. Me.主表_ch.Text = "主表"
  1129. Me.主表_ch.UseVisualStyleBackColor = True
  1130. '
  1131. '重讀_bt
  1132. '
  1133. Me.重讀_bt.BackgroundImage = Global.ICS_ASMS_ERP_SYS.My.Resources.Resources.renew
  1134. Me.重讀_bt.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom
  1135. Me.重讀_bt.Location = New System.Drawing.Point(1157, 0)
  1136. Me.重讀_bt.Name = "重讀_bt"
  1137. Me.重讀_bt.Size = New System.Drawing.Size(30, 26)
  1138. Me.重讀_bt.TabIndex = 1412
  1139. Me.重讀_bt.UseVisualStyleBackColor = True
  1140. '
  1141. '設定1_bt
  1142. '
  1143. Me.設定1_bt.BackgroundImage = Global.ICS_ASMS_ERP_SYS.My.Resources.Resources.system
  1144. Me.設定1_bt.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom
  1145. Me.設定1_bt.Location = New System.Drawing.Point(1188, 0)
  1146. Me.設定1_bt.Name = "設定1_bt"
  1147. Me.設定1_bt.Size = New System.Drawing.Size(30, 26)
  1148. Me.設定1_bt.TabIndex = 1411
  1149. Me.設定1_bt.UseVisualStyleBackColor = True
  1150. '
  1151. '月份_cb
  1152. '
  1153. Me.月份_cb.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
  1154. Me.月份_cb.FormattingEnabled = True
  1155. Me.月份_cb.Items.AddRange(New Object() {"", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12"})
  1156. Me.月份_cb.Location = New System.Drawing.Point(123, 2)
  1157. Me.月份_cb.Name = "月份_cb"
  1158. Me.月份_cb.Size = New System.Drawing.Size(47, 24)
  1159. Me.月份_cb.TabIndex = 18
  1160. '
  1161. '年份_cb
  1162. '
  1163. Me.年份_cb.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
  1164. Me.年份_cb.FormattingEnabled = True
  1165. Me.年份_cb.Location = New System.Drawing.Point(62, 2)
  1166. Me.年份_cb.Name = "年份_cb"
  1167. Me.年份_cb.Size = New System.Drawing.Size(58, 24)
  1168. Me.年份_cb.TabIndex = 17
  1169. '
  1170. 'Label6
  1171. '
  1172. Me.Label6.AutoSize = True
  1173. Me.Label6.Location = New System.Drawing.Point(6, 6)
  1174. Me.Label6.Name = "Label6"
  1175. Me.Label6.Size = New System.Drawing.Size(55, 16)
  1176. Me.Label6.TabIndex = 16
  1177. Me.Label6.Text = "導入日期"
  1178. '
  1179. 'Panel4
  1180. '
  1181. Me.Panel4.Anchor = CType((((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
  1182. Or System.Windows.Forms.AnchorStyles.Left) _
  1183. Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  1184. Me.Panel4.BackColor = System.Drawing.Color.White
  1185. Me.Panel4.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  1186. Me.Panel4.Controls.Add(Me.列印_tb)
  1187. Me.Panel4.Controls.Add(Me.Panel11)
  1188. Me.Panel4.Controls.Add(Me.Panel14)
  1189. Me.Panel4.Location = New System.Drawing.Point(-1, 26)
  1190. Me.Panel4.Name = "Panel4"
  1191. Me.Panel4.Size = New System.Drawing.Size(1292, 584)
  1192. Me.Panel4.TabIndex = 1421
  1193. '
  1194. '列印_tb
  1195. '
  1196. Me.列印_tb.BackgroundImage = Global.ICS_ASMS_ERP_SYS.My.Resources.Resources.print
  1197. Me.列印_tb.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom
  1198. Me.列印_tb.Location = New System.Drawing.Point(1130, 4)
  1199. Me.列印_tb.Name = "列印_tb"
  1200. Me.列印_tb.Size = New System.Drawing.Size(70, 58)
  1201. Me.列印_tb.TabIndex = 1418
  1202. Me.列印_tb.UseVisualStyleBackColor = True
  1203. '
  1204. 'Panel11
  1205. '
  1206. Me.Panel11.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  1207. Me.Panel11.Controls.Add(Me.Label69)
  1208. Me.Panel11.Controls.Add(Me.小42_lb)
  1209. Me.Panel11.Controls.Add(Me.正常轉時_lb)
  1210. Me.Panel11.Controls.Add(Me.Label58)
  1211. Me.Panel11.Controls.Add(Me.最低薪資_lb)
  1212. Me.Panel11.Controls.Add(Me.DateTimePicker1)
  1213. Me.Panel11.Controls.Add(Me.Label66)
  1214. Me.Panel11.Controls.Add(Me.公司名_lb)
  1215. Me.Panel11.Controls.Add(Me.Label173)
  1216. Me.Panel11.Controls.Add(Me.Label32)
  1217. Me.Panel11.Controls.Add(Me.Panel10)
  1218. Me.Panel11.Controls.Add(Me.Label30)
  1219. Me.Panel11.Controls.Add(Me.Panel9)
  1220. Me.Panel11.Controls.Add(Me.姓名_lb)
  1221. Me.Panel11.Controls.Add(Me.Panel8)
  1222. Me.Panel11.Controls.Add(Me.年_lb)
  1223. Me.Panel11.Controls.Add(Me.Panel7)
  1224. Me.Panel11.Controls.Add(Me.Label34)
  1225. Me.Panel11.Controls.Add(Me.Panel6)
  1226. Me.Panel11.Controls.Add(Me.月_lb)
  1227. Me.Panel11.Controls.Add(Me.Panel5)
  1228. Me.Panel11.Controls.Add(Me.Label36)
  1229. Me.Panel11.Controls.Add(Me.Label37)
  1230. Me.Panel11.Controls.Add(Me.Label68)
  1231. Me.Panel11.Controls.Add(Me.Label65)
  1232. Me.Panel11.Controls.Add(Me.Label64)
  1233. Me.Panel11.Controls.Add(Me.Label63)
  1234. Me.Panel11.Controls.Add(Me.Label62)
  1235. Me.Panel11.Controls.Add(Me.Label61)
  1236. Me.Panel11.Controls.Add(Me.正常1_lb)
  1237. Me.Panel11.Controls.Add(Me.AA2_lb)
  1238. Me.Panel11.Controls.Add(Me.正常工_lb)
  1239. Me.Panel11.Controls.Add(Me.平日轉_lb)
  1240. Me.Panel11.Controls.Add(Me.Label134)
  1241. Me.Panel11.Controls.Add(Me.平時新_lb)
  1242. Me.Panel11.Controls.Add(Me.Label174)
  1243. Me.Panel11.Location = New System.Drawing.Point(0, -1)
  1244. Me.Panel11.Name = "Panel11"
  1245. Me.Panel11.Size = New System.Drawing.Size(1125, 577)
  1246. Me.Panel11.TabIndex = 49
  1247. '
  1248. 'Label69
  1249. '
  1250. Me.Label69.BackColor = System.Drawing.Color.LightGray
  1251. Me.Label69.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  1252. Me.Label69.Location = New System.Drawing.Point(7, 297)
  1253. Me.Label69.Name = "Label69"
  1254. Me.Label69.Size = New System.Drawing.Size(540, 26)
  1255. Me.Label69.TabIndex = 81
  1256. Me.Label69.Text = "轉場加班時薪計算 (轉場時薪 * 正常班轉場時數) "
  1257. Me.Label69.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  1258. '
  1259. '小42_lb
  1260. '
  1261. Me.小42_lb.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  1262. Me.小42_lb.Location = New System.Drawing.Point(97, 387)
  1263. Me.小42_lb.Name = "小42_lb"
  1264. Me.小42_lb.Size = New System.Drawing.Size(91, 21)
  1265. Me.小42_lb.TabIndex = 76
  1266. Me.小42_lb.Text = "0"
  1267. Me.小42_lb.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  1268. '
  1269. '正常轉時_lb
  1270. '
  1271. Me.正常轉時_lb.BackColor = System.Drawing.Color.White
  1272. Me.正常轉時_lb.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  1273. Me.正常轉時_lb.Location = New System.Drawing.Point(478, 321)
  1274. Me.正常轉時_lb.Name = "正常轉時_lb"
  1275. Me.正常轉時_lb.Size = New System.Drawing.Size(69, 22)
  1276. Me.正常轉時_lb.TabIndex = 80
  1277. Me.正常轉時_lb.Text = "0"
  1278. Me.正常轉時_lb.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  1279. '
  1280. 'Label58
  1281. '
  1282. Me.Label58.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  1283. Me.Label58.Location = New System.Drawing.Point(97, 367)
  1284. Me.Label58.Name = "Label58"
  1285. Me.Label58.Size = New System.Drawing.Size(91, 21)
  1286. Me.Label58.TabIndex = 75
  1287. Me.Label58.Text = "薪資加項"
  1288. Me.Label58.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  1289. '
  1290. '最低薪資_lb
  1291. '
  1292. Me.最低薪資_lb.BackColor = System.Drawing.Color.White
  1293. Me.最低薪資_lb.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  1294. Me.最低薪資_lb.Location = New System.Drawing.Point(208, 321)
  1295. Me.最低薪資_lb.Name = "最低薪資_lb"
  1296. Me.最低薪資_lb.Size = New System.Drawing.Size(69, 22)
  1297. Me.最低薪資_lb.TabIndex = 78
  1298. Me.最低薪資_lb.Text = "0"
  1299. Me.最低薪資_lb.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  1300. '
  1301. 'DateTimePicker1
  1302. '
  1303. Me.DateTimePicker1.CustomFormat = "yyyy/MM/dd"
  1304. Me.DateTimePicker1.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1305. Me.DateTimePicker1.Format = System.Windows.Forms.DateTimePickerFormat.Custom
  1306. Me.DateTimePicker1.Location = New System.Drawing.Point(1013, 35)
  1307. Me.DateTimePicker1.Name = "DateTimePicker1"
  1308. Me.DateTimePicker1.Size = New System.Drawing.Size(103, 25)
  1309. Me.DateTimePicker1.TabIndex = 49
  1310. '
  1311. 'Label66
  1312. '
  1313. Me.Label66.BackColor = System.Drawing.Color.White
  1314. Me.Label66.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  1315. Me.Label66.Location = New System.Drawing.Point(7, 321)
  1316. Me.Label66.Name = "Label66"
  1317. Me.Label66.Size = New System.Drawing.Size(202, 22)
  1318. Me.Label66.TabIndex = 77
  1319. Me.Label66.Text = "轉場時薪"
  1320. Me.Label66.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  1321. '
  1322. '公司名_lb
  1323. '
  1324. Me.公司名_lb.Font = New System.Drawing.Font("微軟正黑體", 18.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1325. Me.公司名_lb.Location = New System.Drawing.Point(2, 1)
  1326. Me.公司名_lb.Name = "公司名_lb"
  1327. Me.公司名_lb.Size = New System.Drawing.Size(1119, 33)
  1328. Me.公司名_lb.TabIndex = 0
  1329. Me.公司名_lb.Text = "XXXXXX 薪資條"
  1330. Me.公司名_lb.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  1331. '
  1332. 'Label173
  1333. '
  1334. Me.Label173.BackColor = System.Drawing.Color.LightGray
  1335. Me.Label173.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1336. Me.Label173.Location = New System.Drawing.Point(714, 413)
  1337. Me.Label173.Name = "Label173"
  1338. Me.Label173.Size = New System.Drawing.Size(32, 158)
  1339. Me.Label173.TabIndex = 47
  1340. Me.Label173.Text = "備註"
  1341. Me.Label173.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  1342. '
  1343. 'Label32
  1344. '
  1345. Me.Label32.AutoSize = True
  1346. Me.Label32.Font = New System.Drawing.Font("微軟正黑體", 12.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1347. Me.Label32.Location = New System.Drawing.Point(164, 37)
  1348. Me.Label32.Name = "Label32"
  1349. Me.Label32.Size = New System.Drawing.Size(85, 20)
  1350. Me.Label32.TabIndex = 3
  1351. Me.Label32.Text = "統計月份 : "
  1352. '
  1353. 'Panel10
  1354. '
  1355. Me.Panel10.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  1356. Me.Panel10.Controls.Add(Me.Label108)
  1357. Me.Panel10.Controls.Add(Me.小5_lb)
  1358. Me.Panel10.Controls.Add(Me.Label107)
  1359. Me.Panel10.Controls.Add(Me.轉費5_tb)
  1360. Me.Panel10.Controls.Add(Me.轉薪5_lb)
  1361. Me.Panel10.Controls.Add(Me.轉時5_lb)
  1362. Me.Panel10.Controls.Add(Me.轉費4_tb)
  1363. Me.Panel10.Controls.Add(Me.轉薪4_lb)
  1364. Me.Panel10.Controls.Add(Me.轉時4_lb)
  1365. Me.Panel10.Controls.Add(Me.轉費3_tb)
  1366. Me.Panel10.Controls.Add(Me.轉薪3_lb)
  1367. Me.Panel10.Controls.Add(Me.轉時3_lb)
  1368. Me.Panel10.Controls.Add(Me.轉費2_tb)
  1369. Me.Panel10.Controls.Add(Me.轉薪2_lb)
  1370. Me.Panel10.Controls.Add(Me.轉時2_lb)
  1371. Me.Panel10.Controls.Add(Me.轉費1_tb)
  1372. Me.Panel10.Controls.Add(Me.Label94)
  1373. Me.Panel10.Controls.Add(Me.轉薪1_lb)
  1374. Me.Panel10.Controls.Add(Me.轉時1_lb)
  1375. Me.Panel10.Controls.Add(Me.Label104)
  1376. Me.Panel10.Controls.Add(Me.Label105)
  1377. Me.Panel10.Controls.Add(Me.小1_lb)
  1378. Me.Panel10.Controls.Add(Me.Label171)
  1379. Me.Panel10.Controls.Add(Me.費5_tb)
  1380. Me.Panel10.Controls.Add(Me.薪5_lb)
  1381. Me.Panel10.Controls.Add(Me.時5_lb)
  1382. Me.Panel10.Controls.Add(Me.倍5_lb)
  1383. Me.Panel10.Controls.Add(Me.Label165)
  1384. Me.Panel10.Controls.Add(Me.費4_tb)
  1385. Me.Panel10.Controls.Add(Me.薪4_lb)
  1386. Me.Panel10.Controls.Add(Me.時4_lb)
  1387. Me.Panel10.Controls.Add(Me.倍4_lb)
  1388. Me.Panel10.Controls.Add(Me.Label160)
  1389. Me.Panel10.Controls.Add(Me.費3_tb)
  1390. Me.Panel10.Controls.Add(Me.薪3_lb)
  1391. Me.Panel10.Controls.Add(Me.時3_lb)
  1392. Me.Panel10.Controls.Add(Me.倍3_lb)
  1393. Me.Panel10.Controls.Add(Me.Label155)
  1394. Me.Panel10.Controls.Add(Me.費2_tb)
  1395. Me.Panel10.Controls.Add(Me.薪2_lb)
  1396. Me.Panel10.Controls.Add(Me.時2_lb)
  1397. Me.Panel10.Controls.Add(Me.倍2_lb)
  1398. Me.Panel10.Controls.Add(Me.Label150)
  1399. Me.Panel10.Controls.Add(Me.費1_tb)
  1400. Me.Panel10.Controls.Add(Me.Label136)
  1401. Me.Panel10.Controls.Add(Me.薪1_lb)
  1402. Me.Panel10.Controls.Add(Me.時1_lb)
  1403. Me.Panel10.Controls.Add(Me.倍1_lb)
  1404. Me.Panel10.Controls.Add(Me.Label141)
  1405. Me.Panel10.Controls.Add(Me.Label142)
  1406. Me.Panel10.Controls.Add(Me.Label143)
  1407. Me.Panel10.Controls.Add(Me.Label144)
  1408. Me.Panel10.Controls.Add(Me.Label145)
  1409. Me.Panel10.Controls.Add(Me.Label146)
  1410. Me.Panel10.Location = New System.Drawing.Point(7, 413)
  1411. Me.Panel10.Name = "Panel10"
  1412. Me.Panel10.Size = New System.Drawing.Size(701, 158)
  1413. Me.Panel10.TabIndex = 15
  1414. '
  1415. 'Label108
  1416. '
  1417. Me.Label108.BackColor = System.Drawing.Color.LightGray
  1418. Me.Label108.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  1419. Me.Label108.Location = New System.Drawing.Point(432, -1)
  1420. Me.Label108.Name = "Label108"
  1421. Me.Label108.Size = New System.Drawing.Size(149, 26)
  1422. Me.Label108.TabIndex = 68
  1423. Me.Label108.Text = "轉場加班費計算"
  1424. Me.Label108.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  1425. '
  1426. '小5_lb
  1427. '
  1428. Me.小5_lb.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  1429. Me.小5_lb.Location = New System.Drawing.Point(618, -1)
  1430. Me.小5_lb.Name = "小5_lb"
  1431. Me.小5_lb.Size = New System.Drawing.Size(82, 26)
  1432. Me.小5_lb.TabIndex = 67
  1433. Me.小5_lb.Text = "0"
  1434. Me.小5_lb.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  1435. '
  1436. 'Label107
  1437. '
  1438. Me.Label107.BackColor = System.Drawing.Color.LightGray
  1439. Me.Label107.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  1440. Me.Label107.Location = New System.Drawing.Point(580, -1)
  1441. Me.Label107.Name = "Label107"
  1442. Me.Label107.Size = New System.Drawing.Size(39, 26)
  1443. Me.Label107.TabIndex = 66
  1444. Me.Label107.Text = "小計"
  1445. Me.Label107.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  1446. '
  1447. '轉費5_tb
  1448. '
  1449. Me.轉費5_tb.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  1450. Me.轉費5_tb.Location = New System.Drawing.Point(593, 134)
  1451. Me.轉費5_tb.Name = "轉費5_tb"
  1452. Me.轉費5_tb.Size = New System.Drawing.Size(107, 23)
  1453. Me.轉費5_tb.TabIndex = 65
  1454. Me.轉費5_tb.Text = "0"
  1455. Me.轉費5_tb.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  1456. '
  1457. '轉薪5_lb
  1458. '
  1459. Me.轉薪5_lb.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  1460. Me.轉薪5_lb.Location = New System.Drawing.Point(514, 134)
  1461. Me.轉薪5_lb.Name = "轉薪5_lb"
  1462. Me.轉薪5_lb.Size = New System.Drawing.Size(80, 23)
  1463. Me.轉薪5_lb.TabIndex = 64
  1464. Me.轉薪5_lb.Text = "0"
  1465. Me.轉薪5_lb.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  1466. '
  1467. '轉時5_lb
  1468. '
  1469. Me.轉時5_lb.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  1470. Me.轉時5_lb.Location = New System.Drawing.Point(432, 134)
  1471. Me.轉時5_lb.Name = "轉時5_lb"
  1472. Me.轉時5_lb.Size = New System.Drawing.Size(83, 23)
  1473. Me.轉時5_lb.TabIndex = 63
  1474. Me.轉時5_lb.Text = "0"
  1475. Me.轉時5_lb.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  1476. '
  1477. '轉費4_tb
  1478. '
  1479. Me.轉費4_tb.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  1480. Me.轉費4_tb.Location = New System.Drawing.Point(593, 112)
  1481. Me.轉費4_tb.Name = "轉費4_tb"
  1482. Me.轉費4_tb.Size = New System.Drawing.Size(107, 23)
  1483. Me.轉費4_tb.TabIndex = 62
  1484. Me.轉費4_tb.Text = "0"
  1485. Me.轉費4_tb.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  1486. '
  1487. '轉薪4_lb
  1488. '
  1489. Me.轉薪4_lb.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  1490. Me.轉薪4_lb.Location = New System.Drawing.Point(514, 112)
  1491. Me.轉薪4_lb.Name = "轉薪4_lb"
  1492. Me.轉薪4_lb.Size = New System.Drawing.Size(80, 23)
  1493. Me.轉薪4_lb.TabIndex = 61
  1494. Me.轉薪4_lb.Text = "0"
  1495. Me.轉薪4_lb.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  1496. '
  1497. '轉時4_lb
  1498. '
  1499. Me.轉時4_lb.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  1500. Me.轉時4_lb.Location = New System.Drawing.Point(432, 112)
  1501. Me.轉時4_lb.Name = "轉時4_lb"
  1502. Me.轉時4_lb.Size = New System.Drawing.Size(83, 23)
  1503. Me.轉時4_lb.TabIndex = 60
  1504. Me.轉時4_lb.Text = "0"
  1505. Me.轉時4_lb.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  1506. '
  1507. '轉費3_tb
  1508. '
  1509. Me.轉費3_tb.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  1510. Me.轉費3_tb.Location = New System.Drawing.Point(593, 90)
  1511. Me.轉費3_tb.Name = "轉費3_tb"
  1512. Me.轉費3_tb.Size = New System.Drawing.Size(107, 23)
  1513. Me.轉費3_tb.TabIndex = 59
  1514. Me.轉費3_tb.Text = "0"
  1515. Me.轉費3_tb.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  1516. '
  1517. '轉薪3_lb
  1518. '
  1519. Me.轉薪3_lb.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  1520. Me.轉薪3_lb.Location = New System.Drawing.Point(514, 90)
  1521. Me.轉薪3_lb.Name = "轉薪3_lb"
  1522. Me.轉薪3_lb.Size = New System.Drawing.Size(80, 23)
  1523. Me.轉薪3_lb.TabIndex = 58
  1524. Me.轉薪3_lb.Text = "0"
  1525. Me.轉薪3_lb.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  1526. '
  1527. '轉時3_lb
  1528. '
  1529. Me.轉時3_lb.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  1530. Me.轉時3_lb.Location = New System.Drawing.Point(432, 90)
  1531. Me.轉時3_lb.Name = "轉時3_lb"
  1532. Me.轉時3_lb.Size = New System.Drawing.Size(83, 23)
  1533. Me.轉時3_lb.TabIndex = 57
  1534. Me.轉時3_lb.Text = "0"
  1535. Me.轉時3_lb.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  1536. '
  1537. '轉費2_tb
  1538. '
  1539. Me.轉費2_tb.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  1540. Me.轉費2_tb.Location = New System.Drawing.Point(593, 68)
  1541. Me.轉費2_tb.Name = "轉費2_tb"
  1542. Me.轉費2_tb.Size = New System.Drawing.Size(107, 23)
  1543. Me.轉費2_tb.TabIndex = 56
  1544. Me.轉費2_tb.Text = "0"
  1545. Me.轉費2_tb.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  1546. '
  1547. '轉薪2_lb
  1548. '
  1549. Me.轉薪2_lb.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  1550. Me.轉薪2_lb.Location = New System.Drawing.Point(514, 68)
  1551. Me.轉薪2_lb.Name = "轉薪2_lb"
  1552. Me.轉薪2_lb.Size = New System.Drawing.Size(80, 23)
  1553. Me.轉薪2_lb.TabIndex = 55
  1554. Me.轉薪2_lb.Text = "0"
  1555. Me.轉薪2_lb.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  1556. '
  1557. '轉時2_lb
  1558. '
  1559. Me.轉時2_lb.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  1560. Me.轉時2_lb.Location = New System.Drawing.Point(432, 68)
  1561. Me.轉時2_lb.Name = "轉時2_lb"
  1562. Me.轉時2_lb.Size = New System.Drawing.Size(83, 23)
  1563. Me.轉時2_lb.TabIndex = 54
  1564. Me.轉時2_lb.Text = "0"
  1565. Me.轉時2_lb.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  1566. '
  1567. '轉費1_tb
  1568. '
  1569. Me.轉費1_tb.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  1570. Me.轉費1_tb.Location = New System.Drawing.Point(593, 46)
  1571. Me.轉費1_tb.Name = "轉費1_tb"
  1572. Me.轉費1_tb.Size = New System.Drawing.Size(107, 23)
  1573. Me.轉費1_tb.TabIndex = 53
  1574. Me.轉費1_tb.Text = "0"
  1575. Me.轉費1_tb.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  1576. '
  1577. 'Label94
  1578. '
  1579. Me.Label94.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  1580. Me.Label94.Location = New System.Drawing.Point(593, 24)
  1581. Me.Label94.Name = "Label94"
  1582. Me.Label94.Size = New System.Drawing.Size(107, 23)
  1583. Me.Label94.TabIndex = 52
  1584. Me.Label94.Text = "金額"
  1585. Me.Label94.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  1586. '
  1587. '轉薪1_lb
  1588. '
  1589. Me.轉薪1_lb.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  1590. Me.轉薪1_lb.Location = New System.Drawing.Point(514, 46)
  1591. Me.轉薪1_lb.Name = "轉薪1_lb"
  1592. Me.轉薪1_lb.Size = New System.Drawing.Size(80, 23)
  1593. Me.轉薪1_lb.TabIndex = 51
  1594. Me.轉薪1_lb.Text = "0"
  1595. Me.轉薪1_lb.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  1596. '
  1597. '轉時1_lb
  1598. '
  1599. Me.轉時1_lb.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  1600. Me.轉時1_lb.Location = New System.Drawing.Point(432, 46)
  1601. Me.轉時1_lb.Name = "轉時1_lb"
  1602. Me.轉時1_lb.Size = New System.Drawing.Size(83, 23)
  1603. Me.轉時1_lb.TabIndex = 50
  1604. Me.轉時1_lb.Text = "0"
  1605. Me.轉時1_lb.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  1606. '
  1607. 'Label104
  1608. '
  1609. Me.Label104.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  1610. Me.Label104.Location = New System.Drawing.Point(514, 24)
  1611. Me.Label104.Name = "Label104"
  1612. Me.Label104.Size = New System.Drawing.Size(80, 23)
  1613. Me.Label104.TabIndex = 49
  1614. Me.Label104.Text = "時薪"
  1615. Me.Label104.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  1616. '
  1617. 'Label105
  1618. '
  1619. Me.Label105.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  1620. Me.Label105.Location = New System.Drawing.Point(432, 24)
  1621. Me.Label105.Name = "Label105"
  1622. Me.Label105.Size = New System.Drawing.Size(83, 25)
  1623. Me.Label105.TabIndex = 48
  1624. Me.Label105.Text = "時數"
  1625. Me.Label105.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  1626. '
  1627. '小1_lb
  1628. '
  1629. Me.小1_lb.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  1630. Me.小1_lb.Location = New System.Drawing.Point(344, -1)
  1631. Me.小1_lb.Name = "小1_lb"
  1632. Me.小1_lb.Size = New System.Drawing.Size(82, 26)
  1633. Me.小1_lb.TabIndex = 47
  1634. Me.小1_lb.Text = "0"
  1635. Me.小1_lb.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  1636. '
  1637. 'Label171
  1638. '
  1639. Me.Label171.BackColor = System.Drawing.Color.LightGray
  1640. Me.Label171.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  1641. Me.Label171.Location = New System.Drawing.Point(306, -1)
  1642. Me.Label171.Name = "Label171"
  1643. Me.Label171.Size = New System.Drawing.Size(39, 26)
  1644. Me.Label171.TabIndex = 46
  1645. Me.Label171.Text = "小計"
  1646. Me.Label171.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  1647. '
  1648. '費5_tb
  1649. '
  1650. Me.費5_tb.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  1651. Me.費5_tb.Location = New System.Drawing.Point(319, 134)
  1652. Me.費5_tb.Name = "費5_tb"
  1653. Me.費5_tb.Size = New System.Drawing.Size(107, 23)
  1654. Me.費5_tb.TabIndex = 40
  1655. Me.費5_tb.Text = "0"
  1656. Me.費5_tb.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  1657. '
  1658. '薪5_lb
  1659. '
  1660. Me.薪5_lb.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  1661. Me.薪5_lb.Location = New System.Drawing.Point(240, 134)
  1662. Me.薪5_lb.Name = "薪5_lb"
  1663. Me.薪5_lb.Size = New System.Drawing.Size(80, 23)
  1664. Me.薪5_lb.TabIndex = 39
  1665. Me.薪5_lb.Text = "0"
  1666. Me.薪5_lb.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  1667. '
  1668. '時5_lb
  1669. '
  1670. Me.時5_lb.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  1671. Me.時5_lb.Location = New System.Drawing.Point(158, 134)
  1672. Me.時5_lb.Name = "時5_lb"
  1673. Me.時5_lb.Size = New System.Drawing.Size(83, 23)
  1674. Me.時5_lb.TabIndex = 38
  1675. Me.時5_lb.Text = "0"
  1676. Me.時5_lb.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  1677. '
  1678. '倍5_lb
  1679. '
  1680. Me.倍5_lb.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  1681. Me.倍5_lb.Location = New System.Drawing.Point(104, 134)
  1682. Me.倍5_lb.Name = "倍5_lb"
  1683. Me.倍5_lb.Size = New System.Drawing.Size(55, 23)
  1684. Me.倍5_lb.TabIndex = 37
  1685. Me.倍5_lb.Text = "2.00"
  1686. Me.倍5_lb.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  1687. '
  1688. 'Label165
  1689. '
  1690. Me.Label165.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  1691. Me.Label165.Location = New System.Drawing.Point(-1, 134)
  1692. Me.Label165.Name = "Label165"
  1693. Me.Label165.Size = New System.Drawing.Size(106, 23)
  1694. Me.Label165.TabIndex = 36
  1695. Me.Label165.Text = "國定假日 0-8hrs"
  1696. Me.Label165.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  1697. '
  1698. '費4_tb
  1699. '
  1700. Me.費4_tb.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  1701. Me.費4_tb.Location = New System.Drawing.Point(319, 112)
  1702. Me.費4_tb.Name = "費4_tb"
  1703. Me.費4_tb.Size = New System.Drawing.Size(107, 23)
  1704. Me.費4_tb.TabIndex = 35
  1705. Me.費4_tb.Text = "0"
  1706. Me.費4_tb.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  1707. '
  1708. '薪4_lb
  1709. '
  1710. Me.薪4_lb.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  1711. Me.薪4_lb.Location = New System.Drawing.Point(240, 112)
  1712. Me.薪4_lb.Name = "薪4_lb"
  1713. Me.薪4_lb.Size = New System.Drawing.Size(80, 23)
  1714. Me.薪4_lb.TabIndex = 34
  1715. Me.薪4_lb.Text = "0"
  1716. Me.薪4_lb.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  1717. '
  1718. '時4_lb
  1719. '
  1720. Me.時4_lb.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  1721. Me.時4_lb.Location = New System.Drawing.Point(158, 112)
  1722. Me.時4_lb.Name = "時4_lb"
  1723. Me.時4_lb.Size = New System.Drawing.Size(83, 23)
  1724. Me.時4_lb.TabIndex = 33
  1725. Me.時4_lb.Text = "0"
  1726. Me.時4_lb.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  1727. '
  1728. '倍4_lb
  1729. '
  1730. Me.倍4_lb.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  1731. Me.倍4_lb.Location = New System.Drawing.Point(104, 112)
  1732. Me.倍4_lb.Name = "倍4_lb"
  1733. Me.倍4_lb.Size = New System.Drawing.Size(55, 23)
  1734. Me.倍4_lb.TabIndex = 32
  1735. Me.倍4_lb.Text = "1.67"
  1736. Me.倍4_lb.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  1737. '
  1738. 'Label160
  1739. '
  1740. Me.Label160.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  1741. Me.Label160.Location = New System.Drawing.Point(-1, 112)
  1742. Me.Label160.Name = "Label160"
  1743. Me.Label160.Size = New System.Drawing.Size(106, 23)
  1744. Me.Label160.TabIndex = 31
  1745. Me.Label160.Text = "星期六 2-8hrs"
  1746. Me.Label160.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  1747. '
  1748. '費3_tb
  1749. '
  1750. Me.費3_tb.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  1751. Me.費3_tb.Location = New System.Drawing.Point(319, 90)
  1752. Me.費3_tb.Name = "費3_tb"
  1753. Me.費3_tb.Size = New System.Drawing.Size(107, 23)
  1754. Me.費3_tb.TabIndex = 30
  1755. Me.費3_tb.Text = "0"
  1756. Me.費3_tb.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  1757. '
  1758. '薪3_lb
  1759. '
  1760. Me.薪3_lb.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  1761. Me.薪3_lb.Location = New System.Drawing.Point(240, 90)
  1762. Me.薪3_lb.Name = "薪3_lb"
  1763. Me.薪3_lb.Size = New System.Drawing.Size(80, 23)
  1764. Me.薪3_lb.TabIndex = 29
  1765. Me.薪3_lb.Text = "0"
  1766. Me.薪3_lb.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  1767. '
  1768. '時3_lb
  1769. '
  1770. Me.時3_lb.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  1771. Me.時3_lb.Location = New System.Drawing.Point(158, 90)
  1772. Me.時3_lb.Name = "時3_lb"
  1773. Me.時3_lb.Size = New System.Drawing.Size(83, 23)
  1774. Me.時3_lb.TabIndex = 28
  1775. Me.時3_lb.Text = "0"
  1776. Me.時3_lb.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  1777. '
  1778. '倍3_lb
  1779. '
  1780. Me.倍3_lb.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  1781. Me.倍3_lb.Location = New System.Drawing.Point(104, 90)
  1782. Me.倍3_lb.Name = "倍3_lb"
  1783. Me.倍3_lb.Size = New System.Drawing.Size(55, 23)
  1784. Me.倍3_lb.TabIndex = 27
  1785. Me.倍3_lb.Text = "1.67"
  1786. Me.倍3_lb.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  1787. '
  1788. 'Label155
  1789. '
  1790. Me.Label155.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  1791. Me.Label155.Location = New System.Drawing.Point(-1, 90)
  1792. Me.Label155.Name = "Label155"
  1793. Me.Label155.Size = New System.Drawing.Size(106, 23)
  1794. Me.Label155.TabIndex = 26
  1795. Me.Label155.Text = "平常日 > 10hrs"
  1796. Me.Label155.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  1797. '
  1798. '費2_tb
  1799. '
  1800. Me.費2_tb.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  1801. Me.費2_tb.Location = New System.Drawing.Point(319, 68)
  1802. Me.費2_tb.Name = "費2_tb"
  1803. Me.費2_tb.Size = New System.Drawing.Size(107, 23)
  1804. Me.費2_tb.TabIndex = 25
  1805. Me.費2_tb.Text = "0"
  1806. Me.費2_tb.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  1807. '
  1808. '薪2_lb
  1809. '
  1810. Me.薪2_lb.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  1811. Me.薪2_lb.Location = New System.Drawing.Point(240, 68)
  1812. Me.薪2_lb.Name = "薪2_lb"
  1813. Me.薪2_lb.Size = New System.Drawing.Size(80, 23)
  1814. Me.薪2_lb.TabIndex = 24
  1815. Me.薪2_lb.Text = "0"
  1816. Me.薪2_lb.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  1817. '
  1818. '時2_lb
  1819. '
  1820. Me.時2_lb.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  1821. Me.時2_lb.Location = New System.Drawing.Point(158, 68)
  1822. Me.時2_lb.Name = "時2_lb"
  1823. Me.時2_lb.Size = New System.Drawing.Size(83, 23)
  1824. Me.時2_lb.TabIndex = 23
  1825. Me.時2_lb.Text = "0"
  1826. Me.時2_lb.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  1827. '
  1828. '倍2_lb
  1829. '
  1830. Me.倍2_lb.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  1831. Me.倍2_lb.Location = New System.Drawing.Point(104, 68)
  1832. Me.倍2_lb.Name = "倍2_lb"
  1833. Me.倍2_lb.Size = New System.Drawing.Size(55, 23)
  1834. Me.倍2_lb.TabIndex = 22
  1835. Me.倍2_lb.Text = "1.34"
  1836. Me.倍2_lb.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  1837. '
  1838. 'Label150
  1839. '
  1840. Me.Label150.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  1841. Me.Label150.Location = New System.Drawing.Point(-1, 68)
  1842. Me.Label150.Name = "Label150"
  1843. Me.Label150.Size = New System.Drawing.Size(106, 23)
  1844. Me.Label150.TabIndex = 21
  1845. Me.Label150.Text = "星期六 ≦ 2hrs"
  1846. Me.Label150.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  1847. '
  1848. '費1_tb
  1849. '
  1850. Me.費1_tb.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  1851. Me.費1_tb.Location = New System.Drawing.Point(319, 46)
  1852. Me.費1_tb.Name = "費1_tb"
  1853. Me.費1_tb.Size = New System.Drawing.Size(107, 23)
  1854. Me.費1_tb.TabIndex = 20
  1855. Me.費1_tb.Text = "0"
  1856. Me.費1_tb.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  1857. '
  1858. 'Label136
  1859. '
  1860. Me.Label136.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  1861. Me.Label136.Location = New System.Drawing.Point(319, 24)
  1862. Me.Label136.Name = "Label136"
  1863. Me.Label136.Size = New System.Drawing.Size(107, 23)
  1864. Me.Label136.TabIndex = 19
  1865. Me.Label136.Text = "金額"
  1866. Me.Label136.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  1867. '
  1868. '薪1_lb
  1869. '
  1870. Me.薪1_lb.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  1871. Me.薪1_lb.Location = New System.Drawing.Point(240, 46)
  1872. Me.薪1_lb.Name = "薪1_lb"
  1873. Me.薪1_lb.Size = New System.Drawing.Size(80, 23)
  1874. Me.薪1_lb.TabIndex = 17
  1875. Me.薪1_lb.Text = "0"
  1876. Me.薪1_lb.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  1877. '
  1878. '時1_lb
  1879. '
  1880. Me.時1_lb.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  1881. Me.時1_lb.Location = New System.Drawing.Point(158, 46)
  1882. Me.時1_lb.Name = "時1_lb"
  1883. Me.時1_lb.Size = New System.Drawing.Size(83, 23)
  1884. Me.時1_lb.TabIndex = 16
  1885. Me.時1_lb.Text = "0"
  1886. Me.時1_lb.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  1887. '
  1888. '倍1_lb
  1889. '
  1890. Me.倍1_lb.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  1891. Me.倍1_lb.Location = New System.Drawing.Point(104, 46)
  1892. Me.倍1_lb.Name = "倍1_lb"
  1893. Me.倍1_lb.Size = New System.Drawing.Size(55, 23)
  1894. Me.倍1_lb.TabIndex = 15
  1895. Me.倍1_lb.Text = "1.34"
  1896. Me.倍1_lb.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  1897. '
  1898. 'Label141
  1899. '
  1900. Me.Label141.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  1901. Me.Label141.Location = New System.Drawing.Point(-1, 46)
  1902. Me.Label141.Name = "Label141"
  1903. Me.Label141.Size = New System.Drawing.Size(106, 23)
  1904. Me.Label141.TabIndex = 14
  1905. Me.Label141.Text = "平常日 8-10hrs"
  1906. Me.Label141.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  1907. '
  1908. 'Label142
  1909. '
  1910. Me.Label142.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  1911. Me.Label142.Location = New System.Drawing.Point(240, 24)
  1912. Me.Label142.Name = "Label142"
  1913. Me.Label142.Size = New System.Drawing.Size(80, 23)
  1914. Me.Label142.TabIndex = 13
  1915. Me.Label142.Text = "時薪"
  1916. Me.Label142.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  1917. '
  1918. 'Label143
  1919. '
  1920. Me.Label143.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  1921. Me.Label143.Location = New System.Drawing.Point(158, 24)
  1922. Me.Label143.Name = "Label143"
  1923. Me.Label143.Size = New System.Drawing.Size(83, 25)
  1924. Me.Label143.TabIndex = 12
  1925. Me.Label143.Text = "時數"
  1926. Me.Label143.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  1927. '
  1928. 'Label144
  1929. '
  1930. Me.Label144.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  1931. Me.Label144.Location = New System.Drawing.Point(104, 24)
  1932. Me.Label144.Name = "Label144"
  1933. Me.Label144.Size = New System.Drawing.Size(55, 23)
  1934. Me.Label144.TabIndex = 11
  1935. Me.Label144.Text = "倍率"
  1936. Me.Label144.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  1937. '
  1938. 'Label145
  1939. '
  1940. Me.Label145.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  1941. Me.Label145.Location = New System.Drawing.Point(-1, 24)
  1942. Me.Label145.Name = "Label145"
  1943. Me.Label145.Size = New System.Drawing.Size(106, 23)
  1944. Me.Label145.TabIndex = 10
  1945. Me.Label145.Text = "工時時段"
  1946. Me.Label145.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  1947. '
  1948. 'Label146
  1949. '
  1950. Me.Label146.BackColor = System.Drawing.Color.LightGray
  1951. Me.Label146.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  1952. Me.Label146.Location = New System.Drawing.Point(-1, -1)
  1953. Me.Label146.Name = "Label146"
  1954. Me.Label146.Size = New System.Drawing.Size(308, 26)
  1955. Me.Label146.TabIndex = 9
  1956. Me.Label146.Text = "工項加班費"
  1957. Me.Label146.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  1958. '
  1959. 'Label30
  1960. '
  1961. Me.Label30.AutoSize = True
  1962. Me.Label30.Font = New System.Drawing.Font("微軟正黑體", 12.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1963. Me.Label30.Location = New System.Drawing.Point(17, 37)
  1964. Me.Label30.Name = "Label30"
  1965. Me.Label30.Size = New System.Drawing.Size(53, 20)
  1966. Me.Label30.TabIndex = 1
  1967. Me.Label30.Text = "姓名 : "
  1968. '
  1969. 'Panel9
  1970. '
  1971. Me.Panel9.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  1972. Me.Panel9.Controls.Add(Me.小2_lb)
  1973. Me.Panel9.Controls.Add(Me.Label101)
  1974. Me.Panel9.Controls.Add(Me.A12_alb)
  1975. Me.Panel9.Controls.Add(Me.A12_clb)
  1976. Me.Panel9.Controls.Add(Me.A11_alb)
  1977. Me.Panel9.Controls.Add(Me.A11_clb)
  1978. Me.Panel9.Controls.Add(Me.A10_alb)
  1979. Me.Panel9.Controls.Add(Me.A10_clb)
  1980. Me.Panel9.Controls.Add(Me.A09_alb)
  1981. Me.Panel9.Controls.Add(Me.A09_clb)
  1982. Me.Panel9.Controls.Add(Me.A08_alb)
  1983. Me.Panel9.Controls.Add(Me.A08_clb)
  1984. Me.Panel9.Controls.Add(Me.A07_alb)
  1985. Me.Panel9.Controls.Add(Me.A07_clb)
  1986. Me.Panel9.Controls.Add(Me.A06_alb)
  1987. Me.Panel9.Controls.Add(Me.A06_clb)
  1988. Me.Panel9.Controls.Add(Me.A05_alb)
  1989. Me.Panel9.Controls.Add(Me.A05_clb)
  1990. Me.Panel9.Controls.Add(Me.A04_alb)
  1991. Me.Panel9.Controls.Add(Me.A04_clb)
  1992. Me.Panel9.Controls.Add(Me.A03_alb)
  1993. Me.Panel9.Controls.Add(Me.A03_clb)
  1994. Me.Panel9.Controls.Add(Me.Label122)
  1995. Me.Panel9.Controls.Add(Me.Label123)
  1996. Me.Panel9.Controls.Add(Me.A02_alb)
  1997. Me.Panel9.Controls.Add(Me.A02_clb)
  1998. Me.Panel9.Controls.Add(Me.A01_alb)
  1999. Me.Panel9.Controls.Add(Me.A01_clb)
  2000. Me.Panel9.Controls.Add(Me.Label128)
  2001. Me.Panel9.Controls.Add(Me.Label129)
  2002. Me.Panel9.Controls.Add(Me.Label130)
  2003. Me.Panel9.Controls.Add(Me.Label131)
  2004. Me.Panel9.Controls.Add(Me.Label132)
  2005. Me.Panel9.Location = New System.Drawing.Point(554, 276)
  2006. Me.Panel9.Name = "Panel9"
  2007. Me.Panel9.Size = New System.Drawing.Size(562, 132)
  2008. Me.Panel9.TabIndex = 14
  2009. '
  2010. '小2_lb
  2011. '
  2012. Me.小2_lb.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  2013. Me.小2_lb.Location = New System.Drawing.Point(447, -1)
  2014. Me.小2_lb.Name = "小2_lb"
  2015. Me.小2_lb.Size = New System.Drawing.Size(114, 26)
  2016. Me.小2_lb.TabIndex = 41
  2017. Me.小2_lb.Text = "0"
  2018. Me.小2_lb.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  2019. '
  2020. 'Label101
  2021. '
  2022. Me.Label101.Anchor = CType(((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Left) _
  2023. Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  2024. Me.Label101.BackColor = System.Drawing.Color.LightGray
  2025. Me.Label101.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  2026. Me.Label101.Location = New System.Drawing.Point(373, -1)
  2027. Me.Label101.Name = "Label101"
  2028. Me.Label101.Size = New System.Drawing.Size(75, 26)
  2029. Me.Label101.TabIndex = 40
  2030. Me.Label101.Text = "小計"
  2031. Me.Label101.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  2032. '
  2033. 'A12_alb
  2034. '
  2035. Me.A12_alb.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  2036. Me.A12_alb.Location = New System.Drawing.Point(492, 109)
  2037. Me.A12_alb.Name = "A12_alb"
  2038. Me.A12_alb.Size = New System.Drawing.Size(69, 22)
  2039. Me.A12_alb.TabIndex = 39
  2040. Me.A12_alb.Text = "0"
  2041. Me.A12_alb.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  2042. '
  2043. 'A12_clb
  2044. '
  2045. Me.A12_clb.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  2046. Me.A12_clb.Location = New System.Drawing.Point(373, 109)
  2047. Me.A12_clb.Name = "A12_clb"
  2048. Me.A12_clb.Size = New System.Drawing.Size(120, 22)
  2049. Me.A12_clb.TabIndex = 38
  2050. Me.A12_clb.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  2051. '
  2052. 'A11_alb
  2053. '
  2054. Me.A11_alb.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  2055. Me.A11_alb.Location = New System.Drawing.Point(305, 109)
  2056. Me.A11_alb.Name = "A11_alb"
  2057. Me.A11_alb.Size = New System.Drawing.Size(69, 22)
  2058. Me.A11_alb.TabIndex = 37
  2059. Me.A11_alb.Text = "0"
  2060. Me.A11_alb.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  2061. '
  2062. 'A11_clb
  2063. '
  2064. Me.A11_clb.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  2065. Me.A11_clb.Location = New System.Drawing.Point(186, 109)
  2066. Me.A11_clb.Name = "A11_clb"
  2067. Me.A11_clb.Size = New System.Drawing.Size(120, 22)
  2068. Me.A11_clb.TabIndex = 36
  2069. Me.A11_clb.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  2070. '
  2071. 'A10_alb
  2072. '
  2073. Me.A10_alb.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  2074. Me.A10_alb.Location = New System.Drawing.Point(118, 109)
  2075. Me.A10_alb.Name = "A10_alb"
  2076. Me.A10_alb.Size = New System.Drawing.Size(69, 22)
  2077. Me.A10_alb.TabIndex = 35
  2078. Me.A10_alb.Text = "0"
  2079. Me.A10_alb.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  2080. '
  2081. 'A10_clb
  2082. '
  2083. Me.A10_clb.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  2084. Me.A10_clb.Location = New System.Drawing.Point(-1, 109)
  2085. Me.A10_clb.Name = "A10_clb"
  2086. Me.A10_clb.Size = New System.Drawing.Size(120, 22)
  2087. Me.A10_clb.TabIndex = 34
  2088. Me.A10_clb.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  2089. '
  2090. 'A09_alb
  2091. '
  2092. Me.A09_alb.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  2093. Me.A09_alb.Location = New System.Drawing.Point(492, 88)
  2094. Me.A09_alb.Name = "A09_alb"
  2095. Me.A09_alb.Size = New System.Drawing.Size(69, 22)
  2096. Me.A09_alb.TabIndex = 33
  2097. Me.A09_alb.Text = "0"
  2098. Me.A09_alb.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  2099. '
  2100. 'A09_clb
  2101. '
  2102. Me.A09_clb.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  2103. Me.A09_clb.Location = New System.Drawing.Point(373, 88)
  2104. Me.A09_clb.Name = "A09_clb"
  2105. Me.A09_clb.Size = New System.Drawing.Size(120, 22)
  2106. Me.A09_clb.TabIndex = 32
  2107. Me.A09_clb.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  2108. '
  2109. 'A08_alb
  2110. '
  2111. Me.A08_alb.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  2112. Me.A08_alb.Location = New System.Drawing.Point(305, 88)
  2113. Me.A08_alb.Name = "A08_alb"
  2114. Me.A08_alb.Size = New System.Drawing.Size(69, 22)
  2115. Me.A08_alb.TabIndex = 31
  2116. Me.A08_alb.Text = "0"
  2117. Me.A08_alb.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  2118. '
  2119. 'A08_clb
  2120. '
  2121. Me.A08_clb.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  2122. Me.A08_clb.Location = New System.Drawing.Point(186, 88)
  2123. Me.A08_clb.Name = "A08_clb"
  2124. Me.A08_clb.Size = New System.Drawing.Size(120, 22)
  2125. Me.A08_clb.TabIndex = 30
  2126. Me.A08_clb.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  2127. '
  2128. 'A07_alb
  2129. '
  2130. Me.A07_alb.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  2131. Me.A07_alb.Location = New System.Drawing.Point(118, 88)
  2132. Me.A07_alb.Name = "A07_alb"
  2133. Me.A07_alb.Size = New System.Drawing.Size(69, 22)
  2134. Me.A07_alb.TabIndex = 29
  2135. Me.A07_alb.Text = "0"
  2136. Me.A07_alb.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  2137. '
  2138. 'A07_clb
  2139. '
  2140. Me.A07_clb.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  2141. Me.A07_clb.Location = New System.Drawing.Point(-1, 88)
  2142. Me.A07_clb.Name = "A07_clb"
  2143. Me.A07_clb.Size = New System.Drawing.Size(120, 22)
  2144. Me.A07_clb.TabIndex = 28
  2145. Me.A07_clb.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  2146. '
  2147. 'A06_alb
  2148. '
  2149. Me.A06_alb.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  2150. Me.A06_alb.Location = New System.Drawing.Point(492, 67)
  2151. Me.A06_alb.Name = "A06_alb"
  2152. Me.A06_alb.Size = New System.Drawing.Size(69, 22)
  2153. Me.A06_alb.TabIndex = 27
  2154. Me.A06_alb.Text = "0"
  2155. Me.A06_alb.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  2156. '
  2157. 'A06_clb
  2158. '
  2159. Me.A06_clb.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  2160. Me.A06_clb.Location = New System.Drawing.Point(373, 67)
  2161. Me.A06_clb.Name = "A06_clb"
  2162. Me.A06_clb.Size = New System.Drawing.Size(120, 22)
  2163. Me.A06_clb.TabIndex = 26
  2164. Me.A06_clb.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  2165. '
  2166. 'A05_alb
  2167. '
  2168. Me.A05_alb.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  2169. Me.A05_alb.Location = New System.Drawing.Point(305, 67)
  2170. Me.A05_alb.Name = "A05_alb"
  2171. Me.A05_alb.Size = New System.Drawing.Size(69, 22)
  2172. Me.A05_alb.TabIndex = 25
  2173. Me.A05_alb.Text = "0"
  2174. Me.A05_alb.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  2175. '
  2176. 'A05_clb
  2177. '
  2178. Me.A05_clb.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  2179. Me.A05_clb.Location = New System.Drawing.Point(186, 67)
  2180. Me.A05_clb.Name = "A05_clb"
  2181. Me.A05_clb.Size = New System.Drawing.Size(120, 22)
  2182. Me.A05_clb.TabIndex = 24
  2183. Me.A05_clb.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  2184. '
  2185. 'A04_alb
  2186. '
  2187. Me.A04_alb.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  2188. Me.A04_alb.Location = New System.Drawing.Point(118, 67)
  2189. Me.A04_alb.Name = "A04_alb"
  2190. Me.A04_alb.Size = New System.Drawing.Size(69, 22)
  2191. Me.A04_alb.TabIndex = 23
  2192. Me.A04_alb.Text = "0"
  2193. Me.A04_alb.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  2194. '
  2195. 'A04_clb
  2196. '
  2197. Me.A04_clb.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  2198. Me.A04_clb.Location = New System.Drawing.Point(-1, 67)
  2199. Me.A04_clb.Name = "A04_clb"
  2200. Me.A04_clb.Size = New System.Drawing.Size(120, 22)
  2201. Me.A04_clb.TabIndex = 22
  2202. Me.A04_clb.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  2203. '
  2204. 'A03_alb
  2205. '
  2206. Me.A03_alb.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  2207. Me.A03_alb.Location = New System.Drawing.Point(492, 46)
  2208. Me.A03_alb.Name = "A03_alb"
  2209. Me.A03_alb.Size = New System.Drawing.Size(69, 22)
  2210. Me.A03_alb.TabIndex = 21
  2211. Me.A03_alb.Text = "0"
  2212. Me.A03_alb.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  2213. '
  2214. 'A03_clb
  2215. '
  2216. Me.A03_clb.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  2217. Me.A03_clb.Location = New System.Drawing.Point(373, 46)
  2218. Me.A03_clb.Name = "A03_clb"
  2219. Me.A03_clb.Size = New System.Drawing.Size(120, 22)
  2220. Me.A03_clb.TabIndex = 20
  2221. Me.A03_clb.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  2222. '
  2223. 'Label122
  2224. '
  2225. Me.Label122.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  2226. Me.Label122.Location = New System.Drawing.Point(492, 24)
  2227. Me.Label122.Name = "Label122"
  2228. Me.Label122.Size = New System.Drawing.Size(69, 23)
  2229. Me.Label122.TabIndex = 19
  2230. Me.Label122.Text = "金額"
  2231. Me.Label122.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  2232. '
  2233. 'Label123
  2234. '
  2235. Me.Label123.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  2236. Me.Label123.Location = New System.Drawing.Point(373, 24)
  2237. Me.Label123.Name = "Label123"
  2238. Me.Label123.Size = New System.Drawing.Size(120, 23)
  2239. Me.Label123.TabIndex = 18
  2240. Me.Label123.Text = "項目"
  2241. Me.Label123.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  2242. '
  2243. 'A02_alb
  2244. '
  2245. Me.A02_alb.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  2246. Me.A02_alb.Location = New System.Drawing.Point(305, 46)
  2247. Me.A02_alb.Name = "A02_alb"
  2248. Me.A02_alb.Size = New System.Drawing.Size(69, 22)
  2249. Me.A02_alb.TabIndex = 17
  2250. Me.A02_alb.Text = "0"
  2251. Me.A02_alb.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  2252. '
  2253. 'A02_clb
  2254. '
  2255. Me.A02_clb.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  2256. Me.A02_clb.Location = New System.Drawing.Point(186, 46)
  2257. Me.A02_clb.Name = "A02_clb"
  2258. Me.A02_clb.Size = New System.Drawing.Size(120, 22)
  2259. Me.A02_clb.TabIndex = 16
  2260. Me.A02_clb.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  2261. '
  2262. 'A01_alb
  2263. '
  2264. Me.A01_alb.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  2265. Me.A01_alb.Location = New System.Drawing.Point(118, 46)
  2266. Me.A01_alb.Name = "A01_alb"
  2267. Me.A01_alb.Size = New System.Drawing.Size(69, 22)
  2268. Me.A01_alb.TabIndex = 15
  2269. Me.A01_alb.Text = "0"
  2270. Me.A01_alb.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  2271. '
  2272. 'A01_clb
  2273. '
  2274. Me.A01_clb.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  2275. Me.A01_clb.Location = New System.Drawing.Point(-1, 46)
  2276. Me.A01_clb.Name = "A01_clb"
  2277. Me.A01_clb.Size = New System.Drawing.Size(120, 22)
  2278. Me.A01_clb.TabIndex = 14
  2279. Me.A01_clb.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  2280. '
  2281. 'Label128
  2282. '
  2283. Me.Label128.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  2284. Me.Label128.Location = New System.Drawing.Point(305, 24)
  2285. Me.Label128.Name = "Label128"
  2286. Me.Label128.Size = New System.Drawing.Size(69, 23)
  2287. Me.Label128.TabIndex = 13
  2288. Me.Label128.Text = "金額"
  2289. Me.Label128.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  2290. '
  2291. 'Label129
  2292. '
  2293. Me.Label129.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  2294. Me.Label129.Location = New System.Drawing.Point(186, 24)
  2295. Me.Label129.Name = "Label129"
  2296. Me.Label129.Size = New System.Drawing.Size(120, 23)
  2297. Me.Label129.TabIndex = 12
  2298. Me.Label129.Text = "項目"
  2299. Me.Label129.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  2300. '
  2301. 'Label130
  2302. '
  2303. Me.Label130.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  2304. Me.Label130.Location = New System.Drawing.Point(118, 24)
  2305. Me.Label130.Name = "Label130"
  2306. Me.Label130.Size = New System.Drawing.Size(69, 23)
  2307. Me.Label130.TabIndex = 11
  2308. Me.Label130.Text = "金額"
  2309. Me.Label130.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  2310. '
  2311. 'Label131
  2312. '
  2313. Me.Label131.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  2314. Me.Label131.Location = New System.Drawing.Point(-1, 24)
  2315. Me.Label131.Name = "Label131"
  2316. Me.Label131.Size = New System.Drawing.Size(120, 23)
  2317. Me.Label131.TabIndex = 10
  2318. Me.Label131.Text = "項目"
  2319. Me.Label131.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  2320. '
  2321. 'Label132
  2322. '
  2323. Me.Label132.Anchor = CType(((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Left) _
  2324. Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  2325. Me.Label132.BackColor = System.Drawing.Color.LightGray
  2326. Me.Label132.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  2327. Me.Label132.Location = New System.Drawing.Point(-1, -1)
  2328. Me.Label132.Name = "Label132"
  2329. Me.Label132.Size = New System.Drawing.Size(375, 26)
  2330. Me.Label132.TabIndex = 9
  2331. Me.Label132.Text = "應扣項目"
  2332. Me.Label132.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  2333. '
  2334. '姓名_lb
  2335. '
  2336. Me.姓名_lb.AutoSize = True
  2337. Me.姓名_lb.Font = New System.Drawing.Font("微軟正黑體", 12.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2338. Me.姓名_lb.Location = New System.Drawing.Point(74, 37)
  2339. Me.姓名_lb.Name = "姓名_lb"
  2340. Me.姓名_lb.Size = New System.Drawing.Size(39, 20)
  2341. Me.姓名_lb.TabIndex = 2
  2342. Me.姓名_lb.Text = "XXX"
  2343. '
  2344. 'Panel8
  2345. '
  2346. Me.Panel8.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  2347. Me.Panel8.Controls.Add(Me.小3_lb)
  2348. Me.Panel8.Controls.Add(Me.Label98)
  2349. Me.Panel8.Controls.Add(Me.B12_alb)
  2350. Me.Panel8.Controls.Add(Me.B12_clb)
  2351. Me.Panel8.Controls.Add(Me.B11_alb)
  2352. Me.Panel8.Controls.Add(Me.B11_clb)
  2353. Me.Panel8.Controls.Add(Me.B10_alb)
  2354. Me.Panel8.Controls.Add(Me.B10_clb)
  2355. Me.Panel8.Controls.Add(Me.B09_alb)
  2356. Me.Panel8.Controls.Add(Me.B09_clb)
  2357. Me.Panel8.Controls.Add(Me.B08_alb)
  2358. Me.Panel8.Controls.Add(Me.B08_clb)
  2359. Me.Panel8.Controls.Add(Me.B07_alb)
  2360. Me.Panel8.Controls.Add(Me.B07_clb)
  2361. Me.Panel8.Controls.Add(Me.B06_alb)
  2362. Me.Panel8.Controls.Add(Me.B06_clb)
  2363. Me.Panel8.Controls.Add(Me.B05_alb)
  2364. Me.Panel8.Controls.Add(Me.B05_clb)
  2365. Me.Panel8.Controls.Add(Me.B04_alb)
  2366. Me.Panel8.Controls.Add(Me.B04_clb)
  2367. Me.Panel8.Controls.Add(Me.B03_alb)
  2368. Me.Panel8.Controls.Add(Me.B03_clb)
  2369. Me.Panel8.Controls.Add(Me.Label78)
  2370. Me.Panel8.Controls.Add(Me.Label79)
  2371. Me.Panel8.Controls.Add(Me.B02_alb)
  2372. Me.Panel8.Controls.Add(Me.B02_clb)
  2373. Me.Panel8.Controls.Add(Me.B01_alb)
  2374. Me.Panel8.Controls.Add(Me.B01_clb)
  2375. Me.Panel8.Controls.Add(Me.Label71)
  2376. Me.Panel8.Controls.Add(Me.Label72)
  2377. Me.Panel8.Controls.Add(Me.Label73)
  2378. Me.Panel8.Controls.Add(Me.Label74)
  2379. Me.Panel8.Controls.Add(Me.Label75)
  2380. Me.Panel8.Location = New System.Drawing.Point(554, 145)
  2381. Me.Panel8.Name = "Panel8"
  2382. Me.Panel8.Size = New System.Drawing.Size(562, 132)
  2383. Me.Panel8.TabIndex = 13
  2384. '
  2385. '小3_lb
  2386. '
  2387. Me.小3_lb.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  2388. Me.小3_lb.Location = New System.Drawing.Point(447, -1)
  2389. Me.小3_lb.Name = "小3_lb"
  2390. Me.小3_lb.Size = New System.Drawing.Size(114, 26)
  2391. Me.小3_lb.TabIndex = 41
  2392. Me.小3_lb.Text = "0"
  2393. Me.小3_lb.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  2394. '
  2395. 'Label98
  2396. '
  2397. Me.Label98.Anchor = CType(((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Left) _
  2398. Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  2399. Me.Label98.BackColor = System.Drawing.Color.LightGray
  2400. Me.Label98.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  2401. Me.Label98.Location = New System.Drawing.Point(373, -1)
  2402. Me.Label98.Name = "Label98"
  2403. Me.Label98.Size = New System.Drawing.Size(75, 26)
  2404. Me.Label98.TabIndex = 40
  2405. Me.Label98.Text = "小計"
  2406. Me.Label98.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  2407. '
  2408. 'B12_alb
  2409. '
  2410. Me.B12_alb.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  2411. Me.B12_alb.Location = New System.Drawing.Point(492, 109)
  2412. Me.B12_alb.Name = "B12_alb"
  2413. Me.B12_alb.Size = New System.Drawing.Size(69, 22)
  2414. Me.B12_alb.TabIndex = 39
  2415. Me.B12_alb.Text = "0"
  2416. Me.B12_alb.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  2417. '
  2418. 'B12_clb
  2419. '
  2420. Me.B12_clb.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  2421. Me.B12_clb.Location = New System.Drawing.Point(373, 109)
  2422. Me.B12_clb.Name = "B12_clb"
  2423. Me.B12_clb.Size = New System.Drawing.Size(120, 22)
  2424. Me.B12_clb.TabIndex = 38
  2425. Me.B12_clb.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  2426. '
  2427. 'B11_alb
  2428. '
  2429. Me.B11_alb.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  2430. Me.B11_alb.Location = New System.Drawing.Point(305, 109)
  2431. Me.B11_alb.Name = "B11_alb"
  2432. Me.B11_alb.Size = New System.Drawing.Size(69, 22)
  2433. Me.B11_alb.TabIndex = 37
  2434. Me.B11_alb.Text = "0"
  2435. Me.B11_alb.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  2436. '
  2437. 'B11_clb
  2438. '
  2439. Me.B11_clb.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  2440. Me.B11_clb.Location = New System.Drawing.Point(186, 109)
  2441. Me.B11_clb.Name = "B11_clb"
  2442. Me.B11_clb.Size = New System.Drawing.Size(120, 22)
  2443. Me.B11_clb.TabIndex = 36
  2444. Me.B11_clb.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  2445. '
  2446. 'B10_alb
  2447. '
  2448. Me.B10_alb.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  2449. Me.B10_alb.Location = New System.Drawing.Point(118, 109)
  2450. Me.B10_alb.Name = "B10_alb"
  2451. Me.B10_alb.Size = New System.Drawing.Size(69, 22)
  2452. Me.B10_alb.TabIndex = 35
  2453. Me.B10_alb.Text = "0"
  2454. Me.B10_alb.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  2455. '
  2456. 'B10_clb
  2457. '
  2458. Me.B10_clb.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  2459. Me.B10_clb.Location = New System.Drawing.Point(-1, 109)
  2460. Me.B10_clb.Name = "B10_clb"
  2461. Me.B10_clb.Size = New System.Drawing.Size(120, 22)
  2462. Me.B10_clb.TabIndex = 34
  2463. Me.B10_clb.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  2464. '
  2465. 'B09_alb
  2466. '
  2467. Me.B09_alb.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  2468. Me.B09_alb.Location = New System.Drawing.Point(492, 88)
  2469. Me.B09_alb.Name = "B09_alb"
  2470. Me.B09_alb.Size = New System.Drawing.Size(69, 22)
  2471. Me.B09_alb.TabIndex = 33
  2472. Me.B09_alb.Text = "0"
  2473. Me.B09_alb.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  2474. '
  2475. 'B09_clb
  2476. '
  2477. Me.B09_clb.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  2478. Me.B09_clb.Location = New System.Drawing.Point(373, 88)
  2479. Me.B09_clb.Name = "B09_clb"
  2480. Me.B09_clb.Size = New System.Drawing.Size(120, 22)
  2481. Me.B09_clb.TabIndex = 32
  2482. Me.B09_clb.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  2483. '
  2484. 'B08_alb
  2485. '
  2486. Me.B08_alb.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  2487. Me.B08_alb.Location = New System.Drawing.Point(305, 88)
  2488. Me.B08_alb.Name = "B08_alb"
  2489. Me.B08_alb.Size = New System.Drawing.Size(69, 22)
  2490. Me.B08_alb.TabIndex = 31
  2491. Me.B08_alb.Text = "0"
  2492. Me.B08_alb.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  2493. '
  2494. 'B08_clb
  2495. '
  2496. Me.B08_clb.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  2497. Me.B08_clb.Location = New System.Drawing.Point(186, 88)
  2498. Me.B08_clb.Name = "B08_clb"
  2499. Me.B08_clb.Size = New System.Drawing.Size(120, 22)
  2500. Me.B08_clb.TabIndex = 30
  2501. Me.B08_clb.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  2502. '
  2503. 'B07_alb
  2504. '
  2505. Me.B07_alb.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  2506. Me.B07_alb.Location = New System.Drawing.Point(118, 88)
  2507. Me.B07_alb.Name = "B07_alb"
  2508. Me.B07_alb.Size = New System.Drawing.Size(69, 22)
  2509. Me.B07_alb.TabIndex = 29
  2510. Me.B07_alb.Text = "0"
  2511. Me.B07_alb.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  2512. '
  2513. 'B07_clb
  2514. '
  2515. Me.B07_clb.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  2516. Me.B07_clb.Location = New System.Drawing.Point(-1, 88)
  2517. Me.B07_clb.Name = "B07_clb"
  2518. Me.B07_clb.Size = New System.Drawing.Size(120, 22)
  2519. Me.B07_clb.TabIndex = 28
  2520. Me.B07_clb.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  2521. '
  2522. 'B06_alb
  2523. '
  2524. Me.B06_alb.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  2525. Me.B06_alb.Location = New System.Drawing.Point(492, 67)
  2526. Me.B06_alb.Name = "B06_alb"
  2527. Me.B06_alb.Size = New System.Drawing.Size(69, 22)
  2528. Me.B06_alb.TabIndex = 27
  2529. Me.B06_alb.Text = "0"
  2530. Me.B06_alb.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  2531. '
  2532. 'B06_clb
  2533. '
  2534. Me.B06_clb.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  2535. Me.B06_clb.Location = New System.Drawing.Point(373, 67)
  2536. Me.B06_clb.Name = "B06_clb"
  2537. Me.B06_clb.Size = New System.Drawing.Size(120, 22)
  2538. Me.B06_clb.TabIndex = 26
  2539. Me.B06_clb.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  2540. '
  2541. 'B05_alb
  2542. '
  2543. Me.B05_alb.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  2544. Me.B05_alb.Location = New System.Drawing.Point(305, 67)
  2545. Me.B05_alb.Name = "B05_alb"
  2546. Me.B05_alb.Size = New System.Drawing.Size(69, 22)
  2547. Me.B05_alb.TabIndex = 25
  2548. Me.B05_alb.Text = "0"
  2549. Me.B05_alb.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  2550. '
  2551. 'B05_clb
  2552. '
  2553. Me.B05_clb.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  2554. Me.B05_clb.Location = New System.Drawing.Point(186, 67)
  2555. Me.B05_clb.Name = "B05_clb"
  2556. Me.B05_clb.Size = New System.Drawing.Size(120, 22)
  2557. Me.B05_clb.TabIndex = 24
  2558. Me.B05_clb.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  2559. '
  2560. 'B04_alb
  2561. '
  2562. Me.B04_alb.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  2563. Me.B04_alb.Location = New System.Drawing.Point(118, 67)
  2564. Me.B04_alb.Name = "B04_alb"
  2565. Me.B04_alb.Size = New System.Drawing.Size(69, 22)
  2566. Me.B04_alb.TabIndex = 23
  2567. Me.B04_alb.Text = "0"
  2568. Me.B04_alb.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  2569. '
  2570. 'B04_clb
  2571. '
  2572. Me.B04_clb.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  2573. Me.B04_clb.Location = New System.Drawing.Point(-1, 67)
  2574. Me.B04_clb.Name = "B04_clb"
  2575. Me.B04_clb.Size = New System.Drawing.Size(120, 22)
  2576. Me.B04_clb.TabIndex = 22
  2577. Me.B04_clb.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  2578. '
  2579. 'B03_alb
  2580. '
  2581. Me.B03_alb.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  2582. Me.B03_alb.Location = New System.Drawing.Point(492, 46)
  2583. Me.B03_alb.Name = "B03_alb"
  2584. Me.B03_alb.Size = New System.Drawing.Size(69, 22)
  2585. Me.B03_alb.TabIndex = 21
  2586. Me.B03_alb.Text = "0"
  2587. Me.B03_alb.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  2588. '
  2589. 'B03_clb
  2590. '
  2591. Me.B03_clb.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  2592. Me.B03_clb.Location = New System.Drawing.Point(373, 46)
  2593. Me.B03_clb.Name = "B03_clb"
  2594. Me.B03_clb.Size = New System.Drawing.Size(120, 22)
  2595. Me.B03_clb.TabIndex = 20
  2596. Me.B03_clb.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  2597. '
  2598. 'Label78
  2599. '
  2600. Me.Label78.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  2601. Me.Label78.Location = New System.Drawing.Point(492, 24)
  2602. Me.Label78.Name = "Label78"
  2603. Me.Label78.Size = New System.Drawing.Size(69, 23)
  2604. Me.Label78.TabIndex = 19
  2605. Me.Label78.Text = "金額"
  2606. Me.Label78.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  2607. '
  2608. 'Label79
  2609. '
  2610. Me.Label79.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  2611. Me.Label79.Location = New System.Drawing.Point(373, 24)
  2612. Me.Label79.Name = "Label79"
  2613. Me.Label79.Size = New System.Drawing.Size(120, 23)
  2614. Me.Label79.TabIndex = 18
  2615. Me.Label79.Text = "項目"
  2616. Me.Label79.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  2617. '
  2618. 'B02_alb
  2619. '
  2620. Me.B02_alb.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  2621. Me.B02_alb.Location = New System.Drawing.Point(305, 46)
  2622. Me.B02_alb.Name = "B02_alb"
  2623. Me.B02_alb.Size = New System.Drawing.Size(69, 22)
  2624. Me.B02_alb.TabIndex = 17
  2625. Me.B02_alb.Text = "0"
  2626. Me.B02_alb.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  2627. '
  2628. 'B02_clb
  2629. '
  2630. Me.B02_clb.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  2631. Me.B02_clb.Location = New System.Drawing.Point(186, 46)
  2632. Me.B02_clb.Name = "B02_clb"
  2633. Me.B02_clb.Size = New System.Drawing.Size(120, 22)
  2634. Me.B02_clb.TabIndex = 16
  2635. Me.B02_clb.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  2636. '
  2637. 'B01_alb
  2638. '
  2639. Me.B01_alb.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  2640. Me.B01_alb.Location = New System.Drawing.Point(118, 46)
  2641. Me.B01_alb.Name = "B01_alb"
  2642. Me.B01_alb.Size = New System.Drawing.Size(69, 22)
  2643. Me.B01_alb.TabIndex = 15
  2644. Me.B01_alb.Text = "0"
  2645. Me.B01_alb.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  2646. '
  2647. 'B01_clb
  2648. '
  2649. Me.B01_clb.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  2650. Me.B01_clb.Location = New System.Drawing.Point(-1, 46)
  2651. Me.B01_clb.Name = "B01_clb"
  2652. Me.B01_clb.Size = New System.Drawing.Size(120, 22)
  2653. Me.B01_clb.TabIndex = 14
  2654. Me.B01_clb.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  2655. '
  2656. 'Label71
  2657. '
  2658. Me.Label71.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  2659. Me.Label71.Location = New System.Drawing.Point(305, 24)
  2660. Me.Label71.Name = "Label71"
  2661. Me.Label71.Size = New System.Drawing.Size(69, 23)
  2662. Me.Label71.TabIndex = 13
  2663. Me.Label71.Text = "金額"
  2664. Me.Label71.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  2665. '
  2666. 'Label72
  2667. '
  2668. Me.Label72.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  2669. Me.Label72.Location = New System.Drawing.Point(186, 24)
  2670. Me.Label72.Name = "Label72"
  2671. Me.Label72.Size = New System.Drawing.Size(120, 23)
  2672. Me.Label72.TabIndex = 12
  2673. Me.Label72.Text = "項目"
  2674. Me.Label72.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  2675. '
  2676. 'Label73
  2677. '
  2678. Me.Label73.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  2679. Me.Label73.Location = New System.Drawing.Point(118, 24)
  2680. Me.Label73.Name = "Label73"
  2681. Me.Label73.Size = New System.Drawing.Size(69, 23)
  2682. Me.Label73.TabIndex = 11
  2683. Me.Label73.Text = "金額"
  2684. Me.Label73.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  2685. '
  2686. 'Label74
  2687. '
  2688. Me.Label74.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  2689. Me.Label74.Location = New System.Drawing.Point(-1, 24)
  2690. Me.Label74.Name = "Label74"
  2691. Me.Label74.Size = New System.Drawing.Size(120, 23)
  2692. Me.Label74.TabIndex = 10
  2693. Me.Label74.Text = "項目"
  2694. Me.Label74.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  2695. '
  2696. 'Label75
  2697. '
  2698. Me.Label75.Anchor = CType(((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Left) _
  2699. Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  2700. Me.Label75.BackColor = System.Drawing.Color.LightGray
  2701. Me.Label75.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  2702. Me.Label75.Location = New System.Drawing.Point(-1, -1)
  2703. Me.Label75.Name = "Label75"
  2704. Me.Label75.Size = New System.Drawing.Size(375, 26)
  2705. Me.Label75.TabIndex = 9
  2706. Me.Label75.Text = "非工資應加項目"
  2707. Me.Label75.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  2708. '
  2709. '年_lb
  2710. '
  2711. Me.年_lb.AutoSize = True
  2712. Me.年_lb.Font = New System.Drawing.Font("微軟正黑體", 12.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2713. Me.年_lb.Location = New System.Drawing.Point(253, 37)
  2714. Me.年_lb.Name = "年_lb"
  2715. Me.年_lb.Size = New System.Drawing.Size(39, 20)
  2716. Me.年_lb.TabIndex = 4
  2717. Me.年_lb.Text = "XXX"
  2718. '
  2719. 'Panel7
  2720. '
  2721. Me.Panel7.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  2722. Me.Panel7.Controls.Add(Me.轉場津貼1_lb)
  2723. Me.Panel7.Controls.Add(Me.小4_lb)
  2724. Me.Panel7.Controls.Add(Me.轉場津貼_lb)
  2725. Me.Panel7.Controls.Add(Me.Label51)
  2726. Me.Panel7.Controls.Add(Me.服務津貼1_lb)
  2727. Me.Panel7.Controls.Add(Me.D12_alb)
  2728. Me.Panel7.Controls.Add(Me.服務津貼_lb)
  2729. Me.Panel7.Controls.Add(Me.D12_clb)
  2730. Me.Panel7.Controls.Add(Me.D11_alb)
  2731. Me.Panel7.Controls.Add(Me.D11_clb)
  2732. Me.Panel7.Controls.Add(Me.D10_alb)
  2733. Me.Panel7.Controls.Add(Me.D10_clb)
  2734. Me.Panel7.Controls.Add(Me.D09_alb)
  2735. Me.Panel7.Controls.Add(Me.D09_clb)
  2736. Me.Panel7.Controls.Add(Me.D08_alb)
  2737. Me.Panel7.Controls.Add(Me.D08_clb)
  2738. Me.Panel7.Controls.Add(Me.D07_alb)
  2739. Me.Panel7.Controls.Add(Me.D07_clb)
  2740. Me.Panel7.Controls.Add(Me.D06_alb)
  2741. Me.Panel7.Controls.Add(Me.D06_clb)
  2742. Me.Panel7.Controls.Add(Me.D05_alb)
  2743. Me.Panel7.Controls.Add(Me.D05_clb)
  2744. Me.Panel7.Controls.Add(Me.D04_alb)
  2745. Me.Panel7.Controls.Add(Me.D04_clb)
  2746. Me.Panel7.Controls.Add(Me.D03_alb)
  2747. Me.Panel7.Controls.Add(Me.D03_clb)
  2748. Me.Panel7.Controls.Add(Me.Label91)
  2749. Me.Panel7.Controls.Add(Me.Label92)
  2750. Me.Panel7.Controls.Add(Me.D02_alb)
  2751. Me.Panel7.Controls.Add(Me.D02_clb)
  2752. Me.Panel7.Controls.Add(Me.D01_alb)
  2753. Me.Panel7.Controls.Add(Me.D01_clb)
  2754. Me.Panel7.Controls.Add(Me.Label97)
  2755. Me.Panel7.Controls.Add(Me.Label99)
  2756. Me.Panel7.Controls.Add(Me.Label100)
  2757. Me.Panel7.Controls.Add(Me.Label102)
  2758. Me.Panel7.Controls.Add(Me.Label103)
  2759. Me.Panel7.Location = New System.Drawing.Point(7, 145)
  2760. Me.Panel7.Name = "Panel7"
  2761. Me.Panel7.Size = New System.Drawing.Size(540, 153)
  2762. Me.Panel7.TabIndex = 12
  2763. '
  2764. '轉場津貼1_lb
  2765. '
  2766. Me.轉場津貼1_lb.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  2767. Me.轉場津貼1_lb.Location = New System.Drawing.Point(290, 130)
  2768. Me.轉場津貼1_lb.Name = "轉場津貼1_lb"
  2769. Me.轉場津貼1_lb.Size = New System.Drawing.Size(69, 22)
  2770. Me.轉場津貼1_lb.TabIndex = 21
  2771. Me.轉場津貼1_lb.Text = "0"
  2772. Me.轉場津貼1_lb.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  2773. '
  2774. '小4_lb
  2775. '
  2776. Me.小4_lb.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  2777. Me.小4_lb.Location = New System.Drawing.Point(425, -1)
  2778. Me.小4_lb.Name = "小4_lb"
  2779. Me.小4_lb.Size = New System.Drawing.Size(114, 26)
  2780. Me.小4_lb.TabIndex = 74
  2781. Me.小4_lb.Text = "0"
  2782. Me.小4_lb.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  2783. '
  2784. '轉場津貼_lb
  2785. '
  2786. Me.轉場津貼_lb.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  2787. Me.轉場津貼_lb.Location = New System.Drawing.Point(178, 130)
  2788. Me.轉場津貼_lb.Name = "轉場津貼_lb"
  2789. Me.轉場津貼_lb.Size = New System.Drawing.Size(113, 22)
  2790. Me.轉場津貼_lb.TabIndex = 20
  2791. Me.轉場津貼_lb.Text = "轉場津貼"
  2792. Me.轉場津貼_lb.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  2793. '
  2794. 'Label51
  2795. '
  2796. Me.Label51.Anchor = CType(((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Left) _
  2797. Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  2798. Me.Label51.BackColor = System.Drawing.Color.LightGray
  2799. Me.Label51.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  2800. Me.Label51.Location = New System.Drawing.Point(351, -1)
  2801. Me.Label51.Name = "Label51"
  2802. Me.Label51.Size = New System.Drawing.Size(75, 26)
  2803. Me.Label51.TabIndex = 73
  2804. Me.Label51.Text = "小計"
  2805. Me.Label51.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  2806. '
  2807. '服務津貼1_lb
  2808. '
  2809. Me.服務津貼1_lb.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  2810. Me.服務津貼1_lb.Location = New System.Drawing.Point(111, 130)
  2811. Me.服務津貼1_lb.Name = "服務津貼1_lb"
  2812. Me.服務津貼1_lb.Size = New System.Drawing.Size(69, 22)
  2813. Me.服務津貼1_lb.TabIndex = 19
  2814. Me.服務津貼1_lb.Text = "0"
  2815. Me.服務津貼1_lb.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  2816. '
  2817. 'D12_alb
  2818. '
  2819. Me.D12_alb.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  2820. Me.D12_alb.Location = New System.Drawing.Point(470, 109)
  2821. Me.D12_alb.Name = "D12_alb"
  2822. Me.D12_alb.Size = New System.Drawing.Size(69, 22)
  2823. Me.D12_alb.TabIndex = 72
  2824. Me.D12_alb.Text = "0"
  2825. Me.D12_alb.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  2826. '
  2827. '服務津貼_lb
  2828. '
  2829. Me.服務津貼_lb.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  2830. Me.服務津貼_lb.Location = New System.Drawing.Point(-1, 130)
  2831. Me.服務津貼_lb.Name = "服務津貼_lb"
  2832. Me.服務津貼_lb.Size = New System.Drawing.Size(113, 22)
  2833. Me.服務津貼_lb.TabIndex = 18
  2834. Me.服務津貼_lb.Text = "服務津貼"
  2835. Me.服務津貼_lb.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  2836. '
  2837. 'D12_clb
  2838. '
  2839. Me.D12_clb.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  2840. Me.D12_clb.Location = New System.Drawing.Point(358, 109)
  2841. Me.D12_clb.Name = "D12_clb"
  2842. Me.D12_clb.Size = New System.Drawing.Size(113, 22)
  2843. Me.D12_clb.TabIndex = 71
  2844. Me.D12_clb.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  2845. '
  2846. 'D11_alb
  2847. '
  2848. Me.D11_alb.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  2849. Me.D11_alb.Location = New System.Drawing.Point(290, 109)
  2850. Me.D11_alb.Name = "D11_alb"
  2851. Me.D11_alb.Size = New System.Drawing.Size(69, 22)
  2852. Me.D11_alb.TabIndex = 70
  2853. Me.D11_alb.Text = "0"
  2854. Me.D11_alb.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  2855. '
  2856. 'D11_clb
  2857. '
  2858. Me.D11_clb.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  2859. Me.D11_clb.Location = New System.Drawing.Point(178, 109)
  2860. Me.D11_clb.Name = "D11_clb"
  2861. Me.D11_clb.Size = New System.Drawing.Size(113, 22)
  2862. Me.D11_clb.TabIndex = 69
  2863. Me.D11_clb.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  2864. '
  2865. 'D10_alb
  2866. '
  2867. Me.D10_alb.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  2868. Me.D10_alb.Location = New System.Drawing.Point(111, 109)
  2869. Me.D10_alb.Name = "D10_alb"
  2870. Me.D10_alb.Size = New System.Drawing.Size(69, 22)
  2871. Me.D10_alb.TabIndex = 68
  2872. Me.D10_alb.Text = "0"
  2873. Me.D10_alb.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  2874. '
  2875. 'D10_clb
  2876. '
  2877. Me.D10_clb.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  2878. Me.D10_clb.Location = New System.Drawing.Point(-1, 109)
  2879. Me.D10_clb.Name = "D10_clb"
  2880. Me.D10_clb.Size = New System.Drawing.Size(113, 22)
  2881. Me.D10_clb.TabIndex = 67
  2882. Me.D10_clb.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  2883. '
  2884. 'D09_alb
  2885. '
  2886. Me.D09_alb.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  2887. Me.D09_alb.Location = New System.Drawing.Point(470, 88)
  2888. Me.D09_alb.Name = "D09_alb"
  2889. Me.D09_alb.Size = New System.Drawing.Size(69, 22)
  2890. Me.D09_alb.TabIndex = 66
  2891. Me.D09_alb.Text = "0"
  2892. Me.D09_alb.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  2893. '
  2894. 'D09_clb
  2895. '
  2896. Me.D09_clb.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  2897. Me.D09_clb.Location = New System.Drawing.Point(358, 88)
  2898. Me.D09_clb.Name = "D09_clb"
  2899. Me.D09_clb.Size = New System.Drawing.Size(113, 22)
  2900. Me.D09_clb.TabIndex = 65
  2901. Me.D09_clb.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  2902. '
  2903. 'D08_alb
  2904. '
  2905. Me.D08_alb.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  2906. Me.D08_alb.Location = New System.Drawing.Point(290, 88)
  2907. Me.D08_alb.Name = "D08_alb"
  2908. Me.D08_alb.Size = New System.Drawing.Size(69, 22)
  2909. Me.D08_alb.TabIndex = 64
  2910. Me.D08_alb.Text = "0"
  2911. Me.D08_alb.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  2912. '
  2913. 'D08_clb
  2914. '
  2915. Me.D08_clb.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  2916. Me.D08_clb.Location = New System.Drawing.Point(178, 88)
  2917. Me.D08_clb.Name = "D08_clb"
  2918. Me.D08_clb.Size = New System.Drawing.Size(113, 22)
  2919. Me.D08_clb.TabIndex = 63
  2920. Me.D08_clb.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  2921. '
  2922. 'D07_alb
  2923. '
  2924. Me.D07_alb.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  2925. Me.D07_alb.Location = New System.Drawing.Point(111, 88)
  2926. Me.D07_alb.Name = "D07_alb"
  2927. Me.D07_alb.Size = New System.Drawing.Size(69, 22)
  2928. Me.D07_alb.TabIndex = 62
  2929. Me.D07_alb.Text = "0"
  2930. Me.D07_alb.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  2931. '
  2932. 'D07_clb
  2933. '
  2934. Me.D07_clb.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  2935. Me.D07_clb.Location = New System.Drawing.Point(-1, 88)
  2936. Me.D07_clb.Name = "D07_clb"
  2937. Me.D07_clb.Size = New System.Drawing.Size(113, 22)
  2938. Me.D07_clb.TabIndex = 61
  2939. Me.D07_clb.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  2940. '
  2941. 'D06_alb
  2942. '
  2943. Me.D06_alb.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  2944. Me.D06_alb.Location = New System.Drawing.Point(470, 67)
  2945. Me.D06_alb.Name = "D06_alb"
  2946. Me.D06_alb.Size = New System.Drawing.Size(69, 22)
  2947. Me.D06_alb.TabIndex = 60
  2948. Me.D06_alb.Text = "0"
  2949. Me.D06_alb.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  2950. '
  2951. 'D06_clb
  2952. '
  2953. Me.D06_clb.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  2954. Me.D06_clb.Location = New System.Drawing.Point(358, 67)
  2955. Me.D06_clb.Name = "D06_clb"
  2956. Me.D06_clb.Size = New System.Drawing.Size(113, 22)
  2957. Me.D06_clb.TabIndex = 59
  2958. Me.D06_clb.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  2959. '
  2960. 'D05_alb
  2961. '
  2962. Me.D05_alb.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  2963. Me.D05_alb.Location = New System.Drawing.Point(290, 67)
  2964. Me.D05_alb.Name = "D05_alb"
  2965. Me.D05_alb.Size = New System.Drawing.Size(69, 22)
  2966. Me.D05_alb.TabIndex = 58
  2967. Me.D05_alb.Text = "0"
  2968. Me.D05_alb.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  2969. '
  2970. 'D05_clb
  2971. '
  2972. Me.D05_clb.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  2973. Me.D05_clb.Location = New System.Drawing.Point(178, 67)
  2974. Me.D05_clb.Name = "D05_clb"
  2975. Me.D05_clb.Size = New System.Drawing.Size(113, 22)
  2976. Me.D05_clb.TabIndex = 57
  2977. Me.D05_clb.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  2978. '
  2979. 'D04_alb
  2980. '
  2981. Me.D04_alb.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  2982. Me.D04_alb.Location = New System.Drawing.Point(111, 67)
  2983. Me.D04_alb.Name = "D04_alb"
  2984. Me.D04_alb.Size = New System.Drawing.Size(69, 22)
  2985. Me.D04_alb.TabIndex = 56
  2986. Me.D04_alb.Text = "0"
  2987. Me.D04_alb.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  2988. '
  2989. 'D04_clb
  2990. '
  2991. Me.D04_clb.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  2992. Me.D04_clb.Location = New System.Drawing.Point(-1, 67)
  2993. Me.D04_clb.Name = "D04_clb"
  2994. Me.D04_clb.Size = New System.Drawing.Size(113, 22)
  2995. Me.D04_clb.TabIndex = 55
  2996. Me.D04_clb.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  2997. '
  2998. 'D03_alb
  2999. '
  3000. Me.D03_alb.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  3001. Me.D03_alb.Location = New System.Drawing.Point(470, 46)
  3002. Me.D03_alb.Name = "D03_alb"
  3003. Me.D03_alb.Size = New System.Drawing.Size(69, 22)
  3004. Me.D03_alb.TabIndex = 54
  3005. Me.D03_alb.Text = "0"
  3006. Me.D03_alb.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  3007. '
  3008. 'D03_clb
  3009. '
  3010. Me.D03_clb.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  3011. Me.D03_clb.Location = New System.Drawing.Point(358, 46)
  3012. Me.D03_clb.Name = "D03_clb"
  3013. Me.D03_clb.Size = New System.Drawing.Size(113, 22)
  3014. Me.D03_clb.TabIndex = 53
  3015. Me.D03_clb.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  3016. '
  3017. 'Label91
  3018. '
  3019. Me.Label91.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  3020. Me.Label91.Location = New System.Drawing.Point(470, 24)
  3021. Me.Label91.Name = "Label91"
  3022. Me.Label91.Size = New System.Drawing.Size(69, 23)
  3023. Me.Label91.TabIndex = 52
  3024. Me.Label91.Text = "金額"
  3025. Me.Label91.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  3026. '
  3027. 'Label92
  3028. '
  3029. Me.Label92.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  3030. Me.Label92.Location = New System.Drawing.Point(358, 24)
  3031. Me.Label92.Name = "Label92"
  3032. Me.Label92.Size = New System.Drawing.Size(113, 23)
  3033. Me.Label92.TabIndex = 51
  3034. Me.Label92.Text = "項目"
  3035. Me.Label92.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  3036. '
  3037. 'D02_alb
  3038. '
  3039. Me.D02_alb.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  3040. Me.D02_alb.Location = New System.Drawing.Point(290, 46)
  3041. Me.D02_alb.Name = "D02_alb"
  3042. Me.D02_alb.Size = New System.Drawing.Size(69, 22)
  3043. Me.D02_alb.TabIndex = 50
  3044. Me.D02_alb.Text = "0"
  3045. Me.D02_alb.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  3046. '
  3047. 'D02_clb
  3048. '
  3049. Me.D02_clb.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  3050. Me.D02_clb.Location = New System.Drawing.Point(178, 46)
  3051. Me.D02_clb.Name = "D02_clb"
  3052. Me.D02_clb.Size = New System.Drawing.Size(113, 22)
  3053. Me.D02_clb.TabIndex = 49
  3054. Me.D02_clb.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  3055. '
  3056. 'D01_alb
  3057. '
  3058. Me.D01_alb.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  3059. Me.D01_alb.Location = New System.Drawing.Point(111, 46)
  3060. Me.D01_alb.Name = "D01_alb"
  3061. Me.D01_alb.Size = New System.Drawing.Size(69, 22)
  3062. Me.D01_alb.TabIndex = 48
  3063. Me.D01_alb.Text = "0"
  3064. Me.D01_alb.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  3065. '
  3066. 'D01_clb
  3067. '
  3068. Me.D01_clb.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  3069. Me.D01_clb.Location = New System.Drawing.Point(-1, 46)
  3070. Me.D01_clb.Name = "D01_clb"
  3071. Me.D01_clb.Size = New System.Drawing.Size(113, 22)
  3072. Me.D01_clb.TabIndex = 47
  3073. Me.D01_clb.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  3074. '
  3075. 'Label97
  3076. '
  3077. Me.Label97.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  3078. Me.Label97.Location = New System.Drawing.Point(290, 24)
  3079. Me.Label97.Name = "Label97"
  3080. Me.Label97.Size = New System.Drawing.Size(69, 23)
  3081. Me.Label97.TabIndex = 46
  3082. Me.Label97.Text = "金額"
  3083. Me.Label97.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  3084. '
  3085. 'Label99
  3086. '
  3087. Me.Label99.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  3088. Me.Label99.Location = New System.Drawing.Point(178, 24)
  3089. Me.Label99.Name = "Label99"
  3090. Me.Label99.Size = New System.Drawing.Size(113, 23)
  3091. Me.Label99.TabIndex = 45
  3092. Me.Label99.Text = "項目"
  3093. Me.Label99.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  3094. '
  3095. 'Label100
  3096. '
  3097. Me.Label100.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  3098. Me.Label100.Location = New System.Drawing.Point(111, 24)
  3099. Me.Label100.Name = "Label100"
  3100. Me.Label100.Size = New System.Drawing.Size(69, 23)
  3101. Me.Label100.TabIndex = 44
  3102. Me.Label100.Text = "金額"
  3103. Me.Label100.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  3104. '
  3105. 'Label102
  3106. '
  3107. Me.Label102.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  3108. Me.Label102.Location = New System.Drawing.Point(-1, 24)
  3109. Me.Label102.Name = "Label102"
  3110. Me.Label102.Size = New System.Drawing.Size(113, 23)
  3111. Me.Label102.TabIndex = 43
  3112. Me.Label102.Text = "項目"
  3113. Me.Label102.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  3114. '
  3115. 'Label103
  3116. '
  3117. Me.Label103.Anchor = CType(((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Left) _
  3118. Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  3119. Me.Label103.BackColor = System.Drawing.Color.LightGray
  3120. Me.Label103.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  3121. Me.Label103.Location = New System.Drawing.Point(-1, -1)
  3122. Me.Label103.Name = "Label103"
  3123. Me.Label103.Size = New System.Drawing.Size(353, 26)
  3124. Me.Label103.TabIndex = 42
  3125. Me.Label103.Text = "薪資加項(D項)"
  3126. Me.Label103.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  3127. '
  3128. 'Label34
  3129. '
  3130. Me.Label34.AutoSize = True
  3131. Me.Label34.Font = New System.Drawing.Font("微軟正黑體", 12.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  3132. Me.Label34.Location = New System.Drawing.Point(293, 37)
  3133. Me.Label34.Name = "Label34"
  3134. Me.Label34.Size = New System.Drawing.Size(25, 20)
  3135. Me.Label34.TabIndex = 5
  3136. Me.Label34.Text = "年"
  3137. '
  3138. 'Panel6
  3139. '
  3140. Me.Panel6.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  3141. Me.Panel6.Controls.Add(Me.實領_lb)
  3142. Me.Panel6.Controls.Add(Me.小21_lb)
  3143. Me.Panel6.Controls.Add(Me.小31_lb)
  3144. Me.Panel6.Controls.Add(Me.合1_lb)
  3145. Me.Panel6.Controls.Add(Me.Label52)
  3146. Me.Panel6.Controls.Add(Me.Label53)
  3147. Me.Panel6.Controls.Add(Me.特休_lb)
  3148. Me.Panel6.Controls.Add(Me.Label54)
  3149. Me.Panel6.Controls.Add(Me.Label55)
  3150. Me.Panel6.Controls.Add(Me.Label56)
  3151. Me.Panel6.Controls.Add(Me.Label43)
  3152. Me.Panel6.Location = New System.Drawing.Point(554, 63)
  3153. Me.Panel6.Name = "Panel6"
  3154. Me.Panel6.Size = New System.Drawing.Size(562, 76)
  3155. Me.Panel6.TabIndex = 11
  3156. '
  3157. '實領_lb
  3158. '
  3159. Me.實領_lb.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  3160. Me.實領_lb.Location = New System.Drawing.Point(447, 49)
  3161. Me.實領_lb.Name = "實領_lb"
  3162. Me.實領_lb.Size = New System.Drawing.Size(114, 26)
  3163. Me.實領_lb.TabIndex = 17
  3164. Me.實領_lb.Text = "0"
  3165. Me.實領_lb.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  3166. '
  3167. '小21_lb
  3168. '
  3169. Me.小21_lb.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  3170. Me.小21_lb.Location = New System.Drawing.Point(335, 49)
  3171. Me.小21_lb.Name = "小21_lb"
  3172. Me.小21_lb.Size = New System.Drawing.Size(113, 26)
  3173. Me.小21_lb.TabIndex = 16
  3174. Me.小21_lb.Text = "0"
  3175. Me.小21_lb.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  3176. '
  3177. '小31_lb
  3178. '
  3179. Me.小31_lb.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  3180. Me.小31_lb.Location = New System.Drawing.Point(223, 49)
  3181. Me.小31_lb.Name = "小31_lb"
  3182. Me.小31_lb.Size = New System.Drawing.Size(113, 26)
  3183. Me.小31_lb.TabIndex = 15
  3184. Me.小31_lb.Text = "0"
  3185. Me.小31_lb.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  3186. '
  3187. '合1_lb
  3188. '
  3189. Me.合1_lb.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  3190. Me.合1_lb.Location = New System.Drawing.Point(-1, 49)
  3191. Me.合1_lb.Name = "合1_lb"
  3192. Me.合1_lb.Size = New System.Drawing.Size(113, 26)
  3193. Me.合1_lb.TabIndex = 14
  3194. Me.合1_lb.Text = "0"
  3195. Me.合1_lb.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  3196. '
  3197. 'Label52
  3198. '
  3199. Me.Label52.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  3200. Me.Label52.Location = New System.Drawing.Point(447, 24)
  3201. Me.Label52.Name = "Label52"
  3202. Me.Label52.Size = New System.Drawing.Size(114, 26)
  3203. Me.Label52.TabIndex = 13
  3204. Me.Label52.Text = "實領薪資"
  3205. Me.Label52.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  3206. '
  3207. 'Label53
  3208. '
  3209. Me.Label53.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  3210. Me.Label53.Location = New System.Drawing.Point(335, 24)
  3211. Me.Label53.Name = "Label53"
  3212. Me.Label53.Size = New System.Drawing.Size(113, 26)
  3213. Me.Label53.TabIndex = 12
  3214. Me.Label53.Text = "應扣項目"
  3215. Me.Label53.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  3216. '
  3217. '特休_lb
  3218. '
  3219. Me.特休_lb.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  3220. Me.特休_lb.Location = New System.Drawing.Point(111, 49)
  3221. Me.特休_lb.Name = "特休_lb"
  3222. Me.特休_lb.Size = New System.Drawing.Size(113, 26)
  3223. Me.特休_lb.TabIndex = 17
  3224. Me.特休_lb.Text = "0"
  3225. Me.特休_lb.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  3226. '
  3227. 'Label54
  3228. '
  3229. Me.Label54.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  3230. Me.Label54.Location = New System.Drawing.Point(223, 24)
  3231. Me.Label54.Name = "Label54"
  3232. Me.Label54.Size = New System.Drawing.Size(113, 26)
  3233. Me.Label54.TabIndex = 11
  3234. Me.Label54.Text = "非工資應加項目"
  3235. Me.Label54.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  3236. '
  3237. 'Label55
  3238. '
  3239. Me.Label55.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  3240. Me.Label55.Location = New System.Drawing.Point(-1, 24)
  3241. Me.Label55.Name = "Label55"
  3242. Me.Label55.Size = New System.Drawing.Size(113, 26)
  3243. Me.Label55.TabIndex = 10
  3244. Me.Label55.Text = "工資項目合計"
  3245. Me.Label55.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  3246. '
  3247. 'Label56
  3248. '
  3249. Me.Label56.Anchor = CType(((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Left) _
  3250. Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  3251. Me.Label56.BackColor = System.Drawing.Color.LightGray
  3252. Me.Label56.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  3253. Me.Label56.Location = New System.Drawing.Point(-1, -1)
  3254. Me.Label56.Name = "Label56"
  3255. Me.Label56.Size = New System.Drawing.Size(562, 26)
  3256. Me.Label56.TabIndex = 9
  3257. Me.Label56.Text = "服務薪資明細"
  3258. Me.Label56.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  3259. '
  3260. 'Label43
  3261. '
  3262. Me.Label43.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  3263. Me.Label43.Location = New System.Drawing.Point(111, 24)
  3264. Me.Label43.Name = "Label43"
  3265. Me.Label43.Size = New System.Drawing.Size(113, 26)
  3266. Me.Label43.TabIndex = 13
  3267. Me.Label43.Text = "特休換現"
  3268. Me.Label43.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  3269. '
  3270. '月_lb
  3271. '
  3272. Me.月_lb.AutoSize = True
  3273. Me.月_lb.Font = New System.Drawing.Font("微軟正黑體", 12.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  3274. Me.月_lb.Location = New System.Drawing.Point(319, 37)
  3275. Me.月_lb.Name = "月_lb"
  3276. Me.月_lb.Size = New System.Drawing.Size(29, 20)
  3277. Me.月_lb.TabIndex = 6
  3278. Me.月_lb.Text = "XX"
  3279. '
  3280. 'Panel5
  3281. '
  3282. Me.Panel5.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  3283. Me.Panel5.Controls.Add(Me.小51_lb)
  3284. Me.Panel5.Controls.Add(Me.Label110)
  3285. Me.Panel5.Controls.Add(Me.轉正常_lb)
  3286. Me.Panel5.Controls.Add(Me.Label59)
  3287. Me.Panel5.Controls.Add(Me.小41_lb)
  3288. Me.Panel5.Controls.Add(Me.Label57)
  3289. Me.Panel5.Controls.Add(Me.加班_lb)
  3290. Me.Panel5.Controls.Add(Me.AA1_lb)
  3291. Me.Panel5.Controls.Add(Me.正常_lb)
  3292. Me.Panel5.Controls.Add(Me.Label42)
  3293. Me.Panel5.Controls.Add(Me.Label41)
  3294. Me.Panel5.Controls.Add(Me.Label40)
  3295. Me.Panel5.Controls.Add(Me.Label39)
  3296. Me.Panel5.Location = New System.Drawing.Point(7, 63)
  3297. Me.Panel5.Name = "Panel5"
  3298. Me.Panel5.Size = New System.Drawing.Size(540, 76)
  3299. Me.Panel5.TabIndex = 10
  3300. '
  3301. '小51_lb
  3302. '
  3303. Me.小51_lb.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  3304. Me.小51_lb.Location = New System.Drawing.Point(449, 49)
  3305. Me.小51_lb.Name = "小51_lb"
  3306. Me.小51_lb.Size = New System.Drawing.Size(91, 26)
  3307. Me.小51_lb.TabIndex = 27
  3308. Me.小51_lb.Text = "0"
  3309. Me.小51_lb.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  3310. '
  3311. 'Label110
  3312. '
  3313. Me.Label110.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  3314. Me.Label110.Location = New System.Drawing.Point(449, 24)
  3315. Me.Label110.Name = "Label110"
  3316. Me.Label110.Size = New System.Drawing.Size(91, 26)
  3317. Me.Label110.TabIndex = 26
  3318. Me.Label110.Text = "轉場加班費"
  3319. Me.Label110.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  3320. '
  3321. '轉正常_lb
  3322. '
  3323. Me.轉正常_lb.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  3324. Me.轉正常_lb.Location = New System.Drawing.Point(269, 49)
  3325. Me.轉正常_lb.Name = "轉正常_lb"
  3326. Me.轉正常_lb.Size = New System.Drawing.Size(91, 26)
  3327. Me.轉正常_lb.TabIndex = 25
  3328. Me.轉正常_lb.Text = "0"
  3329. Me.轉正常_lb.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  3330. '
  3331. 'Label59
  3332. '
  3333. Me.Label59.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  3334. Me.Label59.Location = New System.Drawing.Point(269, 24)
  3335. Me.Label59.Name = "Label59"
  3336. Me.Label59.Size = New System.Drawing.Size(91, 26)
  3337. Me.Label59.TabIndex = 24
  3338. Me.Label59.Text = "正常班轉場"
  3339. Me.Label59.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  3340. '
  3341. '小41_lb
  3342. '
  3343. Me.小41_lb.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  3344. Me.小41_lb.Location = New System.Drawing.Point(179, 49)
  3345. Me.小41_lb.Name = "小41_lb"
  3346. Me.小41_lb.Size = New System.Drawing.Size(91, 26)
  3347. Me.小41_lb.TabIndex = 23
  3348. Me.小41_lb.Text = "0"
  3349. Me.小41_lb.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  3350. '
  3351. 'Label57
  3352. '
  3353. Me.Label57.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  3354. Me.Label57.Location = New System.Drawing.Point(179, 24)
  3355. Me.Label57.Name = "Label57"
  3356. Me.Label57.Size = New System.Drawing.Size(91, 26)
  3357. Me.Label57.TabIndex = 22
  3358. Me.Label57.Text = "薪資加項(D)"
  3359. Me.Label57.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  3360. '
  3361. '加班_lb
  3362. '
  3363. Me.加班_lb.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  3364. Me.加班_lb.Location = New System.Drawing.Point(359, 49)
  3365. Me.加班_lb.Name = "加班_lb"
  3366. Me.加班_lb.Size = New System.Drawing.Size(91, 26)
  3367. Me.加班_lb.TabIndex = 16
  3368. Me.加班_lb.Text = "0"
  3369. Me.加班_lb.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  3370. '
  3371. 'AA1_lb
  3372. '
  3373. Me.AA1_lb.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  3374. Me.AA1_lb.Location = New System.Drawing.Point(89, 49)
  3375. Me.AA1_lb.Name = "AA1_lb"
  3376. Me.AA1_lb.Size = New System.Drawing.Size(91, 26)
  3377. Me.AA1_lb.TabIndex = 15
  3378. Me.AA1_lb.Text = "0"
  3379. Me.AA1_lb.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  3380. '
  3381. '正常_lb
  3382. '
  3383. Me.正常_lb.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  3384. Me.正常_lb.Location = New System.Drawing.Point(-1, 49)
  3385. Me.正常_lb.Name = "正常_lb"
  3386. Me.正常_lb.Size = New System.Drawing.Size(91, 26)
  3387. Me.正常_lb.TabIndex = 14
  3388. Me.正常_lb.Text = "0"
  3389. Me.正常_lb.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  3390. '
  3391. 'Label42
  3392. '
  3393. Me.Label42.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  3394. Me.Label42.Location = New System.Drawing.Point(359, 24)
  3395. Me.Label42.Name = "Label42"
  3396. Me.Label42.Size = New System.Drawing.Size(91, 26)
  3397. Me.Label42.TabIndex = 12
  3398. Me.Label42.Text = "工項加班費"
  3399. Me.Label42.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  3400. '
  3401. 'Label41
  3402. '
  3403. Me.Label41.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  3404. Me.Label41.Location = New System.Drawing.Point(89, 24)
  3405. Me.Label41.Name = "Label41"
  3406. Me.Label41.Size = New System.Drawing.Size(91, 26)
  3407. Me.Label41.TabIndex = 11
  3408. Me.Label41.Text = "AA碼"
  3409. Me.Label41.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  3410. '
  3411. 'Label40
  3412. '
  3413. Me.Label40.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  3414. Me.Label40.Location = New System.Drawing.Point(-1, 24)
  3415. Me.Label40.Name = "Label40"
  3416. Me.Label40.Size = New System.Drawing.Size(91, 26)
  3417. Me.Label40.TabIndex = 10
  3418. Me.Label40.Text = "正常班薪資"
  3419. Me.Label40.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  3420. '
  3421. 'Label39
  3422. '
  3423. Me.Label39.Anchor = CType(((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Left) _
  3424. Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  3425. Me.Label39.BackColor = System.Drawing.Color.LightGray
  3426. Me.Label39.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  3427. Me.Label39.Location = New System.Drawing.Point(-1, -1)
  3428. Me.Label39.Name = "Label39"
  3429. Me.Label39.Size = New System.Drawing.Size(540, 26)
  3430. Me.Label39.TabIndex = 9
  3431. Me.Label39.Text = "工資項目"
  3432. Me.Label39.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  3433. '
  3434. 'Label36
  3435. '
  3436. Me.Label36.AutoSize = True
  3437. Me.Label36.Font = New System.Drawing.Font("微軟正黑體", 12.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  3438. Me.Label36.Location = New System.Drawing.Point(349, 37)
  3439. Me.Label36.Name = "Label36"
  3440. Me.Label36.Size = New System.Drawing.Size(25, 20)
  3441. Me.Label36.TabIndex = 7
  3442. Me.Label36.Text = "月"
  3443. '
  3444. 'Label37
  3445. '
  3446. Me.Label37.AutoSize = True
  3447. Me.Label37.Font = New System.Drawing.Font("微軟正黑體", 12.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  3448. Me.Label37.Location = New System.Drawing.Point(922, 37)
  3449. Me.Label37.Name = "Label37"
  3450. Me.Label37.Size = New System.Drawing.Size(89, 20)
  3451. Me.Label37.TabIndex = 8
  3452. Me.Label37.Text = "發放日期:"
  3453. '
  3454. 'Label68
  3455. '
  3456. Me.Label68.BackColor = System.Drawing.Color.White
  3457. Me.Label68.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  3458. Me.Label68.Location = New System.Drawing.Point(276, 321)
  3459. Me.Label68.Name = "Label68"
  3460. Me.Label68.Size = New System.Drawing.Size(203, 22)
  3461. Me.Label68.TabIndex = 79
  3462. Me.Label68.Text = "正常班轉場時數"
  3463. Me.Label68.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  3464. '
  3465. 'Label65
  3466. '
  3467. Me.Label65.BackColor = System.Drawing.Color.LightGray
  3468. Me.Label65.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  3469. Me.Label65.Location = New System.Drawing.Point(7, 342)
  3470. Me.Label65.Name = "Label65"
  3471. Me.Label65.Size = New System.Drawing.Size(540, 26)
  3472. Me.Label65.TabIndex = 9
  3473. Me.Label65.Text = "加班時薪計算 (( 正常班BA+GA碼 ) + D項 + AA碼 ) / ( 正常工時 + 平日轉場工時 ) = 平日時薪 "
  3474. Me.Label65.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  3475. '
  3476. 'Label64
  3477. '
  3478. Me.Label64.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  3479. Me.Label64.Location = New System.Drawing.Point(7, 367)
  3480. Me.Label64.Name = "Label64"
  3481. Me.Label64.Size = New System.Drawing.Size(91, 21)
  3482. Me.Label64.TabIndex = 10
  3483. Me.Label64.Text = "正常班"
  3484. Me.Label64.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  3485. '
  3486. 'Label63
  3487. '
  3488. Me.Label63.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  3489. Me.Label63.Location = New System.Drawing.Point(187, 367)
  3490. Me.Label63.Name = "Label63"
  3491. Me.Label63.Size = New System.Drawing.Size(91, 21)
  3492. Me.Label63.TabIndex = 11
  3493. Me.Label63.Text = "AA碼"
  3494. Me.Label63.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  3495. '
  3496. 'Label62
  3497. '
  3498. Me.Label62.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  3499. Me.Label62.Location = New System.Drawing.Point(276, 367)
  3500. Me.Label62.Name = "Label62"
  3501. Me.Label62.Size = New System.Drawing.Size(91, 21)
  3502. Me.Label62.TabIndex = 12
  3503. Me.Label62.Text = "正常工時"
  3504. Me.Label62.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  3505. '
  3506. 'Label61
  3507. '
  3508. Me.Label61.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  3509. Me.Label61.Location = New System.Drawing.Point(366, 367)
  3510. Me.Label61.Name = "Label61"
  3511. Me.Label61.Size = New System.Drawing.Size(91, 21)
  3512. Me.Label61.TabIndex = 13
  3513. Me.Label61.Text = "平日轉場工時"
  3514. Me.Label61.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  3515. '
  3516. '正常1_lb
  3517. '
  3518. Me.正常1_lb.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  3519. Me.正常1_lb.Location = New System.Drawing.Point(7, 387)
  3520. Me.正常1_lb.Name = "正常1_lb"
  3521. Me.正常1_lb.Size = New System.Drawing.Size(91, 21)
  3522. Me.正常1_lb.TabIndex = 14
  3523. Me.正常1_lb.Text = "0"
  3524. Me.正常1_lb.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  3525. '
  3526. 'AA2_lb
  3527. '
  3528. Me.AA2_lb.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  3529. Me.AA2_lb.Location = New System.Drawing.Point(187, 387)
  3530. Me.AA2_lb.Name = "AA2_lb"
  3531. Me.AA2_lb.Size = New System.Drawing.Size(91, 21)
  3532. Me.AA2_lb.TabIndex = 15
  3533. Me.AA2_lb.Text = "0"
  3534. Me.AA2_lb.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  3535. '
  3536. '正常工_lb
  3537. '
  3538. Me.正常工_lb.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  3539. Me.正常工_lb.Location = New System.Drawing.Point(276, 387)
  3540. Me.正常工_lb.Name = "正常工_lb"
  3541. Me.正常工_lb.Size = New System.Drawing.Size(91, 21)
  3542. Me.正常工_lb.TabIndex = 16
  3543. Me.正常工_lb.Text = "0"
  3544. Me.正常工_lb.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  3545. '
  3546. '平日轉_lb
  3547. '
  3548. Me.平日轉_lb.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  3549. Me.平日轉_lb.Location = New System.Drawing.Point(366, 387)
  3550. Me.平日轉_lb.Name = "平日轉_lb"
  3551. Me.平日轉_lb.Size = New System.Drawing.Size(91, 21)
  3552. Me.平日轉_lb.TabIndex = 17
  3553. Me.平日轉_lb.Text = "0"
  3554. Me.平日轉_lb.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  3555. '
  3556. 'Label134
  3557. '
  3558. Me.Label134.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  3559. Me.Label134.Location = New System.Drawing.Point(456, 367)
  3560. Me.Label134.Name = "Label134"
  3561. Me.Label134.Size = New System.Drawing.Size(91, 21)
  3562. Me.Label134.TabIndex = 19
  3563. Me.Label134.Text = "平日時薪"
  3564. Me.Label134.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  3565. '
  3566. '平時新_lb
  3567. '
  3568. Me.平時新_lb.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  3569. Me.平時新_lb.Location = New System.Drawing.Point(456, 387)
  3570. Me.平時新_lb.Name = "平時新_lb"
  3571. Me.平時新_lb.Size = New System.Drawing.Size(91, 21)
  3572. Me.平時新_lb.TabIndex = 20
  3573. Me.平時新_lb.Text = "0"
  3574. Me.平時新_lb.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  3575. '
  3576. 'Label174
  3577. '
  3578. Me.Label174.BackColor = System.Drawing.Color.LightGray
  3579. Me.Label174.Location = New System.Drawing.Point(745, 413)
  3580. Me.Label174.Name = "Label174"
  3581. Me.Label174.Size = New System.Drawing.Size(371, 158)
  3582. Me.Label174.TabIndex = 48
  3583. Me.Label174.Text = "(1) AA碼部分因長照所檢核無法在每月7日前確認,故該項為預" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & " 估值,確認後對可能對 AA碼及加班費會有影響,若有差異," & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & " 將於次月進行調整" &
  3584. "。" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "(2) 正常班:平日0-8小時" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "(3) 勞保級距: 特休換現工資平均至發放當月前3個月"
  3585. Me.Label174.TextAlign = System.Drawing.ContentAlignment.MiddleLeft
  3586. '
  3587. 'Panel14
  3588. '
  3589. Me.Panel14.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  3590. Me.Panel14.Controls.Add(Me.Label67)
  3591. Me.Panel14.Controls.Add(Me.轉場存檔_bt)
  3592. Me.Panel14.Controls.Add(Me.轉場薪資_tb)
  3593. Me.Panel14.Controls.Add(Me.扣除狀態_ch)
  3594. Me.Panel14.Location = New System.Drawing.Point(1124, 68)
  3595. Me.Panel14.Name = "Panel14"
  3596. Me.Panel14.Size = New System.Drawing.Size(80, 128)
  3597. Me.Panel14.TabIndex = 1422
  3598. '
  3599. 'Label67
  3600. '
  3601. Me.Label67.Location = New System.Drawing.Point(7, 1)
  3602. Me.Label67.Name = "Label67"
  3603. Me.Label67.Size = New System.Drawing.Size(66, 22)
  3604. Me.Label67.TabIndex = 1420
  3605. Me.Label67.Text = "轉場薪資"
  3606. Me.Label67.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
  3607. '
  3608. '轉場存檔_bt
  3609. '
  3610. Me.轉場存檔_bt.BackgroundImage = Global.ICS_ASMS_ERP_SYS.My.Resources.Resources.SAVER
  3611. Me.轉場存檔_bt.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom
  3612. Me.轉場存檔_bt.Location = New System.Drawing.Point(4, 65)
  3613. Me.轉場存檔_bt.Name = "轉場存檔_bt"
  3614. Me.轉場存檔_bt.Size = New System.Drawing.Size(70, 58)
  3615. Me.轉場存檔_bt.TabIndex = 1421
  3616. Me.轉場存檔_bt.UseVisualStyleBackColor = True
  3617. '
  3618. '轉場薪資_tb
  3619. '
  3620. Me.轉場薪資_tb.Location = New System.Drawing.Point(4, 20)
  3621. Me.轉場薪資_tb.Name = "轉場薪資_tb"
  3622. Me.轉場薪資_tb.Size = New System.Drawing.Size(69, 23)
  3623. Me.轉場薪資_tb.TabIndex = 1419
  3624. Me.轉場薪資_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Center
  3625. '
  3626. '扣除狀態_ch
  3627. '
  3628. Me.扣除狀態_ch.AutoSize = True
  3629. Me.扣除狀態_ch.Enabled = False
  3630. Me.扣除狀態_ch.Location = New System.Drawing.Point(4, 44)
  3631. Me.扣除狀態_ch.Name = "扣除狀態_ch"
  3632. Me.扣除狀態_ch.Size = New System.Drawing.Size(74, 20)
  3633. Me.扣除狀態_ch.TabIndex = 1415
  3634. Me.扣除狀態_ch.Text = "啟用狀態"
  3635. Me.扣除狀態_ch.UseVisualStyleBackColor = True
  3636. '
  3637. 'Panel2
  3638. '
  3639. Me.Panel2.Anchor = CType((((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
  3640. Or System.Windows.Forms.AnchorStyles.Left) _
  3641. Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  3642. Me.Panel2.Controls.Add(Me.轉場津貼_cb)
  3643. Me.Panel2.Controls.Add(Me.服務津貼_cb)
  3644. Me.Panel2.Controls.Add(Me.Label31)
  3645. Me.Panel2.Controls.Add(Me.差異_tb)
  3646. Me.Panel2.Controls.Add(Me.Label28)
  3647. Me.Panel2.Controls.Add(Me.差異_dgv)
  3648. Me.Panel2.Controls.Add(Me.新增_bt)
  3649. Me.Panel2.Controls.Add(Me.存檔4_bt)
  3650. Me.Panel2.Controls.Add(Me.碼別_dgv)
  3651. Me.Panel2.Controls.Add(Me.存檔2_bt)
  3652. Me.Panel2.Controls.Add(Me.表頭_dgv)
  3653. Me.Panel2.Controls.Add(Me.存檔1_bt)
  3654. Me.Panel2.Controls.Add(Me.BA比_dgv)
  3655. Me.Panel2.Controls.Add(Me.存檔_bt)
  3656. Me.Panel2.Controls.Add(Me.階級津貼_dgv)
  3657. Me.Panel2.Controls.Add(Me.Label27)
  3658. Me.Panel2.Location = New System.Drawing.Point(-2, 26)
  3659. Me.Panel2.Name = "Panel2"
  3660. Me.Panel2.Size = New System.Drawing.Size(1292, 584)
  3661. Me.Panel2.TabIndex = 1410
  3662. '
  3663. '轉場津貼_cb
  3664. '
  3665. Me.轉場津貼_cb.AutoSize = True
  3666. Me.轉場津貼_cb.Location = New System.Drawing.Point(1069, 131)
  3667. Me.轉場津貼_cb.Name = "轉場津貼_cb"
  3668. Me.轉場津貼_cb.Size = New System.Drawing.Size(74, 20)
  3669. Me.轉場津貼_cb.TabIndex = 1424
  3670. Me.轉場津貼_cb.Text = "轉場津貼"
  3671. Me.轉場津貼_cb.UseVisualStyleBackColor = True
  3672. '
  3673. '服務津貼_cb
  3674. '
  3675. Me.服務津貼_cb.AutoSize = True
  3676. Me.服務津貼_cb.Location = New System.Drawing.Point(1069, 111)
  3677. Me.服務津貼_cb.Name = "服務津貼_cb"
  3678. Me.服務津貼_cb.Size = New System.Drawing.Size(74, 20)
  3679. Me.服務津貼_cb.TabIndex = 1423
  3680. Me.服務津貼_cb.Text = "服務津貼"
  3681. Me.服務津貼_cb.UseVisualStyleBackColor = True
  3682. '
  3683. 'Label31
  3684. '
  3685. Me.Label31.AutoSize = True
  3686. Me.Label31.ForeColor = System.Drawing.Color.Red
  3687. Me.Label31.Location = New System.Drawing.Point(1066, 6)
  3688. Me.Label31.Name = "Label31"
  3689. Me.Label31.Size = New System.Drawing.Size(207, 96)
  3690. Me.Label31.TabIndex = 1422
  3691. Me.Label31.Text = "請注意 : 在自定義欄位設定裡" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & " 面,[上月薪資差額(減)]" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & " 跟 [上月薪資差額(加)]" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & " 這兩個欄位是必須存在項" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & " 目,用來自動填入A碼差額。" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & " 請不要" &
  3692. "去變更他的設定。 "
  3693. '
  3694. '差異_tb
  3695. '
  3696. Me.差異_tb.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  3697. Me.差異_tb.Location = New System.Drawing.Point(963, 557)
  3698. Me.差異_tb.Name = "差異_tb"
  3699. Me.差異_tb.ReadOnly = True
  3700. Me.差異_tb.Size = New System.Drawing.Size(100, 23)
  3701. Me.差異_tb.TabIndex = 1421
  3702. Me.差異_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  3703. '
  3704. 'Label28
  3705. '
  3706. Me.Label28.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  3707. Me.Label28.AutoSize = True
  3708. Me.Label28.Location = New System.Drawing.Point(921, 561)
  3709. Me.Label28.Name = "Label28"
  3710. Me.Label28.Size = New System.Drawing.Size(40, 16)
  3711. Me.Label28.TabIndex = 1420
  3712. Me.Label28.Text = "合計 : "
  3713. '
  3714. '差異_dgv
  3715. '
  3716. Me.差異_dgv.Anchor = CType(((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
  3717. Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  3718. Me.差異_dgv.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill
  3719. Me.差異_dgv.BackgroundColor = System.Drawing.Color.White
  3720. Me.差異_dgv.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize
  3721. Me.差異_dgv.Location = New System.Drawing.Point(871, 2)
  3722. Me.差異_dgv.Name = "差異_dgv"
  3723. Me.差異_dgv.RowHeadersWidth = 5
  3724. DataGridViewCellStyle15.WrapMode = System.Windows.Forms.DataGridViewTriState.[True]
  3725. Me.差異_dgv.RowsDefaultCellStyle = DataGridViewCellStyle15
  3726. Me.差異_dgv.RowTemplate.Height = 24
  3727. Me.差異_dgv.Size = New System.Drawing.Size(192, 553)
  3728. Me.差異_dgv.TabIndex = 1419
  3729. '
  3730. '新增_bt
  3731. '
  3732. Me.新增_bt.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  3733. Me.新增_bt.ForeColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
  3734. Me.新增_bt.Location = New System.Drawing.Point(677, 556)
  3735. Me.新增_bt.Name = "新增_bt"
  3736. Me.新增_bt.Size = New System.Drawing.Size(97, 26)
  3737. Me.新增_bt.TabIndex = 1417
  3738. Me.新增_bt.Text = "新增"
  3739. Me.新增_bt.UseVisualStyleBackColor = True
  3740. '
  3741. '存檔4_bt
  3742. '
  3743. Me.存檔4_bt.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  3744. Me.存檔4_bt.ForeColor = System.Drawing.Color.Green
  3745. Me.存檔4_bt.Location = New System.Drawing.Point(774, 556)
  3746. Me.存檔4_bt.Name = "存檔4_bt"
  3747. Me.存檔4_bt.Size = New System.Drawing.Size(97, 26)
  3748. Me.存檔4_bt.TabIndex = 1416
  3749. Me.存檔4_bt.Text = "存檔"
  3750. Me.存檔4_bt.UseVisualStyleBackColor = True
  3751. '
  3752. '碼別_dgv
  3753. '
  3754. Me.碼別_dgv.Anchor = CType(((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
  3755. Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  3756. Me.碼別_dgv.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill
  3757. Me.碼別_dgv.BackgroundColor = System.Drawing.Color.White
  3758. Me.碼別_dgv.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize
  3759. Me.碼別_dgv.Location = New System.Drawing.Point(678, 2)
  3760. Me.碼別_dgv.Name = "碼別_dgv"
  3761. Me.碼別_dgv.RowHeadersWidth = 5
  3762. DataGridViewCellStyle16.WrapMode = System.Windows.Forms.DataGridViewTriState.[True]
  3763. Me.碼別_dgv.RowsDefaultCellStyle = DataGridViewCellStyle16
  3764. Me.碼別_dgv.RowTemplate.Height = 24
  3765. Me.碼別_dgv.Size = New System.Drawing.Size(192, 553)
  3766. Me.碼別_dgv.TabIndex = 1408
  3767. '
  3768. '存檔2_bt
  3769. '
  3770. Me.存檔2_bt.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  3771. Me.存檔2_bt.ForeColor = System.Drawing.Color.Green
  3772. Me.存檔2_bt.Location = New System.Drawing.Point(457, 556)
  3773. Me.存檔2_bt.Name = "存檔2_bt"
  3774. Me.存檔2_bt.Size = New System.Drawing.Size(220, 26)
  3775. Me.存檔2_bt.TabIndex = 1414
  3776. Me.存檔2_bt.Text = "存檔"
  3777. Me.存檔2_bt.UseVisualStyleBackColor = True
  3778. '
  3779. '表頭_dgv
  3780. '
  3781. Me.表頭_dgv.Anchor = CType(((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
  3782. Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  3783. Me.表頭_dgv.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill
  3784. Me.表頭_dgv.BackgroundColor = System.Drawing.Color.White
  3785. Me.表頭_dgv.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize
  3786. Me.表頭_dgv.Location = New System.Drawing.Point(457, 2)
  3787. Me.表頭_dgv.Name = "表頭_dgv"
  3788. Me.表頭_dgv.RowHeadersWidth = 5
  3789. DataGridViewCellStyle17.WrapMode = System.Windows.Forms.DataGridViewTriState.[True]
  3790. Me.表頭_dgv.RowsDefaultCellStyle = DataGridViewCellStyle17
  3791. Me.表頭_dgv.RowTemplate.Height = 24
  3792. Me.表頭_dgv.Size = New System.Drawing.Size(220, 553)
  3793. Me.表頭_dgv.TabIndex = 1413
  3794. '
  3795. '存檔1_bt
  3796. '
  3797. Me.存檔1_bt.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  3798. Me.存檔1_bt.ForeColor = System.Drawing.Color.Green
  3799. Me.存檔1_bt.Location = New System.Drawing.Point(296, 556)
  3800. Me.存檔1_bt.Name = "存檔1_bt"
  3801. Me.存檔1_bt.Size = New System.Drawing.Size(160, 26)
  3802. Me.存檔1_bt.TabIndex = 1412
  3803. Me.存檔1_bt.Text = "存檔"
  3804. Me.存檔1_bt.UseVisualStyleBackColor = True
  3805. '
  3806. 'BA比_dgv
  3807. '
  3808. Me.BA比_dgv.Anchor = CType(((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
  3809. Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  3810. Me.BA比_dgv.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill
  3811. Me.BA比_dgv.BackgroundColor = System.Drawing.Color.White
  3812. Me.BA比_dgv.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize
  3813. Me.BA比_dgv.Location = New System.Drawing.Point(296, 2)
  3814. Me.BA比_dgv.Name = "BA比_dgv"
  3815. Me.BA比_dgv.RowHeadersWidth = 5
  3816. DataGridViewCellStyle18.WrapMode = System.Windows.Forms.DataGridViewTriState.[True]
  3817. Me.BA比_dgv.RowsDefaultCellStyle = DataGridViewCellStyle18
  3818. Me.BA比_dgv.RowTemplate.Height = 24
  3819. Me.BA比_dgv.Size = New System.Drawing.Size(160, 553)
  3820. Me.BA比_dgv.TabIndex = 1411
  3821. '
  3822. '存檔_bt
  3823. '
  3824. Me.存檔_bt.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  3825. Me.存檔_bt.ForeColor = System.Drawing.Color.Green
  3826. Me.存檔_bt.Location = New System.Drawing.Point(3, 556)
  3827. Me.存檔_bt.Name = "存檔_bt"
  3828. Me.存檔_bt.Size = New System.Drawing.Size(292, 26)
  3829. Me.存檔_bt.TabIndex = 1410
  3830. Me.存檔_bt.Text = "存檔"
  3831. Me.存檔_bt.UseVisualStyleBackColor = True
  3832. '
  3833. '階級津貼_dgv
  3834. '
  3835. Me.階級津貼_dgv.Anchor = CType(((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
  3836. Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  3837. Me.階級津貼_dgv.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill
  3838. Me.階級津貼_dgv.BackgroundColor = System.Drawing.Color.White
  3839. Me.階級津貼_dgv.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize
  3840. Me.階級津貼_dgv.Location = New System.Drawing.Point(3, 2)
  3841. Me.階級津貼_dgv.Name = "階級津貼_dgv"
  3842. Me.階級津貼_dgv.RowHeadersWidth = 5
  3843. DataGridViewCellStyle19.WrapMode = System.Windows.Forms.DataGridViewTriState.[True]
  3844. Me.階級津貼_dgv.RowsDefaultCellStyle = DataGridViewCellStyle19
  3845. Me.階級津貼_dgv.RowTemplate.Height = 24
  3846. Me.階級津貼_dgv.Size = New System.Drawing.Size(292, 553)
  3847. Me.階級津貼_dgv.TabIndex = 1409
  3848. '
  3849. 'Label27
  3850. '
  3851. Me.Label27.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  3852. Me.Label27.AutoSize = True
  3853. Me.Label27.Location = New System.Drawing.Point(-188, -11)
  3854. Me.Label27.Name = "Label27"
  3855. Me.Label27.Size = New System.Drawing.Size(1482, 16)
  3856. Me.Label27.TabIndex = 1418
  3857. Me.Label27.Text = resources.GetString("Label27.Text")
  3858. '
  3859. 'Panel1
  3860. '
  3861. Me.Panel1.Anchor = CType((((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
  3862. Or System.Windows.Forms.AnchorStyles.Left) _
  3863. Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  3864. Me.Panel1.Controls.Add(Me.AA剃除_dgv)
  3865. Me.Panel1.Controls.Add(Me.轉場加班_dgv)
  3866. Me.Panel1.Controls.Add(Me.BA比1_dgv)
  3867. Me.Panel1.Controls.Add(Me.服務資料_dgv)
  3868. Me.Panel1.Controls.Add(Me.加班計算_dgv)
  3869. Me.Panel1.Location = New System.Drawing.Point(-2, 26)
  3870. Me.Panel1.Name = "Panel1"
  3871. Me.Panel1.Size = New System.Drawing.Size(1292, 584)
  3872. Me.Panel1.TabIndex = 1409
  3873. '
  3874. 'AA剃除_dgv
  3875. '
  3876. Me.AA剃除_dgv.Anchor = CType(((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
  3877. Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  3878. Me.AA剃除_dgv.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill
  3879. Me.AA剃除_dgv.BackgroundColor = System.Drawing.Color.White
  3880. Me.AA剃除_dgv.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize
  3881. Me.AA剃除_dgv.Location = New System.Drawing.Point(886, 274)
  3882. Me.AA剃除_dgv.Name = "AA剃除_dgv"
  3883. Me.AA剃除_dgv.RowHeadersWidth = 5
  3884. DataGridViewCellStyle20.WrapMode = System.Windows.Forms.DataGridViewTriState.[True]
  3885. Me.AA剃除_dgv.RowsDefaultCellStyle = DataGridViewCellStyle20
  3886. Me.AA剃除_dgv.RowTemplate.Height = 24
  3887. Me.AA剃除_dgv.Size = New System.Drawing.Size(405, 310)
  3888. Me.AA剃除_dgv.TabIndex = 1414
  3889. '
  3890. '轉場加班_dgv
  3891. '
  3892. Me.轉場加班_dgv.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  3893. Me.轉場加班_dgv.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill
  3894. Me.轉場加班_dgv.BackgroundColor = System.Drawing.Color.White
  3895. Me.轉場加班_dgv.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize
  3896. Me.轉場加班_dgv.Location = New System.Drawing.Point(692, 2)
  3897. Me.轉場加班_dgv.Name = "轉場加班_dgv"
  3898. Me.轉場加班_dgv.RowHeadersWidth = 5
  3899. DataGridViewCellStyle21.WrapMode = System.Windows.Forms.DataGridViewTriState.[True]
  3900. Me.轉場加班_dgv.RowsDefaultCellStyle = DataGridViewCellStyle21
  3901. Me.轉場加班_dgv.RowTemplate.Height = 24
  3902. Me.轉場加班_dgv.Size = New System.Drawing.Size(599, 272)
  3903. Me.轉場加班_dgv.TabIndex = 1413
  3904. '
  3905. 'BA比1_dgv
  3906. '
  3907. Me.BA比1_dgv.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill
  3908. Me.BA比1_dgv.BackgroundColor = System.Drawing.Color.White
  3909. Me.BA比1_dgv.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize
  3910. Me.BA比1_dgv.Location = New System.Drawing.Point(3, 2)
  3911. Me.BA比1_dgv.Name = "BA比1_dgv"
  3912. Me.BA比1_dgv.RowHeadersWidth = 5
  3913. DataGridViewCellStyle22.WrapMode = System.Windows.Forms.DataGridViewTriState.[True]
  3914. Me.BA比1_dgv.RowsDefaultCellStyle = DataGridViewCellStyle22
  3915. Me.BA比1_dgv.RowTemplate.Height = 24
  3916. Me.BA比1_dgv.Size = New System.Drawing.Size(225, 272)
  3917. Me.BA比1_dgv.TabIndex = 1412
  3918. '
  3919. '服務資料_dgv
  3920. '
  3921. Me.服務資料_dgv.Anchor = CType(((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Left) _
  3922. Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  3923. Me.服務資料_dgv.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill
  3924. Me.服務資料_dgv.BackgroundColor = System.Drawing.Color.White
  3925. Me.服務資料_dgv.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize
  3926. Me.服務資料_dgv.Location = New System.Drawing.Point(227, 2)
  3927. Me.服務資料_dgv.Name = "服務資料_dgv"
  3928. Me.服務資料_dgv.RowHeadersWidth = 5
  3929. DataGridViewCellStyle23.WrapMode = System.Windows.Forms.DataGridViewTriState.[True]
  3930. Me.服務資料_dgv.RowsDefaultCellStyle = DataGridViewCellStyle23
  3931. Me.服務資料_dgv.RowTemplate.Height = 24
  3932. Me.服務資料_dgv.Size = New System.Drawing.Size(467, 272)
  3933. Me.服務資料_dgv.TabIndex = 1407
  3934. '
  3935. '加班計算_dgv
  3936. '
  3937. Me.加班計算_dgv.Anchor = CType((((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
  3938. Or System.Windows.Forms.AnchorStyles.Left) _
  3939. Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  3940. Me.加班計算_dgv.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill
  3941. Me.加班計算_dgv.BackgroundColor = System.Drawing.Color.White
  3942. Me.加班計算_dgv.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize
  3943. Me.加班計算_dgv.Location = New System.Drawing.Point(3, 274)
  3944. Me.加班計算_dgv.Name = "加班計算_dgv"
  3945. Me.加班計算_dgv.RowHeadersWidth = 5
  3946. DataGridViewCellStyle24.WrapMode = System.Windows.Forms.DataGridViewTriState.[True]
  3947. Me.加班計算_dgv.RowsDefaultCellStyle = DataGridViewCellStyle24
  3948. Me.加班計算_dgv.RowTemplate.Height = 24
  3949. Me.加班計算_dgv.Size = New System.Drawing.Size(884, 310)
  3950. Me.加班計算_dgv.TabIndex = 1406
  3951. '
  3952. 'Panel3
  3953. '
  3954. Me.Panel3.Anchor = CType((((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
  3955. Or System.Windows.Forms.AnchorStyles.Left) _
  3956. Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  3957. Me.Panel3.Controls.Add(Me.Dgv1)
  3958. Me.Panel3.Controls.Add(Me.Dgv)
  3959. Me.Panel3.Controls.Add(Me.Panel12)
  3960. Me.Panel3.Controls.Add(Me.主表_P)
  3961. Me.Panel3.Controls.Add(Me.時數表_P)
  3962. Me.Panel3.Controls.Add(Me.公司負擔_P)
  3963. Me.Panel3.Controls.Add(Me.薪資加項_P)
  3964. Me.Panel3.Controls.Add(Me.減項總計_P)
  3965. Me.Panel3.Controls.Add(Me.加項總計_P)
  3966. Me.Panel3.Controls.Add(Me.其它_P)
  3967. Me.Panel3.Location = New System.Drawing.Point(-2, 26)
  3968. Me.Panel3.Name = "Panel3"
  3969. Me.Panel3.Size = New System.Drawing.Size(1292, 584)
  3970. Me.Panel3.TabIndex = 1418
  3971. '
  3972. 'Dgv1
  3973. '
  3974. DataGridViewCellStyle25.BackColor = System.Drawing.Color.FromArgb(CType(CType(255, Byte), Integer), CType(CType(192, Byte), Integer), CType(CType(192, Byte), Integer))
  3975. Me.Dgv1.AlternatingRowsDefaultCellStyle = DataGridViewCellStyle25
  3976. Me.Dgv1.Anchor = CType((((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
  3977. Or System.Windows.Forms.AnchorStyles.Left) _
  3978. Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  3979. Me.Dgv1.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill
  3980. Me.Dgv1.BackgroundColor = System.Drawing.Color.White
  3981. Me.Dgv1.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize
  3982. Me.Dgv1.Location = New System.Drawing.Point(3, 2)
  3983. Me.Dgv1.Name = "Dgv1"
  3984. Me.Dgv1.RowHeadersWidth = 5
  3985. DataGridViewCellStyle26.WrapMode = System.Windows.Forms.DataGridViewTriState.[True]
  3986. Me.Dgv1.RowsDefaultCellStyle = DataGridViewCellStyle26
  3987. Me.Dgv1.RowTemplate.Height = 24
  3988. Me.Dgv1.Size = New System.Drawing.Size(1287, 540)
  3989. Me.Dgv1.TabIndex = 1733
  3990. '
  3991. 'Dgv
  3992. '
  3993. DataGridViewCellStyle27.BackColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(255, Byte), Integer), CType(CType(192, Byte), Integer))
  3994. Me.Dgv.AlternatingRowsDefaultCellStyle = DataGridViewCellStyle27
  3995. Me.Dgv.Anchor = CType((((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
  3996. Or System.Windows.Forms.AnchorStyles.Left) _
  3997. Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  3998. Me.Dgv.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill
  3999. Me.Dgv.BackgroundColor = System.Drawing.Color.White
  4000. Me.Dgv.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize
  4001. Me.Dgv.Location = New System.Drawing.Point(3, 2)
  4002. Me.Dgv.Name = "Dgv"
  4003. Me.Dgv.RowHeadersWidth = 5
  4004. DataGridViewCellStyle28.WrapMode = System.Windows.Forms.DataGridViewTriState.[True]
  4005. Me.Dgv.RowsDefaultCellStyle = DataGridViewCellStyle28
  4006. Me.Dgv.RowTemplate.Height = 24
  4007. Me.Dgv.Size = New System.Drawing.Size(1287, 540)
  4008. Me.Dgv.TabIndex = 1405
  4009. '
  4010. 'Panel12
  4011. '
  4012. Me.Panel12.Controls.Add(Me.重讀1_bt)
  4013. Me.Panel12.Controls.Add(Me.修正月_tb)
  4014. Me.Panel12.Controls.Add(Me.Label14)
  4015. Me.Panel12.Controls.Add(Me.平日月薪_tb)
  4016. Me.Panel12.Controls.Add(Me.Label11)
  4017. Me.Panel12.Controls.Add(Me.加班扣除_tb)
  4018. Me.Panel12.Controls.Add(Me.Label10)
  4019. Me.Panel12.Controls.Add(Me.總薪_tb)
  4020. Me.Panel12.Controls.Add(Me.Label9)
  4021. Me.Panel12.Controls.Add(Me.副薪_tb)
  4022. Me.Panel12.Controls.Add(Me.Label8)
  4023. Me.Panel12.Controls.Add(Me.主薪_tb)
  4024. Me.Panel12.Controls.Add(Me.Label5)
  4025. Me.Panel12.Controls.Add(Me.其他_tb)
  4026. Me.Panel12.Controls.Add(Me.Label4)
  4027. Me.Panel12.Location = New System.Drawing.Point(78, 92)
  4028. Me.Panel12.Name = "Panel12"
  4029. Me.Panel12.Size = New System.Drawing.Size(787, 185)
  4030. Me.Panel12.TabIndex = 1734
  4031. '
  4032. '重讀1_bt
  4033. '
  4034. Me.重讀1_bt.BackgroundImage = Global.ICS_ASMS_ERP_SYS.My.Resources.Resources.renew
  4035. Me.重讀1_bt.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom
  4036. Me.重讀1_bt.Location = New System.Drawing.Point(378, 79)
  4037. Me.重讀1_bt.Name = "重讀1_bt"
  4038. Me.重讀1_bt.Size = New System.Drawing.Size(30, 26)
  4039. Me.重讀1_bt.TabIndex = 1413
  4040. Me.重讀1_bt.UseVisualStyleBackColor = True
  4041. '
  4042. '修正月_tb
  4043. '
  4044. Me.修正月_tb.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  4045. Me.修正月_tb.Location = New System.Drawing.Point(308, 28)
  4046. Me.修正月_tb.Name = "修正月_tb"
  4047. Me.修正月_tb.ReadOnly = True
  4048. Me.修正月_tb.Size = New System.Drawing.Size(85, 23)
  4049. Me.修正月_tb.TabIndex = 6
  4050. Me.修正月_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  4051. '
  4052. 'Label14
  4053. '
  4054. Me.Label14.Font = New System.Drawing.Font("微軟正黑體", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  4055. Me.Label14.Location = New System.Drawing.Point(308, 11)
  4056. Me.Label14.Name = "Label14"
  4057. Me.Label14.Size = New System.Drawing.Size(85, 40)
  4058. Me.Label14.TabIndex = 5
  4059. Me.Label14.Text = "修正後月薪"
  4060. Me.Label14.TextAlign = System.Drawing.ContentAlignment.TopCenter
  4061. '
  4062. '平日月薪_tb
  4063. '
  4064. Me.平日月薪_tb.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  4065. Me.平日月薪_tb.Location = New System.Drawing.Point(384, 137)
  4066. Me.平日月薪_tb.Name = "平日月薪_tb"
  4067. Me.平日月薪_tb.ReadOnly = True
  4068. Me.平日月薪_tb.Size = New System.Drawing.Size(78, 23)
  4069. Me.平日月薪_tb.TabIndex = 6
  4070. Me.平日月薪_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  4071. '
  4072. 'Label11
  4073. '
  4074. Me.Label11.Font = New System.Drawing.Font("微軟正黑體", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  4075. Me.Label11.Location = New System.Drawing.Point(384, 120)
  4076. Me.Label11.Name = "Label11"
  4077. Me.Label11.Size = New System.Drawing.Size(78, 40)
  4078. Me.Label11.TabIndex = 5
  4079. Me.Label11.Text = "平日月薪"
  4080. Me.Label11.TextAlign = System.Drawing.ContentAlignment.TopCenter
  4081. '
  4082. '加班扣除_tb
  4083. '
  4084. Me.加班扣除_tb.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  4085. Me.加班扣除_tb.Location = New System.Drawing.Point(287, 137)
  4086. Me.加班扣除_tb.Name = "加班扣除_tb"
  4087. Me.加班扣除_tb.ReadOnly = True
  4088. Me.加班扣除_tb.Size = New System.Drawing.Size(91, 23)
  4089. Me.加班扣除_tb.TabIndex = 6
  4090. Me.加班扣除_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  4091. '
  4092. 'Label10
  4093. '
  4094. Me.Label10.Font = New System.Drawing.Font("微軟正黑體", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  4095. Me.Label10.Location = New System.Drawing.Point(287, 120)
  4096. Me.Label10.Name = "Label10"
  4097. Me.Label10.Size = New System.Drawing.Size(91, 40)
  4098. Me.Label10.TabIndex = 5
  4099. Me.Label10.Text = "加班扣除額"
  4100. Me.Label10.TextAlign = System.Drawing.ContentAlignment.TopCenter
  4101. '
  4102. '總薪_tb
  4103. '
  4104. Me.總薪_tb.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  4105. Me.總薪_tb.Location = New System.Drawing.Point(197, 137)
  4106. Me.總薪_tb.Name = "總薪_tb"
  4107. Me.總薪_tb.ReadOnly = True
  4108. Me.總薪_tb.Size = New System.Drawing.Size(86, 23)
  4109. Me.總薪_tb.TabIndex = 6
  4110. Me.總薪_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  4111. '
  4112. 'Label9
  4113. '
  4114. Me.Label9.Font = New System.Drawing.Font("微軟正黑體", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  4115. Me.Label9.Location = New System.Drawing.Point(197, 120)
  4116. Me.Label9.Name = "Label9"
  4117. Me.Label9.Size = New System.Drawing.Size(86, 40)
  4118. Me.Label9.TabIndex = 5
  4119. Me.Label9.Text = "總薪(未修正)"
  4120. Me.Label9.TextAlign = System.Drawing.ContentAlignment.TopCenter
  4121. '
  4122. '副薪_tb
  4123. '
  4124. Me.副薪_tb.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  4125. Me.副薪_tb.Location = New System.Drawing.Point(104, 137)
  4126. Me.副薪_tb.Name = "副薪_tb"
  4127. Me.副薪_tb.ReadOnly = True
  4128. Me.副薪_tb.Size = New System.Drawing.Size(87, 23)
  4129. Me.副薪_tb.TabIndex = 6
  4130. Me.副薪_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  4131. '
  4132. 'Label8
  4133. '
  4134. Me.Label8.Font = New System.Drawing.Font("微軟正黑體", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  4135. Me.Label8.Location = New System.Drawing.Point(104, 120)
  4136. Me.Label8.Name = "Label8"
  4137. Me.Label8.Size = New System.Drawing.Size(87, 40)
  4138. Me.Label8.TabIndex = 5
  4139. Me.Label8.Text = "副薪"
  4140. Me.Label8.TextAlign = System.Drawing.ContentAlignment.TopCenter
  4141. '
  4142. '主薪_tb
  4143. '
  4144. Me.主薪_tb.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  4145. Me.主薪_tb.Location = New System.Drawing.Point(197, 80)
  4146. Me.主薪_tb.Name = "主薪_tb"
  4147. Me.主薪_tb.ReadOnly = True
  4148. Me.主薪_tb.Size = New System.Drawing.Size(88, 23)
  4149. Me.主薪_tb.TabIndex = 6
  4150. Me.主薪_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  4151. '
  4152. 'Label5
  4153. '
  4154. Me.Label5.Font = New System.Drawing.Font("微軟正黑體", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  4155. Me.Label5.Location = New System.Drawing.Point(197, 63)
  4156. Me.Label5.Name = "Label5"
  4157. Me.Label5.Size = New System.Drawing.Size(88, 40)
  4158. Me.Label5.TabIndex = 5
  4159. Me.Label5.Text = "主薪"
  4160. Me.Label5.TextAlign = System.Drawing.ContentAlignment.TopCenter
  4161. '
  4162. '其他_tb
  4163. '
  4164. Me.其他_tb.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  4165. Me.其他_tb.Location = New System.Drawing.Point(105, 80)
  4166. Me.其他_tb.Name = "其他_tb"
  4167. Me.其他_tb.ReadOnly = True
  4168. Me.其他_tb.Size = New System.Drawing.Size(86, 23)
  4169. Me.其他_tb.TabIndex = 6
  4170. Me.其他_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  4171. '
  4172. 'Label4
  4173. '
  4174. Me.Label4.Font = New System.Drawing.Font("微軟正黑體", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  4175. Me.Label4.Location = New System.Drawing.Point(105, 63)
  4176. Me.Label4.Name = "Label4"
  4177. Me.Label4.Size = New System.Drawing.Size(86, 40)
  4178. Me.Label4.TabIndex = 5
  4179. Me.Label4.Text = "其他"
  4180. Me.Label4.TextAlign = System.Drawing.ContentAlignment.TopCenter
  4181. '
  4182. '主表_P
  4183. '
  4184. Me.主表_P.Anchor = CType(((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left) _
  4185. Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  4186. Me.主表_P.Controls.Add(Me.SplitContainer1)
  4187. Me.主表_P.Location = New System.Drawing.Point(3, 543)
  4188. Me.主表_P.Name = "主表_P"
  4189. Me.主表_P.Size = New System.Drawing.Size(1287, 40)
  4190. Me.主表_P.TabIndex = 1406
  4191. '
  4192. 'SplitContainer1
  4193. '
  4194. Me.SplitContainer1.Dock = System.Windows.Forms.DockStyle.Fill
  4195. Me.SplitContainer1.Location = New System.Drawing.Point(0, 0)
  4196. Me.SplitContainer1.Name = "SplitContainer1"
  4197. '
  4198. 'SplitContainer1.Panel2
  4199. '
  4200. Me.SplitContainer1.Panel2.Controls.Add(Me.SplitContainer2)
  4201. Me.SplitContainer1.Size = New System.Drawing.Size(1287, 40)
  4202. Me.SplitContainer1.SplitterDistance = 109
  4203. Me.SplitContainer1.TabIndex = 0
  4204. '
  4205. 'SplitContainer2
  4206. '
  4207. Me.SplitContainer2.Dock = System.Windows.Forms.DockStyle.Fill
  4208. Me.SplitContainer2.Location = New System.Drawing.Point(0, 0)
  4209. Me.SplitContainer2.Name = "SplitContainer2"
  4210. '
  4211. 'SplitContainer2.Panel1
  4212. '
  4213. Me.SplitContainer2.Panel1.Controls.Add(Me.BA正_tb)
  4214. Me.SplitContainer2.Panel1.Controls.Add(Me.Label1)
  4215. '
  4216. 'SplitContainer2.Panel2
  4217. '
  4218. Me.SplitContainer2.Panel2.Controls.Add(Me.SplitContainer3)
  4219. Me.SplitContainer2.Size = New System.Drawing.Size(1174, 40)
  4220. Me.SplitContainer2.SplitterDistance = 114
  4221. Me.SplitContainer2.TabIndex = 0
  4222. '
  4223. 'BA正_tb
  4224. '
  4225. Me.BA正_tb.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  4226. Me.BA正_tb.Dock = System.Windows.Forms.DockStyle.Bottom
  4227. Me.BA正_tb.Location = New System.Drawing.Point(0, 17)
  4228. Me.BA正_tb.Name = "BA正_tb"
  4229. Me.BA正_tb.ReadOnly = True
  4230. Me.BA正_tb.Size = New System.Drawing.Size(114, 23)
  4231. Me.BA正_tb.TabIndex = 1
  4232. Me.BA正_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  4233. '
  4234. 'Label1
  4235. '
  4236. Me.Label1.Dock = System.Windows.Forms.DockStyle.Top
  4237. Me.Label1.Font = New System.Drawing.Font("微軟正黑體", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  4238. Me.Label1.Location = New System.Drawing.Point(0, 0)
  4239. Me.Label1.Name = "Label1"
  4240. Me.Label1.Size = New System.Drawing.Size(114, 40)
  4241. Me.Label1.TabIndex = 0
  4242. Me.Label1.Text = "BA(正常班)"
  4243. Me.Label1.TextAlign = System.Drawing.ContentAlignment.TopCenter
  4244. '
  4245. 'SplitContainer3
  4246. '
  4247. Me.SplitContainer3.Dock = System.Windows.Forms.DockStyle.Fill
  4248. Me.SplitContainer3.Location = New System.Drawing.Point(0, 0)
  4249. Me.SplitContainer3.Name = "SplitContainer3"
  4250. '
  4251. 'SplitContainer3.Panel1
  4252. '
  4253. Me.SplitContainer3.Panel1.Controls.Add(Me.GA正_tb)
  4254. Me.SplitContainer3.Panel1.Controls.Add(Me.Label2)
  4255. '
  4256. 'SplitContainer3.Panel2
  4257. '
  4258. Me.SplitContainer3.Panel2.Controls.Add(Me.SplitContainer4)
  4259. Me.SplitContainer3.Size = New System.Drawing.Size(1056, 40)
  4260. Me.SplitContainer3.SplitterDistance = 118
  4261. Me.SplitContainer3.TabIndex = 0
  4262. '
  4263. 'GA正_tb
  4264. '
  4265. Me.GA正_tb.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  4266. Me.GA正_tb.Dock = System.Windows.Forms.DockStyle.Bottom
  4267. Me.GA正_tb.Location = New System.Drawing.Point(0, 17)
  4268. Me.GA正_tb.Name = "GA正_tb"
  4269. Me.GA正_tb.ReadOnly = True
  4270. Me.GA正_tb.Size = New System.Drawing.Size(118, 23)
  4271. Me.GA正_tb.TabIndex = 3
  4272. Me.GA正_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  4273. '
  4274. 'Label2
  4275. '
  4276. Me.Label2.Dock = System.Windows.Forms.DockStyle.Top
  4277. Me.Label2.Font = New System.Drawing.Font("微軟正黑體", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  4278. Me.Label2.Location = New System.Drawing.Point(0, 0)
  4279. Me.Label2.Name = "Label2"
  4280. Me.Label2.Size = New System.Drawing.Size(118, 40)
  4281. Me.Label2.TabIndex = 2
  4282. Me.Label2.Text = "GA(正常班)"
  4283. Me.Label2.TextAlign = System.Drawing.ContentAlignment.TopCenter
  4284. '
  4285. 'SplitContainer4
  4286. '
  4287. Me.SplitContainer4.Dock = System.Windows.Forms.DockStyle.Fill
  4288. Me.SplitContainer4.Location = New System.Drawing.Point(0, 0)
  4289. Me.SplitContainer4.Name = "SplitContainer4"
  4290. '
  4291. 'SplitContainer4.Panel1
  4292. '
  4293. Me.SplitContainer4.Panel1.Controls.Add(Me.GA加_tb)
  4294. Me.SplitContainer4.Panel1.Controls.Add(Me.Label3)
  4295. '
  4296. 'SplitContainer4.Panel2
  4297. '
  4298. Me.SplitContainer4.Panel2.Controls.Add(Me.SplitContainer5)
  4299. Me.SplitContainer4.Size = New System.Drawing.Size(934, 40)
  4300. Me.SplitContainer4.SplitterDistance = 116
  4301. Me.SplitContainer4.TabIndex = 0
  4302. '
  4303. 'GA加_tb
  4304. '
  4305. Me.GA加_tb.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  4306. Me.GA加_tb.Dock = System.Windows.Forms.DockStyle.Bottom
  4307. Me.GA加_tb.Location = New System.Drawing.Point(0, 17)
  4308. Me.GA加_tb.Name = "GA加_tb"
  4309. Me.GA加_tb.ReadOnly = True
  4310. Me.GA加_tb.Size = New System.Drawing.Size(116, 23)
  4311. Me.GA加_tb.TabIndex = 5
  4312. Me.GA加_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  4313. '
  4314. 'Label3
  4315. '
  4316. Me.Label3.Dock = System.Windows.Forms.DockStyle.Top
  4317. Me.Label3.Font = New System.Drawing.Font("微軟正黑體", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  4318. Me.Label3.Location = New System.Drawing.Point(0, 0)
  4319. Me.Label3.Name = "Label3"
  4320. Me.Label3.Size = New System.Drawing.Size(116, 40)
  4321. Me.Label3.TabIndex = 4
  4322. Me.Label3.Text = "GA加給"
  4323. Me.Label3.TextAlign = System.Drawing.ContentAlignment.TopCenter
  4324. '
  4325. 'SplitContainer5
  4326. '
  4327. Me.SplitContainer5.Dock = System.Windows.Forms.DockStyle.Fill
  4328. Me.SplitContainer5.Location = New System.Drawing.Point(0, 0)
  4329. Me.SplitContainer5.Name = "SplitContainer5"
  4330. '
  4331. 'SplitContainer5.Panel1
  4332. '
  4333. Me.SplitContainer5.Panel1.Controls.Add(Me.AA_tb)
  4334. Me.SplitContainer5.Panel1.Controls.Add(Me.Label7)
  4335. '
  4336. 'SplitContainer5.Panel2
  4337. '
  4338. Me.SplitContainer5.Panel2.Controls.Add(Me.SplitContainer6)
  4339. Me.SplitContainer5.Size = New System.Drawing.Size(814, 40)
  4340. Me.SplitContainer5.SplitterDistance = 113
  4341. Me.SplitContainer5.TabIndex = 0
  4342. '
  4343. 'AA_tb
  4344. '
  4345. Me.AA_tb.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  4346. Me.AA_tb.Dock = System.Windows.Forms.DockStyle.Bottom
  4347. Me.AA_tb.Location = New System.Drawing.Point(0, 17)
  4348. Me.AA_tb.Name = "AA_tb"
  4349. Me.AA_tb.ReadOnly = True
  4350. Me.AA_tb.Size = New System.Drawing.Size(113, 23)
  4351. Me.AA_tb.TabIndex = 6
  4352. Me.AA_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  4353. '
  4354. 'Label7
  4355. '
  4356. Me.Label7.Dock = System.Windows.Forms.DockStyle.Top
  4357. Me.Label7.Font = New System.Drawing.Font("微軟正黑體", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  4358. Me.Label7.Location = New System.Drawing.Point(0, 0)
  4359. Me.Label7.Name = "Label7"
  4360. Me.Label7.Size = New System.Drawing.Size(113, 40)
  4361. Me.Label7.TabIndex = 5
  4362. Me.Label7.Text = "AA"
  4363. Me.Label7.TextAlign = System.Drawing.ContentAlignment.TopCenter
  4364. '
  4365. 'SplitContainer6
  4366. '
  4367. Me.SplitContainer6.Dock = System.Windows.Forms.DockStyle.Fill
  4368. Me.SplitContainer6.Location = New System.Drawing.Point(0, 0)
  4369. Me.SplitContainer6.Name = "SplitContainer6"
  4370. '
  4371. 'SplitContainer6.Panel1
  4372. '
  4373. Me.SplitContainer6.Panel1.Controls.Add(Me.服務_tb)
  4374. Me.SplitContainer6.Panel1.Controls.Add(Me.Label12)
  4375. '
  4376. 'SplitContainer6.Panel2
  4377. '
  4378. Me.SplitContainer6.Panel2.Controls.Add(Me.SplitContainer7)
  4379. Me.SplitContainer6.Size = New System.Drawing.Size(697, 40)
  4380. Me.SplitContainer6.SplitterDistance = 129
  4381. Me.SplitContainer6.TabIndex = 0
  4382. '
  4383. '服務_tb
  4384. '
  4385. Me.服務_tb.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  4386. Me.服務_tb.Dock = System.Windows.Forms.DockStyle.Bottom
  4387. Me.服務_tb.Location = New System.Drawing.Point(0, 17)
  4388. Me.服務_tb.Name = "服務_tb"
  4389. Me.服務_tb.ReadOnly = True
  4390. Me.服務_tb.Size = New System.Drawing.Size(129, 23)
  4391. Me.服務_tb.TabIndex = 6
  4392. Me.服務_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  4393. '
  4394. 'Label12
  4395. '
  4396. Me.Label12.Dock = System.Windows.Forms.DockStyle.Top
  4397. Me.Label12.Font = New System.Drawing.Font("微軟正黑體", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  4398. Me.Label12.Location = New System.Drawing.Point(0, 0)
  4399. Me.Label12.Name = "Label12"
  4400. Me.Label12.Size = New System.Drawing.Size(129, 40)
  4401. Me.Label12.TabIndex = 5
  4402. Me.Label12.Text = "服務津貼"
  4403. Me.Label12.TextAlign = System.Drawing.ContentAlignment.TopCenter
  4404. '
  4405. 'SplitContainer7
  4406. '
  4407. Me.SplitContainer7.Dock = System.Windows.Forms.DockStyle.Fill
  4408. Me.SplitContainer7.Location = New System.Drawing.Point(0, 0)
  4409. Me.SplitContainer7.Name = "SplitContainer7"
  4410. '
  4411. 'SplitContainer7.Panel1
  4412. '
  4413. Me.SplitContainer7.Panel1.Controls.Add(Me.轉場_tb)
  4414. Me.SplitContainer7.Panel1.Controls.Add(Me.Label13)
  4415. '
  4416. 'SplitContainer7.Panel2
  4417. '
  4418. Me.SplitContainer7.Panel2.Controls.Add(Me.SplitContainer8)
  4419. Me.SplitContainer7.Size = New System.Drawing.Size(564, 40)
  4420. Me.SplitContainer7.SplitterDistance = 129
  4421. Me.SplitContainer7.TabIndex = 0
  4422. '
  4423. '轉場_tb
  4424. '
  4425. Me.轉場_tb.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  4426. Me.轉場_tb.Dock = System.Windows.Forms.DockStyle.Bottom
  4427. Me.轉場_tb.Location = New System.Drawing.Point(0, 17)
  4428. Me.轉場_tb.Name = "轉場_tb"
  4429. Me.轉場_tb.ReadOnly = True
  4430. Me.轉場_tb.Size = New System.Drawing.Size(129, 23)
  4431. Me.轉場_tb.TabIndex = 6
  4432. Me.轉場_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  4433. '
  4434. 'Label13
  4435. '
  4436. Me.Label13.Dock = System.Windows.Forms.DockStyle.Top
  4437. Me.Label13.Font = New System.Drawing.Font("微軟正黑體", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  4438. Me.Label13.Location = New System.Drawing.Point(0, 0)
  4439. Me.Label13.Name = "Label13"
  4440. Me.Label13.Size = New System.Drawing.Size(129, 40)
  4441. Me.Label13.TabIndex = 5
  4442. Me.Label13.Text = "轉場津貼"
  4443. Me.Label13.TextAlign = System.Drawing.ContentAlignment.TopCenter
  4444. '
  4445. 'SplitContainer8
  4446. '
  4447. Me.SplitContainer8.Dock = System.Windows.Forms.DockStyle.Fill
  4448. Me.SplitContainer8.Location = New System.Drawing.Point(0, 0)
  4449. Me.SplitContainer8.Name = "SplitContainer8"
  4450. '
  4451. 'SplitContainer8.Panel1
  4452. '
  4453. Me.SplitContainer8.Panel1.Controls.Add(Me.加班費_tb)
  4454. Me.SplitContainer8.Panel1.Controls.Add(Me.Label15)
  4455. '
  4456. 'SplitContainer8.Panel2
  4457. '
  4458. Me.SplitContainer8.Panel2.Controls.Add(Me.SplitContainer82)
  4459. Me.SplitContainer8.Size = New System.Drawing.Size(431, 40)
  4460. Me.SplitContainer8.SplitterDistance = 130
  4461. Me.SplitContainer8.TabIndex = 0
  4462. '
  4463. '加班費_tb
  4464. '
  4465. Me.加班費_tb.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  4466. Me.加班費_tb.Dock = System.Windows.Forms.DockStyle.Bottom
  4467. Me.加班費_tb.Location = New System.Drawing.Point(0, 17)
  4468. Me.加班費_tb.Name = "加班費_tb"
  4469. Me.加班費_tb.ReadOnly = True
  4470. Me.加班費_tb.Size = New System.Drawing.Size(130, 23)
  4471. Me.加班費_tb.TabIndex = 6
  4472. Me.加班費_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  4473. '
  4474. 'Label15
  4475. '
  4476. Me.Label15.Dock = System.Windows.Forms.DockStyle.Top
  4477. Me.Label15.Font = New System.Drawing.Font("微軟正黑體", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  4478. Me.Label15.Location = New System.Drawing.Point(0, 0)
  4479. Me.Label15.Name = "Label15"
  4480. Me.Label15.Size = New System.Drawing.Size(130, 40)
  4481. Me.Label15.TabIndex = 5
  4482. Me.Label15.Text = "加班費"
  4483. Me.Label15.TextAlign = System.Drawing.ContentAlignment.TopCenter
  4484. '
  4485. 'SplitContainer82
  4486. '
  4487. Me.SplitContainer82.Dock = System.Windows.Forms.DockStyle.Fill
  4488. Me.SplitContainer82.Location = New System.Drawing.Point(0, 0)
  4489. Me.SplitContainer82.Name = "SplitContainer82"
  4490. '
  4491. 'SplitContainer82.Panel1
  4492. '
  4493. Me.SplitContainer82.Panel1.Controls.Add(Me.總薪資_tb)
  4494. Me.SplitContainer82.Panel1.Controls.Add(Me.Label16)
  4495. '
  4496. 'SplitContainer82.Panel2
  4497. '
  4498. Me.SplitContainer82.Panel2.Controls.Add(Me.實際薪資1_tb)
  4499. Me.SplitContainer82.Panel2.Controls.Add(Me.Label60)
  4500. Me.SplitContainer82.Size = New System.Drawing.Size(297, 40)
  4501. Me.SplitContainer82.SplitterDistance = 151
  4502. Me.SplitContainer82.TabIndex = 7
  4503. '
  4504. '總薪資_tb
  4505. '
  4506. Me.總薪資_tb.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  4507. Me.總薪資_tb.Dock = System.Windows.Forms.DockStyle.Bottom
  4508. Me.總薪資_tb.Location = New System.Drawing.Point(0, 17)
  4509. Me.總薪資_tb.Name = "總薪資_tb"
  4510. Me.總薪資_tb.ReadOnly = True
  4511. Me.總薪資_tb.Size = New System.Drawing.Size(151, 23)
  4512. Me.總薪資_tb.TabIndex = 6
  4513. Me.總薪資_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  4514. '
  4515. 'Label16
  4516. '
  4517. Me.Label16.Dock = System.Windows.Forms.DockStyle.Fill
  4518. Me.Label16.Font = New System.Drawing.Font("微軟正黑體", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  4519. Me.Label16.Location = New System.Drawing.Point(0, 0)
  4520. Me.Label16.Name = "Label16"
  4521. Me.Label16.Size = New System.Drawing.Size(151, 40)
  4522. Me.Label16.TabIndex = 5
  4523. Me.Label16.Text = "總薪資"
  4524. Me.Label16.TextAlign = System.Drawing.ContentAlignment.TopCenter
  4525. '
  4526. '實際薪資1_tb
  4527. '
  4528. Me.實際薪資1_tb.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  4529. Me.實際薪資1_tb.Dock = System.Windows.Forms.DockStyle.Bottom
  4530. Me.實際薪資1_tb.Location = New System.Drawing.Point(0, 17)
  4531. Me.實際薪資1_tb.Name = "實際薪資1_tb"
  4532. Me.實際薪資1_tb.ReadOnly = True
  4533. Me.實際薪資1_tb.Size = New System.Drawing.Size(142, 23)
  4534. Me.實際薪資1_tb.TabIndex = 5
  4535. Me.實際薪資1_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  4536. '
  4537. 'Label60
  4538. '
  4539. Me.Label60.Dock = System.Windows.Forms.DockStyle.Fill
  4540. Me.Label60.Font = New System.Drawing.Font("微軟正黑體", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  4541. Me.Label60.Location = New System.Drawing.Point(0, 0)
  4542. Me.Label60.Name = "Label60"
  4543. Me.Label60.Size = New System.Drawing.Size(142, 40)
  4544. Me.Label60.TabIndex = 4
  4545. Me.Label60.Text = "實際薪資"
  4546. Me.Label60.TextAlign = System.Drawing.ContentAlignment.TopCenter
  4547. '
  4548. '時數表_P
  4549. '
  4550. Me.時數表_P.Anchor = CType(((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left) _
  4551. Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  4552. Me.時數表_P.Controls.Add(Me.SplitContainer50)
  4553. Me.時數表_P.Location = New System.Drawing.Point(3, 543)
  4554. Me.時數表_P.Name = "時數表_P"
  4555. Me.時數表_P.Size = New System.Drawing.Size(1287, 40)
  4556. Me.時數表_P.TabIndex = 1422
  4557. '
  4558. 'SplitContainer50
  4559. '
  4560. Me.SplitContainer50.Dock = System.Windows.Forms.DockStyle.Fill
  4561. Me.SplitContainer50.Location = New System.Drawing.Point(0, 0)
  4562. Me.SplitContainer50.Name = "SplitContainer50"
  4563. '
  4564. 'SplitContainer50.Panel2
  4565. '
  4566. Me.SplitContainer50.Panel2.Controls.Add(Me.SplitContainer51)
  4567. Me.SplitContainer50.Size = New System.Drawing.Size(1287, 40)
  4568. Me.SplitContainer50.SplitterDistance = 104
  4569. Me.SplitContainer50.TabIndex = 18
  4570. '
  4571. 'SplitContainer51
  4572. '
  4573. Me.SplitContainer51.Dock = System.Windows.Forms.DockStyle.Fill
  4574. Me.SplitContainer51.Location = New System.Drawing.Point(0, 0)
  4575. Me.SplitContainer51.Name = "SplitContainer51"
  4576. '
  4577. 'SplitContainer51.Panel1
  4578. '
  4579. Me.SplitContainer51.Panel1.Controls.Add(Me.平均1_tb)
  4580. Me.SplitContainer51.Panel1.Controls.Add(Me.Label33)
  4581. '
  4582. 'SplitContainer51.Panel2
  4583. '
  4584. Me.SplitContainer51.Panel2.Controls.Add(Me.SplitContainer52)
  4585. Me.SplitContainer51.Size = New System.Drawing.Size(1179, 40)
  4586. Me.SplitContainer51.SplitterDistance = 120
  4587. Me.SplitContainer51.TabIndex = 0
  4588. '
  4589. '平均1_tb
  4590. '
  4591. Me.平均1_tb.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  4592. Me.平均1_tb.Dock = System.Windows.Forms.DockStyle.Bottom
  4593. Me.平均1_tb.Location = New System.Drawing.Point(0, 17)
  4594. Me.平均1_tb.Name = "平均1_tb"
  4595. Me.平均1_tb.ReadOnly = True
  4596. Me.平均1_tb.Size = New System.Drawing.Size(120, 23)
  4597. Me.平均1_tb.TabIndex = 0
  4598. Me.平均1_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Center
  4599. '
  4600. 'Label33
  4601. '
  4602. Me.Label33.Dock = System.Windows.Forms.DockStyle.Top
  4603. Me.Label33.Location = New System.Drawing.Point(0, 0)
  4604. Me.Label33.Name = "Label33"
  4605. Me.Label33.Size = New System.Drawing.Size(120, 16)
  4606. Me.Label33.TabIndex = 1
  4607. Me.Label33.Text = "平日轉場平均"
  4608. Me.Label33.TextAlign = System.Drawing.ContentAlignment.TopCenter
  4609. '
  4610. 'SplitContainer52
  4611. '
  4612. Me.SplitContainer52.Dock = System.Windows.Forms.DockStyle.Fill
  4613. Me.SplitContainer52.Location = New System.Drawing.Point(0, 0)
  4614. Me.SplitContainer52.Name = "SplitContainer52"
  4615. '
  4616. 'SplitContainer52.Panel1
  4617. '
  4618. Me.SplitContainer52.Panel1.Controls.Add(Me.平均2_tb)
  4619. Me.SplitContainer52.Panel1.Controls.Add(Me.Label35)
  4620. '
  4621. 'SplitContainer52.Panel2
  4622. '
  4623. Me.SplitContainer52.Panel2.Controls.Add(Me.SplitContainer53)
  4624. Me.SplitContainer52.Size = New System.Drawing.Size(1055, 40)
  4625. Me.SplitContainer52.SplitterDistance = 112
  4626. Me.SplitContainer52.TabIndex = 0
  4627. '
  4628. '平均2_tb
  4629. '
  4630. Me.平均2_tb.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  4631. Me.平均2_tb.Dock = System.Windows.Forms.DockStyle.Bottom
  4632. Me.平均2_tb.Location = New System.Drawing.Point(0, 17)
  4633. Me.平均2_tb.Name = "平均2_tb"
  4634. Me.平均2_tb.ReadOnly = True
  4635. Me.平均2_tb.Size = New System.Drawing.Size(112, 23)
  4636. Me.平均2_tb.TabIndex = 2
  4637. Me.平均2_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Center
  4638. '
  4639. 'Label35
  4640. '
  4641. Me.Label35.Dock = System.Windows.Forms.DockStyle.Top
  4642. Me.Label35.Location = New System.Drawing.Point(0, 0)
  4643. Me.Label35.Name = "Label35"
  4644. Me.Label35.Size = New System.Drawing.Size(112, 16)
  4645. Me.Label35.TabIndex = 3
  4646. Me.Label35.Text = "假日轉場平均"
  4647. Me.Label35.TextAlign = System.Drawing.ContentAlignment.TopCenter
  4648. '
  4649. 'SplitContainer53
  4650. '
  4651. Me.SplitContainer53.Dock = System.Windows.Forms.DockStyle.Fill
  4652. Me.SplitContainer53.Location = New System.Drawing.Point(0, 0)
  4653. Me.SplitContainer53.Name = "SplitContainer53"
  4654. '
  4655. 'SplitContainer53.Panel1
  4656. '
  4657. Me.SplitContainer53.Panel1.Controls.Add(Me.平均3_tb)
  4658. Me.SplitContainer53.Panel1.Controls.Add(Me.Label38)
  4659. '
  4660. 'SplitContainer53.Panel2
  4661. '
  4662. Me.SplitContainer53.Panel2.Controls.Add(Me.SplitContainer54)
  4663. Me.SplitContainer53.Size = New System.Drawing.Size(939, 40)
  4664. Me.SplitContainer53.SplitterDistance = 117
  4665. Me.SplitContainer53.TabIndex = 0
  4666. '
  4667. '平均3_tb
  4668. '
  4669. Me.平均3_tb.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  4670. Me.平均3_tb.Dock = System.Windows.Forms.DockStyle.Bottom
  4671. Me.平均3_tb.Location = New System.Drawing.Point(0, 17)
  4672. Me.平均3_tb.Name = "平均3_tb"
  4673. Me.平均3_tb.ReadOnly = True
  4674. Me.平均3_tb.Size = New System.Drawing.Size(117, 23)
  4675. Me.平均3_tb.TabIndex = 4
  4676. Me.平均3_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Center
  4677. '
  4678. 'Label38
  4679. '
  4680. Me.Label38.Dock = System.Windows.Forms.DockStyle.Top
  4681. Me.Label38.Location = New System.Drawing.Point(0, 0)
  4682. Me.Label38.Name = "Label38"
  4683. Me.Label38.Size = New System.Drawing.Size(117, 16)
  4684. Me.Label38.TabIndex = 5
  4685. Me.Label38.Text = "平0-8平均"
  4686. Me.Label38.TextAlign = System.Drawing.ContentAlignment.TopCenter
  4687. '
  4688. 'SplitContainer54
  4689. '
  4690. Me.SplitContainer54.Dock = System.Windows.Forms.DockStyle.Fill
  4691. Me.SplitContainer54.Location = New System.Drawing.Point(0, 0)
  4692. Me.SplitContainer54.Name = "SplitContainer54"
  4693. '
  4694. 'SplitContainer54.Panel1
  4695. '
  4696. Me.SplitContainer54.Panel1.Controls.Add(Me.平均4_tb)
  4697. Me.SplitContainer54.Panel1.Controls.Add(Me.Label44)
  4698. '
  4699. 'SplitContainer54.Panel2
  4700. '
  4701. Me.SplitContainer54.Panel2.Controls.Add(Me.SplitContainer55)
  4702. Me.SplitContainer54.Size = New System.Drawing.Size(818, 40)
  4703. Me.SplitContainer54.SplitterDistance = 111
  4704. Me.SplitContainer54.TabIndex = 0
  4705. '
  4706. '平均4_tb
  4707. '
  4708. Me.平均4_tb.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  4709. Me.平均4_tb.Dock = System.Windows.Forms.DockStyle.Bottom
  4710. Me.平均4_tb.Location = New System.Drawing.Point(0, 17)
  4711. Me.平均4_tb.Name = "平均4_tb"
  4712. Me.平均4_tb.ReadOnly = True
  4713. Me.平均4_tb.Size = New System.Drawing.Size(111, 23)
  4714. Me.平均4_tb.TabIndex = 6
  4715. Me.平均4_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Center
  4716. '
  4717. 'Label44
  4718. '
  4719. Me.Label44.Dock = System.Windows.Forms.DockStyle.Top
  4720. Me.Label44.Location = New System.Drawing.Point(0, 0)
  4721. Me.Label44.Name = "Label44"
  4722. Me.Label44.Size = New System.Drawing.Size(111, 16)
  4723. Me.Label44.TabIndex = 7
  4724. Me.Label44.Text = "平-9-10平均"
  4725. Me.Label44.TextAlign = System.Drawing.ContentAlignment.TopCenter
  4726. '
  4727. 'SplitContainer55
  4728. '
  4729. Me.SplitContainer55.Dock = System.Windows.Forms.DockStyle.Fill
  4730. Me.SplitContainer55.Location = New System.Drawing.Point(0, 0)
  4731. Me.SplitContainer55.Name = "SplitContainer55"
  4732. '
  4733. 'SplitContainer55.Panel1
  4734. '
  4735. Me.SplitContainer55.Panel1.Controls.Add(Me.平均5_tb)
  4736. Me.SplitContainer55.Panel1.Controls.Add(Me.Label48)
  4737. '
  4738. 'SplitContainer55.Panel2
  4739. '
  4740. Me.SplitContainer55.Panel2.Controls.Add(Me.SplitContainer56)
  4741. Me.SplitContainer55.Size = New System.Drawing.Size(703, 40)
  4742. Me.SplitContainer55.SplitterDistance = 106
  4743. Me.SplitContainer55.TabIndex = 0
  4744. '
  4745. '平均5_tb
  4746. '
  4747. Me.平均5_tb.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  4748. Me.平均5_tb.Dock = System.Windows.Forms.DockStyle.Bottom
  4749. Me.平均5_tb.Location = New System.Drawing.Point(0, 17)
  4750. Me.平均5_tb.Name = "平均5_tb"
  4751. Me.平均5_tb.ReadOnly = True
  4752. Me.平均5_tb.Size = New System.Drawing.Size(106, 23)
  4753. Me.平均5_tb.TabIndex = 8
  4754. Me.平均5_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Center
  4755. '
  4756. 'Label48
  4757. '
  4758. Me.Label48.Dock = System.Windows.Forms.DockStyle.Top
  4759. Me.Label48.Location = New System.Drawing.Point(0, 0)
  4760. Me.Label48.Name = "Label48"
  4761. Me.Label48.Size = New System.Drawing.Size(106, 16)
  4762. Me.Label48.TabIndex = 9
  4763. Me.Label48.Text = "平11-12平均"
  4764. Me.Label48.TextAlign = System.Drawing.ContentAlignment.TopCenter
  4765. '
  4766. 'SplitContainer56
  4767. '
  4768. Me.SplitContainer56.Dock = System.Windows.Forms.DockStyle.Fill
  4769. Me.SplitContainer56.Location = New System.Drawing.Point(0, 0)
  4770. Me.SplitContainer56.Name = "SplitContainer56"
  4771. '
  4772. 'SplitContainer56.Panel1
  4773. '
  4774. Me.SplitContainer56.Panel1.Controls.Add(Me.平均6_tb)
  4775. Me.SplitContainer56.Panel1.Controls.Add(Me.Label47)
  4776. '
  4777. 'SplitContainer56.Panel2
  4778. '
  4779. Me.SplitContainer56.Panel2.Controls.Add(Me.SplitContainer57)
  4780. Me.SplitContainer56.Size = New System.Drawing.Size(593, 40)
  4781. Me.SplitContainer56.SplitterDistance = 103
  4782. Me.SplitContainer56.TabIndex = 0
  4783. '
  4784. '平均6_tb
  4785. '
  4786. Me.平均6_tb.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  4787. Me.平均6_tb.Dock = System.Windows.Forms.DockStyle.Bottom
  4788. Me.平均6_tb.Location = New System.Drawing.Point(0, 17)
  4789. Me.平均6_tb.Name = "平均6_tb"
  4790. Me.平均6_tb.ReadOnly = True
  4791. Me.平均6_tb.Size = New System.Drawing.Size(103, 23)
  4792. Me.平均6_tb.TabIndex = 10
  4793. Me.平均6_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Center
  4794. '
  4795. 'Label47
  4796. '
  4797. Me.Label47.Dock = System.Windows.Forms.DockStyle.Top
  4798. Me.Label47.Location = New System.Drawing.Point(0, 0)
  4799. Me.Label47.Name = "Label47"
  4800. Me.Label47.Size = New System.Drawing.Size(103, 16)
  4801. Me.Label47.TabIndex = 11
  4802. Me.Label47.Text = "國0-2平均"
  4803. Me.Label47.TextAlign = System.Drawing.ContentAlignment.TopCenter
  4804. '
  4805. 'SplitContainer57
  4806. '
  4807. Me.SplitContainer57.Dock = System.Windows.Forms.DockStyle.Fill
  4808. Me.SplitContainer57.Location = New System.Drawing.Point(0, 0)
  4809. Me.SplitContainer57.Name = "SplitContainer57"
  4810. '
  4811. 'SplitContainer57.Panel1
  4812. '
  4813. Me.SplitContainer57.Panel1.Controls.Add(Me.平均7_tb)
  4814. Me.SplitContainer57.Panel1.Controls.Add(Me.Label46)
  4815. '
  4816. 'SplitContainer57.Panel2
  4817. '
  4818. Me.SplitContainer57.Panel2.Controls.Add(Me.SplitContainer58)
  4819. Me.SplitContainer57.Size = New System.Drawing.Size(486, 40)
  4820. Me.SplitContainer57.SplitterDistance = 101
  4821. Me.SplitContainer57.TabIndex = 0
  4822. '
  4823. '平均7_tb
  4824. '
  4825. Me.平均7_tb.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  4826. Me.平均7_tb.Dock = System.Windows.Forms.DockStyle.Bottom
  4827. Me.平均7_tb.Location = New System.Drawing.Point(0, 17)
  4828. Me.平均7_tb.Name = "平均7_tb"
  4829. Me.平均7_tb.ReadOnly = True
  4830. Me.平均7_tb.Size = New System.Drawing.Size(101, 23)
  4831. Me.平均7_tb.TabIndex = 12
  4832. Me.平均7_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Center
  4833. '
  4834. 'Label46
  4835. '
  4836. Me.Label46.Dock = System.Windows.Forms.DockStyle.Top
  4837. Me.Label46.Location = New System.Drawing.Point(0, 0)
  4838. Me.Label46.Name = "Label46"
  4839. Me.Label46.Size = New System.Drawing.Size(101, 16)
  4840. Me.Label46.TabIndex = 13
  4841. Me.Label46.Text = "國3-8平均"
  4842. Me.Label46.TextAlign = System.Drawing.ContentAlignment.TopCenter
  4843. '
  4844. 'SplitContainer58
  4845. '
  4846. Me.SplitContainer58.Dock = System.Windows.Forms.DockStyle.Fill
  4847. Me.SplitContainer58.Location = New System.Drawing.Point(0, 0)
  4848. Me.SplitContainer58.Name = "SplitContainer58"
  4849. '
  4850. 'SplitContainer58.Panel1
  4851. '
  4852. Me.SplitContainer58.Panel1.Controls.Add(Me.平均8_tb)
  4853. Me.SplitContainer58.Panel1.Controls.Add(Me.Label45)
  4854. '
  4855. 'SplitContainer58.Panel2
  4856. '
  4857. Me.SplitContainer58.Panel2.Controls.Add(Me.SplitContainer59)
  4858. Me.SplitContainer58.Size = New System.Drawing.Size(381, 40)
  4859. Me.SplitContainer58.SplitterDistance = 111
  4860. Me.SplitContainer58.TabIndex = 0
  4861. '
  4862. '平均8_tb
  4863. '
  4864. Me.平均8_tb.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  4865. Me.平均8_tb.Dock = System.Windows.Forms.DockStyle.Bottom
  4866. Me.平均8_tb.Location = New System.Drawing.Point(0, 17)
  4867. Me.平均8_tb.Name = "平均8_tb"
  4868. Me.平均8_tb.ReadOnly = True
  4869. Me.平均8_tb.Size = New System.Drawing.Size(111, 23)
  4870. Me.平均8_tb.TabIndex = 14
  4871. Me.平均8_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Center
  4872. '
  4873. 'Label45
  4874. '
  4875. Me.Label45.Dock = System.Windows.Forms.DockStyle.Top
  4876. Me.Label45.Location = New System.Drawing.Point(0, 0)
  4877. Me.Label45.Name = "Label45"
  4878. Me.Label45.Size = New System.Drawing.Size(111, 16)
  4879. Me.Label45.TabIndex = 15
  4880. Me.Label45.Text = "休-0-2平均"
  4881. Me.Label45.TextAlign = System.Drawing.ContentAlignment.TopCenter
  4882. '
  4883. 'SplitContainer59
  4884. '
  4885. Me.SplitContainer59.Dock = System.Windows.Forms.DockStyle.Fill
  4886. Me.SplitContainer59.Location = New System.Drawing.Point(0, 0)
  4887. Me.SplitContainer59.Name = "SplitContainer59"
  4888. '
  4889. 'SplitContainer59.Panel1
  4890. '
  4891. Me.SplitContainer59.Panel1.Controls.Add(Me.Label49)
  4892. Me.SplitContainer59.Panel1.Controls.Add(Me.平均9_tb)
  4893. '
  4894. 'SplitContainer59.Panel2
  4895. '
  4896. Me.SplitContainer59.Panel2.Controls.Add(Me.SplitContainer60)
  4897. Me.SplitContainer59.Size = New System.Drawing.Size(266, 40)
  4898. Me.SplitContainer59.SplitterDistance = 108
  4899. Me.SplitContainer59.TabIndex = 0
  4900. '
  4901. 'Label49
  4902. '
  4903. Me.Label49.Dock = System.Windows.Forms.DockStyle.Top
  4904. Me.Label49.Location = New System.Drawing.Point(0, 0)
  4905. Me.Label49.Name = "Label49"
  4906. Me.Label49.Size = New System.Drawing.Size(108, 16)
  4907. Me.Label49.TabIndex = 17
  4908. Me.Label49.Text = "休3-8平均"
  4909. Me.Label49.TextAlign = System.Drawing.ContentAlignment.TopCenter
  4910. '
  4911. '平均9_tb
  4912. '
  4913. Me.平均9_tb.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  4914. Me.平均9_tb.Dock = System.Windows.Forms.DockStyle.Bottom
  4915. Me.平均9_tb.Location = New System.Drawing.Point(0, 17)
  4916. Me.平均9_tb.Name = "平均9_tb"
  4917. Me.平均9_tb.ReadOnly = True
  4918. Me.平均9_tb.Size = New System.Drawing.Size(108, 23)
  4919. Me.平均9_tb.TabIndex = 16
  4920. Me.平均9_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Center
  4921. '
  4922. 'SplitContainer60
  4923. '
  4924. Me.SplitContainer60.Dock = System.Windows.Forms.DockStyle.Fill
  4925. Me.SplitContainer60.Location = New System.Drawing.Point(0, 0)
  4926. Me.SplitContainer60.Name = "SplitContainer60"
  4927. Me.SplitContainer60.Size = New System.Drawing.Size(154, 40)
  4928. Me.SplitContainer60.SplitterDistance = 99
  4929. Me.SplitContainer60.TabIndex = 0
  4930. '
  4931. '公司負擔_P
  4932. '
  4933. Me.公司負擔_P.Anchor = CType(((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left) _
  4934. Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  4935. Me.公司負擔_P.Controls.Add(Me.SplitContainer68)
  4936. Me.公司負擔_P.Location = New System.Drawing.Point(3, 543)
  4937. Me.公司負擔_P.Name = "公司負擔_P"
  4938. Me.公司負擔_P.Size = New System.Drawing.Size(1287, 40)
  4939. Me.公司負擔_P.TabIndex = 1736
  4940. '
  4941. 'SplitContainer68
  4942. '
  4943. Me.SplitContainer68.Dock = System.Windows.Forms.DockStyle.Fill
  4944. Me.SplitContainer68.Location = New System.Drawing.Point(0, 0)
  4945. Me.SplitContainer68.Name = "SplitContainer68"
  4946. '
  4947. 'SplitContainer68.Panel2
  4948. '
  4949. Me.SplitContainer68.Panel2.Controls.Add(Me.SplitContainer69)
  4950. Me.SplitContainer68.Size = New System.Drawing.Size(1287, 40)
  4951. Me.SplitContainer68.SplitterDistance = 84
  4952. Me.SplitContainer68.SplitterWidth = 1
  4953. Me.SplitContainer68.TabIndex = 0
  4954. '
  4955. 'SplitContainer69
  4956. '
  4957. Me.SplitContainer69.Dock = System.Windows.Forms.DockStyle.Fill
  4958. Me.SplitContainer69.Location = New System.Drawing.Point(0, 0)
  4959. Me.SplitContainer69.Name = "SplitContainer69"
  4960. '
  4961. 'SplitContainer69.Panel1
  4962. '
  4963. Me.SplitContainer69.Panel1.Controls.Add(Me.SplitContainer70)
  4964. '
  4965. 'SplitContainer69.Panel2
  4966. '
  4967. Me.SplitContainer69.Panel2.Controls.Add(Me.SplitContainer71)
  4968. Me.SplitContainer69.Size = New System.Drawing.Size(1202, 40)
  4969. Me.SplitContainer69.SplitterDistance = 175
  4970. Me.SplitContainer69.SplitterWidth = 1
  4971. Me.SplitContainer69.TabIndex = 0
  4972. '
  4973. 'SplitContainer70
  4974. '
  4975. Me.SplitContainer70.Dock = System.Windows.Forms.DockStyle.Fill
  4976. Me.SplitContainer70.Location = New System.Drawing.Point(0, 0)
  4977. Me.SplitContainer70.Name = "SplitContainer70"
  4978. '
  4979. 'SplitContainer70.Panel1
  4980. '
  4981. Me.SplitContainer70.Panel1.Controls.Add(Me.E01_tb)
  4982. Me.SplitContainer70.Panel1.Controls.Add(Me.E01_lb)
  4983. '
  4984. 'SplitContainer70.Panel2
  4985. '
  4986. Me.SplitContainer70.Panel2.Controls.Add(Me.E02_tb)
  4987. Me.SplitContainer70.Panel2.Controls.Add(Me.E02_lb)
  4988. Me.SplitContainer70.Size = New System.Drawing.Size(175, 40)
  4989. Me.SplitContainer70.SplitterDistance = 85
  4990. Me.SplitContainer70.SplitterWidth = 1
  4991. Me.SplitContainer70.TabIndex = 0
  4992. '
  4993. 'E01_tb
  4994. '
  4995. Me.E01_tb.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  4996. Me.E01_tb.Dock = System.Windows.Forms.DockStyle.Bottom
  4997. Me.E01_tb.Location = New System.Drawing.Point(0, 17)
  4998. Me.E01_tb.Name = "E01_tb"
  4999. Me.E01_tb.ReadOnly = True
  5000. Me.E01_tb.Size = New System.Drawing.Size(85, 23)
  5001. Me.E01_tb.TabIndex = 3
  5002. Me.E01_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  5003. '
  5004. 'E01_lb
  5005. '
  5006. Me.E01_lb.Dock = System.Windows.Forms.DockStyle.Top
  5007. Me.E01_lb.Font = New System.Drawing.Font("微軟正黑體", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  5008. Me.E01_lb.Location = New System.Drawing.Point(0, 0)
  5009. Me.E01_lb.Name = "E01_lb"
  5010. Me.E01_lb.Size = New System.Drawing.Size(85, 40)
  5011. Me.E01_lb.TabIndex = 1
  5012. Me.E01_lb.Text = "Label30"
  5013. Me.E01_lb.TextAlign = System.Drawing.ContentAlignment.TopCenter
  5014. '
  5015. 'E02_tb
  5016. '
  5017. Me.E02_tb.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  5018. Me.E02_tb.Dock = System.Windows.Forms.DockStyle.Bottom
  5019. Me.E02_tb.Location = New System.Drawing.Point(0, 17)
  5020. Me.E02_tb.Name = "E02_tb"
  5021. Me.E02_tb.ReadOnly = True
  5022. Me.E02_tb.Size = New System.Drawing.Size(89, 23)
  5023. Me.E02_tb.TabIndex = 3
  5024. Me.E02_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  5025. '
  5026. 'E02_lb
  5027. '
  5028. Me.E02_lb.Dock = System.Windows.Forms.DockStyle.Top
  5029. Me.E02_lb.Font = New System.Drawing.Font("微軟正黑體", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  5030. Me.E02_lb.Location = New System.Drawing.Point(0, 0)
  5031. Me.E02_lb.Name = "E02_lb"
  5032. Me.E02_lb.Size = New System.Drawing.Size(89, 40)
  5033. Me.E02_lb.TabIndex = 1
  5034. Me.E02_lb.Text = "Label29"
  5035. Me.E02_lb.TextAlign = System.Drawing.ContentAlignment.TopCenter
  5036. '
  5037. 'SplitContainer71
  5038. '
  5039. Me.SplitContainer71.Dock = System.Windows.Forms.DockStyle.Fill
  5040. Me.SplitContainer71.Location = New System.Drawing.Point(0, 0)
  5041. Me.SplitContainer71.Name = "SplitContainer71"
  5042. '
  5043. 'SplitContainer71.Panel1
  5044. '
  5045. Me.SplitContainer71.Panel1.Controls.Add(Me.SplitContainer72)
  5046. '
  5047. 'SplitContainer71.Panel2
  5048. '
  5049. Me.SplitContainer71.Panel2.Controls.Add(Me.SplitContainer73)
  5050. Me.SplitContainer71.Size = New System.Drawing.Size(1026, 40)
  5051. Me.SplitContainer71.SplitterDistance = 170
  5052. Me.SplitContainer71.SplitterWidth = 1
  5053. Me.SplitContainer71.TabIndex = 0
  5054. '
  5055. 'SplitContainer72
  5056. '
  5057. Me.SplitContainer72.Dock = System.Windows.Forms.DockStyle.Fill
  5058. Me.SplitContainer72.Location = New System.Drawing.Point(0, 0)
  5059. Me.SplitContainer72.Name = "SplitContainer72"
  5060. '
  5061. 'SplitContainer72.Panel1
  5062. '
  5063. Me.SplitContainer72.Panel1.Controls.Add(Me.E03_tb)
  5064. Me.SplitContainer72.Panel1.Controls.Add(Me.E03_lb)
  5065. '
  5066. 'SplitContainer72.Panel2
  5067. '
  5068. Me.SplitContainer72.Panel2.Controls.Add(Me.E04_tb)
  5069. Me.SplitContainer72.Panel2.Controls.Add(Me.E04_lb)
  5070. Me.SplitContainer72.Size = New System.Drawing.Size(170, 40)
  5071. Me.SplitContainer72.SplitterDistance = 85
  5072. Me.SplitContainer72.SplitterWidth = 1
  5073. Me.SplitContainer72.TabIndex = 0
  5074. '
  5075. 'E03_tb
  5076. '
  5077. Me.E03_tb.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  5078. Me.E03_tb.Dock = System.Windows.Forms.DockStyle.Bottom
  5079. Me.E03_tb.Location = New System.Drawing.Point(0, 17)
  5080. Me.E03_tb.Name = "E03_tb"
  5081. Me.E03_tb.ReadOnly = True
  5082. Me.E03_tb.Size = New System.Drawing.Size(85, 23)
  5083. Me.E03_tb.TabIndex = 3
  5084. Me.E03_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  5085. '
  5086. 'E03_lb
  5087. '
  5088. Me.E03_lb.Dock = System.Windows.Forms.DockStyle.Top
  5089. Me.E03_lb.Font = New System.Drawing.Font("微軟正黑體", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  5090. Me.E03_lb.Location = New System.Drawing.Point(0, 0)
  5091. Me.E03_lb.Name = "E03_lb"
  5092. Me.E03_lb.Size = New System.Drawing.Size(85, 40)
  5093. Me.E03_lb.TabIndex = 1
  5094. Me.E03_lb.Text = "Label28"
  5095. Me.E03_lb.TextAlign = System.Drawing.ContentAlignment.TopCenter
  5096. '
  5097. 'E04_tb
  5098. '
  5099. Me.E04_tb.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  5100. Me.E04_tb.Dock = System.Windows.Forms.DockStyle.Bottom
  5101. Me.E04_tb.Location = New System.Drawing.Point(0, 17)
  5102. Me.E04_tb.Name = "E04_tb"
  5103. Me.E04_tb.ReadOnly = True
  5104. Me.E04_tb.Size = New System.Drawing.Size(84, 23)
  5105. Me.E04_tb.TabIndex = 3
  5106. Me.E04_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  5107. '
  5108. 'E04_lb
  5109. '
  5110. Me.E04_lb.Dock = System.Windows.Forms.DockStyle.Top
  5111. Me.E04_lb.Font = New System.Drawing.Font("微軟正黑體", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  5112. Me.E04_lb.Location = New System.Drawing.Point(0, 0)
  5113. Me.E04_lb.Name = "E04_lb"
  5114. Me.E04_lb.Size = New System.Drawing.Size(84, 40)
  5115. Me.E04_lb.TabIndex = 1
  5116. Me.E04_lb.Text = "Label27"
  5117. Me.E04_lb.TextAlign = System.Drawing.ContentAlignment.TopCenter
  5118. '
  5119. 'SplitContainer73
  5120. '
  5121. Me.SplitContainer73.Dock = System.Windows.Forms.DockStyle.Fill
  5122. Me.SplitContainer73.Location = New System.Drawing.Point(0, 0)
  5123. Me.SplitContainer73.Name = "SplitContainer73"
  5124. '
  5125. 'SplitContainer73.Panel1
  5126. '
  5127. Me.SplitContainer73.Panel1.Controls.Add(Me.SplitContainer74)
  5128. '
  5129. 'SplitContainer73.Panel2
  5130. '
  5131. Me.SplitContainer73.Panel2.Controls.Add(Me.SplitContainer75)
  5132. Me.SplitContainer73.Size = New System.Drawing.Size(855, 40)
  5133. Me.SplitContainer73.SplitterDistance = 174
  5134. Me.SplitContainer73.SplitterWidth = 1
  5135. Me.SplitContainer73.TabIndex = 0
  5136. '
  5137. 'SplitContainer74
  5138. '
  5139. Me.SplitContainer74.Dock = System.Windows.Forms.DockStyle.Fill
  5140. Me.SplitContainer74.Location = New System.Drawing.Point(0, 0)
  5141. Me.SplitContainer74.Name = "SplitContainer74"
  5142. '
  5143. 'SplitContainer74.Panel1
  5144. '
  5145. Me.SplitContainer74.Panel1.Controls.Add(Me.E05_tb)
  5146. Me.SplitContainer74.Panel1.Controls.Add(Me.E05_lb)
  5147. '
  5148. 'SplitContainer74.Panel2
  5149. '
  5150. Me.SplitContainer74.Panel2.Controls.Add(Me.E06_tb)
  5151. Me.SplitContainer74.Panel2.Controls.Add(Me.E06_lb)
  5152. Me.SplitContainer74.Size = New System.Drawing.Size(174, 40)
  5153. Me.SplitContainer74.SplitterDistance = 83
  5154. Me.SplitContainer74.SplitterWidth = 1
  5155. Me.SplitContainer74.TabIndex = 0
  5156. '
  5157. 'E05_tb
  5158. '
  5159. Me.E05_tb.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  5160. Me.E05_tb.Dock = System.Windows.Forms.DockStyle.Bottom
  5161. Me.E05_tb.Location = New System.Drawing.Point(0, 17)
  5162. Me.E05_tb.Name = "E05_tb"
  5163. Me.E05_tb.ReadOnly = True
  5164. Me.E05_tb.Size = New System.Drawing.Size(83, 23)
  5165. Me.E05_tb.TabIndex = 3
  5166. Me.E05_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  5167. '
  5168. 'E05_lb
  5169. '
  5170. Me.E05_lb.Dock = System.Windows.Forms.DockStyle.Top
  5171. Me.E05_lb.Font = New System.Drawing.Font("微軟正黑體", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  5172. Me.E05_lb.Location = New System.Drawing.Point(0, 0)
  5173. Me.E05_lb.Name = "E05_lb"
  5174. Me.E05_lb.Size = New System.Drawing.Size(83, 40)
  5175. Me.E05_lb.TabIndex = 1
  5176. Me.E05_lb.Text = "Label26"
  5177. Me.E05_lb.TextAlign = System.Drawing.ContentAlignment.TopCenter
  5178. '
  5179. 'E06_tb
  5180. '
  5181. Me.E06_tb.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  5182. Me.E06_tb.Dock = System.Windows.Forms.DockStyle.Bottom
  5183. Me.E06_tb.Location = New System.Drawing.Point(0, 17)
  5184. Me.E06_tb.Name = "E06_tb"
  5185. Me.E06_tb.ReadOnly = True
  5186. Me.E06_tb.Size = New System.Drawing.Size(90, 23)
  5187. Me.E06_tb.TabIndex = 3
  5188. Me.E06_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  5189. '
  5190. 'E06_lb
  5191. '
  5192. Me.E06_lb.Dock = System.Windows.Forms.DockStyle.Top
  5193. Me.E06_lb.Font = New System.Drawing.Font("微軟正黑體", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  5194. Me.E06_lb.Location = New System.Drawing.Point(0, 0)
  5195. Me.E06_lb.Name = "E06_lb"
  5196. Me.E06_lb.Size = New System.Drawing.Size(90, 40)
  5197. Me.E06_lb.TabIndex = 1
  5198. Me.E06_lb.Text = "Label25"
  5199. Me.E06_lb.TextAlign = System.Drawing.ContentAlignment.TopCenter
  5200. '
  5201. 'SplitContainer75
  5202. '
  5203. Me.SplitContainer75.Dock = System.Windows.Forms.DockStyle.Fill
  5204. Me.SplitContainer75.Location = New System.Drawing.Point(0, 0)
  5205. Me.SplitContainer75.Name = "SplitContainer75"
  5206. '
  5207. 'SplitContainer75.Panel1
  5208. '
  5209. Me.SplitContainer75.Panel1.Controls.Add(Me.E07_tb)
  5210. Me.SplitContainer75.Panel1.Controls.Add(Me.E07_lb)
  5211. '
  5212. 'SplitContainer75.Panel2
  5213. '
  5214. Me.SplitContainer75.Panel2.Controls.Add(Me.SplitContainer76)
  5215. Me.SplitContainer75.Size = New System.Drawing.Size(680, 40)
  5216. Me.SplitContainer75.SplitterDistance = 85
  5217. Me.SplitContainer75.SplitterWidth = 1
  5218. Me.SplitContainer75.TabIndex = 0
  5219. '
  5220. 'E07_tb
  5221. '
  5222. Me.E07_tb.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  5223. Me.E07_tb.Dock = System.Windows.Forms.DockStyle.Bottom
  5224. Me.E07_tb.Location = New System.Drawing.Point(0, 17)
  5225. Me.E07_tb.Name = "E07_tb"
  5226. Me.E07_tb.ReadOnly = True
  5227. Me.E07_tb.Size = New System.Drawing.Size(85, 23)
  5228. Me.E07_tb.TabIndex = 3
  5229. Me.E07_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  5230. '
  5231. 'E07_lb
  5232. '
  5233. Me.E07_lb.Dock = System.Windows.Forms.DockStyle.Top
  5234. Me.E07_lb.Font = New System.Drawing.Font("微軟正黑體", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  5235. Me.E07_lb.Location = New System.Drawing.Point(0, 0)
  5236. Me.E07_lb.Name = "E07_lb"
  5237. Me.E07_lb.Size = New System.Drawing.Size(85, 40)
  5238. Me.E07_lb.TabIndex = 1
  5239. Me.E07_lb.Text = "Label24"
  5240. Me.E07_lb.TextAlign = System.Drawing.ContentAlignment.TopCenter
  5241. '
  5242. 'SplitContainer76
  5243. '
  5244. Me.SplitContainer76.Dock = System.Windows.Forms.DockStyle.Fill
  5245. Me.SplitContainer76.Location = New System.Drawing.Point(0, 0)
  5246. Me.SplitContainer76.Name = "SplitContainer76"
  5247. '
  5248. 'SplitContainer76.Panel1
  5249. '
  5250. Me.SplitContainer76.Panel1.Controls.Add(Me.E08_tb)
  5251. Me.SplitContainer76.Panel1.Controls.Add(Me.E08_lb)
  5252. '
  5253. 'SplitContainer76.Panel2
  5254. '
  5255. Me.SplitContainer76.Panel2.Controls.Add(Me.SplitContainer77)
  5256. Me.SplitContainer76.Size = New System.Drawing.Size(594, 40)
  5257. Me.SplitContainer76.SplitterDistance = 88
  5258. Me.SplitContainer76.SplitterWidth = 1
  5259. Me.SplitContainer76.TabIndex = 0
  5260. '
  5261. 'E08_tb
  5262. '
  5263. Me.E08_tb.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  5264. Me.E08_tb.Dock = System.Windows.Forms.DockStyle.Bottom
  5265. Me.E08_tb.Location = New System.Drawing.Point(0, 17)
  5266. Me.E08_tb.Name = "E08_tb"
  5267. Me.E08_tb.ReadOnly = True
  5268. Me.E08_tb.Size = New System.Drawing.Size(88, 23)
  5269. Me.E08_tb.TabIndex = 3
  5270. Me.E08_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  5271. '
  5272. 'E08_lb
  5273. '
  5274. Me.E08_lb.Dock = System.Windows.Forms.DockStyle.Top
  5275. Me.E08_lb.Font = New System.Drawing.Font("微軟正黑體", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  5276. Me.E08_lb.Location = New System.Drawing.Point(0, 0)
  5277. Me.E08_lb.Name = "E08_lb"
  5278. Me.E08_lb.Size = New System.Drawing.Size(88, 40)
  5279. Me.E08_lb.TabIndex = 1
  5280. Me.E08_lb.Text = "Label23"
  5281. Me.E08_lb.TextAlign = System.Drawing.ContentAlignment.TopCenter
  5282. '
  5283. 'SplitContainer77
  5284. '
  5285. Me.SplitContainer77.Dock = System.Windows.Forms.DockStyle.Fill
  5286. Me.SplitContainer77.Location = New System.Drawing.Point(0, 0)
  5287. Me.SplitContainer77.Name = "SplitContainer77"
  5288. '
  5289. 'SplitContainer77.Panel1
  5290. '
  5291. Me.SplitContainer77.Panel1.Controls.Add(Me.E09_tb)
  5292. Me.SplitContainer77.Panel1.Controls.Add(Me.E09_lb)
  5293. '
  5294. 'SplitContainer77.Panel2
  5295. '
  5296. Me.SplitContainer77.Panel2.Controls.Add(Me.SplitContainer78)
  5297. Me.SplitContainer77.Size = New System.Drawing.Size(505, 40)
  5298. Me.SplitContainer77.SplitterDistance = 94
  5299. Me.SplitContainer77.SplitterWidth = 1
  5300. Me.SplitContainer77.TabIndex = 0
  5301. '
  5302. 'E09_tb
  5303. '
  5304. Me.E09_tb.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  5305. Me.E09_tb.Dock = System.Windows.Forms.DockStyle.Bottom
  5306. Me.E09_tb.Location = New System.Drawing.Point(0, 17)
  5307. Me.E09_tb.Name = "E09_tb"
  5308. Me.E09_tb.ReadOnly = True
  5309. Me.E09_tb.Size = New System.Drawing.Size(94, 23)
  5310. Me.E09_tb.TabIndex = 3
  5311. Me.E09_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  5312. '
  5313. 'E09_lb
  5314. '
  5315. Me.E09_lb.Dock = System.Windows.Forms.DockStyle.Top
  5316. Me.E09_lb.Font = New System.Drawing.Font("微軟正黑體", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  5317. Me.E09_lb.Location = New System.Drawing.Point(0, 0)
  5318. Me.E09_lb.Name = "E09_lb"
  5319. Me.E09_lb.Size = New System.Drawing.Size(94, 18)
  5320. Me.E09_lb.TabIndex = 1
  5321. Me.E09_lb.Text = "Label22"
  5322. Me.E09_lb.TextAlign = System.Drawing.ContentAlignment.TopCenter
  5323. '
  5324. 'SplitContainer78
  5325. '
  5326. Me.SplitContainer78.Dock = System.Windows.Forms.DockStyle.Fill
  5327. Me.SplitContainer78.Location = New System.Drawing.Point(0, 0)
  5328. Me.SplitContainer78.Name = "SplitContainer78"
  5329. '
  5330. 'SplitContainer78.Panel1
  5331. '
  5332. Me.SplitContainer78.Panel1.Controls.Add(Me.E10_tb)
  5333. Me.SplitContainer78.Panel1.Controls.Add(Me.E10_lb)
  5334. '
  5335. 'SplitContainer78.Panel2
  5336. '
  5337. Me.SplitContainer78.Panel2.Controls.Add(Me.SplitContainer79)
  5338. Me.SplitContainer78.Size = New System.Drawing.Size(410, 40)
  5339. Me.SplitContainer78.SplitterDistance = 99
  5340. Me.SplitContainer78.SplitterWidth = 1
  5341. Me.SplitContainer78.TabIndex = 0
  5342. '
  5343. 'E10_tb
  5344. '
  5345. Me.E10_tb.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  5346. Me.E10_tb.Dock = System.Windows.Forms.DockStyle.Bottom
  5347. Me.E10_tb.Location = New System.Drawing.Point(0, 17)
  5348. Me.E10_tb.Name = "E10_tb"
  5349. Me.E10_tb.ReadOnly = True
  5350. Me.E10_tb.Size = New System.Drawing.Size(99, 23)
  5351. Me.E10_tb.TabIndex = 2
  5352. Me.E10_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  5353. '
  5354. 'E10_lb
  5355. '
  5356. Me.E10_lb.Dock = System.Windows.Forms.DockStyle.Top
  5357. Me.E10_lb.Font = New System.Drawing.Font("微軟正黑體", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  5358. Me.E10_lb.Location = New System.Drawing.Point(0, 0)
  5359. Me.E10_lb.Name = "E10_lb"
  5360. Me.E10_lb.Size = New System.Drawing.Size(99, 40)
  5361. Me.E10_lb.TabIndex = 1
  5362. Me.E10_lb.Text = "Label21"
  5363. Me.E10_lb.TextAlign = System.Drawing.ContentAlignment.TopCenter
  5364. '
  5365. 'SplitContainer79
  5366. '
  5367. Me.SplitContainer79.Dock = System.Windows.Forms.DockStyle.Fill
  5368. Me.SplitContainer79.Location = New System.Drawing.Point(0, 0)
  5369. Me.SplitContainer79.Name = "SplitContainer79"
  5370. '
  5371. 'SplitContainer79.Panel1
  5372. '
  5373. Me.SplitContainer79.Panel1.Controls.Add(Me.E11_tb)
  5374. Me.SplitContainer79.Panel1.Controls.Add(Me.E11_lb)
  5375. '
  5376. 'SplitContainer79.Panel2
  5377. '
  5378. Me.SplitContainer79.Panel2.Controls.Add(Me.SplitContainer80)
  5379. Me.SplitContainer79.Size = New System.Drawing.Size(310, 40)
  5380. Me.SplitContainer79.SplitterDistance = 88
  5381. Me.SplitContainer79.SplitterWidth = 1
  5382. Me.SplitContainer79.TabIndex = 0
  5383. '
  5384. 'E11_tb
  5385. '
  5386. Me.E11_tb.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  5387. Me.E11_tb.Dock = System.Windows.Forms.DockStyle.Bottom
  5388. Me.E11_tb.Location = New System.Drawing.Point(0, 17)
  5389. Me.E11_tb.Name = "E11_tb"
  5390. Me.E11_tb.ReadOnly = True
  5391. Me.E11_tb.Size = New System.Drawing.Size(88, 23)
  5392. Me.E11_tb.TabIndex = 3
  5393. Me.E11_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  5394. '
  5395. 'E11_lb
  5396. '
  5397. Me.E11_lb.Dock = System.Windows.Forms.DockStyle.Top
  5398. Me.E11_lb.Font = New System.Drawing.Font("微軟正黑體", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  5399. Me.E11_lb.Location = New System.Drawing.Point(0, 0)
  5400. Me.E11_lb.Name = "E11_lb"
  5401. Me.E11_lb.Size = New System.Drawing.Size(88, 40)
  5402. Me.E11_lb.TabIndex = 0
  5403. Me.E11_lb.Text = "Label17"
  5404. Me.E11_lb.TextAlign = System.Drawing.ContentAlignment.TopCenter
  5405. '
  5406. 'SplitContainer80
  5407. '
  5408. Me.SplitContainer80.Dock = System.Windows.Forms.DockStyle.Fill
  5409. Me.SplitContainer80.Location = New System.Drawing.Point(0, 0)
  5410. Me.SplitContainer80.Name = "SplitContainer80"
  5411. '
  5412. 'SplitContainer80.Panel1
  5413. '
  5414. Me.SplitContainer80.Panel1.Controls.Add(Me.E12_tb)
  5415. Me.SplitContainer80.Panel1.Controls.Add(Me.E12_lb)
  5416. '
  5417. 'SplitContainer80.Panel2
  5418. '
  5419. Me.SplitContainer80.Panel2.Controls.Add(Me.公司負擔總計_tb)
  5420. Me.SplitContainer80.Panel2.Controls.Add(Me.Label81)
  5421. Me.SplitContainer80.Size = New System.Drawing.Size(221, 40)
  5422. Me.SplitContainer80.SplitterDistance = 100
  5423. Me.SplitContainer80.SplitterWidth = 1
  5424. Me.SplitContainer80.TabIndex = 0
  5425. '
  5426. 'E12_tb
  5427. '
  5428. Me.E12_tb.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  5429. Me.E12_tb.Dock = System.Windows.Forms.DockStyle.Bottom
  5430. Me.E12_tb.Location = New System.Drawing.Point(0, 17)
  5431. Me.E12_tb.Name = "E12_tb"
  5432. Me.E12_tb.ReadOnly = True
  5433. Me.E12_tb.Size = New System.Drawing.Size(100, 23)
  5434. Me.E12_tb.TabIndex = 3
  5435. Me.E12_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  5436. '
  5437. 'E12_lb
  5438. '
  5439. Me.E12_lb.Dock = System.Windows.Forms.DockStyle.Top
  5440. Me.E12_lb.Font = New System.Drawing.Font("微軟正黑體", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  5441. Me.E12_lb.Location = New System.Drawing.Point(0, 0)
  5442. Me.E12_lb.Name = "E12_lb"
  5443. Me.E12_lb.Size = New System.Drawing.Size(100, 40)
  5444. Me.E12_lb.TabIndex = 1
  5445. Me.E12_lb.Text = "Label18"
  5446. Me.E12_lb.TextAlign = System.Drawing.ContentAlignment.TopCenter
  5447. '
  5448. '公司負擔總計_tb
  5449. '
  5450. Me.公司負擔總計_tb.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  5451. Me.公司負擔總計_tb.Dock = System.Windows.Forms.DockStyle.Bottom
  5452. Me.公司負擔總計_tb.Location = New System.Drawing.Point(0, 17)
  5453. Me.公司負擔總計_tb.Name = "公司負擔總計_tb"
  5454. Me.公司負擔總計_tb.ReadOnly = True
  5455. Me.公司負擔總計_tb.Size = New System.Drawing.Size(120, 23)
  5456. Me.公司負擔總計_tb.TabIndex = 3
  5457. Me.公司負擔總計_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  5458. '
  5459. 'Label81
  5460. '
  5461. Me.Label81.Dock = System.Windows.Forms.DockStyle.Top
  5462. Me.Label81.Font = New System.Drawing.Font("微軟正黑體", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  5463. Me.Label81.Location = New System.Drawing.Point(0, 0)
  5464. Me.Label81.Name = "Label81"
  5465. Me.Label81.Size = New System.Drawing.Size(120, 40)
  5466. Me.Label81.TabIndex = 1
  5467. Me.Label81.Text = "公司負擔總計"
  5468. Me.Label81.TextAlign = System.Drawing.ContentAlignment.TopCenter
  5469. '
  5470. '薪資加項_P
  5471. '
  5472. Me.薪資加項_P.Anchor = CType(((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left) _
  5473. Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  5474. Me.薪資加項_P.Controls.Add(Me.SplitContainer9)
  5475. Me.薪資加項_P.Location = New System.Drawing.Point(3, 543)
  5476. Me.薪資加項_P.Name = "薪資加項_P"
  5477. Me.薪資加項_P.Size = New System.Drawing.Size(1287, 40)
  5478. Me.薪資加項_P.TabIndex = 1735
  5479. '
  5480. 'SplitContainer9
  5481. '
  5482. Me.SplitContainer9.Dock = System.Windows.Forms.DockStyle.Fill
  5483. Me.SplitContainer9.Location = New System.Drawing.Point(0, 0)
  5484. Me.SplitContainer9.Name = "SplitContainer9"
  5485. '
  5486. 'SplitContainer9.Panel2
  5487. '
  5488. Me.SplitContainer9.Panel2.Controls.Add(Me.SplitContainer10)
  5489. Me.SplitContainer9.Size = New System.Drawing.Size(1287, 40)
  5490. Me.SplitContainer9.SplitterDistance = 84
  5491. Me.SplitContainer9.SplitterWidth = 1
  5492. Me.SplitContainer9.TabIndex = 0
  5493. '
  5494. 'SplitContainer10
  5495. '
  5496. Me.SplitContainer10.Dock = System.Windows.Forms.DockStyle.Fill
  5497. Me.SplitContainer10.Location = New System.Drawing.Point(0, 0)
  5498. Me.SplitContainer10.Name = "SplitContainer10"
  5499. '
  5500. 'SplitContainer10.Panel1
  5501. '
  5502. Me.SplitContainer10.Panel1.Controls.Add(Me.SplitContainer11)
  5503. '
  5504. 'SplitContainer10.Panel2
  5505. '
  5506. Me.SplitContainer10.Panel2.Controls.Add(Me.SplitContainer12)
  5507. Me.SplitContainer10.Size = New System.Drawing.Size(1202, 40)
  5508. Me.SplitContainer10.SplitterDistance = 175
  5509. Me.SplitContainer10.SplitterWidth = 1
  5510. Me.SplitContainer10.TabIndex = 0
  5511. '
  5512. 'SplitContainer11
  5513. '
  5514. Me.SplitContainer11.Dock = System.Windows.Forms.DockStyle.Fill
  5515. Me.SplitContainer11.Location = New System.Drawing.Point(0, 0)
  5516. Me.SplitContainer11.Name = "SplitContainer11"
  5517. '
  5518. 'SplitContainer11.Panel1
  5519. '
  5520. Me.SplitContainer11.Panel1.Controls.Add(Me.D01_tb)
  5521. Me.SplitContainer11.Panel1.Controls.Add(Me.D01_lb)
  5522. '
  5523. 'SplitContainer11.Panel2
  5524. '
  5525. Me.SplitContainer11.Panel2.Controls.Add(Me.D02_tb)
  5526. Me.SplitContainer11.Panel2.Controls.Add(Me.D02_lb)
  5527. Me.SplitContainer11.Size = New System.Drawing.Size(175, 40)
  5528. Me.SplitContainer11.SplitterDistance = 85
  5529. Me.SplitContainer11.SplitterWidth = 1
  5530. Me.SplitContainer11.TabIndex = 0
  5531. '
  5532. 'D01_tb
  5533. '
  5534. Me.D01_tb.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  5535. Me.D01_tb.Dock = System.Windows.Forms.DockStyle.Bottom
  5536. Me.D01_tb.Location = New System.Drawing.Point(0, 17)
  5537. Me.D01_tb.Name = "D01_tb"
  5538. Me.D01_tb.ReadOnly = True
  5539. Me.D01_tb.Size = New System.Drawing.Size(85, 23)
  5540. Me.D01_tb.TabIndex = 3
  5541. Me.D01_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  5542. '
  5543. 'D01_lb
  5544. '
  5545. Me.D01_lb.Dock = System.Windows.Forms.DockStyle.Top
  5546. Me.D01_lb.Font = New System.Drawing.Font("微軟正黑體", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  5547. Me.D01_lb.Location = New System.Drawing.Point(0, 0)
  5548. Me.D01_lb.Name = "D01_lb"
  5549. Me.D01_lb.Size = New System.Drawing.Size(85, 40)
  5550. Me.D01_lb.TabIndex = 1
  5551. Me.D01_lb.Text = "Label30"
  5552. Me.D01_lb.TextAlign = System.Drawing.ContentAlignment.TopCenter
  5553. '
  5554. 'D02_tb
  5555. '
  5556. Me.D02_tb.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  5557. Me.D02_tb.Dock = System.Windows.Forms.DockStyle.Bottom
  5558. Me.D02_tb.Location = New System.Drawing.Point(0, 17)
  5559. Me.D02_tb.Name = "D02_tb"
  5560. Me.D02_tb.ReadOnly = True
  5561. Me.D02_tb.Size = New System.Drawing.Size(89, 23)
  5562. Me.D02_tb.TabIndex = 3
  5563. Me.D02_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  5564. '
  5565. 'D02_lb
  5566. '
  5567. Me.D02_lb.Dock = System.Windows.Forms.DockStyle.Top
  5568. Me.D02_lb.Font = New System.Drawing.Font("微軟正黑體", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  5569. Me.D02_lb.Location = New System.Drawing.Point(0, 0)
  5570. Me.D02_lb.Name = "D02_lb"
  5571. Me.D02_lb.Size = New System.Drawing.Size(89, 40)
  5572. Me.D02_lb.TabIndex = 1
  5573. Me.D02_lb.Text = "Label29"
  5574. Me.D02_lb.TextAlign = System.Drawing.ContentAlignment.TopCenter
  5575. '
  5576. 'SplitContainer12
  5577. '
  5578. Me.SplitContainer12.Dock = System.Windows.Forms.DockStyle.Fill
  5579. Me.SplitContainer12.Location = New System.Drawing.Point(0, 0)
  5580. Me.SplitContainer12.Name = "SplitContainer12"
  5581. '
  5582. 'SplitContainer12.Panel1
  5583. '
  5584. Me.SplitContainer12.Panel1.Controls.Add(Me.SplitContainer13)
  5585. '
  5586. 'SplitContainer12.Panel2
  5587. '
  5588. Me.SplitContainer12.Panel2.Controls.Add(Me.SplitContainer14)
  5589. Me.SplitContainer12.Size = New System.Drawing.Size(1026, 40)
  5590. Me.SplitContainer12.SplitterDistance = 170
  5591. Me.SplitContainer12.SplitterWidth = 1
  5592. Me.SplitContainer12.TabIndex = 0
  5593. '
  5594. 'SplitContainer13
  5595. '
  5596. Me.SplitContainer13.Dock = System.Windows.Forms.DockStyle.Fill
  5597. Me.SplitContainer13.Location = New System.Drawing.Point(0, 0)
  5598. Me.SplitContainer13.Name = "SplitContainer13"
  5599. '
  5600. 'SplitContainer13.Panel1
  5601. '
  5602. Me.SplitContainer13.Panel1.Controls.Add(Me.D03_tb)
  5603. Me.SplitContainer13.Panel1.Controls.Add(Me.D03_lb)
  5604. '
  5605. 'SplitContainer13.Panel2
  5606. '
  5607. Me.SplitContainer13.Panel2.Controls.Add(Me.D04_tb)
  5608. Me.SplitContainer13.Panel2.Controls.Add(Me.D04_lb)
  5609. Me.SplitContainer13.Size = New System.Drawing.Size(170, 40)
  5610. Me.SplitContainer13.SplitterDistance = 85
  5611. Me.SplitContainer13.SplitterWidth = 1
  5612. Me.SplitContainer13.TabIndex = 0
  5613. '
  5614. 'D03_tb
  5615. '
  5616. Me.D03_tb.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  5617. Me.D03_tb.Dock = System.Windows.Forms.DockStyle.Bottom
  5618. Me.D03_tb.Location = New System.Drawing.Point(0, 17)
  5619. Me.D03_tb.Name = "D03_tb"
  5620. Me.D03_tb.ReadOnly = True
  5621. Me.D03_tb.Size = New System.Drawing.Size(85, 23)
  5622. Me.D03_tb.TabIndex = 3
  5623. Me.D03_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  5624. '
  5625. 'D03_lb
  5626. '
  5627. Me.D03_lb.Dock = System.Windows.Forms.DockStyle.Top
  5628. Me.D03_lb.Font = New System.Drawing.Font("微軟正黑體", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  5629. Me.D03_lb.Location = New System.Drawing.Point(0, 0)
  5630. Me.D03_lb.Name = "D03_lb"
  5631. Me.D03_lb.Size = New System.Drawing.Size(85, 40)
  5632. Me.D03_lb.TabIndex = 1
  5633. Me.D03_lb.Text = "Label28"
  5634. Me.D03_lb.TextAlign = System.Drawing.ContentAlignment.TopCenter
  5635. '
  5636. 'D04_tb
  5637. '
  5638. Me.D04_tb.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  5639. Me.D04_tb.Dock = System.Windows.Forms.DockStyle.Bottom
  5640. Me.D04_tb.Location = New System.Drawing.Point(0, 17)
  5641. Me.D04_tb.Name = "D04_tb"
  5642. Me.D04_tb.ReadOnly = True
  5643. Me.D04_tb.Size = New System.Drawing.Size(84, 23)
  5644. Me.D04_tb.TabIndex = 3
  5645. Me.D04_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  5646. '
  5647. 'D04_lb
  5648. '
  5649. Me.D04_lb.Dock = System.Windows.Forms.DockStyle.Top
  5650. Me.D04_lb.Font = New System.Drawing.Font("微軟正黑體", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  5651. Me.D04_lb.Location = New System.Drawing.Point(0, 0)
  5652. Me.D04_lb.Name = "D04_lb"
  5653. Me.D04_lb.Size = New System.Drawing.Size(84, 40)
  5654. Me.D04_lb.TabIndex = 1
  5655. Me.D04_lb.Text = "Label27"
  5656. Me.D04_lb.TextAlign = System.Drawing.ContentAlignment.TopCenter
  5657. '
  5658. 'SplitContainer14
  5659. '
  5660. Me.SplitContainer14.Dock = System.Windows.Forms.DockStyle.Fill
  5661. Me.SplitContainer14.Location = New System.Drawing.Point(0, 0)
  5662. Me.SplitContainer14.Name = "SplitContainer14"
  5663. '
  5664. 'SplitContainer14.Panel1
  5665. '
  5666. Me.SplitContainer14.Panel1.Controls.Add(Me.SplitContainer61)
  5667. '
  5668. 'SplitContainer14.Panel2
  5669. '
  5670. Me.SplitContainer14.Panel2.Controls.Add(Me.SplitContainer62)
  5671. Me.SplitContainer14.Size = New System.Drawing.Size(855, 40)
  5672. Me.SplitContainer14.SplitterDistance = 174
  5673. Me.SplitContainer14.SplitterWidth = 1
  5674. Me.SplitContainer14.TabIndex = 0
  5675. '
  5676. 'SplitContainer61
  5677. '
  5678. Me.SplitContainer61.Dock = System.Windows.Forms.DockStyle.Fill
  5679. Me.SplitContainer61.Location = New System.Drawing.Point(0, 0)
  5680. Me.SplitContainer61.Name = "SplitContainer61"
  5681. '
  5682. 'SplitContainer61.Panel1
  5683. '
  5684. Me.SplitContainer61.Panel1.Controls.Add(Me.D05_tb)
  5685. Me.SplitContainer61.Panel1.Controls.Add(Me.D05_lb)
  5686. '
  5687. 'SplitContainer61.Panel2
  5688. '
  5689. Me.SplitContainer61.Panel2.Controls.Add(Me.D06_tb)
  5690. Me.SplitContainer61.Panel2.Controls.Add(Me.D06_lb)
  5691. Me.SplitContainer61.Size = New System.Drawing.Size(174, 40)
  5692. Me.SplitContainer61.SplitterDistance = 83
  5693. Me.SplitContainer61.SplitterWidth = 1
  5694. Me.SplitContainer61.TabIndex = 0
  5695. '
  5696. 'D05_tb
  5697. '
  5698. Me.D05_tb.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  5699. Me.D05_tb.Dock = System.Windows.Forms.DockStyle.Bottom
  5700. Me.D05_tb.Location = New System.Drawing.Point(0, 17)
  5701. Me.D05_tb.Name = "D05_tb"
  5702. Me.D05_tb.ReadOnly = True
  5703. Me.D05_tb.Size = New System.Drawing.Size(83, 23)
  5704. Me.D05_tb.TabIndex = 3
  5705. Me.D05_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  5706. '
  5707. 'D05_lb
  5708. '
  5709. Me.D05_lb.Dock = System.Windows.Forms.DockStyle.Top
  5710. Me.D05_lb.Font = New System.Drawing.Font("微軟正黑體", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  5711. Me.D05_lb.Location = New System.Drawing.Point(0, 0)
  5712. Me.D05_lb.Name = "D05_lb"
  5713. Me.D05_lb.Size = New System.Drawing.Size(83, 40)
  5714. Me.D05_lb.TabIndex = 1
  5715. Me.D05_lb.Text = "Label26"
  5716. Me.D05_lb.TextAlign = System.Drawing.ContentAlignment.TopCenter
  5717. '
  5718. 'D06_tb
  5719. '
  5720. Me.D06_tb.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  5721. Me.D06_tb.Dock = System.Windows.Forms.DockStyle.Bottom
  5722. Me.D06_tb.Location = New System.Drawing.Point(0, 17)
  5723. Me.D06_tb.Name = "D06_tb"
  5724. Me.D06_tb.ReadOnly = True
  5725. Me.D06_tb.Size = New System.Drawing.Size(90, 23)
  5726. Me.D06_tb.TabIndex = 3
  5727. Me.D06_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  5728. '
  5729. 'D06_lb
  5730. '
  5731. Me.D06_lb.Dock = System.Windows.Forms.DockStyle.Top
  5732. Me.D06_lb.Font = New System.Drawing.Font("微軟正黑體", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  5733. Me.D06_lb.Location = New System.Drawing.Point(0, 0)
  5734. Me.D06_lb.Name = "D06_lb"
  5735. Me.D06_lb.Size = New System.Drawing.Size(90, 40)
  5736. Me.D06_lb.TabIndex = 1
  5737. Me.D06_lb.Text = "Label25"
  5738. Me.D06_lb.TextAlign = System.Drawing.ContentAlignment.TopCenter
  5739. '
  5740. 'SplitContainer62
  5741. '
  5742. Me.SplitContainer62.Dock = System.Windows.Forms.DockStyle.Fill
  5743. Me.SplitContainer62.Location = New System.Drawing.Point(0, 0)
  5744. Me.SplitContainer62.Name = "SplitContainer62"
  5745. '
  5746. 'SplitContainer62.Panel1
  5747. '
  5748. Me.SplitContainer62.Panel1.Controls.Add(Me.D07_tb)
  5749. Me.SplitContainer62.Panel1.Controls.Add(Me.D07_lb)
  5750. '
  5751. 'SplitContainer62.Panel2
  5752. '
  5753. Me.SplitContainer62.Panel2.Controls.Add(Me.SplitContainer63)
  5754. Me.SplitContainer62.Size = New System.Drawing.Size(680, 40)
  5755. Me.SplitContainer62.SplitterDistance = 85
  5756. Me.SplitContainer62.SplitterWidth = 1
  5757. Me.SplitContainer62.TabIndex = 0
  5758. '
  5759. 'D07_tb
  5760. '
  5761. Me.D07_tb.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  5762. Me.D07_tb.Dock = System.Windows.Forms.DockStyle.Bottom
  5763. Me.D07_tb.Location = New System.Drawing.Point(0, 17)
  5764. Me.D07_tb.Name = "D07_tb"
  5765. Me.D07_tb.ReadOnly = True
  5766. Me.D07_tb.Size = New System.Drawing.Size(85, 23)
  5767. Me.D07_tb.TabIndex = 3
  5768. Me.D07_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  5769. '
  5770. 'D07_lb
  5771. '
  5772. Me.D07_lb.Dock = System.Windows.Forms.DockStyle.Top
  5773. Me.D07_lb.Font = New System.Drawing.Font("微軟正黑體", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  5774. Me.D07_lb.Location = New System.Drawing.Point(0, 0)
  5775. Me.D07_lb.Name = "D07_lb"
  5776. Me.D07_lb.Size = New System.Drawing.Size(85, 40)
  5777. Me.D07_lb.TabIndex = 1
  5778. Me.D07_lb.Text = "Label24"
  5779. Me.D07_lb.TextAlign = System.Drawing.ContentAlignment.TopCenter
  5780. '
  5781. 'SplitContainer63
  5782. '
  5783. Me.SplitContainer63.Dock = System.Windows.Forms.DockStyle.Fill
  5784. Me.SplitContainer63.Location = New System.Drawing.Point(0, 0)
  5785. Me.SplitContainer63.Name = "SplitContainer63"
  5786. '
  5787. 'SplitContainer63.Panel1
  5788. '
  5789. Me.SplitContainer63.Panel1.Controls.Add(Me.D08_tb)
  5790. Me.SplitContainer63.Panel1.Controls.Add(Me.D08_lb)
  5791. '
  5792. 'SplitContainer63.Panel2
  5793. '
  5794. Me.SplitContainer63.Panel2.Controls.Add(Me.SplitContainer64)
  5795. Me.SplitContainer63.Size = New System.Drawing.Size(594, 40)
  5796. Me.SplitContainer63.SplitterDistance = 88
  5797. Me.SplitContainer63.SplitterWidth = 1
  5798. Me.SplitContainer63.TabIndex = 0
  5799. '
  5800. 'D08_tb
  5801. '
  5802. Me.D08_tb.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  5803. Me.D08_tb.Dock = System.Windows.Forms.DockStyle.Bottom
  5804. Me.D08_tb.Location = New System.Drawing.Point(0, 17)
  5805. Me.D08_tb.Name = "D08_tb"
  5806. Me.D08_tb.ReadOnly = True
  5807. Me.D08_tb.Size = New System.Drawing.Size(88, 23)
  5808. Me.D08_tb.TabIndex = 3
  5809. Me.D08_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  5810. '
  5811. 'D08_lb
  5812. '
  5813. Me.D08_lb.Dock = System.Windows.Forms.DockStyle.Top
  5814. Me.D08_lb.Font = New System.Drawing.Font("微軟正黑體", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  5815. Me.D08_lb.Location = New System.Drawing.Point(0, 0)
  5816. Me.D08_lb.Name = "D08_lb"
  5817. Me.D08_lb.Size = New System.Drawing.Size(88, 40)
  5818. Me.D08_lb.TabIndex = 1
  5819. Me.D08_lb.Text = "Label23"
  5820. Me.D08_lb.TextAlign = System.Drawing.ContentAlignment.TopCenter
  5821. '
  5822. 'SplitContainer64
  5823. '
  5824. Me.SplitContainer64.Dock = System.Windows.Forms.DockStyle.Fill
  5825. Me.SplitContainer64.Location = New System.Drawing.Point(0, 0)
  5826. Me.SplitContainer64.Name = "SplitContainer64"
  5827. '
  5828. 'SplitContainer64.Panel1
  5829. '
  5830. Me.SplitContainer64.Panel1.Controls.Add(Me.D09_tb)
  5831. Me.SplitContainer64.Panel1.Controls.Add(Me.D09_lb)
  5832. '
  5833. 'SplitContainer64.Panel2
  5834. '
  5835. Me.SplitContainer64.Panel2.Controls.Add(Me.SplitContainer65)
  5836. Me.SplitContainer64.Size = New System.Drawing.Size(505, 40)
  5837. Me.SplitContainer64.SplitterDistance = 94
  5838. Me.SplitContainer64.SplitterWidth = 1
  5839. Me.SplitContainer64.TabIndex = 0
  5840. '
  5841. 'D09_tb
  5842. '
  5843. Me.D09_tb.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  5844. Me.D09_tb.Dock = System.Windows.Forms.DockStyle.Bottom
  5845. Me.D09_tb.Location = New System.Drawing.Point(0, 17)
  5846. Me.D09_tb.Name = "D09_tb"
  5847. Me.D09_tb.ReadOnly = True
  5848. Me.D09_tb.Size = New System.Drawing.Size(94, 23)
  5849. Me.D09_tb.TabIndex = 3
  5850. Me.D09_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  5851. '
  5852. 'D09_lb
  5853. '
  5854. Me.D09_lb.Dock = System.Windows.Forms.DockStyle.Top
  5855. Me.D09_lb.Font = New System.Drawing.Font("微軟正黑體", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  5856. Me.D09_lb.Location = New System.Drawing.Point(0, 0)
  5857. Me.D09_lb.Name = "D09_lb"
  5858. Me.D09_lb.Size = New System.Drawing.Size(94, 18)
  5859. Me.D09_lb.TabIndex = 1
  5860. Me.D09_lb.Text = "Label22"
  5861. Me.D09_lb.TextAlign = System.Drawing.ContentAlignment.TopCenter
  5862. '
  5863. 'SplitContainer65
  5864. '
  5865. Me.SplitContainer65.Dock = System.Windows.Forms.DockStyle.Fill
  5866. Me.SplitContainer65.Location = New System.Drawing.Point(0, 0)
  5867. Me.SplitContainer65.Name = "SplitContainer65"
  5868. '
  5869. 'SplitContainer65.Panel1
  5870. '
  5871. Me.SplitContainer65.Panel1.Controls.Add(Me.D10_tb)
  5872. Me.SplitContainer65.Panel1.Controls.Add(Me.D10_lb)
  5873. '
  5874. 'SplitContainer65.Panel2
  5875. '
  5876. Me.SplitContainer65.Panel2.Controls.Add(Me.SplitContainer66)
  5877. Me.SplitContainer65.Size = New System.Drawing.Size(410, 40)
  5878. Me.SplitContainer65.SplitterDistance = 99
  5879. Me.SplitContainer65.SplitterWidth = 1
  5880. Me.SplitContainer65.TabIndex = 0
  5881. '
  5882. 'D10_tb
  5883. '
  5884. Me.D10_tb.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  5885. Me.D10_tb.Dock = System.Windows.Forms.DockStyle.Bottom
  5886. Me.D10_tb.Location = New System.Drawing.Point(0, 17)
  5887. Me.D10_tb.Name = "D10_tb"
  5888. Me.D10_tb.ReadOnly = True
  5889. Me.D10_tb.Size = New System.Drawing.Size(99, 23)
  5890. Me.D10_tb.TabIndex = 2
  5891. Me.D10_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  5892. '
  5893. 'D10_lb
  5894. '
  5895. Me.D10_lb.Dock = System.Windows.Forms.DockStyle.Top
  5896. Me.D10_lb.Font = New System.Drawing.Font("微軟正黑體", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  5897. Me.D10_lb.Location = New System.Drawing.Point(0, 0)
  5898. Me.D10_lb.Name = "D10_lb"
  5899. Me.D10_lb.Size = New System.Drawing.Size(99, 40)
  5900. Me.D10_lb.TabIndex = 1
  5901. Me.D10_lb.Text = "Label21"
  5902. Me.D10_lb.TextAlign = System.Drawing.ContentAlignment.TopCenter
  5903. '
  5904. 'SplitContainer66
  5905. '
  5906. Me.SplitContainer66.Dock = System.Windows.Forms.DockStyle.Fill
  5907. Me.SplitContainer66.Location = New System.Drawing.Point(0, 0)
  5908. Me.SplitContainer66.Name = "SplitContainer66"
  5909. '
  5910. 'SplitContainer66.Panel1
  5911. '
  5912. Me.SplitContainer66.Panel1.Controls.Add(Me.D11_tb)
  5913. Me.SplitContainer66.Panel1.Controls.Add(Me.D11_lb)
  5914. '
  5915. 'SplitContainer66.Panel2
  5916. '
  5917. Me.SplitContainer66.Panel2.Controls.Add(Me.SplitContainer67)
  5918. Me.SplitContainer66.Size = New System.Drawing.Size(310, 40)
  5919. Me.SplitContainer66.SplitterDistance = 88
  5920. Me.SplitContainer66.SplitterWidth = 1
  5921. Me.SplitContainer66.TabIndex = 0
  5922. '
  5923. 'D11_tb
  5924. '
  5925. Me.D11_tb.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  5926. Me.D11_tb.Dock = System.Windows.Forms.DockStyle.Bottom
  5927. Me.D11_tb.Location = New System.Drawing.Point(0, 17)
  5928. Me.D11_tb.Name = "D11_tb"
  5929. Me.D11_tb.ReadOnly = True
  5930. Me.D11_tb.Size = New System.Drawing.Size(88, 23)
  5931. Me.D11_tb.TabIndex = 3
  5932. Me.D11_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  5933. '
  5934. 'D11_lb
  5935. '
  5936. Me.D11_lb.Dock = System.Windows.Forms.DockStyle.Top
  5937. Me.D11_lb.Font = New System.Drawing.Font("微軟正黑體", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  5938. Me.D11_lb.Location = New System.Drawing.Point(0, 0)
  5939. Me.D11_lb.Name = "D11_lb"
  5940. Me.D11_lb.Size = New System.Drawing.Size(88, 40)
  5941. Me.D11_lb.TabIndex = 0
  5942. Me.D11_lb.Text = "Label17"
  5943. Me.D11_lb.TextAlign = System.Drawing.ContentAlignment.TopCenter
  5944. '
  5945. 'SplitContainer67
  5946. '
  5947. Me.SplitContainer67.Dock = System.Windows.Forms.DockStyle.Fill
  5948. Me.SplitContainer67.Location = New System.Drawing.Point(0, 0)
  5949. Me.SplitContainer67.Name = "SplitContainer67"
  5950. '
  5951. 'SplitContainer67.Panel1
  5952. '
  5953. Me.SplitContainer67.Panel1.Controls.Add(Me.D12_tb)
  5954. Me.SplitContainer67.Panel1.Controls.Add(Me.D12_lb)
  5955. '
  5956. 'SplitContainer67.Panel2
  5957. '
  5958. Me.SplitContainer67.Panel2.Controls.Add(Me.薪資加項總計_tb)
  5959. Me.SplitContainer67.Panel2.Controls.Add(Me.Label80)
  5960. Me.SplitContainer67.Size = New System.Drawing.Size(221, 40)
  5961. Me.SplitContainer67.SplitterDistance = 100
  5962. Me.SplitContainer67.SplitterWidth = 1
  5963. Me.SplitContainer67.TabIndex = 0
  5964. '
  5965. 'D12_tb
  5966. '
  5967. Me.D12_tb.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  5968. Me.D12_tb.Dock = System.Windows.Forms.DockStyle.Bottom
  5969. Me.D12_tb.Location = New System.Drawing.Point(0, 17)
  5970. Me.D12_tb.Name = "D12_tb"
  5971. Me.D12_tb.ReadOnly = True
  5972. Me.D12_tb.Size = New System.Drawing.Size(100, 23)
  5973. Me.D12_tb.TabIndex = 3
  5974. Me.D12_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  5975. '
  5976. 'D12_lb
  5977. '
  5978. Me.D12_lb.Dock = System.Windows.Forms.DockStyle.Top
  5979. Me.D12_lb.Font = New System.Drawing.Font("微軟正黑體", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  5980. Me.D12_lb.Location = New System.Drawing.Point(0, 0)
  5981. Me.D12_lb.Name = "D12_lb"
  5982. Me.D12_lb.Size = New System.Drawing.Size(100, 40)
  5983. Me.D12_lb.TabIndex = 1
  5984. Me.D12_lb.Text = "Label18"
  5985. Me.D12_lb.TextAlign = System.Drawing.ContentAlignment.TopCenter
  5986. '
  5987. '薪資加項總計_tb
  5988. '
  5989. Me.薪資加項總計_tb.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  5990. Me.薪資加項總計_tb.Dock = System.Windows.Forms.DockStyle.Bottom
  5991. Me.薪資加項總計_tb.Location = New System.Drawing.Point(0, 17)
  5992. Me.薪資加項總計_tb.Name = "薪資加項總計_tb"
  5993. Me.薪資加項總計_tb.ReadOnly = True
  5994. Me.薪資加項總計_tb.Size = New System.Drawing.Size(120, 23)
  5995. Me.薪資加項總計_tb.TabIndex = 3
  5996. Me.薪資加項總計_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  5997. '
  5998. 'Label80
  5999. '
  6000. Me.Label80.Dock = System.Windows.Forms.DockStyle.Top
  6001. Me.Label80.Font = New System.Drawing.Font("微軟正黑體", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  6002. Me.Label80.Location = New System.Drawing.Point(0, 0)
  6003. Me.Label80.Name = "Label80"
  6004. Me.Label80.Size = New System.Drawing.Size(120, 40)
  6005. Me.Label80.TabIndex = 1
  6006. Me.Label80.Text = "薪資加項總計"
  6007. Me.Label80.TextAlign = System.Drawing.ContentAlignment.TopCenter
  6008. '
  6009. '減項總計_P
  6010. '
  6011. Me.減項總計_P.Anchor = CType(((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left) _
  6012. Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  6013. Me.減項總計_P.Controls.Add(Me.SplitContainer28)
  6014. Me.減項總計_P.Location = New System.Drawing.Point(3, 543)
  6015. Me.減項總計_P.Name = "減項總計_P"
  6016. Me.減項總計_P.Size = New System.Drawing.Size(1287, 40)
  6017. Me.減項總計_P.TabIndex = 1424
  6018. '
  6019. 'SplitContainer28
  6020. '
  6021. Me.SplitContainer28.Dock = System.Windows.Forms.DockStyle.Fill
  6022. Me.SplitContainer28.Location = New System.Drawing.Point(0, 0)
  6023. Me.SplitContainer28.Name = "SplitContainer28"
  6024. '
  6025. 'SplitContainer28.Panel1
  6026. '
  6027. Me.SplitContainer28.Panel1.Controls.Add(Me.A01_tb)
  6028. Me.SplitContainer28.Panel1.Controls.Add(Me.A01_lb)
  6029. '
  6030. 'SplitContainer28.Panel2
  6031. '
  6032. Me.SplitContainer28.Panel2.Controls.Add(Me.SplitContainer29)
  6033. Me.SplitContainer28.Size = New System.Drawing.Size(1287, 40)
  6034. Me.SplitContainer28.SplitterDistance = 84
  6035. Me.SplitContainer28.SplitterWidth = 1
  6036. Me.SplitContainer28.TabIndex = 0
  6037. '
  6038. 'A01_tb
  6039. '
  6040. Me.A01_tb.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  6041. Me.A01_tb.Dock = System.Windows.Forms.DockStyle.Bottom
  6042. Me.A01_tb.Location = New System.Drawing.Point(0, 17)
  6043. Me.A01_tb.Name = "A01_tb"
  6044. Me.A01_tb.ReadOnly = True
  6045. Me.A01_tb.Size = New System.Drawing.Size(84, 23)
  6046. Me.A01_tb.TabIndex = 3
  6047. Me.A01_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  6048. '
  6049. 'A01_lb
  6050. '
  6051. Me.A01_lb.Dock = System.Windows.Forms.DockStyle.Fill
  6052. Me.A01_lb.Font = New System.Drawing.Font("微軟正黑體", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  6053. Me.A01_lb.Location = New System.Drawing.Point(0, 0)
  6054. Me.A01_lb.Name = "A01_lb"
  6055. Me.A01_lb.Size = New System.Drawing.Size(84, 40)
  6056. Me.A01_lb.TabIndex = 1
  6057. Me.A01_lb.Text = "Label30"
  6058. Me.A01_lb.TextAlign = System.Drawing.ContentAlignment.TopCenter
  6059. '
  6060. 'SplitContainer29
  6061. '
  6062. Me.SplitContainer29.Dock = System.Windows.Forms.DockStyle.Fill
  6063. Me.SplitContainer29.Location = New System.Drawing.Point(0, 0)
  6064. Me.SplitContainer29.Name = "SplitContainer29"
  6065. '
  6066. 'SplitContainer29.Panel1
  6067. '
  6068. Me.SplitContainer29.Panel1.Controls.Add(Me.SplitContainer30)
  6069. '
  6070. 'SplitContainer29.Panel2
  6071. '
  6072. Me.SplitContainer29.Panel2.Controls.Add(Me.SplitContainer31)
  6073. Me.SplitContainer29.Size = New System.Drawing.Size(1202, 40)
  6074. Me.SplitContainer29.SplitterDistance = 175
  6075. Me.SplitContainer29.SplitterWidth = 1
  6076. Me.SplitContainer29.TabIndex = 0
  6077. '
  6078. 'SplitContainer30
  6079. '
  6080. Me.SplitContainer30.Dock = System.Windows.Forms.DockStyle.Fill
  6081. Me.SplitContainer30.Location = New System.Drawing.Point(0, 0)
  6082. Me.SplitContainer30.Name = "SplitContainer30"
  6083. '
  6084. 'SplitContainer30.Panel1
  6085. '
  6086. Me.SplitContainer30.Panel1.Controls.Add(Me.A02_tb)
  6087. Me.SplitContainer30.Panel1.Controls.Add(Me.A02_lb)
  6088. '
  6089. 'SplitContainer30.Panel2
  6090. '
  6091. Me.SplitContainer30.Panel2.Controls.Add(Me.A03_tb)
  6092. Me.SplitContainer30.Panel2.Controls.Add(Me.A03_lb)
  6093. Me.SplitContainer30.Size = New System.Drawing.Size(175, 40)
  6094. Me.SplitContainer30.SplitterDistance = 85
  6095. Me.SplitContainer30.SplitterWidth = 1
  6096. Me.SplitContainer30.TabIndex = 0
  6097. '
  6098. 'A02_tb
  6099. '
  6100. Me.A02_tb.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  6101. Me.A02_tb.Dock = System.Windows.Forms.DockStyle.Bottom
  6102. Me.A02_tb.Location = New System.Drawing.Point(0, 17)
  6103. Me.A02_tb.Name = "A02_tb"
  6104. Me.A02_tb.ReadOnly = True
  6105. Me.A02_tb.Size = New System.Drawing.Size(85, 23)
  6106. Me.A02_tb.TabIndex = 3
  6107. Me.A02_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  6108. '
  6109. 'A02_lb
  6110. '
  6111. Me.A02_lb.Dock = System.Windows.Forms.DockStyle.Fill
  6112. Me.A02_lb.Font = New System.Drawing.Font("微軟正黑體", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  6113. Me.A02_lb.Location = New System.Drawing.Point(0, 0)
  6114. Me.A02_lb.Name = "A02_lb"
  6115. Me.A02_lb.Size = New System.Drawing.Size(85, 40)
  6116. Me.A02_lb.TabIndex = 1
  6117. Me.A02_lb.Text = "Label29"
  6118. Me.A02_lb.TextAlign = System.Drawing.ContentAlignment.TopCenter
  6119. '
  6120. 'A03_tb
  6121. '
  6122. Me.A03_tb.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  6123. Me.A03_tb.Dock = System.Windows.Forms.DockStyle.Bottom
  6124. Me.A03_tb.Location = New System.Drawing.Point(0, 17)
  6125. Me.A03_tb.Name = "A03_tb"
  6126. Me.A03_tb.ReadOnly = True
  6127. Me.A03_tb.Size = New System.Drawing.Size(89, 23)
  6128. Me.A03_tb.TabIndex = 3
  6129. Me.A03_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  6130. '
  6131. 'A03_lb
  6132. '
  6133. Me.A03_lb.Dock = System.Windows.Forms.DockStyle.Fill
  6134. Me.A03_lb.Font = New System.Drawing.Font("微軟正黑體", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  6135. Me.A03_lb.Location = New System.Drawing.Point(0, 0)
  6136. Me.A03_lb.Name = "A03_lb"
  6137. Me.A03_lb.Size = New System.Drawing.Size(89, 40)
  6138. Me.A03_lb.TabIndex = 1
  6139. Me.A03_lb.Text = "Label28"
  6140. Me.A03_lb.TextAlign = System.Drawing.ContentAlignment.TopCenter
  6141. '
  6142. 'SplitContainer31
  6143. '
  6144. Me.SplitContainer31.Dock = System.Windows.Forms.DockStyle.Fill
  6145. Me.SplitContainer31.Location = New System.Drawing.Point(0, 0)
  6146. Me.SplitContainer31.Name = "SplitContainer31"
  6147. '
  6148. 'SplitContainer31.Panel1
  6149. '
  6150. Me.SplitContainer31.Panel1.Controls.Add(Me.SplitContainer32)
  6151. '
  6152. 'SplitContainer31.Panel2
  6153. '
  6154. Me.SplitContainer31.Panel2.Controls.Add(Me.SplitContainer33)
  6155. Me.SplitContainer31.Size = New System.Drawing.Size(1026, 40)
  6156. Me.SplitContainer31.SplitterDistance = 170
  6157. Me.SplitContainer31.SplitterWidth = 1
  6158. Me.SplitContainer31.TabIndex = 0
  6159. '
  6160. 'SplitContainer32
  6161. '
  6162. Me.SplitContainer32.Dock = System.Windows.Forms.DockStyle.Fill
  6163. Me.SplitContainer32.Location = New System.Drawing.Point(0, 0)
  6164. Me.SplitContainer32.Name = "SplitContainer32"
  6165. '
  6166. 'SplitContainer32.Panel1
  6167. '
  6168. Me.SplitContainer32.Panel1.Controls.Add(Me.A04_tb)
  6169. Me.SplitContainer32.Panel1.Controls.Add(Me.A04_lb)
  6170. '
  6171. 'SplitContainer32.Panel2
  6172. '
  6173. Me.SplitContainer32.Panel2.Controls.Add(Me.A05_tb)
  6174. Me.SplitContainer32.Panel2.Controls.Add(Me.A05_lb)
  6175. Me.SplitContainer32.Size = New System.Drawing.Size(170, 40)
  6176. Me.SplitContainer32.SplitterDistance = 85
  6177. Me.SplitContainer32.SplitterWidth = 1
  6178. Me.SplitContainer32.TabIndex = 0
  6179. '
  6180. 'A04_tb
  6181. '
  6182. Me.A04_tb.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  6183. Me.A04_tb.Dock = System.Windows.Forms.DockStyle.Bottom
  6184. Me.A04_tb.Location = New System.Drawing.Point(0, 17)
  6185. Me.A04_tb.Name = "A04_tb"
  6186. Me.A04_tb.ReadOnly = True
  6187. Me.A04_tb.Size = New System.Drawing.Size(85, 23)
  6188. Me.A04_tb.TabIndex = 3
  6189. Me.A04_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  6190. '
  6191. 'A04_lb
  6192. '
  6193. Me.A04_lb.Dock = System.Windows.Forms.DockStyle.Fill
  6194. Me.A04_lb.Font = New System.Drawing.Font("微軟正黑體", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  6195. Me.A04_lb.Location = New System.Drawing.Point(0, 0)
  6196. Me.A04_lb.Name = "A04_lb"
  6197. Me.A04_lb.Size = New System.Drawing.Size(85, 40)
  6198. Me.A04_lb.TabIndex = 1
  6199. Me.A04_lb.Text = "Label27"
  6200. Me.A04_lb.TextAlign = System.Drawing.ContentAlignment.TopCenter
  6201. '
  6202. 'A05_tb
  6203. '
  6204. Me.A05_tb.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  6205. Me.A05_tb.Dock = System.Windows.Forms.DockStyle.Bottom
  6206. Me.A05_tb.Location = New System.Drawing.Point(0, 17)
  6207. Me.A05_tb.Name = "A05_tb"
  6208. Me.A05_tb.ReadOnly = True
  6209. Me.A05_tb.Size = New System.Drawing.Size(84, 23)
  6210. Me.A05_tb.TabIndex = 3
  6211. Me.A05_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  6212. '
  6213. 'A05_lb
  6214. '
  6215. Me.A05_lb.Dock = System.Windows.Forms.DockStyle.Fill
  6216. Me.A05_lb.Font = New System.Drawing.Font("微軟正黑體", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  6217. Me.A05_lb.Location = New System.Drawing.Point(0, 0)
  6218. Me.A05_lb.Name = "A05_lb"
  6219. Me.A05_lb.Size = New System.Drawing.Size(84, 40)
  6220. Me.A05_lb.TabIndex = 1
  6221. Me.A05_lb.Text = "Label26"
  6222. Me.A05_lb.TextAlign = System.Drawing.ContentAlignment.TopCenter
  6223. '
  6224. 'SplitContainer33
  6225. '
  6226. Me.SplitContainer33.Dock = System.Windows.Forms.DockStyle.Fill
  6227. Me.SplitContainer33.Location = New System.Drawing.Point(0, 0)
  6228. Me.SplitContainer33.Name = "SplitContainer33"
  6229. '
  6230. 'SplitContainer33.Panel1
  6231. '
  6232. Me.SplitContainer33.Panel1.Controls.Add(Me.SplitContainer34)
  6233. '
  6234. 'SplitContainer33.Panel2
  6235. '
  6236. Me.SplitContainer33.Panel2.Controls.Add(Me.SplitContainer35)
  6237. Me.SplitContainer33.Size = New System.Drawing.Size(855, 40)
  6238. Me.SplitContainer33.SplitterDistance = 174
  6239. Me.SplitContainer33.SplitterWidth = 1
  6240. Me.SplitContainer33.TabIndex = 0
  6241. '
  6242. 'SplitContainer34
  6243. '
  6244. Me.SplitContainer34.Dock = System.Windows.Forms.DockStyle.Fill
  6245. Me.SplitContainer34.Location = New System.Drawing.Point(0, 0)
  6246. Me.SplitContainer34.Name = "SplitContainer34"
  6247. '
  6248. 'SplitContainer34.Panel1
  6249. '
  6250. Me.SplitContainer34.Panel1.Controls.Add(Me.A06_tb)
  6251. Me.SplitContainer34.Panel1.Controls.Add(Me.A06_lb)
  6252. '
  6253. 'SplitContainer34.Panel2
  6254. '
  6255. Me.SplitContainer34.Panel2.Controls.Add(Me.A07_tb)
  6256. Me.SplitContainer34.Panel2.Controls.Add(Me.A07_lb)
  6257. Me.SplitContainer34.Size = New System.Drawing.Size(174, 40)
  6258. Me.SplitContainer34.SplitterDistance = 83
  6259. Me.SplitContainer34.SplitterWidth = 1
  6260. Me.SplitContainer34.TabIndex = 0
  6261. '
  6262. 'A06_tb
  6263. '
  6264. Me.A06_tb.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  6265. Me.A06_tb.Dock = System.Windows.Forms.DockStyle.Bottom
  6266. Me.A06_tb.Location = New System.Drawing.Point(0, 17)
  6267. Me.A06_tb.Name = "A06_tb"
  6268. Me.A06_tb.ReadOnly = True
  6269. Me.A06_tb.Size = New System.Drawing.Size(83, 23)
  6270. Me.A06_tb.TabIndex = 3
  6271. Me.A06_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  6272. '
  6273. 'A06_lb
  6274. '
  6275. Me.A06_lb.Dock = System.Windows.Forms.DockStyle.Fill
  6276. Me.A06_lb.Font = New System.Drawing.Font("微軟正黑體", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  6277. Me.A06_lb.Location = New System.Drawing.Point(0, 0)
  6278. Me.A06_lb.Name = "A06_lb"
  6279. Me.A06_lb.Size = New System.Drawing.Size(83, 40)
  6280. Me.A06_lb.TabIndex = 1
  6281. Me.A06_lb.Text = "Label25"
  6282. Me.A06_lb.TextAlign = System.Drawing.ContentAlignment.TopCenter
  6283. '
  6284. 'A07_tb
  6285. '
  6286. Me.A07_tb.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  6287. Me.A07_tb.Dock = System.Windows.Forms.DockStyle.Bottom
  6288. Me.A07_tb.Location = New System.Drawing.Point(0, 17)
  6289. Me.A07_tb.Name = "A07_tb"
  6290. Me.A07_tb.ReadOnly = True
  6291. Me.A07_tb.Size = New System.Drawing.Size(90, 23)
  6292. Me.A07_tb.TabIndex = 3
  6293. Me.A07_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  6294. '
  6295. 'A07_lb
  6296. '
  6297. Me.A07_lb.Dock = System.Windows.Forms.DockStyle.Fill
  6298. Me.A07_lb.Font = New System.Drawing.Font("微軟正黑體", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  6299. Me.A07_lb.Location = New System.Drawing.Point(0, 0)
  6300. Me.A07_lb.Name = "A07_lb"
  6301. Me.A07_lb.Size = New System.Drawing.Size(90, 40)
  6302. Me.A07_lb.TabIndex = 1
  6303. Me.A07_lb.Text = "Label24"
  6304. Me.A07_lb.TextAlign = System.Drawing.ContentAlignment.TopCenter
  6305. '
  6306. 'SplitContainer35
  6307. '
  6308. Me.SplitContainer35.Dock = System.Windows.Forms.DockStyle.Fill
  6309. Me.SplitContainer35.Location = New System.Drawing.Point(0, 0)
  6310. Me.SplitContainer35.Name = "SplitContainer35"
  6311. '
  6312. 'SplitContainer35.Panel1
  6313. '
  6314. Me.SplitContainer35.Panel1.Controls.Add(Me.A08_tb)
  6315. Me.SplitContainer35.Panel1.Controls.Add(Me.A08_lb)
  6316. '
  6317. 'SplitContainer35.Panel2
  6318. '
  6319. Me.SplitContainer35.Panel2.Controls.Add(Me.SplitContainer36)
  6320. Me.SplitContainer35.Size = New System.Drawing.Size(680, 40)
  6321. Me.SplitContainer35.SplitterDistance = 85
  6322. Me.SplitContainer35.SplitterWidth = 1
  6323. Me.SplitContainer35.TabIndex = 0
  6324. '
  6325. 'A08_tb
  6326. '
  6327. Me.A08_tb.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  6328. Me.A08_tb.Dock = System.Windows.Forms.DockStyle.Bottom
  6329. Me.A08_tb.Location = New System.Drawing.Point(0, 17)
  6330. Me.A08_tb.Name = "A08_tb"
  6331. Me.A08_tb.ReadOnly = True
  6332. Me.A08_tb.Size = New System.Drawing.Size(85, 23)
  6333. Me.A08_tb.TabIndex = 3
  6334. Me.A08_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  6335. '
  6336. 'A08_lb
  6337. '
  6338. Me.A08_lb.Dock = System.Windows.Forms.DockStyle.Fill
  6339. Me.A08_lb.Font = New System.Drawing.Font("微軟正黑體", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  6340. Me.A08_lb.Location = New System.Drawing.Point(0, 0)
  6341. Me.A08_lb.Name = "A08_lb"
  6342. Me.A08_lb.Size = New System.Drawing.Size(85, 40)
  6343. Me.A08_lb.TabIndex = 1
  6344. Me.A08_lb.Text = "Label23"
  6345. Me.A08_lb.TextAlign = System.Drawing.ContentAlignment.TopCenter
  6346. '
  6347. 'SplitContainer36
  6348. '
  6349. Me.SplitContainer36.Dock = System.Windows.Forms.DockStyle.Fill
  6350. Me.SplitContainer36.Location = New System.Drawing.Point(0, 0)
  6351. Me.SplitContainer36.Name = "SplitContainer36"
  6352. '
  6353. 'SplitContainer36.Panel1
  6354. '
  6355. Me.SplitContainer36.Panel1.Controls.Add(Me.A09_tb)
  6356. Me.SplitContainer36.Panel1.Controls.Add(Me.A09_lb)
  6357. '
  6358. 'SplitContainer36.Panel2
  6359. '
  6360. Me.SplitContainer36.Panel2.Controls.Add(Me.SplitContainer37)
  6361. Me.SplitContainer36.Size = New System.Drawing.Size(594, 40)
  6362. Me.SplitContainer36.SplitterDistance = 88
  6363. Me.SplitContainer36.SplitterWidth = 1
  6364. Me.SplitContainer36.TabIndex = 0
  6365. '
  6366. 'A09_tb
  6367. '
  6368. Me.A09_tb.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  6369. Me.A09_tb.Dock = System.Windows.Forms.DockStyle.Bottom
  6370. Me.A09_tb.Location = New System.Drawing.Point(0, 17)
  6371. Me.A09_tb.Name = "A09_tb"
  6372. Me.A09_tb.ReadOnly = True
  6373. Me.A09_tb.Size = New System.Drawing.Size(88, 23)
  6374. Me.A09_tb.TabIndex = 3
  6375. Me.A09_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  6376. '
  6377. 'A09_lb
  6378. '
  6379. Me.A09_lb.Dock = System.Windows.Forms.DockStyle.Fill
  6380. Me.A09_lb.Font = New System.Drawing.Font("微軟正黑體", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  6381. Me.A09_lb.Location = New System.Drawing.Point(0, 0)
  6382. Me.A09_lb.Name = "A09_lb"
  6383. Me.A09_lb.Size = New System.Drawing.Size(88, 40)
  6384. Me.A09_lb.TabIndex = 1
  6385. Me.A09_lb.Text = "Label22"
  6386. Me.A09_lb.TextAlign = System.Drawing.ContentAlignment.TopCenter
  6387. '
  6388. 'SplitContainer37
  6389. '
  6390. Me.SplitContainer37.Dock = System.Windows.Forms.DockStyle.Fill
  6391. Me.SplitContainer37.Location = New System.Drawing.Point(0, 0)
  6392. Me.SplitContainer37.Name = "SplitContainer37"
  6393. '
  6394. 'SplitContainer37.Panel1
  6395. '
  6396. Me.SplitContainer37.Panel1.Controls.Add(Me.A10_tb)
  6397. Me.SplitContainer37.Panel1.Controls.Add(Me.A10_lb)
  6398. '
  6399. 'SplitContainer37.Panel2
  6400. '
  6401. Me.SplitContainer37.Panel2.Controls.Add(Me.SplitContainer38)
  6402. Me.SplitContainer37.Size = New System.Drawing.Size(505, 40)
  6403. Me.SplitContainer37.SplitterDistance = 94
  6404. Me.SplitContainer37.SplitterWidth = 1
  6405. Me.SplitContainer37.TabIndex = 0
  6406. '
  6407. 'A10_tb
  6408. '
  6409. Me.A10_tb.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  6410. Me.A10_tb.Dock = System.Windows.Forms.DockStyle.Bottom
  6411. Me.A10_tb.Location = New System.Drawing.Point(0, 17)
  6412. Me.A10_tb.Name = "A10_tb"
  6413. Me.A10_tb.ReadOnly = True
  6414. Me.A10_tb.Size = New System.Drawing.Size(94, 23)
  6415. Me.A10_tb.TabIndex = 2
  6416. Me.A10_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  6417. '
  6418. 'A10_lb
  6419. '
  6420. Me.A10_lb.Dock = System.Windows.Forms.DockStyle.Fill
  6421. Me.A10_lb.Font = New System.Drawing.Font("微軟正黑體", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  6422. Me.A10_lb.Location = New System.Drawing.Point(0, 0)
  6423. Me.A10_lb.Name = "A10_lb"
  6424. Me.A10_lb.Size = New System.Drawing.Size(94, 40)
  6425. Me.A10_lb.TabIndex = 1
  6426. Me.A10_lb.Text = "Label21"
  6427. Me.A10_lb.TextAlign = System.Drawing.ContentAlignment.TopCenter
  6428. '
  6429. 'SplitContainer38
  6430. '
  6431. Me.SplitContainer38.Dock = System.Windows.Forms.DockStyle.Fill
  6432. Me.SplitContainer38.Location = New System.Drawing.Point(0, 0)
  6433. Me.SplitContainer38.Name = "SplitContainer38"
  6434. '
  6435. 'SplitContainer38.Panel1
  6436. '
  6437. Me.SplitContainer38.Panel1.Controls.Add(Me.A11_tb)
  6438. Me.SplitContainer38.Panel1.Controls.Add(Me.A11_lb)
  6439. '
  6440. 'SplitContainer38.Panel2
  6441. '
  6442. Me.SplitContainer38.Panel2.Controls.Add(Me.SplitContainer39)
  6443. Me.SplitContainer38.Size = New System.Drawing.Size(410, 40)
  6444. Me.SplitContainer38.SplitterDistance = 99
  6445. Me.SplitContainer38.SplitterWidth = 1
  6446. Me.SplitContainer38.TabIndex = 0
  6447. '
  6448. 'A11_tb
  6449. '
  6450. Me.A11_tb.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  6451. Me.A11_tb.Dock = System.Windows.Forms.DockStyle.Bottom
  6452. Me.A11_tb.Location = New System.Drawing.Point(0, 17)
  6453. Me.A11_tb.Name = "A11_tb"
  6454. Me.A11_tb.ReadOnly = True
  6455. Me.A11_tb.Size = New System.Drawing.Size(99, 23)
  6456. Me.A11_tb.TabIndex = 3
  6457. Me.A11_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  6458. '
  6459. 'A11_lb
  6460. '
  6461. Me.A11_lb.Dock = System.Windows.Forms.DockStyle.Fill
  6462. Me.A11_lb.Font = New System.Drawing.Font("微軟正黑體", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  6463. Me.A11_lb.Location = New System.Drawing.Point(0, 0)
  6464. Me.A11_lb.Name = "A11_lb"
  6465. Me.A11_lb.Size = New System.Drawing.Size(99, 40)
  6466. Me.A11_lb.TabIndex = 0
  6467. Me.A11_lb.Text = "Label17"
  6468. Me.A11_lb.TextAlign = System.Drawing.ContentAlignment.TopCenter
  6469. '
  6470. 'SplitContainer39
  6471. '
  6472. Me.SplitContainer39.Dock = System.Windows.Forms.DockStyle.Fill
  6473. Me.SplitContainer39.Location = New System.Drawing.Point(0, 0)
  6474. Me.SplitContainer39.Name = "SplitContainer39"
  6475. '
  6476. 'SplitContainer39.Panel1
  6477. '
  6478. Me.SplitContainer39.Panel1.Controls.Add(Me.A12_tb)
  6479. Me.SplitContainer39.Panel1.Controls.Add(Me.A12_lb)
  6480. '
  6481. 'SplitContainer39.Panel2
  6482. '
  6483. Me.SplitContainer39.Panel2.Controls.Add(Me.SplitContainer40)
  6484. Me.SplitContainer39.Size = New System.Drawing.Size(310, 40)
  6485. Me.SplitContainer39.SplitterDistance = 88
  6486. Me.SplitContainer39.SplitterWidth = 1
  6487. Me.SplitContainer39.TabIndex = 0
  6488. '
  6489. 'A12_tb
  6490. '
  6491. Me.A12_tb.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  6492. Me.A12_tb.Dock = System.Windows.Forms.DockStyle.Bottom
  6493. Me.A12_tb.Location = New System.Drawing.Point(0, 17)
  6494. Me.A12_tb.Name = "A12_tb"
  6495. Me.A12_tb.ReadOnly = True
  6496. Me.A12_tb.Size = New System.Drawing.Size(88, 23)
  6497. Me.A12_tb.TabIndex = 3
  6498. Me.A12_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  6499. '
  6500. 'A12_lb
  6501. '
  6502. Me.A12_lb.Dock = System.Windows.Forms.DockStyle.Fill
  6503. Me.A12_lb.Font = New System.Drawing.Font("微軟正黑體", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  6504. Me.A12_lb.Location = New System.Drawing.Point(0, 0)
  6505. Me.A12_lb.Name = "A12_lb"
  6506. Me.A12_lb.Size = New System.Drawing.Size(88, 40)
  6507. Me.A12_lb.TabIndex = 1
  6508. Me.A12_lb.Text = "Label18"
  6509. Me.A12_lb.TextAlign = System.Drawing.ContentAlignment.TopCenter
  6510. '
  6511. 'SplitContainer40
  6512. '
  6513. Me.SplitContainer40.Dock = System.Windows.Forms.DockStyle.Fill
  6514. Me.SplitContainer40.Location = New System.Drawing.Point(0, 0)
  6515. Me.SplitContainer40.Name = "SplitContainer40"
  6516. '
  6517. 'SplitContainer40.Panel1
  6518. '
  6519. Me.SplitContainer40.Panel1.Controls.Add(Me.減項總計_tb)
  6520. Me.SplitContainer40.Panel1.Controls.Add(Me.Label29)
  6521. '
  6522. 'SplitContainer40.Panel2
  6523. '
  6524. Me.SplitContainer40.Panel2.Controls.Add(Me.C01_1_tb)
  6525. Me.SplitContainer40.Panel2.Controls.Add(Me.C01_1_lb)
  6526. Me.SplitContainer40.Size = New System.Drawing.Size(221, 40)
  6527. Me.SplitContainer40.SplitterDistance = 100
  6528. Me.SplitContainer40.SplitterWidth = 1
  6529. Me.SplitContainer40.TabIndex = 0
  6530. '
  6531. '減項總計_tb
  6532. '
  6533. Me.減項總計_tb.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  6534. Me.減項總計_tb.Dock = System.Windows.Forms.DockStyle.Bottom
  6535. Me.減項總計_tb.Location = New System.Drawing.Point(0, 17)
  6536. Me.減項總計_tb.Name = "減項總計_tb"
  6537. Me.減項總計_tb.ReadOnly = True
  6538. Me.減項總計_tb.Size = New System.Drawing.Size(100, 23)
  6539. Me.減項總計_tb.TabIndex = 3
  6540. Me.減項總計_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  6541. '
  6542. 'Label29
  6543. '
  6544. Me.Label29.Dock = System.Windows.Forms.DockStyle.Fill
  6545. Me.Label29.Font = New System.Drawing.Font("微軟正黑體", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  6546. Me.Label29.Location = New System.Drawing.Point(0, 0)
  6547. Me.Label29.Name = "Label29"
  6548. Me.Label29.Size = New System.Drawing.Size(100, 40)
  6549. Me.Label29.TabIndex = 1
  6550. Me.Label29.Text = "減項總計"
  6551. Me.Label29.TextAlign = System.Drawing.ContentAlignment.TopCenter
  6552. '
  6553. 'C01_1_tb
  6554. '
  6555. Me.C01_1_tb.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  6556. Me.C01_1_tb.Dock = System.Windows.Forms.DockStyle.Bottom
  6557. Me.C01_1_tb.Location = New System.Drawing.Point(0, 17)
  6558. Me.C01_1_tb.Name = "C01_1_tb"
  6559. Me.C01_1_tb.ReadOnly = True
  6560. Me.C01_1_tb.Size = New System.Drawing.Size(120, 23)
  6561. Me.C01_1_tb.TabIndex = 3
  6562. Me.C01_1_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  6563. '
  6564. 'C01_1_lb
  6565. '
  6566. Me.C01_1_lb.Dock = System.Windows.Forms.DockStyle.Fill
  6567. Me.C01_1_lb.Font = New System.Drawing.Font("微軟正黑體", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  6568. Me.C01_1_lb.Location = New System.Drawing.Point(0, 0)
  6569. Me.C01_1_lb.Name = "C01_1_lb"
  6570. Me.C01_1_lb.Size = New System.Drawing.Size(120, 40)
  6571. Me.C01_1_lb.TabIndex = 1
  6572. Me.C01_1_lb.Text = "Label20"
  6573. Me.C01_1_lb.TextAlign = System.Drawing.ContentAlignment.TopCenter
  6574. '
  6575. '加項總計_P
  6576. '
  6577. Me.加項總計_P.Anchor = CType(((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left) _
  6578. Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  6579. Me.加項總計_P.Controls.Add(Me.SplitContainer15)
  6580. Me.加項總計_P.Location = New System.Drawing.Point(3, 543)
  6581. Me.加項總計_P.Name = "加項總計_P"
  6582. Me.加項總計_P.Size = New System.Drawing.Size(1287, 40)
  6583. Me.加項總計_P.TabIndex = 1420
  6584. '
  6585. 'SplitContainer15
  6586. '
  6587. Me.SplitContainer15.Dock = System.Windows.Forms.DockStyle.Fill
  6588. Me.SplitContainer15.Location = New System.Drawing.Point(0, 0)
  6589. Me.SplitContainer15.Name = "SplitContainer15"
  6590. '
  6591. 'SplitContainer15.Panel1
  6592. '
  6593. Me.SplitContainer15.Panel1.Controls.Add(Me.B01_tb)
  6594. Me.SplitContainer15.Panel1.Controls.Add(Me.B01_lb)
  6595. '
  6596. 'SplitContainer15.Panel2
  6597. '
  6598. Me.SplitContainer15.Panel2.Controls.Add(Me.SplitContainer16)
  6599. Me.SplitContainer15.Size = New System.Drawing.Size(1287, 40)
  6600. Me.SplitContainer15.SplitterDistance = 84
  6601. Me.SplitContainer15.SplitterWidth = 1
  6602. Me.SplitContainer15.TabIndex = 0
  6603. '
  6604. 'B01_tb
  6605. '
  6606. Me.B01_tb.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  6607. Me.B01_tb.Dock = System.Windows.Forms.DockStyle.Bottom
  6608. Me.B01_tb.Location = New System.Drawing.Point(0, 17)
  6609. Me.B01_tb.Name = "B01_tb"
  6610. Me.B01_tb.ReadOnly = True
  6611. Me.B01_tb.Size = New System.Drawing.Size(84, 23)
  6612. Me.B01_tb.TabIndex = 3
  6613. Me.B01_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  6614. '
  6615. 'B01_lb
  6616. '
  6617. Me.B01_lb.Dock = System.Windows.Forms.DockStyle.Fill
  6618. Me.B01_lb.Font = New System.Drawing.Font("微軟正黑體", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  6619. Me.B01_lb.Location = New System.Drawing.Point(0, 0)
  6620. Me.B01_lb.Name = "B01_lb"
  6621. Me.B01_lb.Size = New System.Drawing.Size(84, 40)
  6622. Me.B01_lb.TabIndex = 1
  6623. Me.B01_lb.Text = "Label30"
  6624. Me.B01_lb.TextAlign = System.Drawing.ContentAlignment.TopCenter
  6625. '
  6626. 'SplitContainer16
  6627. '
  6628. Me.SplitContainer16.Dock = System.Windows.Forms.DockStyle.Fill
  6629. Me.SplitContainer16.Location = New System.Drawing.Point(0, 0)
  6630. Me.SplitContainer16.Name = "SplitContainer16"
  6631. '
  6632. 'SplitContainer16.Panel1
  6633. '
  6634. Me.SplitContainer16.Panel1.Controls.Add(Me.SplitContainer19)
  6635. '
  6636. 'SplitContainer16.Panel2
  6637. '
  6638. Me.SplitContainer16.Panel2.Controls.Add(Me.SplitContainer17)
  6639. Me.SplitContainer16.Size = New System.Drawing.Size(1202, 40)
  6640. Me.SplitContainer16.SplitterDistance = 175
  6641. Me.SplitContainer16.SplitterWidth = 1
  6642. Me.SplitContainer16.TabIndex = 0
  6643. '
  6644. 'SplitContainer19
  6645. '
  6646. Me.SplitContainer19.Dock = System.Windows.Forms.DockStyle.Fill
  6647. Me.SplitContainer19.Location = New System.Drawing.Point(0, 0)
  6648. Me.SplitContainer19.Name = "SplitContainer19"
  6649. '
  6650. 'SplitContainer19.Panel1
  6651. '
  6652. Me.SplitContainer19.Panel1.Controls.Add(Me.B02_tb)
  6653. Me.SplitContainer19.Panel1.Controls.Add(Me.B02_lb)
  6654. '
  6655. 'SplitContainer19.Panel2
  6656. '
  6657. Me.SplitContainer19.Panel2.Controls.Add(Me.B03_tb)
  6658. Me.SplitContainer19.Panel2.Controls.Add(Me.B03_lb)
  6659. Me.SplitContainer19.Size = New System.Drawing.Size(175, 40)
  6660. Me.SplitContainer19.SplitterDistance = 85
  6661. Me.SplitContainer19.SplitterWidth = 1
  6662. Me.SplitContainer19.TabIndex = 0
  6663. '
  6664. 'B02_tb
  6665. '
  6666. Me.B02_tb.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  6667. Me.B02_tb.Dock = System.Windows.Forms.DockStyle.Bottom
  6668. Me.B02_tb.Location = New System.Drawing.Point(0, 17)
  6669. Me.B02_tb.Name = "B02_tb"
  6670. Me.B02_tb.ReadOnly = True
  6671. Me.B02_tb.Size = New System.Drawing.Size(85, 23)
  6672. Me.B02_tb.TabIndex = 3
  6673. Me.B02_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  6674. '
  6675. 'B02_lb
  6676. '
  6677. Me.B02_lb.Dock = System.Windows.Forms.DockStyle.Fill
  6678. Me.B02_lb.Font = New System.Drawing.Font("微軟正黑體", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  6679. Me.B02_lb.Location = New System.Drawing.Point(0, 0)
  6680. Me.B02_lb.Name = "B02_lb"
  6681. Me.B02_lb.Size = New System.Drawing.Size(85, 40)
  6682. Me.B02_lb.TabIndex = 1
  6683. Me.B02_lb.Text = "Label29"
  6684. Me.B02_lb.TextAlign = System.Drawing.ContentAlignment.TopCenter
  6685. '
  6686. 'B03_tb
  6687. '
  6688. Me.B03_tb.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  6689. Me.B03_tb.Dock = System.Windows.Forms.DockStyle.Bottom
  6690. Me.B03_tb.Location = New System.Drawing.Point(0, 17)
  6691. Me.B03_tb.Name = "B03_tb"
  6692. Me.B03_tb.ReadOnly = True
  6693. Me.B03_tb.Size = New System.Drawing.Size(89, 23)
  6694. Me.B03_tb.TabIndex = 3
  6695. Me.B03_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  6696. '
  6697. 'B03_lb
  6698. '
  6699. Me.B03_lb.Dock = System.Windows.Forms.DockStyle.Fill
  6700. Me.B03_lb.Font = New System.Drawing.Font("微軟正黑體", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  6701. Me.B03_lb.Location = New System.Drawing.Point(0, 0)
  6702. Me.B03_lb.Name = "B03_lb"
  6703. Me.B03_lb.Size = New System.Drawing.Size(89, 40)
  6704. Me.B03_lb.TabIndex = 1
  6705. Me.B03_lb.Text = "Label28"
  6706. Me.B03_lb.TextAlign = System.Drawing.ContentAlignment.TopCenter
  6707. '
  6708. 'SplitContainer17
  6709. '
  6710. Me.SplitContainer17.Dock = System.Windows.Forms.DockStyle.Fill
  6711. Me.SplitContainer17.Location = New System.Drawing.Point(0, 0)
  6712. Me.SplitContainer17.Name = "SplitContainer17"
  6713. '
  6714. 'SplitContainer17.Panel1
  6715. '
  6716. Me.SplitContainer17.Panel1.Controls.Add(Me.SplitContainer20)
  6717. '
  6718. 'SplitContainer17.Panel2
  6719. '
  6720. Me.SplitContainer17.Panel2.Controls.Add(Me.SplitContainer18)
  6721. Me.SplitContainer17.Size = New System.Drawing.Size(1026, 40)
  6722. Me.SplitContainer17.SplitterDistance = 170
  6723. Me.SplitContainer17.SplitterWidth = 1
  6724. Me.SplitContainer17.TabIndex = 0
  6725. '
  6726. 'SplitContainer20
  6727. '
  6728. Me.SplitContainer20.Dock = System.Windows.Forms.DockStyle.Fill
  6729. Me.SplitContainer20.Location = New System.Drawing.Point(0, 0)
  6730. Me.SplitContainer20.Name = "SplitContainer20"
  6731. '
  6732. 'SplitContainer20.Panel1
  6733. '
  6734. Me.SplitContainer20.Panel1.Controls.Add(Me.B04_tb)
  6735. Me.SplitContainer20.Panel1.Controls.Add(Me.B04_lb)
  6736. '
  6737. 'SplitContainer20.Panel2
  6738. '
  6739. Me.SplitContainer20.Panel2.Controls.Add(Me.B05_tb)
  6740. Me.SplitContainer20.Panel2.Controls.Add(Me.B05_lb)
  6741. Me.SplitContainer20.Size = New System.Drawing.Size(170, 40)
  6742. Me.SplitContainer20.SplitterDistance = 85
  6743. Me.SplitContainer20.SplitterWidth = 1
  6744. Me.SplitContainer20.TabIndex = 0
  6745. '
  6746. 'B04_tb
  6747. '
  6748. Me.B04_tb.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  6749. Me.B04_tb.Dock = System.Windows.Forms.DockStyle.Bottom
  6750. Me.B04_tb.Location = New System.Drawing.Point(0, 17)
  6751. Me.B04_tb.Name = "B04_tb"
  6752. Me.B04_tb.ReadOnly = True
  6753. Me.B04_tb.Size = New System.Drawing.Size(85, 23)
  6754. Me.B04_tb.TabIndex = 3
  6755. Me.B04_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  6756. '
  6757. 'B04_lb
  6758. '
  6759. Me.B04_lb.Dock = System.Windows.Forms.DockStyle.Fill
  6760. Me.B04_lb.Font = New System.Drawing.Font("微軟正黑體", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  6761. Me.B04_lb.Location = New System.Drawing.Point(0, 0)
  6762. Me.B04_lb.Name = "B04_lb"
  6763. Me.B04_lb.Size = New System.Drawing.Size(85, 40)
  6764. Me.B04_lb.TabIndex = 1
  6765. Me.B04_lb.Text = "Label27"
  6766. Me.B04_lb.TextAlign = System.Drawing.ContentAlignment.TopCenter
  6767. '
  6768. 'B05_tb
  6769. '
  6770. Me.B05_tb.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  6771. Me.B05_tb.Dock = System.Windows.Forms.DockStyle.Bottom
  6772. Me.B05_tb.Location = New System.Drawing.Point(0, 17)
  6773. Me.B05_tb.Name = "B05_tb"
  6774. Me.B05_tb.ReadOnly = True
  6775. Me.B05_tb.Size = New System.Drawing.Size(84, 23)
  6776. Me.B05_tb.TabIndex = 3
  6777. Me.B05_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  6778. '
  6779. 'B05_lb
  6780. '
  6781. Me.B05_lb.Dock = System.Windows.Forms.DockStyle.Fill
  6782. Me.B05_lb.Font = New System.Drawing.Font("微軟正黑體", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  6783. Me.B05_lb.Location = New System.Drawing.Point(0, 0)
  6784. Me.B05_lb.Name = "B05_lb"
  6785. Me.B05_lb.Size = New System.Drawing.Size(84, 40)
  6786. Me.B05_lb.TabIndex = 1
  6787. Me.B05_lb.Text = "Label26"
  6788. Me.B05_lb.TextAlign = System.Drawing.ContentAlignment.TopCenter
  6789. '
  6790. 'SplitContainer18
  6791. '
  6792. Me.SplitContainer18.Dock = System.Windows.Forms.DockStyle.Fill
  6793. Me.SplitContainer18.Location = New System.Drawing.Point(0, 0)
  6794. Me.SplitContainer18.Name = "SplitContainer18"
  6795. '
  6796. 'SplitContainer18.Panel1
  6797. '
  6798. Me.SplitContainer18.Panel1.Controls.Add(Me.SplitContainer21)
  6799. '
  6800. 'SplitContainer18.Panel2
  6801. '
  6802. Me.SplitContainer18.Panel2.Controls.Add(Me.SplitContainer22)
  6803. Me.SplitContainer18.Size = New System.Drawing.Size(855, 40)
  6804. Me.SplitContainer18.SplitterDistance = 174
  6805. Me.SplitContainer18.SplitterWidth = 1
  6806. Me.SplitContainer18.TabIndex = 0
  6807. '
  6808. 'SplitContainer21
  6809. '
  6810. Me.SplitContainer21.Dock = System.Windows.Forms.DockStyle.Fill
  6811. Me.SplitContainer21.Location = New System.Drawing.Point(0, 0)
  6812. Me.SplitContainer21.Name = "SplitContainer21"
  6813. '
  6814. 'SplitContainer21.Panel1
  6815. '
  6816. Me.SplitContainer21.Panel1.Controls.Add(Me.B06_tb)
  6817. Me.SplitContainer21.Panel1.Controls.Add(Me.B06_lb)
  6818. '
  6819. 'SplitContainer21.Panel2
  6820. '
  6821. Me.SplitContainer21.Panel2.Controls.Add(Me.B07_tb)
  6822. Me.SplitContainer21.Panel2.Controls.Add(Me.B07_lb)
  6823. Me.SplitContainer21.Size = New System.Drawing.Size(174, 40)
  6824. Me.SplitContainer21.SplitterDistance = 83
  6825. Me.SplitContainer21.SplitterWidth = 1
  6826. Me.SplitContainer21.TabIndex = 0
  6827. '
  6828. 'B06_tb
  6829. '
  6830. Me.B06_tb.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  6831. Me.B06_tb.Dock = System.Windows.Forms.DockStyle.Bottom
  6832. Me.B06_tb.Location = New System.Drawing.Point(0, 17)
  6833. Me.B06_tb.Name = "B06_tb"
  6834. Me.B06_tb.ReadOnly = True
  6835. Me.B06_tb.Size = New System.Drawing.Size(83, 23)
  6836. Me.B06_tb.TabIndex = 3
  6837. Me.B06_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  6838. '
  6839. 'B06_lb
  6840. '
  6841. Me.B06_lb.Dock = System.Windows.Forms.DockStyle.Fill
  6842. Me.B06_lb.Font = New System.Drawing.Font("微軟正黑體", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  6843. Me.B06_lb.Location = New System.Drawing.Point(0, 0)
  6844. Me.B06_lb.Name = "B06_lb"
  6845. Me.B06_lb.Size = New System.Drawing.Size(83, 40)
  6846. Me.B06_lb.TabIndex = 1
  6847. Me.B06_lb.Text = "Label25"
  6848. Me.B06_lb.TextAlign = System.Drawing.ContentAlignment.TopCenter
  6849. '
  6850. 'B07_tb
  6851. '
  6852. Me.B07_tb.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  6853. Me.B07_tb.Dock = System.Windows.Forms.DockStyle.Bottom
  6854. Me.B07_tb.Location = New System.Drawing.Point(0, 17)
  6855. Me.B07_tb.Name = "B07_tb"
  6856. Me.B07_tb.ReadOnly = True
  6857. Me.B07_tb.Size = New System.Drawing.Size(90, 23)
  6858. Me.B07_tb.TabIndex = 3
  6859. Me.B07_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  6860. '
  6861. 'B07_lb
  6862. '
  6863. Me.B07_lb.Dock = System.Windows.Forms.DockStyle.Fill
  6864. Me.B07_lb.Font = New System.Drawing.Font("微軟正黑體", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  6865. Me.B07_lb.Location = New System.Drawing.Point(0, 0)
  6866. Me.B07_lb.Name = "B07_lb"
  6867. Me.B07_lb.Size = New System.Drawing.Size(90, 40)
  6868. Me.B07_lb.TabIndex = 1
  6869. Me.B07_lb.Text = "Label24"
  6870. Me.B07_lb.TextAlign = System.Drawing.ContentAlignment.TopCenter
  6871. '
  6872. 'SplitContainer22
  6873. '
  6874. Me.SplitContainer22.Dock = System.Windows.Forms.DockStyle.Fill
  6875. Me.SplitContainer22.Location = New System.Drawing.Point(0, 0)
  6876. Me.SplitContainer22.Name = "SplitContainer22"
  6877. '
  6878. 'SplitContainer22.Panel1
  6879. '
  6880. Me.SplitContainer22.Panel1.Controls.Add(Me.B08_tb)
  6881. Me.SplitContainer22.Panel1.Controls.Add(Me.B08_lb)
  6882. '
  6883. 'SplitContainer22.Panel2
  6884. '
  6885. Me.SplitContainer22.Panel2.Controls.Add(Me.SplitContainer23)
  6886. Me.SplitContainer22.Size = New System.Drawing.Size(680, 40)
  6887. Me.SplitContainer22.SplitterDistance = 85
  6888. Me.SplitContainer22.SplitterWidth = 1
  6889. Me.SplitContainer22.TabIndex = 0
  6890. '
  6891. 'B08_tb
  6892. '
  6893. Me.B08_tb.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  6894. Me.B08_tb.Dock = System.Windows.Forms.DockStyle.Bottom
  6895. Me.B08_tb.Location = New System.Drawing.Point(0, 17)
  6896. Me.B08_tb.Name = "B08_tb"
  6897. Me.B08_tb.ReadOnly = True
  6898. Me.B08_tb.Size = New System.Drawing.Size(85, 23)
  6899. Me.B08_tb.TabIndex = 3
  6900. Me.B08_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  6901. '
  6902. 'B08_lb
  6903. '
  6904. Me.B08_lb.Dock = System.Windows.Forms.DockStyle.Fill
  6905. Me.B08_lb.Font = New System.Drawing.Font("微軟正黑體", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  6906. Me.B08_lb.Location = New System.Drawing.Point(0, 0)
  6907. Me.B08_lb.Name = "B08_lb"
  6908. Me.B08_lb.Size = New System.Drawing.Size(85, 40)
  6909. Me.B08_lb.TabIndex = 1
  6910. Me.B08_lb.Text = "Label23"
  6911. Me.B08_lb.TextAlign = System.Drawing.ContentAlignment.TopCenter
  6912. '
  6913. 'SplitContainer23
  6914. '
  6915. Me.SplitContainer23.Dock = System.Windows.Forms.DockStyle.Fill
  6916. Me.SplitContainer23.Location = New System.Drawing.Point(0, 0)
  6917. Me.SplitContainer23.Name = "SplitContainer23"
  6918. '
  6919. 'SplitContainer23.Panel1
  6920. '
  6921. Me.SplitContainer23.Panel1.Controls.Add(Me.B09_tb)
  6922. Me.SplitContainer23.Panel1.Controls.Add(Me.B09_lb)
  6923. '
  6924. 'SplitContainer23.Panel2
  6925. '
  6926. Me.SplitContainer23.Panel2.Controls.Add(Me.SplitContainer24)
  6927. Me.SplitContainer23.Size = New System.Drawing.Size(594, 40)
  6928. Me.SplitContainer23.SplitterDistance = 88
  6929. Me.SplitContainer23.SplitterWidth = 1
  6930. Me.SplitContainer23.TabIndex = 0
  6931. '
  6932. 'B09_tb
  6933. '
  6934. Me.B09_tb.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  6935. Me.B09_tb.Dock = System.Windows.Forms.DockStyle.Bottom
  6936. Me.B09_tb.Location = New System.Drawing.Point(0, 17)
  6937. Me.B09_tb.Name = "B09_tb"
  6938. Me.B09_tb.ReadOnly = True
  6939. Me.B09_tb.Size = New System.Drawing.Size(88, 23)
  6940. Me.B09_tb.TabIndex = 3
  6941. Me.B09_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  6942. '
  6943. 'B09_lb
  6944. '
  6945. Me.B09_lb.Dock = System.Windows.Forms.DockStyle.Fill
  6946. Me.B09_lb.Font = New System.Drawing.Font("微軟正黑體", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  6947. Me.B09_lb.Location = New System.Drawing.Point(0, 0)
  6948. Me.B09_lb.Name = "B09_lb"
  6949. Me.B09_lb.Size = New System.Drawing.Size(88, 40)
  6950. Me.B09_lb.TabIndex = 1
  6951. Me.B09_lb.Text = "Label22"
  6952. Me.B09_lb.TextAlign = System.Drawing.ContentAlignment.TopCenter
  6953. '
  6954. 'SplitContainer24
  6955. '
  6956. Me.SplitContainer24.Dock = System.Windows.Forms.DockStyle.Fill
  6957. Me.SplitContainer24.Location = New System.Drawing.Point(0, 0)
  6958. Me.SplitContainer24.Name = "SplitContainer24"
  6959. '
  6960. 'SplitContainer24.Panel1
  6961. '
  6962. Me.SplitContainer24.Panel1.Controls.Add(Me.B10_tb)
  6963. Me.SplitContainer24.Panel1.Controls.Add(Me.B10_lb)
  6964. '
  6965. 'SplitContainer24.Panel2
  6966. '
  6967. Me.SplitContainer24.Panel2.Controls.Add(Me.SplitContainer25)
  6968. Me.SplitContainer24.Size = New System.Drawing.Size(505, 40)
  6969. Me.SplitContainer24.SplitterDistance = 94
  6970. Me.SplitContainer24.SplitterWidth = 1
  6971. Me.SplitContainer24.TabIndex = 0
  6972. '
  6973. 'B10_tb
  6974. '
  6975. Me.B10_tb.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  6976. Me.B10_tb.Dock = System.Windows.Forms.DockStyle.Bottom
  6977. Me.B10_tb.Location = New System.Drawing.Point(0, 17)
  6978. Me.B10_tb.Name = "B10_tb"
  6979. Me.B10_tb.ReadOnly = True
  6980. Me.B10_tb.Size = New System.Drawing.Size(94, 23)
  6981. Me.B10_tb.TabIndex = 2
  6982. Me.B10_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  6983. '
  6984. 'B10_lb
  6985. '
  6986. Me.B10_lb.Dock = System.Windows.Forms.DockStyle.Fill
  6987. Me.B10_lb.Font = New System.Drawing.Font("微軟正黑體", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  6988. Me.B10_lb.Location = New System.Drawing.Point(0, 0)
  6989. Me.B10_lb.Name = "B10_lb"
  6990. Me.B10_lb.Size = New System.Drawing.Size(94, 40)
  6991. Me.B10_lb.TabIndex = 1
  6992. Me.B10_lb.Text = "Label21"
  6993. Me.B10_lb.TextAlign = System.Drawing.ContentAlignment.TopCenter
  6994. '
  6995. 'SplitContainer25
  6996. '
  6997. Me.SplitContainer25.Dock = System.Windows.Forms.DockStyle.Fill
  6998. Me.SplitContainer25.Location = New System.Drawing.Point(0, 0)
  6999. Me.SplitContainer25.Name = "SplitContainer25"
  7000. '
  7001. 'SplitContainer25.Panel1
  7002. '
  7003. Me.SplitContainer25.Panel1.Controls.Add(Me.B11_tb)
  7004. Me.SplitContainer25.Panel1.Controls.Add(Me.B11_lb)
  7005. '
  7006. 'SplitContainer25.Panel2
  7007. '
  7008. Me.SplitContainer25.Panel2.Controls.Add(Me.SplitContainer26)
  7009. Me.SplitContainer25.Size = New System.Drawing.Size(410, 40)
  7010. Me.SplitContainer25.SplitterDistance = 99
  7011. Me.SplitContainer25.SplitterWidth = 1
  7012. Me.SplitContainer25.TabIndex = 0
  7013. '
  7014. 'B11_tb
  7015. '
  7016. Me.B11_tb.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  7017. Me.B11_tb.Dock = System.Windows.Forms.DockStyle.Bottom
  7018. Me.B11_tb.Location = New System.Drawing.Point(0, 17)
  7019. Me.B11_tb.Name = "B11_tb"
  7020. Me.B11_tb.ReadOnly = True
  7021. Me.B11_tb.Size = New System.Drawing.Size(99, 23)
  7022. Me.B11_tb.TabIndex = 3
  7023. Me.B11_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  7024. '
  7025. 'B11_lb
  7026. '
  7027. Me.B11_lb.Dock = System.Windows.Forms.DockStyle.Fill
  7028. Me.B11_lb.Font = New System.Drawing.Font("微軟正黑體", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  7029. Me.B11_lb.Location = New System.Drawing.Point(0, 0)
  7030. Me.B11_lb.Name = "B11_lb"
  7031. Me.B11_lb.Size = New System.Drawing.Size(99, 40)
  7032. Me.B11_lb.TabIndex = 0
  7033. Me.B11_lb.Text = "Label17"
  7034. Me.B11_lb.TextAlign = System.Drawing.ContentAlignment.TopCenter
  7035. '
  7036. 'SplitContainer26
  7037. '
  7038. Me.SplitContainer26.Dock = System.Windows.Forms.DockStyle.Fill
  7039. Me.SplitContainer26.Location = New System.Drawing.Point(0, 0)
  7040. Me.SplitContainer26.Name = "SplitContainer26"
  7041. '
  7042. 'SplitContainer26.Panel1
  7043. '
  7044. Me.SplitContainer26.Panel1.Controls.Add(Me.B12_tb)
  7045. Me.SplitContainer26.Panel1.Controls.Add(Me.B12_lb)
  7046. '
  7047. 'SplitContainer26.Panel2
  7048. '
  7049. Me.SplitContainer26.Panel2.Controls.Add(Me.SplitContainer27)
  7050. Me.SplitContainer26.Size = New System.Drawing.Size(310, 40)
  7051. Me.SplitContainer26.SplitterDistance = 88
  7052. Me.SplitContainer26.SplitterWidth = 1
  7053. Me.SplitContainer26.TabIndex = 0
  7054. '
  7055. 'B12_tb
  7056. '
  7057. Me.B12_tb.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  7058. Me.B12_tb.Dock = System.Windows.Forms.DockStyle.Bottom
  7059. Me.B12_tb.Location = New System.Drawing.Point(0, 17)
  7060. Me.B12_tb.Name = "B12_tb"
  7061. Me.B12_tb.ReadOnly = True
  7062. Me.B12_tb.Size = New System.Drawing.Size(88, 23)
  7063. Me.B12_tb.TabIndex = 3
  7064. Me.B12_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  7065. '
  7066. 'B12_lb
  7067. '
  7068. Me.B12_lb.Dock = System.Windows.Forms.DockStyle.Fill
  7069. Me.B12_lb.Font = New System.Drawing.Font("微軟正黑體", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  7070. Me.B12_lb.Location = New System.Drawing.Point(0, 0)
  7071. Me.B12_lb.Name = "B12_lb"
  7072. Me.B12_lb.Size = New System.Drawing.Size(88, 40)
  7073. Me.B12_lb.TabIndex = 1
  7074. Me.B12_lb.Text = "Label18"
  7075. Me.B12_lb.TextAlign = System.Drawing.ContentAlignment.TopCenter
  7076. '
  7077. 'SplitContainer27
  7078. '
  7079. Me.SplitContainer27.Dock = System.Windows.Forms.DockStyle.Fill
  7080. Me.SplitContainer27.Location = New System.Drawing.Point(0, 0)
  7081. Me.SplitContainer27.Name = "SplitContainer27"
  7082. '
  7083. 'SplitContainer27.Panel1
  7084. '
  7085. Me.SplitContainer27.Panel1.Controls.Add(Me.加項總計_tb)
  7086. Me.SplitContainer27.Panel1.Controls.Add(Me.加項總計_lb)
  7087. '
  7088. 'SplitContainer27.Panel2
  7089. '
  7090. Me.SplitContainer27.Panel2.Controls.Add(Me.C01_tb)
  7091. Me.SplitContainer27.Panel2.Controls.Add(Me.C01_lb)
  7092. Me.SplitContainer27.Size = New System.Drawing.Size(221, 40)
  7093. Me.SplitContainer27.SplitterDistance = 100
  7094. Me.SplitContainer27.SplitterWidth = 1
  7095. Me.SplitContainer27.TabIndex = 0
  7096. '
  7097. '加項總計_tb
  7098. '
  7099. Me.加項總計_tb.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  7100. Me.加項總計_tb.Dock = System.Windows.Forms.DockStyle.Bottom
  7101. Me.加項總計_tb.Location = New System.Drawing.Point(0, 17)
  7102. Me.加項總計_tb.Name = "加項總計_tb"
  7103. Me.加項總計_tb.ReadOnly = True
  7104. Me.加項總計_tb.Size = New System.Drawing.Size(100, 23)
  7105. Me.加項總計_tb.TabIndex = 3
  7106. Me.加項總計_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  7107. '
  7108. '加項總計_lb
  7109. '
  7110. Me.加項總計_lb.Dock = System.Windows.Forms.DockStyle.Fill
  7111. Me.加項總計_lb.Font = New System.Drawing.Font("微軟正黑體", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  7112. Me.加項總計_lb.Location = New System.Drawing.Point(0, 0)
  7113. Me.加項總計_lb.Name = "加項總計_lb"
  7114. Me.加項總計_lb.Size = New System.Drawing.Size(100, 40)
  7115. Me.加項總計_lb.TabIndex = 1
  7116. Me.加項總計_lb.Text = "加項總計"
  7117. Me.加項總計_lb.TextAlign = System.Drawing.ContentAlignment.TopCenter
  7118. '
  7119. 'C01_tb
  7120. '
  7121. Me.C01_tb.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  7122. Me.C01_tb.Dock = System.Windows.Forms.DockStyle.Bottom
  7123. Me.C01_tb.Location = New System.Drawing.Point(0, 17)
  7124. Me.C01_tb.Name = "C01_tb"
  7125. Me.C01_tb.ReadOnly = True
  7126. Me.C01_tb.Size = New System.Drawing.Size(120, 23)
  7127. Me.C01_tb.TabIndex = 3
  7128. Me.C01_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  7129. '
  7130. 'C01_lb
  7131. '
  7132. Me.C01_lb.Dock = System.Windows.Forms.DockStyle.Fill
  7133. Me.C01_lb.Font = New System.Drawing.Font("微軟正黑體", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  7134. Me.C01_lb.Location = New System.Drawing.Point(0, 0)
  7135. Me.C01_lb.Name = "C01_lb"
  7136. Me.C01_lb.Size = New System.Drawing.Size(120, 40)
  7137. Me.C01_lb.TabIndex = 1
  7138. Me.C01_lb.Text = "Label20"
  7139. Me.C01_lb.TextAlign = System.Drawing.ContentAlignment.TopCenter
  7140. '
  7141. '其它_P
  7142. '
  7143. Me.其它_P.Anchor = CType(((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left) _
  7144. Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  7145. Me.其它_P.Controls.Add(Me.SplitContainer41)
  7146. Me.其它_P.Location = New System.Drawing.Point(3, 543)
  7147. Me.其它_P.Name = "其它_P"
  7148. Me.其它_P.Size = New System.Drawing.Size(1287, 40)
  7149. Me.其它_P.TabIndex = 1423
  7150. '
  7151. 'SplitContainer41
  7152. '
  7153. Me.SplitContainer41.Dock = System.Windows.Forms.DockStyle.Fill
  7154. Me.SplitContainer41.Location = New System.Drawing.Point(0, 0)
  7155. Me.SplitContainer41.Name = "SplitContainer41"
  7156. '
  7157. 'SplitContainer41.Panel1
  7158. '
  7159. Me.SplitContainer41.Panel1.Controls.Add(Me.BA正1_tb)
  7160. Me.SplitContainer41.Panel1.Controls.Add(Me.Label26)
  7161. '
  7162. 'SplitContainer41.Panel2
  7163. '
  7164. Me.SplitContainer41.Panel2.Controls.Add(Me.SplitContainer42)
  7165. Me.SplitContainer41.Size = New System.Drawing.Size(1287, 40)
  7166. Me.SplitContainer41.SplitterDistance = 115
  7167. Me.SplitContainer41.SplitterWidth = 1
  7168. Me.SplitContainer41.TabIndex = 0
  7169. '
  7170. 'BA正1_tb
  7171. '
  7172. Me.BA正1_tb.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  7173. Me.BA正1_tb.Dock = System.Windows.Forms.DockStyle.Bottom
  7174. Me.BA正1_tb.Location = New System.Drawing.Point(0, 17)
  7175. Me.BA正1_tb.Name = "BA正1_tb"
  7176. Me.BA正1_tb.ReadOnly = True
  7177. Me.BA正1_tb.Size = New System.Drawing.Size(115, 23)
  7178. Me.BA正1_tb.TabIndex = 2
  7179. Me.BA正1_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  7180. '
  7181. 'Label26
  7182. '
  7183. Me.Label26.Dock = System.Windows.Forms.DockStyle.Fill
  7184. Me.Label26.Font = New System.Drawing.Font("微軟正黑體", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  7185. Me.Label26.Location = New System.Drawing.Point(0, 0)
  7186. Me.Label26.Name = "Label26"
  7187. Me.Label26.Size = New System.Drawing.Size(115, 40)
  7188. Me.Label26.TabIndex = 1
  7189. Me.Label26.Text = "BA(正常班)"
  7190. Me.Label26.TextAlign = System.Drawing.ContentAlignment.TopRight
  7191. '
  7192. 'SplitContainer42
  7193. '
  7194. Me.SplitContainer42.Dock = System.Windows.Forms.DockStyle.Fill
  7195. Me.SplitContainer42.Location = New System.Drawing.Point(0, 0)
  7196. Me.SplitContainer42.Name = "SplitContainer42"
  7197. '
  7198. 'SplitContainer42.Panel1
  7199. '
  7200. Me.SplitContainer42.Panel1.Controls.Add(Me.AA1_tb)
  7201. Me.SplitContainer42.Panel1.Controls.Add(Me.Label25)
  7202. '
  7203. 'SplitContainer42.Panel2
  7204. '
  7205. Me.SplitContainer42.Panel2.Controls.Add(Me.SplitContainer43)
  7206. Me.SplitContainer42.Size = New System.Drawing.Size(1171, 40)
  7207. Me.SplitContainer42.SplitterDistance = 110
  7208. Me.SplitContainer42.SplitterWidth = 1
  7209. Me.SplitContainer42.TabIndex = 0
  7210. '
  7211. 'AA1_tb
  7212. '
  7213. Me.AA1_tb.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  7214. Me.AA1_tb.Dock = System.Windows.Forms.DockStyle.Bottom
  7215. Me.AA1_tb.Location = New System.Drawing.Point(0, 17)
  7216. Me.AA1_tb.Name = "AA1_tb"
  7217. Me.AA1_tb.ReadOnly = True
  7218. Me.AA1_tb.Size = New System.Drawing.Size(110, 23)
  7219. Me.AA1_tb.TabIndex = 2
  7220. Me.AA1_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  7221. '
  7222. 'Label25
  7223. '
  7224. Me.Label25.Dock = System.Windows.Forms.DockStyle.Fill
  7225. Me.Label25.Font = New System.Drawing.Font("微軟正黑體", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  7226. Me.Label25.Location = New System.Drawing.Point(0, 0)
  7227. Me.Label25.Name = "Label25"
  7228. Me.Label25.Size = New System.Drawing.Size(110, 40)
  7229. Me.Label25.TabIndex = 1
  7230. Me.Label25.Text = "AA(正常班)"
  7231. Me.Label25.TextAlign = System.Drawing.ContentAlignment.TopRight
  7232. '
  7233. 'SplitContainer43
  7234. '
  7235. Me.SplitContainer43.Dock = System.Windows.Forms.DockStyle.Fill
  7236. Me.SplitContainer43.Location = New System.Drawing.Point(0, 0)
  7237. Me.SplitContainer43.Name = "SplitContainer43"
  7238. '
  7239. 'SplitContainer43.Panel1
  7240. '
  7241. Me.SplitContainer43.Panel1.Controls.Add(Me.修正月1_tb)
  7242. Me.SplitContainer43.Panel1.Controls.Add(Me.Label24)
  7243. '
  7244. 'SplitContainer43.Panel2
  7245. '
  7246. Me.SplitContainer43.Panel2.Controls.Add(Me.SplitContainer44)
  7247. Me.SplitContainer43.Size = New System.Drawing.Size(1060, 40)
  7248. Me.SplitContainer43.SplitterDistance = 105
  7249. Me.SplitContainer43.SplitterWidth = 1
  7250. Me.SplitContainer43.TabIndex = 0
  7251. '
  7252. '修正月1_tb
  7253. '
  7254. Me.修正月1_tb.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  7255. Me.修正月1_tb.Dock = System.Windows.Forms.DockStyle.Bottom
  7256. Me.修正月1_tb.Location = New System.Drawing.Point(0, 17)
  7257. Me.修正月1_tb.Name = "修正月1_tb"
  7258. Me.修正月1_tb.ReadOnly = True
  7259. Me.修正月1_tb.Size = New System.Drawing.Size(105, 23)
  7260. Me.修正月1_tb.TabIndex = 2
  7261. Me.修正月1_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  7262. '
  7263. 'Label24
  7264. '
  7265. Me.Label24.Dock = System.Windows.Forms.DockStyle.Fill
  7266. Me.Label24.Font = New System.Drawing.Font("微軟正黑體", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  7267. Me.Label24.Location = New System.Drawing.Point(0, 0)
  7268. Me.Label24.Name = "Label24"
  7269. Me.Label24.Size = New System.Drawing.Size(105, 40)
  7270. Me.Label24.TabIndex = 1
  7271. Me.Label24.Text = "修正後月薪"
  7272. Me.Label24.TextAlign = System.Drawing.ContentAlignment.TopRight
  7273. '
  7274. 'SplitContainer44
  7275. '
  7276. Me.SplitContainer44.Dock = System.Windows.Forms.DockStyle.Fill
  7277. Me.SplitContainer44.Location = New System.Drawing.Point(0, 0)
  7278. Me.SplitContainer44.Name = "SplitContainer44"
  7279. '
  7280. 'SplitContainer44.Panel1
  7281. '
  7282. Me.SplitContainer44.Panel1.Controls.Add(Me.加班費1_tb)
  7283. Me.SplitContainer44.Panel1.Controls.Add(Me.Label23)
  7284. '
  7285. 'SplitContainer44.Panel2
  7286. '
  7287. Me.SplitContainer44.Panel2.Controls.Add(Me.SplitContainer45)
  7288. Me.SplitContainer44.Size = New System.Drawing.Size(954, 40)
  7289. Me.SplitContainer44.SplitterDistance = 109
  7290. Me.SplitContainer44.SplitterWidth = 1
  7291. Me.SplitContainer44.TabIndex = 0
  7292. '
  7293. '加班費1_tb
  7294. '
  7295. Me.加班費1_tb.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  7296. Me.加班費1_tb.Dock = System.Windows.Forms.DockStyle.Bottom
  7297. Me.加班費1_tb.Location = New System.Drawing.Point(0, 17)
  7298. Me.加班費1_tb.Name = "加班費1_tb"
  7299. Me.加班費1_tb.ReadOnly = True
  7300. Me.加班費1_tb.Size = New System.Drawing.Size(109, 23)
  7301. Me.加班費1_tb.TabIndex = 2
  7302. Me.加班費1_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  7303. '
  7304. 'Label23
  7305. '
  7306. Me.Label23.Dock = System.Windows.Forms.DockStyle.Fill
  7307. Me.Label23.Font = New System.Drawing.Font("微軟正黑體", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  7308. Me.Label23.Location = New System.Drawing.Point(0, 0)
  7309. Me.Label23.Name = "Label23"
  7310. Me.Label23.Size = New System.Drawing.Size(109, 40)
  7311. Me.Label23.TabIndex = 1
  7312. Me.Label23.Text = "加班費"
  7313. Me.Label23.TextAlign = System.Drawing.ContentAlignment.TopRight
  7314. '
  7315. 'SplitContainer45
  7316. '
  7317. Me.SplitContainer45.Dock = System.Windows.Forms.DockStyle.Fill
  7318. Me.SplitContainer45.Location = New System.Drawing.Point(0, 0)
  7319. Me.SplitContainer45.Name = "SplitContainer45"
  7320. '
  7321. 'SplitContainer45.Panel1
  7322. '
  7323. Me.SplitContainer45.Panel1.Controls.Add(Me.總薪資1_tb)
  7324. Me.SplitContainer45.Panel1.Controls.Add(Me.Label22)
  7325. '
  7326. 'SplitContainer45.Panel2
  7327. '
  7328. Me.SplitContainer45.Panel2.Controls.Add(Me.SplitContainer46)
  7329. Me.SplitContainer45.Size = New System.Drawing.Size(844, 40)
  7330. Me.SplitContainer45.SplitterDistance = 118
  7331. Me.SplitContainer45.SplitterWidth = 1
  7332. Me.SplitContainer45.TabIndex = 0
  7333. '
  7334. '總薪資1_tb
  7335. '
  7336. Me.總薪資1_tb.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  7337. Me.總薪資1_tb.Dock = System.Windows.Forms.DockStyle.Bottom
  7338. Me.總薪資1_tb.Location = New System.Drawing.Point(0, 17)
  7339. Me.總薪資1_tb.Name = "總薪資1_tb"
  7340. Me.總薪資1_tb.ReadOnly = True
  7341. Me.總薪資1_tb.Size = New System.Drawing.Size(118, 23)
  7342. Me.總薪資1_tb.TabIndex = 2
  7343. Me.總薪資1_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  7344. '
  7345. 'Label22
  7346. '
  7347. Me.Label22.Dock = System.Windows.Forms.DockStyle.Fill
  7348. Me.Label22.Font = New System.Drawing.Font("微軟正黑體", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  7349. Me.Label22.Location = New System.Drawing.Point(0, 0)
  7350. Me.Label22.Name = "Label22"
  7351. Me.Label22.Size = New System.Drawing.Size(118, 40)
  7352. Me.Label22.TabIndex = 1
  7353. Me.Label22.Text = "總薪資"
  7354. Me.Label22.TextAlign = System.Drawing.ContentAlignment.TopRight
  7355. '
  7356. 'SplitContainer46
  7357. '
  7358. Me.SplitContainer46.Dock = System.Windows.Forms.DockStyle.Fill
  7359. Me.SplitContainer46.Location = New System.Drawing.Point(0, 0)
  7360. Me.SplitContainer46.Name = "SplitContainer46"
  7361. '
  7362. 'SplitContainer46.Panel1
  7363. '
  7364. Me.SplitContainer46.Panel1.Controls.Add(Me.總時數_tb)
  7365. Me.SplitContainer46.Panel1.Controls.Add(Me.Label21)
  7366. '
  7367. 'SplitContainer46.Panel2
  7368. '
  7369. Me.SplitContainer46.Panel2.Controls.Add(Me.SplitContainer47)
  7370. Me.SplitContainer46.Size = New System.Drawing.Size(725, 40)
  7371. Me.SplitContainer46.SplitterDistance = 123
  7372. Me.SplitContainer46.SplitterWidth = 1
  7373. Me.SplitContainer46.TabIndex = 0
  7374. '
  7375. '總時數_tb
  7376. '
  7377. Me.總時數_tb.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  7378. Me.總時數_tb.Dock = System.Windows.Forms.DockStyle.Bottom
  7379. Me.總時數_tb.Location = New System.Drawing.Point(0, 17)
  7380. Me.總時數_tb.Name = "總時數_tb"
  7381. Me.總時數_tb.ReadOnly = True
  7382. Me.總時數_tb.Size = New System.Drawing.Size(123, 23)
  7383. Me.總時數_tb.TabIndex = 2
  7384. Me.總時數_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  7385. '
  7386. 'Label21
  7387. '
  7388. Me.Label21.Dock = System.Windows.Forms.DockStyle.Fill
  7389. Me.Label21.Font = New System.Drawing.Font("微軟正黑體", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  7390. Me.Label21.Location = New System.Drawing.Point(0, 0)
  7391. Me.Label21.Name = "Label21"
  7392. Me.Label21.Size = New System.Drawing.Size(123, 40)
  7393. Me.Label21.TabIndex = 1
  7394. Me.Label21.Text = "總時數"
  7395. Me.Label21.TextAlign = System.Drawing.ContentAlignment.TopRight
  7396. '
  7397. 'SplitContainer47
  7398. '
  7399. Me.SplitContainer47.Dock = System.Windows.Forms.DockStyle.Fill
  7400. Me.SplitContainer47.Location = New System.Drawing.Point(0, 0)
  7401. Me.SplitContainer47.Name = "SplitContainer47"
  7402. '
  7403. 'SplitContainer47.Panel1
  7404. '
  7405. Me.SplitContainer47.Panel1.Controls.Add(Me.平均時薪_tb)
  7406. Me.SplitContainer47.Panel1.Controls.Add(Me.Label20)
  7407. '
  7408. 'SplitContainer47.Panel2
  7409. '
  7410. Me.SplitContainer47.Panel2.Controls.Add(Me.SplitContainer48)
  7411. Me.SplitContainer47.Size = New System.Drawing.Size(601, 40)
  7412. Me.SplitContainer47.SplitterDistance = 116
  7413. Me.SplitContainer47.SplitterWidth = 1
  7414. Me.SplitContainer47.TabIndex = 0
  7415. '
  7416. '平均時薪_tb
  7417. '
  7418. Me.平均時薪_tb.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  7419. Me.平均時薪_tb.Dock = System.Windows.Forms.DockStyle.Bottom
  7420. Me.平均時薪_tb.Location = New System.Drawing.Point(0, 17)
  7421. Me.平均時薪_tb.Name = "平均時薪_tb"
  7422. Me.平均時薪_tb.ReadOnly = True
  7423. Me.平均時薪_tb.Size = New System.Drawing.Size(116, 23)
  7424. Me.平均時薪_tb.TabIndex = 2
  7425. Me.平均時薪_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  7426. '
  7427. 'Label20
  7428. '
  7429. Me.Label20.Dock = System.Windows.Forms.DockStyle.Fill
  7430. Me.Label20.Font = New System.Drawing.Font("微軟正黑體", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  7431. Me.Label20.Location = New System.Drawing.Point(0, 0)
  7432. Me.Label20.Name = "Label20"
  7433. Me.Label20.Size = New System.Drawing.Size(116, 40)
  7434. Me.Label20.TabIndex = 1
  7435. Me.Label20.Text = "平均時薪"
  7436. Me.Label20.TextAlign = System.Drawing.ContentAlignment.TopRight
  7437. '
  7438. 'SplitContainer48
  7439. '
  7440. Me.SplitContainer48.Dock = System.Windows.Forms.DockStyle.Fill
  7441. Me.SplitContainer48.Location = New System.Drawing.Point(0, 0)
  7442. Me.SplitContainer48.Name = "SplitContainer48"
  7443. '
  7444. 'SplitContainer48.Panel1
  7445. '
  7446. Me.SplitContainer48.Panel1.Controls.Add(Me.BAAA加_tb)
  7447. Me.SplitContainer48.Panel1.Controls.Add(Me.Label19)
  7448. '
  7449. 'SplitContainer48.Panel2
  7450. '
  7451. Me.SplitContainer48.Panel2.Controls.Add(Me.SplitContainer49)
  7452. Me.SplitContainer48.Size = New System.Drawing.Size(484, 40)
  7453. Me.SplitContainer48.SplitterDistance = 130
  7454. Me.SplitContainer48.SplitterWidth = 1
  7455. Me.SplitContainer48.TabIndex = 0
  7456. '
  7457. 'BAAA加_tb
  7458. '
  7459. Me.BAAA加_tb.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  7460. Me.BAAA加_tb.Dock = System.Windows.Forms.DockStyle.Bottom
  7461. Me.BAAA加_tb.Location = New System.Drawing.Point(0, 17)
  7462. Me.BAAA加_tb.Name = "BAAA加_tb"
  7463. Me.BAAA加_tb.ReadOnly = True
  7464. Me.BAAA加_tb.Size = New System.Drawing.Size(130, 23)
  7465. Me.BAAA加_tb.TabIndex = 2
  7466. Me.BAAA加_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  7467. '
  7468. 'Label19
  7469. '
  7470. Me.Label19.Dock = System.Windows.Forms.DockStyle.Fill
  7471. Me.Label19.Font = New System.Drawing.Font("微軟正黑體", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  7472. Me.Label19.Location = New System.Drawing.Point(0, 0)
  7473. Me.Label19.Name = "Label19"
  7474. Me.Label19.Size = New System.Drawing.Size(130, 40)
  7475. Me.Label19.TabIndex = 1
  7476. Me.Label19.Text = "BA+AA+GA 總額"
  7477. Me.Label19.TextAlign = System.Drawing.ContentAlignment.TopRight
  7478. '
  7479. 'SplitContainer49
  7480. '
  7481. Me.SplitContainer49.Dock = System.Windows.Forms.DockStyle.Fill
  7482. Me.SplitContainer49.Location = New System.Drawing.Point(0, 0)
  7483. Me.SplitContainer49.Name = "SplitContainer49"
  7484. '
  7485. 'SplitContainer49.Panel1
  7486. '
  7487. Me.SplitContainer49.Panel1.Controls.Add(Me.餘額_tb)
  7488. Me.SplitContainer49.Panel1.Controls.Add(Me.Label18)
  7489. '
  7490. 'SplitContainer49.Panel2
  7491. '
  7492. Me.SplitContainer49.Panel2.Controls.Add(Me.SplitContainer81)
  7493. Me.SplitContainer49.Size = New System.Drawing.Size(353, 40)
  7494. Me.SplitContainer49.SplitterDistance = 126
  7495. Me.SplitContainer49.SplitterWidth = 1
  7496. Me.SplitContainer49.TabIndex = 0
  7497. '
  7498. '餘額_tb
  7499. '
  7500. Me.餘額_tb.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  7501. Me.餘額_tb.Dock = System.Windows.Forms.DockStyle.Bottom
  7502. Me.餘額_tb.Location = New System.Drawing.Point(0, 17)
  7503. Me.餘額_tb.Name = "餘額_tb"
  7504. Me.餘額_tb.ReadOnly = True
  7505. Me.餘額_tb.Size = New System.Drawing.Size(126, 23)
  7506. Me.餘額_tb.TabIndex = 2
  7507. Me.餘額_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  7508. '
  7509. 'Label18
  7510. '
  7511. Me.Label18.Dock = System.Windows.Forms.DockStyle.Fill
  7512. Me.Label18.Font = New System.Drawing.Font("微軟正黑體", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  7513. Me.Label18.Location = New System.Drawing.Point(0, 0)
  7514. Me.Label18.Name = "Label18"
  7515. Me.Label18.Size = New System.Drawing.Size(126, 40)
  7516. Me.Label18.TabIndex = 1
  7517. Me.Label18.Text = "餘額"
  7518. Me.Label18.TextAlign = System.Drawing.ContentAlignment.TopRight
  7519. '
  7520. 'SplitContainer81
  7521. '
  7522. Me.SplitContainer81.Dock = System.Windows.Forms.DockStyle.Fill
  7523. Me.SplitContainer81.Location = New System.Drawing.Point(0, 0)
  7524. Me.SplitContainer81.Name = "SplitContainer81"
  7525. '
  7526. 'SplitContainer81.Panel1
  7527. '
  7528. Me.SplitContainer81.Panel1.Controls.Add(Me.餘額比_tb)
  7529. Me.SplitContainer81.Panel1.Controls.Add(Me.Label17)
  7530. '
  7531. 'SplitContainer81.Panel2
  7532. '
  7533. Me.SplitContainer81.Panel2.Controls.Add(Me.實際薪資_tb)
  7534. Me.SplitContainer81.Panel2.Controls.Add(Me.Label50)
  7535. Me.SplitContainer81.Size = New System.Drawing.Size(226, 40)
  7536. Me.SplitContainer81.SplitterDistance = 112
  7537. Me.SplitContainer81.TabIndex = 2
  7538. '
  7539. '餘額比_tb
  7540. '
  7541. Me.餘額比_tb.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  7542. Me.餘額比_tb.Dock = System.Windows.Forms.DockStyle.Bottom
  7543. Me.餘額比_tb.Location = New System.Drawing.Point(0, 17)
  7544. Me.餘額比_tb.Name = "餘額比_tb"
  7545. Me.餘額比_tb.ReadOnly = True
  7546. Me.餘額比_tb.Size = New System.Drawing.Size(112, 23)
  7547. Me.餘額比_tb.TabIndex = 1
  7548. Me.餘額比_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  7549. '
  7550. 'Label17
  7551. '
  7552. Me.Label17.Dock = System.Windows.Forms.DockStyle.Fill
  7553. Me.Label17.Font = New System.Drawing.Font("微軟正黑體", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  7554. Me.Label17.Location = New System.Drawing.Point(0, 0)
  7555. Me.Label17.Name = "Label17"
  7556. Me.Label17.Size = New System.Drawing.Size(112, 40)
  7557. Me.Label17.TabIndex = 0
  7558. Me.Label17.Text = "餘額比"
  7559. Me.Label17.TextAlign = System.Drawing.ContentAlignment.TopRight
  7560. '
  7561. '實際薪資_tb
  7562. '
  7563. Me.實際薪資_tb.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  7564. Me.實際薪資_tb.Dock = System.Windows.Forms.DockStyle.Bottom
  7565. Me.實際薪資_tb.Location = New System.Drawing.Point(0, 17)
  7566. Me.實際薪資_tb.Name = "實際薪資_tb"
  7567. Me.實際薪資_tb.ReadOnly = True
  7568. Me.實際薪資_tb.Size = New System.Drawing.Size(110, 23)
  7569. Me.實際薪資_tb.TabIndex = 3
  7570. Me.實際薪資_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  7571. '
  7572. 'Label50
  7573. '
  7574. Me.Label50.Dock = System.Windows.Forms.DockStyle.Fill
  7575. Me.Label50.Font = New System.Drawing.Font("微軟正黑體", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  7576. Me.Label50.Location = New System.Drawing.Point(0, 0)
  7577. Me.Label50.Name = "Label50"
  7578. Me.Label50.Size = New System.Drawing.Size(110, 40)
  7579. Me.Label50.TabIndex = 2
  7580. Me.Label50.Text = "實際薪資"
  7581. Me.Label50.TextAlign = System.Drawing.ContentAlignment.TopRight
  7582. '
  7583. 'TabPage2
  7584. '
  7585. Me.TabPage2.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D
  7586. Me.TabPage2.Location = New System.Drawing.Point(4, 28)
  7587. Me.TabPage2.Name = "TabPage2"
  7588. Me.TabPage2.Padding = New System.Windows.Forms.Padding(3)
  7589. Me.TabPage2.Size = New System.Drawing.Size(1293, 619)
  7590. Me.TabPage2.TabIndex = 1
  7591. Me.TabPage2.Text = "其他"
  7592. Me.TabPage2.UseVisualStyleBackColor = True
  7593. '
  7594. '分流計算
  7595. '
  7596. Me.分流計算.Interval = 500
  7597. '
  7598. 'PrintDocument1
  7599. '
  7600. '
  7601. 'ToolTip1
  7602. '
  7603. Me.ToolTip1.AutoPopDelay = 5000
  7604. Me.ToolTip1.InitialDelay = 500
  7605. Me.ToolTip1.IsBalloon = True
  7606. Me.ToolTip1.ReshowDelay = 100
  7607. Me.ToolTip1.ToolTipTitle = "系統說明"
  7608. '
  7609. '重讀2_bt
  7610. '
  7611. Me.重讀2_bt.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  7612. Me.重讀2_bt.BackgroundImage = Global.ICS_ASMS_ERP_SYS.My.Resources.Resources.renew
  7613. Me.重讀2_bt.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom
  7614. Me.重讀2_bt.Location = New System.Drawing.Point(471, 1)
  7615. Me.重讀2_bt.Name = "重讀2_bt"
  7616. Me.重讀2_bt.Size = New System.Drawing.Size(30, 26)
  7617. Me.重讀2_bt.TabIndex = 1413
  7618. Me.重讀2_bt.UseVisualStyleBackColor = True
  7619. '
  7620. '查詢_bt
  7621. '
  7622. Me.查詢_bt.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  7623. Me.查詢_bt.BackgroundImage = Global.ICS_ASMS_ERP_SYS.My.Resources.Resources.system
  7624. Me.查詢_bt.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom
  7625. Me.查詢_bt.Location = New System.Drawing.Point(441, 1)
  7626. Me.查詢_bt.Name = "查詢_bt"
  7627. Me.查詢_bt.Size = New System.Drawing.Size(30, 26)
  7628. Me.查詢_bt.TabIndex = 1414
  7629. Me.查詢_bt.UseVisualStyleBackColor = True
  7630. '
  7631. 'Panel13
  7632. '
  7633. Me.Panel13.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  7634. Me.Panel13.Controls.Add(Me.重讀2_bt)
  7635. Me.Panel13.Controls.Add(Me.查詢_bt)
  7636. Me.Panel13.Location = New System.Drawing.Point(795, 0)
  7637. Me.Panel13.Name = "Panel13"
  7638. Me.Panel13.Size = New System.Drawing.Size(506, 27)
  7639. Me.Panel13.TabIndex = 1416
  7640. '
  7641. '拆帳制薪資試算表
  7642. '
  7643. Me.AutoScaleDimensions = New System.Drawing.SizeF(7.0!, 16.0!)
  7644. Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font
  7645. Me.ClientSize = New System.Drawing.Size(1301, 651)
  7646. Me.Controls.Add(Me.Panel13)
  7647. Me.Controls.Add(Me.TabControl1)
  7648. Me.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  7649. Me.Margin = New System.Windows.Forms.Padding(4)
  7650. Me.Name = "拆帳制薪資試算表"
  7651. Me.Text = "拆帳制薪資試算表"
  7652. Me.TabControl1.ResumeLayout(False)
  7653. Me.TabPage1.ResumeLayout(False)
  7654. Me.TabPage1.PerformLayout
  7655. Me.Panel4.ResumeLayout(False)
  7656. Me.Panel11.ResumeLayout(False)
  7657. Me.Panel11.PerformLayout
  7658. Me.Panel10.ResumeLayout(False)
  7659. Me.Panel9.ResumeLayout(False)
  7660. Me.Panel8.ResumeLayout(False)
  7661. Me.Panel7.ResumeLayout(False)
  7662. Me.Panel6.ResumeLayout(False)
  7663. Me.Panel5.ResumeLayout(False)
  7664. Me.Panel14.ResumeLayout(False)
  7665. Me.Panel14.PerformLayout
  7666. Me.Panel2.ResumeLayout(False)
  7667. Me.Panel2.PerformLayout
  7668. CType(Me.差異_dgv, System.ComponentModel.ISupportInitialize).EndInit
  7669. CType(Me.碼別_dgv, System.ComponentModel.ISupportInitialize).EndInit
  7670. CType(Me.表頭_dgv, System.ComponentModel.ISupportInitialize).EndInit
  7671. CType(Me.BA比_dgv, System.ComponentModel.ISupportInitialize).EndInit
  7672. CType(Me.階級津貼_dgv, System.ComponentModel.ISupportInitialize).EndInit
  7673. Me.Panel1.ResumeLayout(False)
  7674. CType(Me.AA剃除_dgv, System.ComponentModel.ISupportInitialize).EndInit
  7675. CType(Me.轉場加班_dgv, System.ComponentModel.ISupportInitialize).EndInit
  7676. CType(Me.BA比1_dgv, System.ComponentModel.ISupportInitialize).EndInit
  7677. CType(Me.服務資料_dgv, System.ComponentModel.ISupportInitialize).EndInit
  7678. CType(Me.加班計算_dgv, System.ComponentModel.ISupportInitialize).EndInit
  7679. Me.Panel3.ResumeLayout(False)
  7680. CType(Me.Dgv1, System.ComponentModel.ISupportInitialize).EndInit
  7681. CType(Me.Dgv, System.ComponentModel.ISupportInitialize).EndInit
  7682. Me.Panel12.ResumeLayout(False)
  7683. Me.Panel12.PerformLayout
  7684. Me.主表_P.ResumeLayout(False)
  7685. Me.SplitContainer1.Panel2.ResumeLayout(False)
  7686. CType(Me.SplitContainer1, System.ComponentModel.ISupportInitialize).EndInit
  7687. Me.SplitContainer1.ResumeLayout(False)
  7688. Me.SplitContainer2.Panel1.ResumeLayout(False)
  7689. Me.SplitContainer2.Panel1.PerformLayout
  7690. Me.SplitContainer2.Panel2.ResumeLayout(False)
  7691. CType(Me.SplitContainer2, System.ComponentModel.ISupportInitialize).EndInit
  7692. Me.SplitContainer2.ResumeLayout(False)
  7693. Me.SplitContainer3.Panel1.ResumeLayout(False)
  7694. Me.SplitContainer3.Panel1.PerformLayout
  7695. Me.SplitContainer3.Panel2.ResumeLayout(False)
  7696. CType(Me.SplitContainer3, System.ComponentModel.ISupportInitialize).EndInit
  7697. Me.SplitContainer3.ResumeLayout(False)
  7698. Me.SplitContainer4.Panel1.ResumeLayout(False)
  7699. Me.SplitContainer4.Panel1.PerformLayout
  7700. Me.SplitContainer4.Panel2.ResumeLayout(False)
  7701. CType(Me.SplitContainer4, System.ComponentModel.ISupportInitialize).EndInit
  7702. Me.SplitContainer4.ResumeLayout(False)
  7703. Me.SplitContainer5.Panel1.ResumeLayout(False)
  7704. Me.SplitContainer5.Panel1.PerformLayout
  7705. Me.SplitContainer5.Panel2.ResumeLayout(False)
  7706. CType(Me.SplitContainer5, System.ComponentModel.ISupportInitialize).EndInit
  7707. Me.SplitContainer5.ResumeLayout(False)
  7708. Me.SplitContainer6.Panel1.ResumeLayout(False)
  7709. Me.SplitContainer6.Panel1.PerformLayout
  7710. Me.SplitContainer6.Panel2.ResumeLayout(False)
  7711. CType(Me.SplitContainer6, System.ComponentModel.ISupportInitialize).EndInit
  7712. Me.SplitContainer6.ResumeLayout(False)
  7713. Me.SplitContainer7.Panel1.ResumeLayout(False)
  7714. Me.SplitContainer7.Panel1.PerformLayout
  7715. Me.SplitContainer7.Panel2.ResumeLayout(False)
  7716. CType(Me.SplitContainer7, System.ComponentModel.ISupportInitialize).EndInit
  7717. Me.SplitContainer7.ResumeLayout(False)
  7718. Me.SplitContainer8.Panel1.ResumeLayout(False)
  7719. Me.SplitContainer8.Panel1.PerformLayout
  7720. Me.SplitContainer8.Panel2.ResumeLayout(False)
  7721. CType(Me.SplitContainer8, System.ComponentModel.ISupportInitialize).EndInit
  7722. Me.SplitContainer8.ResumeLayout(False)
  7723. Me.SplitContainer82.Panel1.ResumeLayout(False)
  7724. Me.SplitContainer82.Panel1.PerformLayout
  7725. Me.SplitContainer82.Panel2.ResumeLayout(False)
  7726. Me.SplitContainer82.Panel2.PerformLayout
  7727. CType(Me.SplitContainer82, System.ComponentModel.ISupportInitialize).EndInit
  7728. Me.SplitContainer82.ResumeLayout(False)
  7729. Me.時數表_P.ResumeLayout(False)
  7730. Me.SplitContainer50.Panel2.ResumeLayout(False)
  7731. CType(Me.SplitContainer50, System.ComponentModel.ISupportInitialize).EndInit
  7732. Me.SplitContainer50.ResumeLayout(False)
  7733. Me.SplitContainer51.Panel1.ResumeLayout(False)
  7734. Me.SplitContainer51.Panel1.PerformLayout
  7735. Me.SplitContainer51.Panel2.ResumeLayout(False)
  7736. CType(Me.SplitContainer51, System.ComponentModel.ISupportInitialize).EndInit
  7737. Me.SplitContainer51.ResumeLayout(False)
  7738. Me.SplitContainer52.Panel1.ResumeLayout(False)
  7739. Me.SplitContainer52.Panel1.PerformLayout
  7740. Me.SplitContainer52.Panel2.ResumeLayout(False)
  7741. CType(Me.SplitContainer52, System.ComponentModel.ISupportInitialize).EndInit
  7742. Me.SplitContainer52.ResumeLayout(False)
  7743. Me.SplitContainer53.Panel1.ResumeLayout(False)
  7744. Me.SplitContainer53.Panel1.PerformLayout
  7745. Me.SplitContainer53.Panel2.ResumeLayout(False)
  7746. CType(Me.SplitContainer53, System.ComponentModel.ISupportInitialize).EndInit
  7747. Me.SplitContainer53.ResumeLayout(False)
  7748. Me.SplitContainer54.Panel1.ResumeLayout(False)
  7749. Me.SplitContainer54.Panel1.PerformLayout
  7750. Me.SplitContainer54.Panel2.ResumeLayout(False)
  7751. CType(Me.SplitContainer54, System.ComponentModel.ISupportInitialize).EndInit
  7752. Me.SplitContainer54.ResumeLayout(False)
  7753. Me.SplitContainer55.Panel1.ResumeLayout(False)
  7754. Me.SplitContainer55.Panel1.PerformLayout
  7755. Me.SplitContainer55.Panel2.ResumeLayout(False)
  7756. CType(Me.SplitContainer55, System.ComponentModel.ISupportInitialize).EndInit
  7757. Me.SplitContainer55.ResumeLayout(False)
  7758. Me.SplitContainer56.Panel1.ResumeLayout(False)
  7759. Me.SplitContainer56.Panel1.PerformLayout
  7760. Me.SplitContainer56.Panel2.ResumeLayout(False)
  7761. CType(Me.SplitContainer56, System.ComponentModel.ISupportInitialize).EndInit
  7762. Me.SplitContainer56.ResumeLayout(False)
  7763. Me.SplitContainer57.Panel1.ResumeLayout(False)
  7764. Me.SplitContainer57.Panel1.PerformLayout
  7765. Me.SplitContainer57.Panel2.ResumeLayout(False)
  7766. CType(Me.SplitContainer57, System.ComponentModel.ISupportInitialize).EndInit
  7767. Me.SplitContainer57.ResumeLayout(False)
  7768. Me.SplitContainer58.Panel1.ResumeLayout(False)
  7769. Me.SplitContainer58.Panel1.PerformLayout
  7770. Me.SplitContainer58.Panel2.ResumeLayout(False)
  7771. CType(Me.SplitContainer58, System.ComponentModel.ISupportInitialize).EndInit
  7772. Me.SplitContainer58.ResumeLayout(False)
  7773. Me.SplitContainer59.Panel1.ResumeLayout(False)
  7774. Me.SplitContainer59.Panel1.PerformLayout
  7775. Me.SplitContainer59.Panel2.ResumeLayout(False)
  7776. CType(Me.SplitContainer59, System.ComponentModel.ISupportInitialize).EndInit
  7777. Me.SplitContainer59.ResumeLayout(False)
  7778. CType(Me.SplitContainer60, System.ComponentModel.ISupportInitialize).EndInit
  7779. Me.SplitContainer60.ResumeLayout(False)
  7780. Me.公司負擔_P.ResumeLayout(False)
  7781. Me.SplitContainer68.Panel2.ResumeLayout(False)
  7782. CType(Me.SplitContainer68, System.ComponentModel.ISupportInitialize).EndInit
  7783. Me.SplitContainer68.ResumeLayout(False)
  7784. Me.SplitContainer69.Panel1.ResumeLayout(False)
  7785. Me.SplitContainer69.Panel2.ResumeLayout(False)
  7786. CType(Me.SplitContainer69, System.ComponentModel.ISupportInitialize).EndInit
  7787. Me.SplitContainer69.ResumeLayout(False)
  7788. Me.SplitContainer70.Panel1.ResumeLayout(False)
  7789. Me.SplitContainer70.Panel1.PerformLayout
  7790. Me.SplitContainer70.Panel2.ResumeLayout(False)
  7791. Me.SplitContainer70.Panel2.PerformLayout
  7792. CType(Me.SplitContainer70, System.ComponentModel.ISupportInitialize).EndInit
  7793. Me.SplitContainer70.ResumeLayout(False)
  7794. Me.SplitContainer71.Panel1.ResumeLayout(False)
  7795. Me.SplitContainer71.Panel2.ResumeLayout(False)
  7796. CType(Me.SplitContainer71, System.ComponentModel.ISupportInitialize).EndInit
  7797. Me.SplitContainer71.ResumeLayout(False)
  7798. Me.SplitContainer72.Panel1.ResumeLayout(False)
  7799. Me.SplitContainer72.Panel1.PerformLayout
  7800. Me.SplitContainer72.Panel2.ResumeLayout(False)
  7801. Me.SplitContainer72.Panel2.PerformLayout
  7802. CType(Me.SplitContainer72, System.ComponentModel.ISupportInitialize).EndInit
  7803. Me.SplitContainer72.ResumeLayout(False)
  7804. Me.SplitContainer73.Panel1.ResumeLayout(False)
  7805. Me.SplitContainer73.Panel2.ResumeLayout(False)
  7806. CType(Me.SplitContainer73, System.ComponentModel.ISupportInitialize).EndInit
  7807. Me.SplitContainer73.ResumeLayout(False)
  7808. Me.SplitContainer74.Panel1.ResumeLayout(False)
  7809. Me.SplitContainer74.Panel1.PerformLayout
  7810. Me.SplitContainer74.Panel2.ResumeLayout(False)
  7811. Me.SplitContainer74.Panel2.PerformLayout
  7812. CType(Me.SplitContainer74, System.ComponentModel.ISupportInitialize).EndInit
  7813. Me.SplitContainer74.ResumeLayout(False)
  7814. Me.SplitContainer75.Panel1.ResumeLayout(False)
  7815. Me.SplitContainer75.Panel1.PerformLayout
  7816. Me.SplitContainer75.Panel2.ResumeLayout(False)
  7817. CType(Me.SplitContainer75, System.ComponentModel.ISupportInitialize).EndInit
  7818. Me.SplitContainer75.ResumeLayout(False)
  7819. Me.SplitContainer76.Panel1.ResumeLayout(False)
  7820. Me.SplitContainer76.Panel1.PerformLayout
  7821. Me.SplitContainer76.Panel2.ResumeLayout(False)
  7822. CType(Me.SplitContainer76, System.ComponentModel.ISupportInitialize).EndInit
  7823. Me.SplitContainer76.ResumeLayout(False)
  7824. Me.SplitContainer77.Panel1.ResumeLayout(False)
  7825. Me.SplitContainer77.Panel1.PerformLayout
  7826. Me.SplitContainer77.Panel2.ResumeLayout(False)
  7827. CType(Me.SplitContainer77, System.ComponentModel.ISupportInitialize).EndInit
  7828. Me.SplitContainer77.ResumeLayout(False)
  7829. Me.SplitContainer78.Panel1.ResumeLayout(False)
  7830. Me.SplitContainer78.Panel1.PerformLayout
  7831. Me.SplitContainer78.Panel2.ResumeLayout(False)
  7832. CType(Me.SplitContainer78, System.ComponentModel.ISupportInitialize).EndInit
  7833. Me.SplitContainer78.ResumeLayout(False)
  7834. Me.SplitContainer79.Panel1.ResumeLayout(False)
  7835. Me.SplitContainer79.Panel1.PerformLayout
  7836. Me.SplitContainer79.Panel2.ResumeLayout(False)
  7837. CType(Me.SplitContainer79, System.ComponentModel.ISupportInitialize).EndInit
  7838. Me.SplitContainer79.ResumeLayout(False)
  7839. Me.SplitContainer80.Panel1.ResumeLayout(False)
  7840. Me.SplitContainer80.Panel1.PerformLayout
  7841. Me.SplitContainer80.Panel2.ResumeLayout(False)
  7842. Me.SplitContainer80.Panel2.PerformLayout
  7843. CType(Me.SplitContainer80, System.ComponentModel.ISupportInitialize).EndInit
  7844. Me.SplitContainer80.ResumeLayout(False)
  7845. Me.薪資加項_P.ResumeLayout(False)
  7846. Me.SplitContainer9.Panel2.ResumeLayout(False)
  7847. CType(Me.SplitContainer9, System.ComponentModel.ISupportInitialize).EndInit
  7848. Me.SplitContainer9.ResumeLayout(False)
  7849. Me.SplitContainer10.Panel1.ResumeLayout(False)
  7850. Me.SplitContainer10.Panel2.ResumeLayout(False)
  7851. CType(Me.SplitContainer10, System.ComponentModel.ISupportInitialize).EndInit
  7852. Me.SplitContainer10.ResumeLayout(False)
  7853. Me.SplitContainer11.Panel1.ResumeLayout(False)
  7854. Me.SplitContainer11.Panel1.PerformLayout
  7855. Me.SplitContainer11.Panel2.ResumeLayout(False)
  7856. Me.SplitContainer11.Panel2.PerformLayout
  7857. CType(Me.SplitContainer11, System.ComponentModel.ISupportInitialize).EndInit
  7858. Me.SplitContainer11.ResumeLayout(False)
  7859. Me.SplitContainer12.Panel1.ResumeLayout(False)
  7860. Me.SplitContainer12.Panel2.ResumeLayout(False)
  7861. CType(Me.SplitContainer12, System.ComponentModel.ISupportInitialize).EndInit
  7862. Me.SplitContainer12.ResumeLayout(False)
  7863. Me.SplitContainer13.Panel1.ResumeLayout(False)
  7864. Me.SplitContainer13.Panel1.PerformLayout
  7865. Me.SplitContainer13.Panel2.ResumeLayout(False)
  7866. Me.SplitContainer13.Panel2.PerformLayout
  7867. CType(Me.SplitContainer13, System.ComponentModel.ISupportInitialize).EndInit
  7868. Me.SplitContainer13.ResumeLayout(False)
  7869. Me.SplitContainer14.Panel1.ResumeLayout(False)
  7870. Me.SplitContainer14.Panel2.ResumeLayout(False)
  7871. CType(Me.SplitContainer14, System.ComponentModel.ISupportInitialize).EndInit
  7872. Me.SplitContainer14.ResumeLayout(False)
  7873. Me.SplitContainer61.Panel1.ResumeLayout(False)
  7874. Me.SplitContainer61.Panel1.PerformLayout
  7875. Me.SplitContainer61.Panel2.ResumeLayout(False)
  7876. Me.SplitContainer61.Panel2.PerformLayout
  7877. CType(Me.SplitContainer61, System.ComponentModel.ISupportInitialize).EndInit
  7878. Me.SplitContainer61.ResumeLayout(False)
  7879. Me.SplitContainer62.Panel1.ResumeLayout(False)
  7880. Me.SplitContainer62.Panel1.PerformLayout
  7881. Me.SplitContainer62.Panel2.ResumeLayout(False)
  7882. CType(Me.SplitContainer62, System.ComponentModel.ISupportInitialize).EndInit
  7883. Me.SplitContainer62.ResumeLayout(False)
  7884. Me.SplitContainer63.Panel1.ResumeLayout(False)
  7885. Me.SplitContainer63.Panel1.PerformLayout
  7886. Me.SplitContainer63.Panel2.ResumeLayout(False)
  7887. CType(Me.SplitContainer63, System.ComponentModel.ISupportInitialize).EndInit
  7888. Me.SplitContainer63.ResumeLayout(False)
  7889. Me.SplitContainer64.Panel1.ResumeLayout(False)
  7890. Me.SplitContainer64.Panel1.PerformLayout
  7891. Me.SplitContainer64.Panel2.ResumeLayout(False)
  7892. CType(Me.SplitContainer64, System.ComponentModel.ISupportInitialize).EndInit
  7893. Me.SplitContainer64.ResumeLayout(False)
  7894. Me.SplitContainer65.Panel1.ResumeLayout(False)
  7895. Me.SplitContainer65.Panel1.PerformLayout
  7896. Me.SplitContainer65.Panel2.ResumeLayout(False)
  7897. CType(Me.SplitContainer65, System.ComponentModel.ISupportInitialize).EndInit
  7898. Me.SplitContainer65.ResumeLayout(False)
  7899. Me.SplitContainer66.Panel1.ResumeLayout(False)
  7900. Me.SplitContainer66.Panel1.PerformLayout
  7901. Me.SplitContainer66.Panel2.ResumeLayout(False)
  7902. CType(Me.SplitContainer66, System.ComponentModel.ISupportInitialize).EndInit
  7903. Me.SplitContainer66.ResumeLayout(False)
  7904. Me.SplitContainer67.Panel1.ResumeLayout(False)
  7905. Me.SplitContainer67.Panel1.PerformLayout
  7906. Me.SplitContainer67.Panel2.ResumeLayout(False)
  7907. Me.SplitContainer67.Panel2.PerformLayout
  7908. CType(Me.SplitContainer67, System.ComponentModel.ISupportInitialize).EndInit
  7909. Me.SplitContainer67.ResumeLayout(False)
  7910. Me.減項總計_P.ResumeLayout(False)
  7911. Me.SplitContainer28.Panel1.ResumeLayout(False)
  7912. Me.SplitContainer28.Panel1.PerformLayout
  7913. Me.SplitContainer28.Panel2.ResumeLayout(False)
  7914. CType(Me.SplitContainer28, System.ComponentModel.ISupportInitialize).EndInit
  7915. Me.SplitContainer28.ResumeLayout(False)
  7916. Me.SplitContainer29.Panel1.ResumeLayout(False)
  7917. Me.SplitContainer29.Panel2.ResumeLayout(False)
  7918. CType(Me.SplitContainer29, System.ComponentModel.ISupportInitialize).EndInit
  7919. Me.SplitContainer29.ResumeLayout(False)
  7920. Me.SplitContainer30.Panel1.ResumeLayout(False)
  7921. Me.SplitContainer30.Panel1.PerformLayout
  7922. Me.SplitContainer30.Panel2.ResumeLayout(False)
  7923. Me.SplitContainer30.Panel2.PerformLayout
  7924. CType(Me.SplitContainer30, System.ComponentModel.ISupportInitialize).EndInit
  7925. Me.SplitContainer30.ResumeLayout(False)
  7926. Me.SplitContainer31.Panel1.ResumeLayout(False)
  7927. Me.SplitContainer31.Panel2.ResumeLayout(False)
  7928. CType(Me.SplitContainer31, System.ComponentModel.ISupportInitialize).EndInit
  7929. Me.SplitContainer31.ResumeLayout(False)
  7930. Me.SplitContainer32.Panel1.ResumeLayout(False)
  7931. Me.SplitContainer32.Panel1.PerformLayout
  7932. Me.SplitContainer32.Panel2.ResumeLayout(False)
  7933. Me.SplitContainer32.Panel2.PerformLayout
  7934. CType(Me.SplitContainer32, System.ComponentModel.ISupportInitialize).EndInit
  7935. Me.SplitContainer32.ResumeLayout(False)
  7936. Me.SplitContainer33.Panel1.ResumeLayout(False)
  7937. Me.SplitContainer33.Panel2.ResumeLayout(False)
  7938. CType(Me.SplitContainer33, System.ComponentModel.ISupportInitialize).EndInit
  7939. Me.SplitContainer33.ResumeLayout(False)
  7940. Me.SplitContainer34.Panel1.ResumeLayout(False)
  7941. Me.SplitContainer34.Panel1.PerformLayout
  7942. Me.SplitContainer34.Panel2.ResumeLayout(False)
  7943. Me.SplitContainer34.Panel2.PerformLayout
  7944. CType(Me.SplitContainer34, System.ComponentModel.ISupportInitialize).EndInit
  7945. Me.SplitContainer34.ResumeLayout(False)
  7946. Me.SplitContainer35.Panel1.ResumeLayout(False)
  7947. Me.SplitContainer35.Panel1.PerformLayout
  7948. Me.SplitContainer35.Panel2.ResumeLayout(False)
  7949. CType(Me.SplitContainer35, System.ComponentModel.ISupportInitialize).EndInit
  7950. Me.SplitContainer35.ResumeLayout(False)
  7951. Me.SplitContainer36.Panel1.ResumeLayout(False)
  7952. Me.SplitContainer36.Panel1.PerformLayout
  7953. Me.SplitContainer36.Panel2.ResumeLayout(False)
  7954. CType(Me.SplitContainer36, System.ComponentModel.ISupportInitialize).EndInit
  7955. Me.SplitContainer36.ResumeLayout(False)
  7956. Me.SplitContainer37.Panel1.ResumeLayout(False)
  7957. Me.SplitContainer37.Panel1.PerformLayout
  7958. Me.SplitContainer37.Panel2.ResumeLayout(False)
  7959. CType(Me.SplitContainer37, System.ComponentModel.ISupportInitialize).EndInit
  7960. Me.SplitContainer37.ResumeLayout(False)
  7961. Me.SplitContainer38.Panel1.ResumeLayout(False)
  7962. Me.SplitContainer38.Panel1.PerformLayout
  7963. Me.SplitContainer38.Panel2.ResumeLayout(False)
  7964. CType(Me.SplitContainer38, System.ComponentModel.ISupportInitialize).EndInit
  7965. Me.SplitContainer38.ResumeLayout(False)
  7966. Me.SplitContainer39.Panel1.ResumeLayout(False)
  7967. Me.SplitContainer39.Panel1.PerformLayout
  7968. Me.SplitContainer39.Panel2.ResumeLayout(False)
  7969. CType(Me.SplitContainer39, System.ComponentModel.ISupportInitialize).EndInit
  7970. Me.SplitContainer39.ResumeLayout(False)
  7971. Me.SplitContainer40.Panel1.ResumeLayout(False)
  7972. Me.SplitContainer40.Panel1.PerformLayout
  7973. Me.SplitContainer40.Panel2.ResumeLayout(False)
  7974. Me.SplitContainer40.Panel2.PerformLayout
  7975. CType(Me.SplitContainer40, System.ComponentModel.ISupportInitialize).EndInit
  7976. Me.SplitContainer40.ResumeLayout(False)
  7977. Me.加項總計_P.ResumeLayout(False)
  7978. Me.SplitContainer15.Panel1.ResumeLayout(False)
  7979. Me.SplitContainer15.Panel1.PerformLayout
  7980. Me.SplitContainer15.Panel2.ResumeLayout(False)
  7981. CType(Me.SplitContainer15, System.ComponentModel.ISupportInitialize).EndInit
  7982. Me.SplitContainer15.ResumeLayout(False)
  7983. Me.SplitContainer16.Panel1.ResumeLayout(False)
  7984. Me.SplitContainer16.Panel2.ResumeLayout(False)
  7985. CType(Me.SplitContainer16, System.ComponentModel.ISupportInitialize).EndInit
  7986. Me.SplitContainer16.ResumeLayout(False)
  7987. Me.SplitContainer19.Panel1.ResumeLayout(False)
  7988. Me.SplitContainer19.Panel1.PerformLayout
  7989. Me.SplitContainer19.Panel2.ResumeLayout(False)
  7990. Me.SplitContainer19.Panel2.PerformLayout
  7991. CType(Me.SplitContainer19, System.ComponentModel.ISupportInitialize).EndInit
  7992. Me.SplitContainer19.ResumeLayout(False)
  7993. Me.SplitContainer17.Panel1.ResumeLayout(False)
  7994. Me.SplitContainer17.Panel2.ResumeLayout(False)
  7995. CType(Me.SplitContainer17, System.ComponentModel.ISupportInitialize).EndInit
  7996. Me.SplitContainer17.ResumeLayout(False)
  7997. Me.SplitContainer20.Panel1.ResumeLayout(False)
  7998. Me.SplitContainer20.Panel1.PerformLayout
  7999. Me.SplitContainer20.Panel2.ResumeLayout(False)
  8000. Me.SplitContainer20.Panel2.PerformLayout
  8001. CType(Me.SplitContainer20, System.ComponentModel.ISupportInitialize).EndInit
  8002. Me.SplitContainer20.ResumeLayout(False)
  8003. Me.SplitContainer18.Panel1.ResumeLayout(False)
  8004. Me.SplitContainer18.Panel2.ResumeLayout(False)
  8005. CType(Me.SplitContainer18, System.ComponentModel.ISupportInitialize).EndInit
  8006. Me.SplitContainer18.ResumeLayout(False)
  8007. Me.SplitContainer21.Panel1.ResumeLayout(False)
  8008. Me.SplitContainer21.Panel1.PerformLayout
  8009. Me.SplitContainer21.Panel2.ResumeLayout(False)
  8010. Me.SplitContainer21.Panel2.PerformLayout
  8011. CType(Me.SplitContainer21, System.ComponentModel.ISupportInitialize).EndInit
  8012. Me.SplitContainer21.ResumeLayout(False)
  8013. Me.SplitContainer22.Panel1.ResumeLayout(False)
  8014. Me.SplitContainer22.Panel1.PerformLayout
  8015. Me.SplitContainer22.Panel2.ResumeLayout(False)
  8016. CType(Me.SplitContainer22, System.ComponentModel.ISupportInitialize).EndInit
  8017. Me.SplitContainer22.ResumeLayout(False)
  8018. Me.SplitContainer23.Panel1.ResumeLayout(False)
  8019. Me.SplitContainer23.Panel1.PerformLayout
  8020. Me.SplitContainer23.Panel2.ResumeLayout(False)
  8021. CType(Me.SplitContainer23, System.ComponentModel.ISupportInitialize).EndInit
  8022. Me.SplitContainer23.ResumeLayout(False)
  8023. Me.SplitContainer24.Panel1.ResumeLayout(False)
  8024. Me.SplitContainer24.Panel1.PerformLayout
  8025. Me.SplitContainer24.Panel2.ResumeLayout(False)
  8026. CType(Me.SplitContainer24, System.ComponentModel.ISupportInitialize).EndInit
  8027. Me.SplitContainer24.ResumeLayout(False)
  8028. Me.SplitContainer25.Panel1.ResumeLayout(False)
  8029. Me.SplitContainer25.Panel1.PerformLayout
  8030. Me.SplitContainer25.Panel2.ResumeLayout(False)
  8031. CType(Me.SplitContainer25, System.ComponentModel.ISupportInitialize).EndInit
  8032. Me.SplitContainer25.ResumeLayout(False)
  8033. Me.SplitContainer26.Panel1.ResumeLayout(False)
  8034. Me.SplitContainer26.Panel1.PerformLayout
  8035. Me.SplitContainer26.Panel2.ResumeLayout(False)
  8036. CType(Me.SplitContainer26, System.ComponentModel.ISupportInitialize).EndInit
  8037. Me.SplitContainer26.ResumeLayout(False)
  8038. Me.SplitContainer27.Panel1.ResumeLayout(False)
  8039. Me.SplitContainer27.Panel1.PerformLayout
  8040. Me.SplitContainer27.Panel2.ResumeLayout(False)
  8041. Me.SplitContainer27.Panel2.PerformLayout
  8042. CType(Me.SplitContainer27, System.ComponentModel.ISupportInitialize).EndInit
  8043. Me.SplitContainer27.ResumeLayout(False)
  8044. Me.其它_P.ResumeLayout(False)
  8045. Me.SplitContainer41.Panel1.ResumeLayout(False)
  8046. Me.SplitContainer41.Panel1.PerformLayout
  8047. Me.SplitContainer41.Panel2.ResumeLayout(False)
  8048. CType(Me.SplitContainer41, System.ComponentModel.ISupportInitialize).EndInit
  8049. Me.SplitContainer41.ResumeLayout(False)
  8050. Me.SplitContainer42.Panel1.ResumeLayout(False)
  8051. Me.SplitContainer42.Panel1.PerformLayout
  8052. Me.SplitContainer42.Panel2.ResumeLayout(False)
  8053. CType(Me.SplitContainer42, System.ComponentModel.ISupportInitialize).EndInit
  8054. Me.SplitContainer42.ResumeLayout(False)
  8055. Me.SplitContainer43.Panel1.ResumeLayout(False)
  8056. Me.SplitContainer43.Panel1.PerformLayout
  8057. Me.SplitContainer43.Panel2.ResumeLayout(False)
  8058. CType(Me.SplitContainer43, System.ComponentModel.ISupportInitialize).EndInit
  8059. Me.SplitContainer43.ResumeLayout(False)
  8060. Me.SplitContainer44.Panel1.ResumeLayout(False)
  8061. Me.SplitContainer44.Panel1.PerformLayout
  8062. Me.SplitContainer44.Panel2.ResumeLayout(False)
  8063. CType(Me.SplitContainer44, System.ComponentModel.ISupportInitialize).EndInit
  8064. Me.SplitContainer44.ResumeLayout(False)
  8065. Me.SplitContainer45.Panel1.ResumeLayout(False)
  8066. Me.SplitContainer45.Panel1.PerformLayout
  8067. Me.SplitContainer45.Panel2.ResumeLayout(False)
  8068. CType(Me.SplitContainer45, System.ComponentModel.ISupportInitialize).EndInit
  8069. Me.SplitContainer45.ResumeLayout(False)
  8070. Me.SplitContainer46.Panel1.ResumeLayout(False)
  8071. Me.SplitContainer46.Panel1.PerformLayout
  8072. Me.SplitContainer46.Panel2.ResumeLayout(False)
  8073. CType(Me.SplitContainer46, System.ComponentModel.ISupportInitialize).EndInit
  8074. Me.SplitContainer46.ResumeLayout(False)
  8075. Me.SplitContainer47.Panel1.ResumeLayout(False)
  8076. Me.SplitContainer47.Panel1.PerformLayout
  8077. Me.SplitContainer47.Panel2.ResumeLayout(False)
  8078. CType(Me.SplitContainer47, System.ComponentModel.ISupportInitialize).EndInit
  8079. Me.SplitContainer47.ResumeLayout(False)
  8080. Me.SplitContainer48.Panel1.ResumeLayout(False)
  8081. Me.SplitContainer48.Panel1.PerformLayout
  8082. Me.SplitContainer48.Panel2.ResumeLayout(False)
  8083. CType(Me.SplitContainer48, System.ComponentModel.ISupportInitialize).EndInit
  8084. Me.SplitContainer48.ResumeLayout(False)
  8085. Me.SplitContainer49.Panel1.ResumeLayout(False)
  8086. Me.SplitContainer49.Panel1.PerformLayout
  8087. Me.SplitContainer49.Panel2.ResumeLayout(False)
  8088. CType(Me.SplitContainer49, System.ComponentModel.ISupportInitialize).EndInit
  8089. Me.SplitContainer49.ResumeLayout(False)
  8090. Me.SplitContainer81.Panel1.ResumeLayout(False)
  8091. Me.SplitContainer81.Panel1.PerformLayout
  8092. Me.SplitContainer81.Panel2.ResumeLayout(False)
  8093. Me.SplitContainer81.Panel2.PerformLayout
  8094. CType(Me.SplitContainer81, System.ComponentModel.ISupportInitialize).EndInit
  8095. Me.SplitContainer81.ResumeLayout(False)
  8096. Me.Panel13.ResumeLayout(False)
  8097. Me.ResumeLayout(False)
  8098. End Sub
  8099. Friend WithEvents TabControl1 As TabControl
  8100. Friend WithEvents TabPage1 As TabPage
  8101. Friend WithEvents 月份_cb As ComboBox
  8102. Friend WithEvents 年份_cb As ComboBox
  8103. Friend WithEvents Label6 As Label
  8104. Friend WithEvents TabPage2 As TabPage
  8105. Friend WithEvents Dgv As DataGridView
  8106. Friend WithEvents 加班計算_dgv As DataGridView
  8107. Friend WithEvents 服務資料_dgv As DataGridView
  8108. Friend WithEvents 碼別_dgv As DataGridView
  8109. Friend WithEvents 設定1_bt As Button
  8110. Friend WithEvents 階級津貼_dgv As DataGridView
  8111. Friend WithEvents 存檔_bt As Button
  8112. Friend WithEvents BA比_dgv As DataGridView
  8113. Friend WithEvents BA比1_dgv As DataGridView
  8114. Friend WithEvents 存檔1_bt As Button
  8115. Friend WithEvents 重讀_bt As Button
  8116. Friend WithEvents 時數表_ch As CheckBox
  8117. Friend WithEvents 主表_ch As CheckBox
  8118. Friend WithEvents 存檔2_bt As Button
  8119. Friend WithEvents 表頭_dgv As DataGridView
  8120. Friend WithEvents 加項總計_ch As CheckBox
  8121. Friend WithEvents 減項總計_ch As CheckBox
  8122. Friend WithEvents 存檔3_bt As Button
  8123. Friend WithEvents Panel3 As Panel
  8124. Friend WithEvents 主表_P As Panel
  8125. Friend WithEvents 其它_ch As CheckBox
  8126. Friend WithEvents 時數表_P As Panel
  8127. Friend WithEvents 加項總計_P As Panel
  8128. Friend WithEvents GA加_tb As TextBox
  8129. Friend WithEvents Label3 As Label
  8130. Friend WithEvents GA正_tb As TextBox
  8131. Friend WithEvents Label2 As Label
  8132. Friend WithEvents BA正_tb As TextBox
  8133. Friend WithEvents Label1 As Label
  8134. Friend WithEvents 其他_tb As TextBox
  8135. Friend WithEvents Label4 As Label
  8136. Friend WithEvents 主薪_tb As TextBox
  8137. Friend WithEvents Label5 As Label
  8138. Friend WithEvents AA_tb As TextBox
  8139. Friend WithEvents Label7 As Label
  8140. Friend WithEvents 副薪_tb As TextBox
  8141. Friend WithEvents Label8 As Label
  8142. Friend WithEvents 總薪_tb As TextBox
  8143. Friend WithEvents Label9 As Label
  8144. Friend WithEvents 加班扣除_tb As TextBox
  8145. Friend WithEvents Label10 As Label
  8146. Friend WithEvents 平日月薪_tb As TextBox
  8147. Friend WithEvents Label11 As Label
  8148. Friend WithEvents 服務_tb As TextBox
  8149. Friend WithEvents Label12 As Label
  8150. Friend WithEvents 轉場_tb As TextBox
  8151. Friend WithEvents Label13 As Label
  8152. Friend WithEvents 修正月_tb As TextBox
  8153. Friend WithEvents Label14 As Label
  8154. Friend WithEvents 加班費_tb As TextBox
  8155. Friend WithEvents Label15 As Label
  8156. Friend WithEvents 總薪資_tb As TextBox
  8157. Friend WithEvents Label16 As Label
  8158. Friend WithEvents SplitContainer15 As SplitContainer
  8159. Friend WithEvents SplitContainer16 As SplitContainer
  8160. Friend WithEvents SplitContainer19 As SplitContainer
  8161. Friend WithEvents SplitContainer17 As SplitContainer
  8162. Friend WithEvents SplitContainer20 As SplitContainer
  8163. Friend WithEvents SplitContainer18 As SplitContainer
  8164. Friend WithEvents SplitContainer21 As SplitContainer
  8165. Friend WithEvents SplitContainer22 As SplitContainer
  8166. Friend WithEvents SplitContainer23 As SplitContainer
  8167. Friend WithEvents SplitContainer24 As SplitContainer
  8168. Friend WithEvents SplitContainer25 As SplitContainer
  8169. Friend WithEvents SplitContainer26 As SplitContainer
  8170. Friend WithEvents SplitContainer27 As SplitContainer
  8171. Friend WithEvents B01_tb As TextBox
  8172. Friend WithEvents B01_lb As Label
  8173. Friend WithEvents B02_tb As TextBox
  8174. Friend WithEvents B02_lb As Label
  8175. Friend WithEvents B03_tb As TextBox
  8176. Friend WithEvents B03_lb As Label
  8177. Friend WithEvents B04_tb As TextBox
  8178. Friend WithEvents B04_lb As Label
  8179. Friend WithEvents B05_tb As TextBox
  8180. Friend WithEvents B05_lb As Label
  8181. Friend WithEvents B06_tb As TextBox
  8182. Friend WithEvents B06_lb As Label
  8183. Friend WithEvents B07_tb As TextBox
  8184. Friend WithEvents B07_lb As Label
  8185. Friend WithEvents B08_tb As TextBox
  8186. Friend WithEvents B08_lb As Label
  8187. Friend WithEvents B09_tb As TextBox
  8188. Friend WithEvents B09_lb As Label
  8189. Friend WithEvents B10_tb As TextBox
  8190. Friend WithEvents B10_lb As Label
  8191. Friend WithEvents B11_tb As TextBox
  8192. Friend WithEvents B11_lb As Label
  8193. Friend WithEvents B12_tb As TextBox
  8194. Friend WithEvents B12_lb As Label
  8195. Friend WithEvents 加項總計_tb As TextBox
  8196. Friend WithEvents 加項總計_lb As Label
  8197. Friend WithEvents C01_tb As TextBox
  8198. Friend WithEvents C01_lb As Label
  8199. Friend WithEvents 減項總計_P As Panel
  8200. Friend WithEvents SplitContainer28 As SplitContainer
  8201. Friend WithEvents A01_tb As TextBox
  8202. Friend WithEvents A01_lb As Label
  8203. Friend WithEvents SplitContainer29 As SplitContainer
  8204. Friend WithEvents SplitContainer30 As SplitContainer
  8205. Friend WithEvents A02_tb As TextBox
  8206. Friend WithEvents A02_lb As Label
  8207. Friend WithEvents A03_tb As TextBox
  8208. Friend WithEvents A03_lb As Label
  8209. Friend WithEvents SplitContainer31 As SplitContainer
  8210. Friend WithEvents SplitContainer32 As SplitContainer
  8211. Friend WithEvents A04_tb As TextBox
  8212. Friend WithEvents A04_lb As Label
  8213. Friend WithEvents A05_tb As TextBox
  8214. Friend WithEvents A05_lb As Label
  8215. Friend WithEvents SplitContainer33 As SplitContainer
  8216. Friend WithEvents SplitContainer34 As SplitContainer
  8217. Friend WithEvents A06_tb As TextBox
  8218. Friend WithEvents A06_lb As Label
  8219. Friend WithEvents A07_tb As TextBox
  8220. Friend WithEvents A07_lb As Label
  8221. Friend WithEvents SplitContainer35 As SplitContainer
  8222. Friend WithEvents A08_tb As TextBox
  8223. Friend WithEvents A08_lb As Label
  8224. Friend WithEvents SplitContainer36 As SplitContainer
  8225. Friend WithEvents A09_tb As TextBox
  8226. Friend WithEvents A09_lb As Label
  8227. Friend WithEvents SplitContainer37 As SplitContainer
  8228. Friend WithEvents A10_tb As TextBox
  8229. Friend WithEvents A10_lb As Label
  8230. Friend WithEvents SplitContainer38 As SplitContainer
  8231. Friend WithEvents A11_tb As TextBox
  8232. Friend WithEvents A11_lb As Label
  8233. Friend WithEvents SplitContainer39 As SplitContainer
  8234. Friend WithEvents A12_tb As TextBox
  8235. Friend WithEvents A12_lb As Label
  8236. Friend WithEvents SplitContainer40 As SplitContainer
  8237. Friend WithEvents 減項總計_tb As TextBox
  8238. Friend WithEvents Label29 As Label
  8239. Friend WithEvents C01_1_tb As TextBox
  8240. Friend WithEvents C01_1_lb As Label
  8241. Friend WithEvents BA正1_tb As TextBox
  8242. Friend WithEvents Label26 As Label
  8243. Friend WithEvents 存檔4_bt As Button
  8244. Friend WithEvents 新增_bt As Button
  8245. Friend WithEvents Label27 As Label
  8246. Friend WithEvents 薪資條_bt As Button
  8247. Friend WithEvents Panel4 As Panel
  8248. Friend WithEvents 月_lb As Label
  8249. Friend WithEvents Label34 As Label
  8250. Friend WithEvents 年_lb As Label
  8251. Friend WithEvents Label32 As Label
  8252. Friend WithEvents 姓名_lb As Label
  8253. Friend WithEvents Label30 As Label
  8254. Friend WithEvents 公司名_lb As Label
  8255. Friend WithEvents Panel5 As Panel
  8256. Friend WithEvents Label39 As Label
  8257. Friend WithEvents Label37 As Label
  8258. Friend WithEvents Label36 As Label
  8259. Friend WithEvents Label43 As Label
  8260. Friend WithEvents Label42 As Label
  8261. Friend WithEvents Label41 As Label
  8262. Friend WithEvents Label40 As Label
  8263. Friend WithEvents Panel7 As Panel
  8264. Friend WithEvents 平日轉_lb As Label
  8265. Friend WithEvents 正常工_lb As Label
  8266. Friend WithEvents AA2_lb As Label
  8267. Friend WithEvents 正常1_lb As Label
  8268. Friend WithEvents Label61 As Label
  8269. Friend WithEvents Label62 As Label
  8270. Friend WithEvents Label63 As Label
  8271. Friend WithEvents Label64 As Label
  8272. Friend WithEvents Label65 As Label
  8273. Friend WithEvents Panel6 As Panel
  8274. Friend WithEvents 實領_lb As Label
  8275. Friend WithEvents 小21_lb As Label
  8276. Friend WithEvents 小31_lb As Label
  8277. Friend WithEvents 合1_lb As Label
  8278. Friend WithEvents Label52 As Label
  8279. Friend WithEvents Label53 As Label
  8280. Friend WithEvents Label54 As Label
  8281. Friend WithEvents Label55 As Label
  8282. Friend WithEvents Label56 As Label
  8283. Friend WithEvents 特休_lb As Label
  8284. Friend WithEvents 加班_lb As Label
  8285. Friend WithEvents AA1_lb As Label
  8286. Friend WithEvents 正常_lb As Label
  8287. Friend WithEvents Panel8 As Panel
  8288. Friend WithEvents B03_alb As Label
  8289. Friend WithEvents B03_clb As Label
  8290. Friend WithEvents Label78 As Label
  8291. Friend WithEvents Label79 As Label
  8292. Friend WithEvents B02_alb As Label
  8293. Friend WithEvents B02_clb As Label
  8294. Friend WithEvents B01_alb As Label
  8295. Friend WithEvents B01_clb As Label
  8296. Friend WithEvents Label71 As Label
  8297. Friend WithEvents Label72 As Label
  8298. Friend WithEvents Label73 As Label
  8299. Friend WithEvents Label74 As Label
  8300. Friend WithEvents Label75 As Label
  8301. Friend WithEvents Panel9 As Panel
  8302. Friend WithEvents 小2_lb As Label
  8303. Friend WithEvents Label101 As Label
  8304. Friend WithEvents A12_alb As Label
  8305. Friend WithEvents A12_clb As Label
  8306. Friend WithEvents A11_alb As Label
  8307. Friend WithEvents A11_clb As Label
  8308. Friend WithEvents A10_alb As Label
  8309. Friend WithEvents A10_clb As Label
  8310. Friend WithEvents A09_alb As Label
  8311. Friend WithEvents A09_clb As Label
  8312. Friend WithEvents A08_alb As Label
  8313. Friend WithEvents A08_clb As Label
  8314. Friend WithEvents A07_alb As Label
  8315. Friend WithEvents A07_clb As Label
  8316. Friend WithEvents A06_alb As Label
  8317. Friend WithEvents A06_clb As Label
  8318. Friend WithEvents A05_alb As Label
  8319. Friend WithEvents A05_clb As Label
  8320. Friend WithEvents A04_alb As Label
  8321. Friend WithEvents A04_clb As Label
  8322. Friend WithEvents A03_alb As Label
  8323. Friend WithEvents A03_clb As Label
  8324. Friend WithEvents Label122 As Label
  8325. Friend WithEvents Label123 As Label
  8326. Friend WithEvents A02_alb As Label
  8327. Friend WithEvents A02_clb As Label
  8328. Friend WithEvents A01_alb As Label
  8329. Friend WithEvents A01_clb As Label
  8330. Friend WithEvents Label128 As Label
  8331. Friend WithEvents Label129 As Label
  8332. Friend WithEvents Label130 As Label
  8333. Friend WithEvents Label131 As Label
  8334. Friend WithEvents Label132 As Label
  8335. Friend WithEvents 小3_lb As Label
  8336. Friend WithEvents Label98 As Label
  8337. Friend WithEvents B12_alb As Label
  8338. Friend WithEvents B12_clb As Label
  8339. Friend WithEvents B11_alb As Label
  8340. Friend WithEvents B11_clb As Label
  8341. Friend WithEvents B10_alb As Label
  8342. Friend WithEvents B10_clb As Label
  8343. Friend WithEvents B09_alb As Label
  8344. Friend WithEvents B09_clb As Label
  8345. Friend WithEvents B08_alb As Label
  8346. Friend WithEvents B08_clb As Label
  8347. Friend WithEvents B07_alb As Label
  8348. Friend WithEvents B07_clb As Label
  8349. Friend WithEvents B06_alb As Label
  8350. Friend WithEvents B06_clb As Label
  8351. Friend WithEvents B05_alb As Label
  8352. Friend WithEvents B05_clb As Label
  8353. Friend WithEvents B04_alb As Label
  8354. Friend WithEvents B04_clb As Label
  8355. Friend WithEvents 平時新_lb As Label
  8356. Friend WithEvents Label134 As Label
  8357. Friend WithEvents Panel10 As Panel
  8358. Friend WithEvents 小1_lb As Label
  8359. Friend WithEvents Label171 As Label
  8360. Friend WithEvents 費5_tb As Label
  8361. Friend WithEvents 薪5_lb As Label
  8362. Friend WithEvents 時5_lb As Label
  8363. Friend WithEvents 倍5_lb As Label
  8364. Friend WithEvents Label165 As Label
  8365. Friend WithEvents 費4_tb As Label
  8366. Friend WithEvents 薪4_lb As Label
  8367. Friend WithEvents 時4_lb As Label
  8368. Friend WithEvents 倍4_lb As Label
  8369. Friend WithEvents Label160 As Label
  8370. Friend WithEvents 費3_tb As Label
  8371. Friend WithEvents 薪3_lb As Label
  8372. Friend WithEvents 時3_lb As Label
  8373. Friend WithEvents 倍3_lb As Label
  8374. Friend WithEvents Label155 As Label
  8375. Friend WithEvents 費2_tb As Label
  8376. Friend WithEvents 薪2_lb As Label
  8377. Friend WithEvents 時2_lb As Label
  8378. Friend WithEvents 倍2_lb As Label
  8379. Friend WithEvents Label150 As Label
  8380. Friend WithEvents 費1_tb As Label
  8381. Friend WithEvents Label136 As Label
  8382. Friend WithEvents 薪1_lb As Label
  8383. Friend WithEvents 時1_lb As Label
  8384. Friend WithEvents 倍1_lb As Label
  8385. Friend WithEvents Label141 As Label
  8386. Friend WithEvents Label142 As Label
  8387. Friend WithEvents Label143 As Label
  8388. Friend WithEvents Label144 As Label
  8389. Friend WithEvents Label145 As Label
  8390. Friend WithEvents Label146 As Label
  8391. Friend WithEvents Label174 As Label
  8392. Friend WithEvents Label173 As Label
  8393. Friend WithEvents Panel11 As Panel
  8394. Friend WithEvents 分流計算 As Timer
  8395. Friend WithEvents DateTimePicker1 As DateTimePicker
  8396. Friend WithEvents 人員向後_bt As Button
  8397. Friend WithEvents 人員向前_bt As Button
  8398. Friend WithEvents 列印_tb As Button
  8399. Friend WithEvents PrintDocument1 As Printing.PrintDocument
  8400. Friend WithEvents Dgv1 As DataGridView
  8401. Friend WithEvents 差異_dgv As DataGridView
  8402. Friend WithEvents 比對前_bt As Button
  8403. Friend WithEvents 比對後_bt As Button
  8404. Friend WithEvents 差異_tb As TextBox
  8405. Friend WithEvents Label28 As Label
  8406. Friend WithEvents Label31 As Label
  8407. Friend WithEvents ToolTip1 As ToolTip
  8408. Friend WithEvents 轉場津貼1_lb As Label
  8409. Friend WithEvents 轉場津貼_lb As Label
  8410. Friend WithEvents 服務津貼1_lb As Label
  8411. Friend WithEvents 服務津貼_lb As Label
  8412. Friend WithEvents 轉場津貼_cb As CheckBox
  8413. Friend WithEvents 服務津貼_cb As CheckBox
  8414. Friend WithEvents Label33 As Label
  8415. Friend WithEvents 平均1_tb As TextBox
  8416. Friend WithEvents Label49 As Label
  8417. Friend WithEvents 平均9_tb As TextBox
  8418. Friend WithEvents Label45 As Label
  8419. Friend WithEvents 平均8_tb As TextBox
  8420. Friend WithEvents Label46 As Label
  8421. Friend WithEvents 平均7_tb As TextBox
  8422. Friend WithEvents Label47 As Label
  8423. Friend WithEvents 平均6_tb As TextBox
  8424. Friend WithEvents Label48 As Label
  8425. Friend WithEvents 平均5_tb As TextBox
  8426. Friend WithEvents Label44 As Label
  8427. Friend WithEvents 平均4_tb As TextBox
  8428. Friend WithEvents Label38 As Label
  8429. Friend WithEvents 平均3_tb As TextBox
  8430. Friend WithEvents Label35 As Label
  8431. Friend WithEvents 平均2_tb As TextBox
  8432. Friend WithEvents SplitContainer50 As SplitContainer
  8433. Friend WithEvents SplitContainer51 As SplitContainer
  8434. Friend WithEvents SplitContainer52 As SplitContainer
  8435. Friend WithEvents SplitContainer53 As SplitContainer
  8436. Friend WithEvents SplitContainer54 As SplitContainer
  8437. Friend WithEvents SplitContainer55 As SplitContainer
  8438. Friend WithEvents SplitContainer56 As SplitContainer
  8439. Friend WithEvents SplitContainer57 As SplitContainer
  8440. Friend WithEvents SplitContainer58 As SplitContainer
  8441. Friend WithEvents SplitContainer59 As SplitContainer
  8442. Friend WithEvents SplitContainer60 As SplitContainer
  8443. Friend WithEvents Panel12 As Panel
  8444. Friend WithEvents 其它_P As Panel
  8445. Friend WithEvents SplitContainer41 As SplitContainer
  8446. Friend WithEvents SplitContainer42 As SplitContainer
  8447. Friend WithEvents AA1_tb As TextBox
  8448. Friend WithEvents Label25 As Label
  8449. Friend WithEvents SplitContainer43 As SplitContainer
  8450. Friend WithEvents 修正月1_tb As TextBox
  8451. Friend WithEvents Label24 As Label
  8452. Friend WithEvents SplitContainer44 As SplitContainer
  8453. Friend WithEvents 加班費1_tb As TextBox
  8454. Friend WithEvents Label23 As Label
  8455. Friend WithEvents SplitContainer45 As SplitContainer
  8456. Friend WithEvents 總薪資1_tb As TextBox
  8457. Friend WithEvents Label22 As Label
  8458. Friend WithEvents SplitContainer46 As SplitContainer
  8459. Friend WithEvents 總時數_tb As TextBox
  8460. Friend WithEvents Label21 As Label
  8461. Friend WithEvents SplitContainer47 As SplitContainer
  8462. Friend WithEvents 平均時薪_tb As TextBox
  8463. Friend WithEvents Label20 As Label
  8464. Friend WithEvents SplitContainer48 As SplitContainer
  8465. Friend WithEvents BAAA加_tb As TextBox
  8466. Friend WithEvents Label19 As Label
  8467. Friend WithEvents SplitContainer49 As SplitContainer
  8468. Friend WithEvents 餘額_tb As TextBox
  8469. Friend WithEvents Label18 As Label
  8470. Friend WithEvents 餘額比_tb As TextBox
  8471. Friend WithEvents Label17 As Label
  8472. Friend WithEvents SplitContainer1 As SplitContainer
  8473. Friend WithEvents SplitContainer2 As SplitContainer
  8474. Friend WithEvents SplitContainer3 As SplitContainer
  8475. Friend WithEvents SplitContainer4 As SplitContainer
  8476. Friend WithEvents SplitContainer5 As SplitContainer
  8477. Friend WithEvents SplitContainer6 As SplitContainer
  8478. Friend WithEvents SplitContainer7 As SplitContainer
  8479. Friend WithEvents SplitContainer8 As SplitContainer
  8480. Friend WithEvents Panel2 As Panel
  8481. Friend WithEvents Panel1 As Panel
  8482. Friend WithEvents 重讀1_bt As Button
  8483. Friend WithEvents 薪資加項_ch As CheckBox
  8484. Friend WithEvents 薪資加項_P As Panel
  8485. Friend WithEvents SplitContainer9 As SplitContainer
  8486. Friend WithEvents D01_tb As TextBox
  8487. Friend WithEvents D01_lb As Label
  8488. Friend WithEvents SplitContainer10 As SplitContainer
  8489. Friend WithEvents SplitContainer11 As SplitContainer
  8490. Friend WithEvents D02_tb As TextBox
  8491. Friend WithEvents D02_lb As Label
  8492. Friend WithEvents D03_tb As TextBox
  8493. Friend WithEvents D03_lb As Label
  8494. Friend WithEvents SplitContainer12 As SplitContainer
  8495. Friend WithEvents SplitContainer13 As SplitContainer
  8496. Friend WithEvents D04_tb As TextBox
  8497. Friend WithEvents D04_lb As Label
  8498. Friend WithEvents D05_tb As TextBox
  8499. Friend WithEvents D05_lb As Label
  8500. Friend WithEvents SplitContainer14 As SplitContainer
  8501. Friend WithEvents SplitContainer61 As SplitContainer
  8502. Friend WithEvents D06_tb As TextBox
  8503. Friend WithEvents D06_lb As Label
  8504. Friend WithEvents D07_tb As TextBox
  8505. Friend WithEvents D07_lb As Label
  8506. Friend WithEvents SplitContainer62 As SplitContainer
  8507. Friend WithEvents D08_tb As TextBox
  8508. Friend WithEvents D08_lb As Label
  8509. Friend WithEvents SplitContainer63 As SplitContainer
  8510. Friend WithEvents D09_lb As Label
  8511. Friend WithEvents D09_tb As TextBox
  8512. Friend WithEvents SplitContainer64 As SplitContainer
  8513. Friend WithEvents D10_tb As TextBox
  8514. Friend WithEvents D10_lb As Label
  8515. Friend WithEvents SplitContainer65 As SplitContainer
  8516. Friend WithEvents D11_tb As TextBox
  8517. Friend WithEvents D11_lb As Label
  8518. Friend WithEvents SplitContainer66 As SplitContainer
  8519. Friend WithEvents D12_tb As TextBox
  8520. Friend WithEvents D12_lb As Label
  8521. Friend WithEvents SplitContainer67 As SplitContainer
  8522. Friend WithEvents 薪資加項總計_tb As TextBox
  8523. Friend WithEvents Label80 As Label
  8524. Friend WithEvents 公司負擔成本_ch As CheckBox
  8525. Friend WithEvents 公司負擔_P As Panel
  8526. Friend WithEvents SplitContainer68 As SplitContainer
  8527. Friend WithEvents SplitContainer69 As SplitContainer
  8528. Friend WithEvents SplitContainer70 As SplitContainer
  8529. Friend WithEvents E01_tb As TextBox
  8530. Friend WithEvents E01_lb As Label
  8531. Friend WithEvents E02_tb As TextBox
  8532. Friend WithEvents E02_lb As Label
  8533. Friend WithEvents SplitContainer71 As SplitContainer
  8534. Friend WithEvents SplitContainer72 As SplitContainer
  8535. Friend WithEvents E03_tb As TextBox
  8536. Friend WithEvents E03_lb As Label
  8537. Friend WithEvents E04_tb As TextBox
  8538. Friend WithEvents E04_lb As Label
  8539. Friend WithEvents SplitContainer73 As SplitContainer
  8540. Friend WithEvents SplitContainer74 As SplitContainer
  8541. Friend WithEvents E05_tb As TextBox
  8542. Friend WithEvents E05_lb As Label
  8543. Friend WithEvents E06_tb As TextBox
  8544. Friend WithEvents E06_lb As Label
  8545. Friend WithEvents SplitContainer75 As SplitContainer
  8546. Friend WithEvents E07_tb As TextBox
  8547. Friend WithEvents E07_lb As Label
  8548. Friend WithEvents SplitContainer76 As SplitContainer
  8549. Friend WithEvents E08_tb As TextBox
  8550. Friend WithEvents E08_lb As Label
  8551. Friend WithEvents SplitContainer77 As SplitContainer
  8552. Friend WithEvents E09_tb As TextBox
  8553. Friend WithEvents E09_lb As Label
  8554. Friend WithEvents SplitContainer78 As SplitContainer
  8555. Friend WithEvents E10_tb As TextBox
  8556. Friend WithEvents E10_lb As Label
  8557. Friend WithEvents SplitContainer79 As SplitContainer
  8558. Friend WithEvents E11_tb As TextBox
  8559. Friend WithEvents E11_lb As Label
  8560. Friend WithEvents SplitContainer80 As SplitContainer
  8561. Friend WithEvents E12_tb As TextBox
  8562. Friend WithEvents E12_lb As Label
  8563. Friend WithEvents 公司負擔總計_tb As TextBox
  8564. Friend WithEvents Label81 As Label
  8565. Friend WithEvents 重讀2_bt As Button
  8566. Friend WithEvents 小4_lb As Label
  8567. Friend WithEvents Label51 As Label
  8568. Friend WithEvents D12_alb As Label
  8569. Friend WithEvents D12_clb As Label
  8570. Friend WithEvents D11_alb As Label
  8571. Friend WithEvents D11_clb As Label
  8572. Friend WithEvents D10_alb As Label
  8573. Friend WithEvents D10_clb As Label
  8574. Friend WithEvents D09_alb As Label
  8575. Friend WithEvents D09_clb As Label
  8576. Friend WithEvents D08_alb As Label
  8577. Friend WithEvents D08_clb As Label
  8578. Friend WithEvents D07_alb As Label
  8579. Friend WithEvents D07_clb As Label
  8580. Friend WithEvents D06_alb As Label
  8581. Friend WithEvents D06_clb As Label
  8582. Friend WithEvents D05_alb As Label
  8583. Friend WithEvents D05_clb As Label
  8584. Friend WithEvents D04_alb As Label
  8585. Friend WithEvents D04_clb As Label
  8586. Friend WithEvents D03_alb As Label
  8587. Friend WithEvents D03_clb As Label
  8588. Friend WithEvents Label91 As Label
  8589. Friend WithEvents Label92 As Label
  8590. Friend WithEvents D02_alb As Label
  8591. Friend WithEvents D02_clb As Label
  8592. Friend WithEvents D01_alb As Label
  8593. Friend WithEvents D01_clb As Label
  8594. Friend WithEvents Label97 As Label
  8595. Friend WithEvents Label99 As Label
  8596. Friend WithEvents Label100 As Label
  8597. Friend WithEvents Label102 As Label
  8598. Friend WithEvents Label103 As Label
  8599. Friend WithEvents 小41_lb As Label
  8600. Friend WithEvents Label57 As Label
  8601. Friend WithEvents 小42_lb As Label
  8602. Friend WithEvents Label58 As Label
  8603. Friend WithEvents 查詢_bt As Button
  8604. Friend WithEvents 轉場加班_dgv As DataGridView
  8605. Friend WithEvents 最低薪資_lb As Label
  8606. Friend WithEvents Label66 As Label
  8607. Friend WithEvents 轉正常_lb As Label
  8608. Friend WithEvents Label59 As Label
  8609. Friend WithEvents 正常轉時_lb As Label
  8610. Friend WithEvents Label68 As Label
  8611. Friend WithEvents Label69 As Label
  8612. Friend WithEvents 轉費5_tb As Label
  8613. Friend WithEvents 轉薪5_lb As Label
  8614. Friend WithEvents 轉時5_lb As Label
  8615. Friend WithEvents 轉費4_tb As Label
  8616. Friend WithEvents 轉薪4_lb As Label
  8617. Friend WithEvents 轉時4_lb As Label
  8618. Friend WithEvents 轉費3_tb As Label
  8619. Friend WithEvents 轉薪3_lb As Label
  8620. Friend WithEvents 轉時3_lb As Label
  8621. Friend WithEvents 轉費2_tb As Label
  8622. Friend WithEvents 轉薪2_lb As Label
  8623. Friend WithEvents 轉時2_lb As Label
  8624. Friend WithEvents 轉費1_tb As Label
  8625. Friend WithEvents Label94 As Label
  8626. Friend WithEvents 轉薪1_lb As Label
  8627. Friend WithEvents 轉時1_lb As Label
  8628. Friend WithEvents Label104 As Label
  8629. Friend WithEvents Label105 As Label
  8630. Friend WithEvents Label108 As Label
  8631. Friend WithEvents 小5_lb As Label
  8632. Friend WithEvents Label107 As Label
  8633. Friend WithEvents 小51_lb As Label
  8634. Friend WithEvents Label110 As Label
  8635. Friend WithEvents SplitContainer81 As SplitContainer
  8636. Friend WithEvents SplitContainer82 As SplitContainer
  8637. Friend WithEvents 實際薪資_tb As TextBox
  8638. Friend WithEvents Label50 As Label
  8639. Friend WithEvents 實際薪資1_tb As TextBox
  8640. Friend WithEvents Label60 As Label
  8641. Friend WithEvents AA剃除_dgv As DataGridView
  8642. Friend WithEvents 扣除狀態_ch As CheckBox
  8643. Friend WithEvents Panel13 As Panel
  8644. Friend WithEvents 轉場存檔_bt As Button
  8645. Friend WithEvents 轉場薪資_tb As TextBox
  8646. Friend WithEvents Label67 As Label
  8647. Friend WithEvents Panel14 As Panel
  8648. End Class