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

排班資料.Designer.vb 206KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047
  1. <Global.Microsoft.VisualBasic.CompilerServices.DesignerGenerated()>
  2. Partial Class 排班資料
  3. Inherits System.Windows.Forms.Form
  4. 'Form 覆寫 Dispose 以清除元件清單。
  5. <System.Diagnostics.DebuggerNonUserCode()>
  6. Protected Overrides Sub Dispose(ByVal disposing As Boolean)
  7. Try
  8. If disposing AndAlso components IsNot Nothing Then
  9. components.Dispose()
  10. End If
  11. Finally
  12. MyBase.Dispose(disposing)
  13. End Try
  14. End Sub
  15. '為 Windows Form 設計工具的必要項
  16. Private components As System.ComponentModel.IContainer
  17. '注意: 以下為 Windows Form 設計工具所需的程序
  18. '可以使用 Windows Form 設計工具進行修改。
  19. '請勿使用程式碼編輯器進行修改。
  20. <System.Diagnostics.DebuggerStepThrough()>
  21. Private Sub InitializeComponent()
  22. Dim DataGridViewCellStyle1 As System.Windows.Forms.DataGridViewCellStyle = New System.Windows.Forms.DataGridViewCellStyle()
  23. Dim DataGridViewCellStyle2 As System.Windows.Forms.DataGridViewCellStyle = New System.Windows.Forms.DataGridViewCellStyle()
  24. Dim DataGridViewCellStyle3 As System.Windows.Forms.DataGridViewCellStyle = New System.Windows.Forms.DataGridViewCellStyle()
  25. Dim DataGridViewCellStyle4 As System.Windows.Forms.DataGridViewCellStyle = New System.Windows.Forms.DataGridViewCellStyle()
  26. Dim DataGridViewCellStyle5 As System.Windows.Forms.DataGridViewCellStyle = New System.Windows.Forms.DataGridViewCellStyle()
  27. Dim DataGridViewCellStyle6 As System.Windows.Forms.DataGridViewCellStyle = New System.Windows.Forms.DataGridViewCellStyle()
  28. Dim DataGridViewCellStyle7 As System.Windows.Forms.DataGridViewCellStyle = New System.Windows.Forms.DataGridViewCellStyle()
  29. Dim DataGridViewCellStyle8 As System.Windows.Forms.DataGridViewCellStyle = New System.Windows.Forms.DataGridViewCellStyle()
  30. Dim DataGridViewCellStyle9 As System.Windows.Forms.DataGridViewCellStyle = New System.Windows.Forms.DataGridViewCellStyle()
  31. Dim DataGridViewCellStyle10 As System.Windows.Forms.DataGridViewCellStyle = New System.Windows.Forms.DataGridViewCellStyle()
  32. Dim DataGridViewCellStyle11 As System.Windows.Forms.DataGridViewCellStyle = New System.Windows.Forms.DataGridViewCellStyle()
  33. Dim DataGridViewCellStyle12 As System.Windows.Forms.DataGridViewCellStyle = New System.Windows.Forms.DataGridViewCellStyle()
  34. Dim DataGridViewCellStyle13 As System.Windows.Forms.DataGridViewCellStyle = New System.Windows.Forms.DataGridViewCellStyle()
  35. Dim DataGridViewCellStyle14 As System.Windows.Forms.DataGridViewCellStyle = New System.Windows.Forms.DataGridViewCellStyle()
  36. Dim DataGridViewCellStyle15 As System.Windows.Forms.DataGridViewCellStyle = New System.Windows.Forms.DataGridViewCellStyle()
  37. Dim DataGridViewCellStyle16 As System.Windows.Forms.DataGridViewCellStyle = New System.Windows.Forms.DataGridViewCellStyle()
  38. Dim DataGridViewCellStyle17 As System.Windows.Forms.DataGridViewCellStyle = New System.Windows.Forms.DataGridViewCellStyle()
  39. Dim DataGridViewCellStyle18 As System.Windows.Forms.DataGridViewCellStyle = New System.Windows.Forms.DataGridViewCellStyle()
  40. Dim DataGridViewCellStyle19 As System.Windows.Forms.DataGridViewCellStyle = New System.Windows.Forms.DataGridViewCellStyle()
  41. Dim DataGridViewCellStyle20 As System.Windows.Forms.DataGridViewCellStyle = New System.Windows.Forms.DataGridViewCellStyle()
  42. Dim DataGridViewCellStyle21 As System.Windows.Forms.DataGridViewCellStyle = New System.Windows.Forms.DataGridViewCellStyle()
  43. Dim DataGridViewCellStyle22 As System.Windows.Forms.DataGridViewCellStyle = New System.Windows.Forms.DataGridViewCellStyle()
  44. Dim DataGridViewCellStyle23 As System.Windows.Forms.DataGridViewCellStyle = New System.Windows.Forms.DataGridViewCellStyle()
  45. Dim DataGridViewCellStyle24 As System.Windows.Forms.DataGridViewCellStyle = New System.Windows.Forms.DataGridViewCellStyle()
  46. Dim DataGridViewCellStyle25 As System.Windows.Forms.DataGridViewCellStyle = New System.Windows.Forms.DataGridViewCellStyle()
  47. Dim DataGridViewCellStyle26 As System.Windows.Forms.DataGridViewCellStyle = New System.Windows.Forms.DataGridViewCellStyle()
  48. Dim DataGridViewCellStyle27 As System.Windows.Forms.DataGridViewCellStyle = New System.Windows.Forms.DataGridViewCellStyle()
  49. Dim DataGridViewCellStyle28 As System.Windows.Forms.DataGridViewCellStyle = New System.Windows.Forms.DataGridViewCellStyle()
  50. Dim DataGridViewCellStyle29 As System.Windows.Forms.DataGridViewCellStyle = New System.Windows.Forms.DataGridViewCellStyle()
  51. Dim DataGridViewCellStyle30 As System.Windows.Forms.DataGridViewCellStyle = New System.Windows.Forms.DataGridViewCellStyle()
  52. Dim DataGridViewCellStyle31 As System.Windows.Forms.DataGridViewCellStyle = New System.Windows.Forms.DataGridViewCellStyle()
  53. Dim DataGridViewCellStyle32 As System.Windows.Forms.DataGridViewCellStyle = New System.Windows.Forms.DataGridViewCellStyle()
  54. Dim DataGridViewCellStyle33 As System.Windows.Forms.DataGridViewCellStyle = New System.Windows.Forms.DataGridViewCellStyle()
  55. Dim DataGridViewCellStyle34 As System.Windows.Forms.DataGridViewCellStyle = New System.Windows.Forms.DataGridViewCellStyle()
  56. Dim DataGridViewCellStyle35 As System.Windows.Forms.DataGridViewCellStyle = New System.Windows.Forms.DataGridViewCellStyle()
  57. Dim DataGridViewCellStyle36 As System.Windows.Forms.DataGridViewCellStyle = New System.Windows.Forms.DataGridViewCellStyle()
  58. Dim DataGridViewCellStyle37 As System.Windows.Forms.DataGridViewCellStyle = New System.Windows.Forms.DataGridViewCellStyle()
  59. Dim DataGridViewCellStyle38 As System.Windows.Forms.DataGridViewCellStyle = New System.Windows.Forms.DataGridViewCellStyle()
  60. Dim DataGridViewCellStyle39 As System.Windows.Forms.DataGridViewCellStyle = New System.Windows.Forms.DataGridViewCellStyle()
  61. Dim DataGridViewCellStyle40 As System.Windows.Forms.DataGridViewCellStyle = New System.Windows.Forms.DataGridViewCellStyle()
  62. Dim DataGridViewCellStyle41 As System.Windows.Forms.DataGridViewCellStyle = New System.Windows.Forms.DataGridViewCellStyle()
  63. Dim DataGridViewCellStyle42 As System.Windows.Forms.DataGridViewCellStyle = New System.Windows.Forms.DataGridViewCellStyle()
  64. Dim DataGridViewCellStyle43 As System.Windows.Forms.DataGridViewCellStyle = New System.Windows.Forms.DataGridViewCellStyle()
  65. Dim DataGridViewCellStyle44 As System.Windows.Forms.DataGridViewCellStyle = New System.Windows.Forms.DataGridViewCellStyle()
  66. Dim DataGridViewCellStyle45 As System.Windows.Forms.DataGridViewCellStyle = New System.Windows.Forms.DataGridViewCellStyle()
  67. Me.Panel1 = New System.Windows.Forms.Panel()
  68. Me.Button1 = New System.Windows.Forms.Button()
  69. Me.DataGridView1 = New System.Windows.Forms.DataGridView()
  70. Me.B01_tb = New System.Windows.Forms.Button()
  71. Me.Label1 = New System.Windows.Forms.Label()
  72. Me.日期_lb1 = New System.Windows.Forms.Label()
  73. Me.Panel2 = New System.Windows.Forms.Panel()
  74. Me.Button2 = New System.Windows.Forms.Button()
  75. Me.DataGridView2 = New System.Windows.Forms.DataGridView()
  76. Me.B02_tb = New System.Windows.Forms.Button()
  77. Me.Label2 = New System.Windows.Forms.Label()
  78. Me.日期_lb2 = New System.Windows.Forms.Label()
  79. Me.Panel3 = New System.Windows.Forms.Panel()
  80. Me.Button3 = New System.Windows.Forms.Button()
  81. Me.DataGridView3 = New System.Windows.Forms.DataGridView()
  82. Me.B03_tb = New System.Windows.Forms.Button()
  83. Me.Label3 = New System.Windows.Forms.Label()
  84. Me.日期_lb3 = New System.Windows.Forms.Label()
  85. Me.Panel4 = New System.Windows.Forms.Panel()
  86. Me.Button4 = New System.Windows.Forms.Button()
  87. Me.DataGridView4 = New System.Windows.Forms.DataGridView()
  88. Me.B04_tb = New System.Windows.Forms.Button()
  89. Me.Label4 = New System.Windows.Forms.Label()
  90. Me.日期_lb4 = New System.Windows.Forms.Label()
  91. Me.Panel5 = New System.Windows.Forms.Panel()
  92. Me.Button5 = New System.Windows.Forms.Button()
  93. Me.DataGridView5 = New System.Windows.Forms.DataGridView()
  94. Me.B05_tb = New System.Windows.Forms.Button()
  95. Me.Label5 = New System.Windows.Forms.Label()
  96. Me.日期_lb5 = New System.Windows.Forms.Label()
  97. Me.Panel6 = New System.Windows.Forms.Panel()
  98. Me.Button6 = New System.Windows.Forms.Button()
  99. Me.DataGridView6 = New System.Windows.Forms.DataGridView()
  100. Me.B06_tb = New System.Windows.Forms.Button()
  101. Me.Label6 = New System.Windows.Forms.Label()
  102. Me.日期_lb6 = New System.Windows.Forms.Label()
  103. Me.Panel7 = New System.Windows.Forms.Panel()
  104. Me.Button7 = New System.Windows.Forms.Button()
  105. Me.DataGridView7 = New System.Windows.Forms.DataGridView()
  106. Me.B07_tb = New System.Windows.Forms.Button()
  107. Me.Label7 = New System.Windows.Forms.Label()
  108. Me.日期_lb7 = New System.Windows.Forms.Label()
  109. Me.Panel8 = New System.Windows.Forms.Panel()
  110. Me.Button8 = New System.Windows.Forms.Button()
  111. Me.DataGridView8 = New System.Windows.Forms.DataGridView()
  112. Me.B08_tb = New System.Windows.Forms.Button()
  113. Me.Label8 = New System.Windows.Forms.Label()
  114. Me.日期_lb8 = New System.Windows.Forms.Label()
  115. Me.Panel9 = New System.Windows.Forms.Panel()
  116. Me.Button9 = New System.Windows.Forms.Button()
  117. Me.DataGridView9 = New System.Windows.Forms.DataGridView()
  118. Me.B09_tb = New System.Windows.Forms.Button()
  119. Me.Label9 = New System.Windows.Forms.Label()
  120. Me.日期_lb9 = New System.Windows.Forms.Label()
  121. Me.Panel10 = New System.Windows.Forms.Panel()
  122. Me.Button10 = New System.Windows.Forms.Button()
  123. Me.DataGridView10 = New System.Windows.Forms.DataGridView()
  124. Me.B10_tb = New System.Windows.Forms.Button()
  125. Me.Label10 = New System.Windows.Forms.Label()
  126. Me.日期_lb10 = New System.Windows.Forms.Label()
  127. Me.Panel11 = New System.Windows.Forms.Panel()
  128. Me.Button11 = New System.Windows.Forms.Button()
  129. Me.DataGridView11 = New System.Windows.Forms.DataGridView()
  130. Me.B11_tb = New System.Windows.Forms.Button()
  131. Me.Label11 = New System.Windows.Forms.Label()
  132. Me.日期_lb11 = New System.Windows.Forms.Label()
  133. Me.Panel12 = New System.Windows.Forms.Panel()
  134. Me.Button12 = New System.Windows.Forms.Button()
  135. Me.DataGridView12 = New System.Windows.Forms.DataGridView()
  136. Me.B12_tb = New System.Windows.Forms.Button()
  137. Me.Label12 = New System.Windows.Forms.Label()
  138. Me.日期_lb12 = New System.Windows.Forms.Label()
  139. Me.Panel13 = New System.Windows.Forms.Panel()
  140. Me.Button13 = New System.Windows.Forms.Button()
  141. Me.DataGridView13 = New System.Windows.Forms.DataGridView()
  142. Me.B13_tb = New System.Windows.Forms.Button()
  143. Me.Label13 = New System.Windows.Forms.Label()
  144. Me.日期_lb13 = New System.Windows.Forms.Label()
  145. Me.Panel14 = New System.Windows.Forms.Panel()
  146. Me.Button14 = New System.Windows.Forms.Button()
  147. Me.DataGridView14 = New System.Windows.Forms.DataGridView()
  148. Me.B14_tb = New System.Windows.Forms.Button()
  149. Me.Label14 = New System.Windows.Forms.Label()
  150. Me.日期_lb14 = New System.Windows.Forms.Label()
  151. Me.Panel15 = New System.Windows.Forms.Panel()
  152. Me.Button15 = New System.Windows.Forms.Button()
  153. Me.DataGridView15 = New System.Windows.Forms.DataGridView()
  154. Me.B15_tb = New System.Windows.Forms.Button()
  155. Me.Label15 = New System.Windows.Forms.Label()
  156. Me.日期_lb15 = New System.Windows.Forms.Label()
  157. Me.Panel16 = New System.Windows.Forms.Panel()
  158. Me.Button16 = New System.Windows.Forms.Button()
  159. Me.DataGridView16 = New System.Windows.Forms.DataGridView()
  160. Me.B16_tb = New System.Windows.Forms.Button()
  161. Me.Label16 = New System.Windows.Forms.Label()
  162. Me.日期_lb16 = New System.Windows.Forms.Label()
  163. Me.Panel17 = New System.Windows.Forms.Panel()
  164. Me.Button17 = New System.Windows.Forms.Button()
  165. Me.DataGridView17 = New System.Windows.Forms.DataGridView()
  166. Me.B17_tb = New System.Windows.Forms.Button()
  167. Me.Label17 = New System.Windows.Forms.Label()
  168. Me.日期_lb17 = New System.Windows.Forms.Label()
  169. Me.Panel18 = New System.Windows.Forms.Panel()
  170. Me.Button18 = New System.Windows.Forms.Button()
  171. Me.DataGridView18 = New System.Windows.Forms.DataGridView()
  172. Me.B18_tb = New System.Windows.Forms.Button()
  173. Me.Label18 = New System.Windows.Forms.Label()
  174. Me.日期_lb18 = New System.Windows.Forms.Label()
  175. Me.Panel19 = New System.Windows.Forms.Panel()
  176. Me.Button19 = New System.Windows.Forms.Button()
  177. Me.DataGridView19 = New System.Windows.Forms.DataGridView()
  178. Me.B19_tb = New System.Windows.Forms.Button()
  179. Me.Label19 = New System.Windows.Forms.Label()
  180. Me.日期_lb19 = New System.Windows.Forms.Label()
  181. Me.Panel20 = New System.Windows.Forms.Panel()
  182. Me.Button20 = New System.Windows.Forms.Button()
  183. Me.DataGridView20 = New System.Windows.Forms.DataGridView()
  184. Me.B20_tb = New System.Windows.Forms.Button()
  185. Me.Label20 = New System.Windows.Forms.Label()
  186. Me.日期_lb20 = New System.Windows.Forms.Label()
  187. Me.Panel21 = New System.Windows.Forms.Panel()
  188. Me.Button21 = New System.Windows.Forms.Button()
  189. Me.DataGridView21 = New System.Windows.Forms.DataGridView()
  190. Me.B21_tb = New System.Windows.Forms.Button()
  191. Me.Label21 = New System.Windows.Forms.Label()
  192. Me.日期_lb21 = New System.Windows.Forms.Label()
  193. Me.Panel22 = New System.Windows.Forms.Panel()
  194. Me.Button22 = New System.Windows.Forms.Button()
  195. Me.DataGridView22 = New System.Windows.Forms.DataGridView()
  196. Me.B22_tb = New System.Windows.Forms.Button()
  197. Me.Label22 = New System.Windows.Forms.Label()
  198. Me.日期_lb22 = New System.Windows.Forms.Label()
  199. Me.Panel23 = New System.Windows.Forms.Panel()
  200. Me.Button23 = New System.Windows.Forms.Button()
  201. Me.DataGridView23 = New System.Windows.Forms.DataGridView()
  202. Me.B23_tb = New System.Windows.Forms.Button()
  203. Me.Label23 = New System.Windows.Forms.Label()
  204. Me.日期_lb23 = New System.Windows.Forms.Label()
  205. Me.Panel24 = New System.Windows.Forms.Panel()
  206. Me.Button24 = New System.Windows.Forms.Button()
  207. Me.DataGridView24 = New System.Windows.Forms.DataGridView()
  208. Me.B24_tb = New System.Windows.Forms.Button()
  209. Me.Label24 = New System.Windows.Forms.Label()
  210. Me.日期_lb24 = New System.Windows.Forms.Label()
  211. Me.Panel25 = New System.Windows.Forms.Panel()
  212. Me.Button25 = New System.Windows.Forms.Button()
  213. Me.DataGridView25 = New System.Windows.Forms.DataGridView()
  214. Me.B25_tb = New System.Windows.Forms.Button()
  215. Me.Label25 = New System.Windows.Forms.Label()
  216. Me.日期_lb25 = New System.Windows.Forms.Label()
  217. Me.Panel26 = New System.Windows.Forms.Panel()
  218. Me.Button26 = New System.Windows.Forms.Button()
  219. Me.DataGridView26 = New System.Windows.Forms.DataGridView()
  220. Me.B26_tb = New System.Windows.Forms.Button()
  221. Me.Label26 = New System.Windows.Forms.Label()
  222. Me.日期_lb26 = New System.Windows.Forms.Label()
  223. Me.Panel27 = New System.Windows.Forms.Panel()
  224. Me.Button27 = New System.Windows.Forms.Button()
  225. Me.DataGridView27 = New System.Windows.Forms.DataGridView()
  226. Me.B27_tb = New System.Windows.Forms.Button()
  227. Me.Label27 = New System.Windows.Forms.Label()
  228. Me.日期_lb27 = New System.Windows.Forms.Label()
  229. Me.Panel28 = New System.Windows.Forms.Panel()
  230. Me.Button28 = New System.Windows.Forms.Button()
  231. Me.DataGridView28 = New System.Windows.Forms.DataGridView()
  232. Me.B28_tb = New System.Windows.Forms.Button()
  233. Me.Label28 = New System.Windows.Forms.Label()
  234. Me.日期_lb28 = New System.Windows.Forms.Label()
  235. Me.Panel29 = New System.Windows.Forms.Panel()
  236. Me.Button29 = New System.Windows.Forms.Button()
  237. Me.DataGridView29 = New System.Windows.Forms.DataGridView()
  238. Me.B29_tb = New System.Windows.Forms.Button()
  239. Me.Label29 = New System.Windows.Forms.Label()
  240. Me.日期_lb29 = New System.Windows.Forms.Label()
  241. Me.Panel30 = New System.Windows.Forms.Panel()
  242. Me.Button30 = New System.Windows.Forms.Button()
  243. Me.DataGridView30 = New System.Windows.Forms.DataGridView()
  244. Me.B30_tb = New System.Windows.Forms.Button()
  245. Me.Label30 = New System.Windows.Forms.Label()
  246. Me.日期_lb30 = New System.Windows.Forms.Label()
  247. Me.Panel31 = New System.Windows.Forms.Panel()
  248. Me.Button31 = New System.Windows.Forms.Button()
  249. Me.DataGridView31 = New System.Windows.Forms.DataGridView()
  250. Me.B31_tb = New System.Windows.Forms.Button()
  251. Me.Label31 = New System.Windows.Forms.Label()
  252. Me.日期_lb31 = New System.Windows.Forms.Label()
  253. Me.Panel32 = New System.Windows.Forms.Panel()
  254. Me.Button32 = New System.Windows.Forms.Button()
  255. Me.DataGridView32 = New System.Windows.Forms.DataGridView()
  256. Me.B32_tb = New System.Windows.Forms.Button()
  257. Me.Label32 = New System.Windows.Forms.Label()
  258. Me.日期_lb32 = New System.Windows.Forms.Label()
  259. Me.Panel33 = New System.Windows.Forms.Panel()
  260. Me.Button33 = New System.Windows.Forms.Button()
  261. Me.DataGridView33 = New System.Windows.Forms.DataGridView()
  262. Me.B33_tb = New System.Windows.Forms.Button()
  263. Me.Label33 = New System.Windows.Forms.Label()
  264. Me.日期_lb33 = New System.Windows.Forms.Label()
  265. Me.Panel34 = New System.Windows.Forms.Panel()
  266. Me.Button34 = New System.Windows.Forms.Button()
  267. Me.DataGridView34 = New System.Windows.Forms.DataGridView()
  268. Me.B34_tb = New System.Windows.Forms.Button()
  269. Me.Label34 = New System.Windows.Forms.Label()
  270. Me.日期_lb34 = New System.Windows.Forms.Label()
  271. Me.Panel35 = New System.Windows.Forms.Panel()
  272. Me.Button35 = New System.Windows.Forms.Button()
  273. Me.DataGridView35 = New System.Windows.Forms.DataGridView()
  274. Me.B35_tb = New System.Windows.Forms.Button()
  275. Me.Label35 = New System.Windows.Forms.Label()
  276. Me.日期_lb35 = New System.Windows.Forms.Label()
  277. Me.Panel36 = New System.Windows.Forms.Panel()
  278. Me.DataGridView36 = New System.Windows.Forms.DataGridView()
  279. Me.B36_tb = New System.Windows.Forms.Button()
  280. Me.Label36 = New System.Windows.Forms.Label()
  281. Me.日期_lb36 = New System.Windows.Forms.Label()
  282. Me.Button36 = New System.Windows.Forms.Button()
  283. Me.Panel37 = New System.Windows.Forms.Panel()
  284. Me.Button37 = New System.Windows.Forms.Button()
  285. Me.DataGridView37 = New System.Windows.Forms.DataGridView()
  286. Me.B37_tb = New System.Windows.Forms.Button()
  287. Me.Label37 = New System.Windows.Forms.Label()
  288. Me.日期_lb37 = New System.Windows.Forms.Label()
  289. Me.Panel38 = New System.Windows.Forms.Panel()
  290. Me.Button38 = New System.Windows.Forms.Button()
  291. Me.DataGridView38 = New System.Windows.Forms.DataGridView()
  292. Me.B38_tb = New System.Windows.Forms.Button()
  293. Me.Label38 = New System.Windows.Forms.Label()
  294. Me.日期_lb38 = New System.Windows.Forms.Label()
  295. Me.Panel39 = New System.Windows.Forms.Panel()
  296. Me.Button39 = New System.Windows.Forms.Button()
  297. Me.DataGridView39 = New System.Windows.Forms.DataGridView()
  298. Me.B39_tb = New System.Windows.Forms.Button()
  299. Me.Label39 = New System.Windows.Forms.Label()
  300. Me.日期_lb39 = New System.Windows.Forms.Label()
  301. Me.Panel40 = New System.Windows.Forms.Panel()
  302. Me.Button40 = New System.Windows.Forms.Button()
  303. Me.DataGridView40 = New System.Windows.Forms.DataGridView()
  304. Me.B40_tb = New System.Windows.Forms.Button()
  305. Me.Label40 = New System.Windows.Forms.Label()
  306. Me.日期_lb40 = New System.Windows.Forms.Label()
  307. Me.Panel41 = New System.Windows.Forms.Panel()
  308. Me.Button41 = New System.Windows.Forms.Button()
  309. Me.DataGridView41 = New System.Windows.Forms.DataGridView()
  310. Me.B41_tb = New System.Windows.Forms.Button()
  311. Me.Label41 = New System.Windows.Forms.Label()
  312. Me.日期_lb41 = New System.Windows.Forms.Label()
  313. Me.Panel42 = New System.Windows.Forms.Panel()
  314. Me.Button42 = New System.Windows.Forms.Button()
  315. Me.DataGridView42 = New System.Windows.Forms.DataGridView()
  316. Me.B42_tb = New System.Windows.Forms.Button()
  317. Me.Label42 = New System.Windows.Forms.Label()
  318. Me.日期_lb42 = New System.Windows.Forms.Label()
  319. Me.星期日_lb = New System.Windows.Forms.Label()
  320. Me.星期一_lb = New System.Windows.Forms.Label()
  321. Me.星期二_lb = New System.Windows.Forms.Label()
  322. Me.星期三_lb = New System.Windows.Forms.Label()
  323. Me.星期四_lb = New System.Windows.Forms.Label()
  324. Me.星期五_lb = New System.Windows.Forms.Label()
  325. Me.星期六_lb = New System.Windows.Forms.Label()
  326. Me.月份_cb = New System.Windows.Forms.ComboBox()
  327. Me.年份_cb = New System.Windows.Forms.ComboBox()
  328. Me.月份_lb = New System.Windows.Forms.Label()
  329. Me.年份_lb = New System.Windows.Forms.Label()
  330. Me.日期_dgv = New System.Windows.Forms.DataGridView()
  331. Me.人員彙總_dgv = New System.Windows.Forms.DataGridView()
  332. Me.醫生_ch = New System.Windows.Forms.CheckBox()
  333. Me.職員_ch = New System.Windows.Forms.CheckBox()
  334. Me.重新讀取_bt = New System.Windows.Forms.Button()
  335. Me.列印_bt = New System.Windows.Forms.Button()
  336. Me.請休假_ch = New System.Windows.Forms.CheckBox()
  337. Me.Panel1.SuspendLayout()
  338. CType(Me.DataGridView1, System.ComponentModel.ISupportInitialize).BeginInit()
  339. Me.Panel2.SuspendLayout()
  340. CType(Me.DataGridView2, System.ComponentModel.ISupportInitialize).BeginInit()
  341. Me.Panel3.SuspendLayout()
  342. CType(Me.DataGridView3, System.ComponentModel.ISupportInitialize).BeginInit()
  343. Me.Panel4.SuspendLayout()
  344. CType(Me.DataGridView4, System.ComponentModel.ISupportInitialize).BeginInit()
  345. Me.Panel5.SuspendLayout()
  346. CType(Me.DataGridView5, System.ComponentModel.ISupportInitialize).BeginInit()
  347. Me.Panel6.SuspendLayout()
  348. CType(Me.DataGridView6, System.ComponentModel.ISupportInitialize).BeginInit()
  349. Me.Panel7.SuspendLayout()
  350. CType(Me.DataGridView7, System.ComponentModel.ISupportInitialize).BeginInit()
  351. Me.Panel8.SuspendLayout()
  352. CType(Me.DataGridView8, System.ComponentModel.ISupportInitialize).BeginInit()
  353. Me.Panel9.SuspendLayout()
  354. CType(Me.DataGridView9, System.ComponentModel.ISupportInitialize).BeginInit()
  355. Me.Panel10.SuspendLayout()
  356. CType(Me.DataGridView10, System.ComponentModel.ISupportInitialize).BeginInit()
  357. Me.Panel11.SuspendLayout()
  358. CType(Me.DataGridView11, System.ComponentModel.ISupportInitialize).BeginInit()
  359. Me.Panel12.SuspendLayout()
  360. CType(Me.DataGridView12, System.ComponentModel.ISupportInitialize).BeginInit()
  361. Me.Panel13.SuspendLayout()
  362. CType(Me.DataGridView13, System.ComponentModel.ISupportInitialize).BeginInit()
  363. Me.Panel14.SuspendLayout()
  364. CType(Me.DataGridView14, System.ComponentModel.ISupportInitialize).BeginInit()
  365. Me.Panel15.SuspendLayout()
  366. CType(Me.DataGridView15, System.ComponentModel.ISupportInitialize).BeginInit()
  367. Me.Panel16.SuspendLayout()
  368. CType(Me.DataGridView16, System.ComponentModel.ISupportInitialize).BeginInit()
  369. Me.Panel17.SuspendLayout()
  370. CType(Me.DataGridView17, System.ComponentModel.ISupportInitialize).BeginInit()
  371. Me.Panel18.SuspendLayout()
  372. CType(Me.DataGridView18, System.ComponentModel.ISupportInitialize).BeginInit()
  373. Me.Panel19.SuspendLayout()
  374. CType(Me.DataGridView19, System.ComponentModel.ISupportInitialize).BeginInit()
  375. Me.Panel20.SuspendLayout()
  376. CType(Me.DataGridView20, System.ComponentModel.ISupportInitialize).BeginInit()
  377. Me.Panel21.SuspendLayout()
  378. CType(Me.DataGridView21, System.ComponentModel.ISupportInitialize).BeginInit()
  379. Me.Panel22.SuspendLayout()
  380. CType(Me.DataGridView22, System.ComponentModel.ISupportInitialize).BeginInit()
  381. Me.Panel23.SuspendLayout()
  382. CType(Me.DataGridView23, System.ComponentModel.ISupportInitialize).BeginInit()
  383. Me.Panel24.SuspendLayout()
  384. CType(Me.DataGridView24, System.ComponentModel.ISupportInitialize).BeginInit()
  385. Me.Panel25.SuspendLayout()
  386. CType(Me.DataGridView25, System.ComponentModel.ISupportInitialize).BeginInit()
  387. Me.Panel26.SuspendLayout()
  388. CType(Me.DataGridView26, System.ComponentModel.ISupportInitialize).BeginInit()
  389. Me.Panel27.SuspendLayout()
  390. CType(Me.DataGridView27, System.ComponentModel.ISupportInitialize).BeginInit()
  391. Me.Panel28.SuspendLayout()
  392. CType(Me.DataGridView28, System.ComponentModel.ISupportInitialize).BeginInit()
  393. Me.Panel29.SuspendLayout()
  394. CType(Me.DataGridView29, System.ComponentModel.ISupportInitialize).BeginInit()
  395. Me.Panel30.SuspendLayout()
  396. CType(Me.DataGridView30, System.ComponentModel.ISupportInitialize).BeginInit()
  397. Me.Panel31.SuspendLayout()
  398. CType(Me.DataGridView31, System.ComponentModel.ISupportInitialize).BeginInit()
  399. Me.Panel32.SuspendLayout()
  400. CType(Me.DataGridView32, System.ComponentModel.ISupportInitialize).BeginInit()
  401. Me.Panel33.SuspendLayout()
  402. CType(Me.DataGridView33, System.ComponentModel.ISupportInitialize).BeginInit()
  403. Me.Panel34.SuspendLayout()
  404. CType(Me.DataGridView34, System.ComponentModel.ISupportInitialize).BeginInit()
  405. Me.Panel35.SuspendLayout()
  406. CType(Me.DataGridView35, System.ComponentModel.ISupportInitialize).BeginInit()
  407. Me.Panel36.SuspendLayout()
  408. CType(Me.DataGridView36, System.ComponentModel.ISupportInitialize).BeginInit()
  409. Me.Panel37.SuspendLayout()
  410. CType(Me.DataGridView37, System.ComponentModel.ISupportInitialize).BeginInit()
  411. Me.Panel38.SuspendLayout()
  412. CType(Me.DataGridView38, System.ComponentModel.ISupportInitialize).BeginInit()
  413. Me.Panel39.SuspendLayout()
  414. CType(Me.DataGridView39, System.ComponentModel.ISupportInitialize).BeginInit()
  415. Me.Panel40.SuspendLayout()
  416. CType(Me.DataGridView40, System.ComponentModel.ISupportInitialize).BeginInit()
  417. Me.Panel41.SuspendLayout()
  418. CType(Me.DataGridView41, System.ComponentModel.ISupportInitialize).BeginInit()
  419. Me.Panel42.SuspendLayout()
  420. CType(Me.DataGridView42, System.ComponentModel.ISupportInitialize).BeginInit()
  421. CType(Me.日期_dgv, System.ComponentModel.ISupportInitialize).BeginInit()
  422. CType(Me.人員彙總_dgv, System.ComponentModel.ISupportInitialize).BeginInit()
  423. Me.SuspendLayout()
  424. '
  425. 'Panel1
  426. '
  427. Me.Panel1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  428. Me.Panel1.Controls.Add(Me.Button1)
  429. Me.Panel1.Controls.Add(Me.DataGridView1)
  430. Me.Panel1.Controls.Add(Me.B01_tb)
  431. Me.Panel1.Controls.Add(Me.Label1)
  432. Me.Panel1.Controls.Add(Me.日期_lb1)
  433. Me.Panel1.ForeColor = System.Drawing.Color.Red
  434. Me.Panel1.Location = New System.Drawing.Point(340, 30)
  435. Me.Panel1.Name = "Panel1"
  436. Me.Panel1.Size = New System.Drawing.Size(220, 155)
  437. Me.Panel1.TabIndex = 0
  438. '
  439. 'Button1
  440. '
  441. Me.Button1.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  442. Me.Button1.Location = New System.Drawing.Point(129, -1)
  443. Me.Button1.Name = "Button1"
  444. Me.Button1.Size = New System.Drawing.Size(40, 23)
  445. Me.Button1.TabIndex = 702
  446. Me.Button1.Text = "參考"
  447. Me.Button1.UseVisualStyleBackColor = True
  448. '
  449. 'DataGridView1
  450. '
  451. DataGridViewCellStyle1.BackColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(255, Byte), Integer), CType(CType(192, Byte), Integer))
  452. Me.DataGridView1.AlternatingRowsDefaultCellStyle = DataGridViewCellStyle1
  453. Me.DataGridView1.Anchor = CType((((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
  454. Or System.Windows.Forms.AnchorStyles.Left) _
  455. Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  456. Me.DataGridView1.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill
  457. Me.DataGridView1.BackgroundColor = System.Drawing.Color.White
  458. Me.DataGridView1.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize
  459. Me.DataGridView1.Location = New System.Drawing.Point(-1, 22)
  460. Me.DataGridView1.Name = "DataGridView1"
  461. Me.DataGridView1.RowHeadersWidth = 5
  462. Me.DataGridView1.RowTemplate.Height = 24
  463. Me.DataGridView1.Size = New System.Drawing.Size(220, 132)
  464. Me.DataGridView1.TabIndex = 701
  465. '
  466. 'B01_tb
  467. '
  468. Me.B01_tb.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  469. Me.B01_tb.Location = New System.Drawing.Point(175, -1)
  470. Me.B01_tb.Name = "B01_tb"
  471. Me.B01_tb.Size = New System.Drawing.Size(40, 23)
  472. Me.B01_tb.TabIndex = 65
  473. Me.B01_tb.Text = "明細"
  474. Me.B01_tb.UseVisualStyleBackColor = True
  475. '
  476. 'Label1
  477. '
  478. Me.Label1.AutoSize = True
  479. Me.Label1.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  480. Me.Label1.Location = New System.Drawing.Point(33, 1)
  481. Me.Label1.Name = "Label1"
  482. Me.Label1.Size = New System.Drawing.Size(26, 17)
  483. Me.Label1.TabIndex = 40
  484. Me.Label1.Text = "XX"
  485. '
  486. '日期_lb1
  487. '
  488. Me.日期_lb1.AutoSize = True
  489. Me.日期_lb1.Font = New System.Drawing.Font("微軟正黑體", 15.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  490. Me.日期_lb1.Location = New System.Drawing.Point(3, -2)
  491. Me.日期_lb1.Name = "日期_lb1"
  492. Me.日期_lb1.Size = New System.Drawing.Size(38, 26)
  493. Me.日期_lb1.TabIndex = 39
  494. Me.日期_lb1.Text = "00"
  495. '
  496. 'Panel2
  497. '
  498. Me.Panel2.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  499. Me.Panel2.Controls.Add(Me.Button2)
  500. Me.Panel2.Controls.Add(Me.DataGridView2)
  501. Me.Panel2.Controls.Add(Me.B02_tb)
  502. Me.Panel2.Controls.Add(Me.Label2)
  503. Me.Panel2.Controls.Add(Me.日期_lb2)
  504. Me.Panel2.Location = New System.Drawing.Point(559, 30)
  505. Me.Panel2.Name = "Panel2"
  506. Me.Panel2.Size = New System.Drawing.Size(220, 155)
  507. Me.Panel2.TabIndex = 1
  508. '
  509. 'Button2
  510. '
  511. Me.Button2.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  512. Me.Button2.Location = New System.Drawing.Point(129, -1)
  513. Me.Button2.Name = "Button2"
  514. Me.Button2.Size = New System.Drawing.Size(40, 23)
  515. Me.Button2.TabIndex = 703
  516. Me.Button2.Text = "參考"
  517. Me.Button2.UseVisualStyleBackColor = True
  518. '
  519. 'DataGridView2
  520. '
  521. DataGridViewCellStyle2.BackColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(255, Byte), Integer), CType(CType(192, Byte), Integer))
  522. Me.DataGridView2.AlternatingRowsDefaultCellStyle = DataGridViewCellStyle2
  523. Me.DataGridView2.Anchor = CType((((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
  524. Or System.Windows.Forms.AnchorStyles.Left) _
  525. Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  526. Me.DataGridView2.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill
  527. Me.DataGridView2.BackgroundColor = System.Drawing.Color.White
  528. Me.DataGridView2.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize
  529. Me.DataGridView2.Location = New System.Drawing.Point(-1, 22)
  530. Me.DataGridView2.Name = "DataGridView2"
  531. Me.DataGridView2.RowHeadersWidth = 5
  532. Me.DataGridView2.RowTemplate.Height = 24
  533. Me.DataGridView2.Size = New System.Drawing.Size(220, 132)
  534. Me.DataGridView2.TabIndex = 702
  535. '
  536. 'B02_tb
  537. '
  538. Me.B02_tb.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  539. Me.B02_tb.Location = New System.Drawing.Point(175, -1)
  540. Me.B02_tb.Name = "B02_tb"
  541. Me.B02_tb.Size = New System.Drawing.Size(40, 23)
  542. Me.B02_tb.TabIndex = 65
  543. Me.B02_tb.Text = "明細"
  544. Me.B02_tb.UseVisualStyleBackColor = True
  545. '
  546. 'Label2
  547. '
  548. Me.Label2.AutoSize = True
  549. Me.Label2.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  550. Me.Label2.Location = New System.Drawing.Point(33, 1)
  551. Me.Label2.Name = "Label2"
  552. Me.Label2.Size = New System.Drawing.Size(26, 17)
  553. Me.Label2.TabIndex = 41
  554. Me.Label2.Text = "XX"
  555. '
  556. '日期_lb2
  557. '
  558. Me.日期_lb2.AutoSize = True
  559. Me.日期_lb2.Font = New System.Drawing.Font("微軟正黑體", 15.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  560. Me.日期_lb2.Location = New System.Drawing.Point(3, -2)
  561. Me.日期_lb2.Name = "日期_lb2"
  562. Me.日期_lb2.Size = New System.Drawing.Size(38, 26)
  563. Me.日期_lb2.TabIndex = 40
  564. Me.日期_lb2.Text = "00"
  565. '
  566. 'Panel3
  567. '
  568. Me.Panel3.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  569. Me.Panel3.Controls.Add(Me.Button3)
  570. Me.Panel3.Controls.Add(Me.DataGridView3)
  571. Me.Panel3.Controls.Add(Me.B03_tb)
  572. Me.Panel3.Controls.Add(Me.Label3)
  573. Me.Panel3.Controls.Add(Me.日期_lb3)
  574. Me.Panel3.Location = New System.Drawing.Point(778, 30)
  575. Me.Panel3.Name = "Panel3"
  576. Me.Panel3.Size = New System.Drawing.Size(220, 155)
  577. Me.Panel3.TabIndex = 1
  578. '
  579. 'Button3
  580. '
  581. Me.Button3.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  582. Me.Button3.Location = New System.Drawing.Point(129, -1)
  583. Me.Button3.Name = "Button3"
  584. Me.Button3.Size = New System.Drawing.Size(40, 23)
  585. Me.Button3.TabIndex = 704
  586. Me.Button3.Text = "參考"
  587. Me.Button3.UseVisualStyleBackColor = True
  588. '
  589. 'DataGridView3
  590. '
  591. DataGridViewCellStyle3.BackColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(255, Byte), Integer), CType(CType(192, Byte), Integer))
  592. Me.DataGridView3.AlternatingRowsDefaultCellStyle = DataGridViewCellStyle3
  593. Me.DataGridView3.Anchor = CType((((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
  594. Or System.Windows.Forms.AnchorStyles.Left) _
  595. Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  596. Me.DataGridView3.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill
  597. Me.DataGridView3.BackgroundColor = System.Drawing.Color.White
  598. Me.DataGridView3.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize
  599. Me.DataGridView3.Location = New System.Drawing.Point(-1, 22)
  600. Me.DataGridView3.Name = "DataGridView3"
  601. Me.DataGridView3.RowHeadersWidth = 5
  602. Me.DataGridView3.RowTemplate.Height = 24
  603. Me.DataGridView3.Size = New System.Drawing.Size(220, 132)
  604. Me.DataGridView3.TabIndex = 702
  605. '
  606. 'B03_tb
  607. '
  608. Me.B03_tb.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  609. Me.B03_tb.Location = New System.Drawing.Point(175, -1)
  610. Me.B03_tb.Name = "B03_tb"
  611. Me.B03_tb.Size = New System.Drawing.Size(40, 23)
  612. Me.B03_tb.TabIndex = 67
  613. Me.B03_tb.Text = "明細"
  614. Me.B03_tb.UseVisualStyleBackColor = True
  615. '
  616. 'Label3
  617. '
  618. Me.Label3.AutoSize = True
  619. Me.Label3.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  620. Me.Label3.Location = New System.Drawing.Point(33, 1)
  621. Me.Label3.Name = "Label3"
  622. Me.Label3.Size = New System.Drawing.Size(26, 17)
  623. Me.Label3.TabIndex = 42
  624. Me.Label3.Text = "XX"
  625. '
  626. '日期_lb3
  627. '
  628. Me.日期_lb3.AutoSize = True
  629. Me.日期_lb3.Font = New System.Drawing.Font("微軟正黑體", 15.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  630. Me.日期_lb3.Location = New System.Drawing.Point(3, -2)
  631. Me.日期_lb3.Name = "日期_lb3"
  632. Me.日期_lb3.Size = New System.Drawing.Size(38, 26)
  633. Me.日期_lb3.TabIndex = 41
  634. Me.日期_lb3.Text = "00"
  635. '
  636. 'Panel4
  637. '
  638. Me.Panel4.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  639. Me.Panel4.Controls.Add(Me.Button4)
  640. Me.Panel4.Controls.Add(Me.DataGridView4)
  641. Me.Panel4.Controls.Add(Me.B04_tb)
  642. Me.Panel4.Controls.Add(Me.Label4)
  643. Me.Panel4.Controls.Add(Me.日期_lb4)
  644. Me.Panel4.Location = New System.Drawing.Point(997, 30)
  645. Me.Panel4.Name = "Panel4"
  646. Me.Panel4.Size = New System.Drawing.Size(220, 155)
  647. Me.Panel4.TabIndex = 2
  648. '
  649. 'Button4
  650. '
  651. Me.Button4.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  652. Me.Button4.Location = New System.Drawing.Point(129, -1)
  653. Me.Button4.Name = "Button4"
  654. Me.Button4.Size = New System.Drawing.Size(40, 23)
  655. Me.Button4.TabIndex = 704
  656. Me.Button4.Text = "參考"
  657. Me.Button4.UseVisualStyleBackColor = True
  658. '
  659. 'DataGridView4
  660. '
  661. DataGridViewCellStyle4.BackColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(255, Byte), Integer), CType(CType(192, Byte), Integer))
  662. Me.DataGridView4.AlternatingRowsDefaultCellStyle = DataGridViewCellStyle4
  663. Me.DataGridView4.Anchor = CType((((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
  664. Or System.Windows.Forms.AnchorStyles.Left) _
  665. Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  666. Me.DataGridView4.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill
  667. Me.DataGridView4.BackgroundColor = System.Drawing.Color.White
  668. Me.DataGridView4.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize
  669. Me.DataGridView4.Location = New System.Drawing.Point(-1, 22)
  670. Me.DataGridView4.Name = "DataGridView4"
  671. Me.DataGridView4.RowHeadersWidth = 5
  672. Me.DataGridView4.RowTemplate.Height = 24
  673. Me.DataGridView4.Size = New System.Drawing.Size(220, 132)
  674. Me.DataGridView4.TabIndex = 702
  675. '
  676. 'B04_tb
  677. '
  678. Me.B04_tb.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  679. Me.B04_tb.Location = New System.Drawing.Point(175, -1)
  680. Me.B04_tb.Name = "B04_tb"
  681. Me.B04_tb.Size = New System.Drawing.Size(40, 23)
  682. Me.B04_tb.TabIndex = 68
  683. Me.B04_tb.Text = "明細"
  684. Me.B04_tb.UseVisualStyleBackColor = True
  685. '
  686. 'Label4
  687. '
  688. Me.Label4.AutoSize = True
  689. Me.Label4.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  690. Me.Label4.Location = New System.Drawing.Point(33, 1)
  691. Me.Label4.Name = "Label4"
  692. Me.Label4.Size = New System.Drawing.Size(26, 17)
  693. Me.Label4.TabIndex = 43
  694. Me.Label4.Text = "XX"
  695. '
  696. '日期_lb4
  697. '
  698. Me.日期_lb4.AutoSize = True
  699. Me.日期_lb4.Font = New System.Drawing.Font("微軟正黑體", 15.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  700. Me.日期_lb4.Location = New System.Drawing.Point(3, -2)
  701. Me.日期_lb4.Name = "日期_lb4"
  702. Me.日期_lb4.Size = New System.Drawing.Size(38, 26)
  703. Me.日期_lb4.TabIndex = 42
  704. Me.日期_lb4.Text = "00"
  705. '
  706. 'Panel5
  707. '
  708. Me.Panel5.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  709. Me.Panel5.Controls.Add(Me.Button5)
  710. Me.Panel5.Controls.Add(Me.DataGridView5)
  711. Me.Panel5.Controls.Add(Me.B05_tb)
  712. Me.Panel5.Controls.Add(Me.Label5)
  713. Me.Panel5.Controls.Add(Me.日期_lb5)
  714. Me.Panel5.Location = New System.Drawing.Point(1216, 30)
  715. Me.Panel5.Name = "Panel5"
  716. Me.Panel5.Size = New System.Drawing.Size(220, 155)
  717. Me.Panel5.TabIndex = 1
  718. '
  719. 'Button5
  720. '
  721. Me.Button5.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  722. Me.Button5.Location = New System.Drawing.Point(129, -2)
  723. Me.Button5.Name = "Button5"
  724. Me.Button5.Size = New System.Drawing.Size(40, 23)
  725. Me.Button5.TabIndex = 704
  726. Me.Button5.Text = "參考"
  727. Me.Button5.UseVisualStyleBackColor = True
  728. '
  729. 'DataGridView5
  730. '
  731. DataGridViewCellStyle5.BackColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(255, Byte), Integer), CType(CType(192, Byte), Integer))
  732. Me.DataGridView5.AlternatingRowsDefaultCellStyle = DataGridViewCellStyle5
  733. Me.DataGridView5.Anchor = CType((((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
  734. Or System.Windows.Forms.AnchorStyles.Left) _
  735. Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  736. Me.DataGridView5.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill
  737. Me.DataGridView5.BackgroundColor = System.Drawing.Color.White
  738. Me.DataGridView5.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize
  739. Me.DataGridView5.Location = New System.Drawing.Point(-1, 22)
  740. Me.DataGridView5.Name = "DataGridView5"
  741. Me.DataGridView5.RowHeadersWidth = 5
  742. Me.DataGridView5.RowTemplate.Height = 24
  743. Me.DataGridView5.Size = New System.Drawing.Size(220, 132)
  744. Me.DataGridView5.TabIndex = 702
  745. '
  746. 'B05_tb
  747. '
  748. Me.B05_tb.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  749. Me.B05_tb.Location = New System.Drawing.Point(175, -1)
  750. Me.B05_tb.Name = "B05_tb"
  751. Me.B05_tb.Size = New System.Drawing.Size(40, 23)
  752. Me.B05_tb.TabIndex = 65
  753. Me.B05_tb.Text = "明細"
  754. Me.B05_tb.UseVisualStyleBackColor = True
  755. '
  756. 'Label5
  757. '
  758. Me.Label5.AutoSize = True
  759. Me.Label5.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  760. Me.Label5.Location = New System.Drawing.Point(33, 1)
  761. Me.Label5.Name = "Label5"
  762. Me.Label5.Size = New System.Drawing.Size(26, 17)
  763. Me.Label5.TabIndex = 44
  764. Me.Label5.Text = "XX"
  765. '
  766. '日期_lb5
  767. '
  768. Me.日期_lb5.AutoSize = True
  769. Me.日期_lb5.Font = New System.Drawing.Font("微軟正黑體", 15.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  770. Me.日期_lb5.Location = New System.Drawing.Point(3, -2)
  771. Me.日期_lb5.Name = "日期_lb5"
  772. Me.日期_lb5.Size = New System.Drawing.Size(38, 26)
  773. Me.日期_lb5.TabIndex = 43
  774. Me.日期_lb5.Text = "00"
  775. '
  776. 'Panel6
  777. '
  778. Me.Panel6.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  779. Me.Panel6.Controls.Add(Me.Button6)
  780. Me.Panel6.Controls.Add(Me.DataGridView6)
  781. Me.Panel6.Controls.Add(Me.B06_tb)
  782. Me.Panel6.Controls.Add(Me.Label6)
  783. Me.Panel6.Controls.Add(Me.日期_lb6)
  784. Me.Panel6.Location = New System.Drawing.Point(1435, 30)
  785. Me.Panel6.Name = "Panel6"
  786. Me.Panel6.Size = New System.Drawing.Size(220, 155)
  787. Me.Panel6.TabIndex = 3
  788. '
  789. 'Button6
  790. '
  791. Me.Button6.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  792. Me.Button6.Location = New System.Drawing.Point(129, -1)
  793. Me.Button6.Name = "Button6"
  794. Me.Button6.Size = New System.Drawing.Size(40, 23)
  795. Me.Button6.TabIndex = 704
  796. Me.Button6.Text = "參考"
  797. Me.Button6.UseVisualStyleBackColor = True
  798. '
  799. 'DataGridView6
  800. '
  801. DataGridViewCellStyle6.BackColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(255, Byte), Integer), CType(CType(192, Byte), Integer))
  802. Me.DataGridView6.AlternatingRowsDefaultCellStyle = DataGridViewCellStyle6
  803. Me.DataGridView6.Anchor = CType((((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
  804. Or System.Windows.Forms.AnchorStyles.Left) _
  805. Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  806. Me.DataGridView6.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill
  807. Me.DataGridView6.BackgroundColor = System.Drawing.Color.White
  808. Me.DataGridView6.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize
  809. Me.DataGridView6.Location = New System.Drawing.Point(-1, 22)
  810. Me.DataGridView6.Name = "DataGridView6"
  811. Me.DataGridView6.RowHeadersWidth = 5
  812. Me.DataGridView6.RowTemplate.Height = 24
  813. Me.DataGridView6.Size = New System.Drawing.Size(220, 132)
  814. Me.DataGridView6.TabIndex = 702
  815. '
  816. 'B06_tb
  817. '
  818. Me.B06_tb.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  819. Me.B06_tb.Location = New System.Drawing.Point(175, -1)
  820. Me.B06_tb.Name = "B06_tb"
  821. Me.B06_tb.Size = New System.Drawing.Size(40, 23)
  822. Me.B06_tb.TabIndex = 65
  823. Me.B06_tb.Text = "明細"
  824. Me.B06_tb.UseVisualStyleBackColor = True
  825. '
  826. 'Label6
  827. '
  828. Me.Label6.AutoSize = True
  829. Me.Label6.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  830. Me.Label6.Location = New System.Drawing.Point(33, 1)
  831. Me.Label6.Name = "Label6"
  832. Me.Label6.Size = New System.Drawing.Size(26, 17)
  833. Me.Label6.TabIndex = 45
  834. Me.Label6.Text = "XX"
  835. '
  836. '日期_lb6
  837. '
  838. Me.日期_lb6.AutoSize = True
  839. Me.日期_lb6.Font = New System.Drawing.Font("微軟正黑體", 15.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  840. Me.日期_lb6.Location = New System.Drawing.Point(3, -2)
  841. Me.日期_lb6.Name = "日期_lb6"
  842. Me.日期_lb6.Size = New System.Drawing.Size(38, 26)
  843. Me.日期_lb6.TabIndex = 44
  844. Me.日期_lb6.Text = "00"
  845. '
  846. 'Panel7
  847. '
  848. Me.Panel7.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  849. Me.Panel7.Controls.Add(Me.Button7)
  850. Me.Panel7.Controls.Add(Me.DataGridView7)
  851. Me.Panel7.Controls.Add(Me.B07_tb)
  852. Me.Panel7.Controls.Add(Me.Label7)
  853. Me.Panel7.Controls.Add(Me.日期_lb7)
  854. Me.Panel7.ForeColor = System.Drawing.Color.Green
  855. Me.Panel7.Location = New System.Drawing.Point(1654, 30)
  856. Me.Panel7.Name = "Panel7"
  857. Me.Panel7.Size = New System.Drawing.Size(220, 155)
  858. Me.Panel7.TabIndex = 4
  859. '
  860. 'Button7
  861. '
  862. Me.Button7.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  863. Me.Button7.Location = New System.Drawing.Point(129, -2)
  864. Me.Button7.Name = "Button7"
  865. Me.Button7.Size = New System.Drawing.Size(40, 23)
  866. Me.Button7.TabIndex = 704
  867. Me.Button7.Text = "參考"
  868. Me.Button7.UseVisualStyleBackColor = True
  869. '
  870. 'DataGridView7
  871. '
  872. DataGridViewCellStyle7.BackColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(255, Byte), Integer), CType(CType(192, Byte), Integer))
  873. Me.DataGridView7.AlternatingRowsDefaultCellStyle = DataGridViewCellStyle7
  874. Me.DataGridView7.Anchor = CType((((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
  875. Or System.Windows.Forms.AnchorStyles.Left) _
  876. Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  877. Me.DataGridView7.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill
  878. Me.DataGridView7.BackgroundColor = System.Drawing.Color.White
  879. Me.DataGridView7.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize
  880. Me.DataGridView7.Location = New System.Drawing.Point(-1, 22)
  881. Me.DataGridView7.Name = "DataGridView7"
  882. Me.DataGridView7.RowHeadersWidth = 5
  883. Me.DataGridView7.RowTemplate.Height = 24
  884. Me.DataGridView7.Size = New System.Drawing.Size(220, 132)
  885. Me.DataGridView7.TabIndex = 702
  886. '
  887. 'B07_tb
  888. '
  889. Me.B07_tb.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  890. Me.B07_tb.Location = New System.Drawing.Point(175, -1)
  891. Me.B07_tb.Name = "B07_tb"
  892. Me.B07_tb.Size = New System.Drawing.Size(40, 23)
  893. Me.B07_tb.TabIndex = 65
  894. Me.B07_tb.Text = "明細"
  895. Me.B07_tb.UseVisualStyleBackColor = True
  896. '
  897. 'Label7
  898. '
  899. Me.Label7.AutoSize = True
  900. Me.Label7.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  901. Me.Label7.Location = New System.Drawing.Point(33, 1)
  902. Me.Label7.Name = "Label7"
  903. Me.Label7.Size = New System.Drawing.Size(26, 17)
  904. Me.Label7.TabIndex = 46
  905. Me.Label7.Text = "XX"
  906. '
  907. '日期_lb7
  908. '
  909. Me.日期_lb7.AutoSize = True
  910. Me.日期_lb7.Font = New System.Drawing.Font("微軟正黑體", 15.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  911. Me.日期_lb7.Location = New System.Drawing.Point(3, -2)
  912. Me.日期_lb7.Name = "日期_lb7"
  913. Me.日期_lb7.Size = New System.Drawing.Size(38, 26)
  914. Me.日期_lb7.TabIndex = 45
  915. Me.日期_lb7.Text = "00"
  916. '
  917. 'Panel8
  918. '
  919. Me.Panel8.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  920. Me.Panel8.Controls.Add(Me.Button8)
  921. Me.Panel8.Controls.Add(Me.DataGridView8)
  922. Me.Panel8.Controls.Add(Me.B08_tb)
  923. Me.Panel8.Controls.Add(Me.Label8)
  924. Me.Panel8.Controls.Add(Me.日期_lb8)
  925. Me.Panel8.ForeColor = System.Drawing.Color.Red
  926. Me.Panel8.Location = New System.Drawing.Point(340, 184)
  927. Me.Panel8.Name = "Panel8"
  928. Me.Panel8.Size = New System.Drawing.Size(220, 155)
  929. Me.Panel8.TabIndex = 5
  930. '
  931. 'Button8
  932. '
  933. Me.Button8.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  934. Me.Button8.Location = New System.Drawing.Point(129, -1)
  935. Me.Button8.Name = "Button8"
  936. Me.Button8.Size = New System.Drawing.Size(40, 23)
  937. Me.Button8.TabIndex = 704
  938. Me.Button8.Text = "參考"
  939. Me.Button8.UseVisualStyleBackColor = True
  940. '
  941. 'DataGridView8
  942. '
  943. DataGridViewCellStyle8.BackColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(255, Byte), Integer), CType(CType(192, Byte), Integer))
  944. Me.DataGridView8.AlternatingRowsDefaultCellStyle = DataGridViewCellStyle8
  945. Me.DataGridView8.Anchor = CType((((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
  946. Or System.Windows.Forms.AnchorStyles.Left) _
  947. Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  948. Me.DataGridView8.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill
  949. Me.DataGridView8.BackgroundColor = System.Drawing.Color.White
  950. Me.DataGridView8.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize
  951. Me.DataGridView8.Location = New System.Drawing.Point(-1, 22)
  952. Me.DataGridView8.Name = "DataGridView8"
  953. Me.DataGridView8.RowHeadersWidth = 5
  954. Me.DataGridView8.RowTemplate.Height = 24
  955. Me.DataGridView8.Size = New System.Drawing.Size(220, 132)
  956. Me.DataGridView8.TabIndex = 702
  957. '
  958. 'B08_tb
  959. '
  960. Me.B08_tb.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  961. Me.B08_tb.Location = New System.Drawing.Point(175, -1)
  962. Me.B08_tb.Name = "B08_tb"
  963. Me.B08_tb.Size = New System.Drawing.Size(40, 23)
  964. Me.B08_tb.TabIndex = 66
  965. Me.B08_tb.Text = "明細"
  966. Me.B08_tb.UseVisualStyleBackColor = True
  967. '
  968. 'Label8
  969. '
  970. Me.Label8.AutoSize = True
  971. Me.Label8.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  972. Me.Label8.Location = New System.Drawing.Point(33, 2)
  973. Me.Label8.Name = "Label8"
  974. Me.Label8.Size = New System.Drawing.Size(26, 17)
  975. Me.Label8.TabIndex = 47
  976. Me.Label8.Text = "XX"
  977. '
  978. '日期_lb8
  979. '
  980. Me.日期_lb8.AutoSize = True
  981. Me.日期_lb8.Font = New System.Drawing.Font("微軟正黑體", 15.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  982. Me.日期_lb8.Location = New System.Drawing.Point(3, -1)
  983. Me.日期_lb8.Name = "日期_lb8"
  984. Me.日期_lb8.Size = New System.Drawing.Size(38, 26)
  985. Me.日期_lb8.TabIndex = 46
  986. Me.日期_lb8.Text = "00"
  987. '
  988. 'Panel9
  989. '
  990. Me.Panel9.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  991. Me.Panel9.Controls.Add(Me.Button9)
  992. Me.Panel9.Controls.Add(Me.DataGridView9)
  993. Me.Panel9.Controls.Add(Me.B09_tb)
  994. Me.Panel9.Controls.Add(Me.Label9)
  995. Me.Panel9.Controls.Add(Me.日期_lb9)
  996. Me.Panel9.Location = New System.Drawing.Point(559, 184)
  997. Me.Panel9.Name = "Panel9"
  998. Me.Panel9.Size = New System.Drawing.Size(220, 155)
  999. Me.Panel9.TabIndex = 6
  1000. '
  1001. 'Button9
  1002. '
  1003. Me.Button9.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  1004. Me.Button9.Location = New System.Drawing.Point(129, -1)
  1005. Me.Button9.Name = "Button9"
  1006. Me.Button9.Size = New System.Drawing.Size(40, 23)
  1007. Me.Button9.TabIndex = 704
  1008. Me.Button9.Text = "參考"
  1009. Me.Button9.UseVisualStyleBackColor = True
  1010. '
  1011. 'DataGridView9
  1012. '
  1013. DataGridViewCellStyle9.BackColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(255, Byte), Integer), CType(CType(192, Byte), Integer))
  1014. Me.DataGridView9.AlternatingRowsDefaultCellStyle = DataGridViewCellStyle9
  1015. Me.DataGridView9.Anchor = CType((((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
  1016. Or System.Windows.Forms.AnchorStyles.Left) _
  1017. Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  1018. Me.DataGridView9.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill
  1019. Me.DataGridView9.BackgroundColor = System.Drawing.Color.White
  1020. Me.DataGridView9.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize
  1021. Me.DataGridView9.Location = New System.Drawing.Point(-1, 22)
  1022. Me.DataGridView9.Name = "DataGridView9"
  1023. Me.DataGridView9.RowHeadersWidth = 5
  1024. Me.DataGridView9.RowTemplate.Height = 24
  1025. Me.DataGridView9.Size = New System.Drawing.Size(220, 132)
  1026. Me.DataGridView9.TabIndex = 702
  1027. '
  1028. 'B09_tb
  1029. '
  1030. Me.B09_tb.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  1031. Me.B09_tb.Location = New System.Drawing.Point(175, -1)
  1032. Me.B09_tb.Name = "B09_tb"
  1033. Me.B09_tb.Size = New System.Drawing.Size(40, 23)
  1034. Me.B09_tb.TabIndex = 66
  1035. Me.B09_tb.Text = "明細"
  1036. Me.B09_tb.UseVisualStyleBackColor = True
  1037. '
  1038. 'Label9
  1039. '
  1040. Me.Label9.AutoSize = True
  1041. Me.Label9.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1042. Me.Label9.Location = New System.Drawing.Point(33, 2)
  1043. Me.Label9.Name = "Label9"
  1044. Me.Label9.Size = New System.Drawing.Size(26, 17)
  1045. Me.Label9.TabIndex = 48
  1046. Me.Label9.Text = "XX"
  1047. '
  1048. '日期_lb9
  1049. '
  1050. Me.日期_lb9.AutoSize = True
  1051. Me.日期_lb9.Font = New System.Drawing.Font("微軟正黑體", 15.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1052. Me.日期_lb9.Location = New System.Drawing.Point(3, -1)
  1053. Me.日期_lb9.Name = "日期_lb9"
  1054. Me.日期_lb9.Size = New System.Drawing.Size(38, 26)
  1055. Me.日期_lb9.TabIndex = 47
  1056. Me.日期_lb9.Text = "00"
  1057. '
  1058. 'Panel10
  1059. '
  1060. Me.Panel10.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  1061. Me.Panel10.Controls.Add(Me.Button10)
  1062. Me.Panel10.Controls.Add(Me.DataGridView10)
  1063. Me.Panel10.Controls.Add(Me.B10_tb)
  1064. Me.Panel10.Controls.Add(Me.Label10)
  1065. Me.Panel10.Controls.Add(Me.日期_lb10)
  1066. Me.Panel10.Location = New System.Drawing.Point(778, 184)
  1067. Me.Panel10.Name = "Panel10"
  1068. Me.Panel10.Size = New System.Drawing.Size(220, 155)
  1069. Me.Panel10.TabIndex = 7
  1070. '
  1071. 'Button10
  1072. '
  1073. Me.Button10.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  1074. Me.Button10.Location = New System.Drawing.Point(129, -1)
  1075. Me.Button10.Name = "Button10"
  1076. Me.Button10.Size = New System.Drawing.Size(40, 23)
  1077. Me.Button10.TabIndex = 705
  1078. Me.Button10.Text = "參考"
  1079. Me.Button10.UseVisualStyleBackColor = True
  1080. '
  1081. 'DataGridView10
  1082. '
  1083. DataGridViewCellStyle10.BackColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(255, Byte), Integer), CType(CType(192, Byte), Integer))
  1084. Me.DataGridView10.AlternatingRowsDefaultCellStyle = DataGridViewCellStyle10
  1085. Me.DataGridView10.Anchor = CType((((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
  1086. Or System.Windows.Forms.AnchorStyles.Left) _
  1087. Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  1088. Me.DataGridView10.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill
  1089. Me.DataGridView10.BackgroundColor = System.Drawing.Color.White
  1090. Me.DataGridView10.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize
  1091. Me.DataGridView10.Location = New System.Drawing.Point(-1, 22)
  1092. Me.DataGridView10.Name = "DataGridView10"
  1093. Me.DataGridView10.RowHeadersWidth = 5
  1094. Me.DataGridView10.RowTemplate.Height = 24
  1095. Me.DataGridView10.Size = New System.Drawing.Size(220, 132)
  1096. Me.DataGridView10.TabIndex = 702
  1097. '
  1098. 'B10_tb
  1099. '
  1100. Me.B10_tb.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  1101. Me.B10_tb.Location = New System.Drawing.Point(175, -1)
  1102. Me.B10_tb.Name = "B10_tb"
  1103. Me.B10_tb.Size = New System.Drawing.Size(40, 23)
  1104. Me.B10_tb.TabIndex = 64
  1105. Me.B10_tb.Text = "明細"
  1106. Me.B10_tb.UseVisualStyleBackColor = True
  1107. '
  1108. 'Label10
  1109. '
  1110. Me.Label10.AutoSize = True
  1111. Me.Label10.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1112. Me.Label10.Location = New System.Drawing.Point(33, 2)
  1113. Me.Label10.Name = "Label10"
  1114. Me.Label10.Size = New System.Drawing.Size(26, 17)
  1115. Me.Label10.TabIndex = 49
  1116. Me.Label10.Text = "XX"
  1117. '
  1118. '日期_lb10
  1119. '
  1120. Me.日期_lb10.AutoSize = True
  1121. Me.日期_lb10.Font = New System.Drawing.Font("微軟正黑體", 15.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1122. Me.日期_lb10.Location = New System.Drawing.Point(3, -1)
  1123. Me.日期_lb10.Name = "日期_lb10"
  1124. Me.日期_lb10.Size = New System.Drawing.Size(38, 26)
  1125. Me.日期_lb10.TabIndex = 63
  1126. Me.日期_lb10.Text = "00"
  1127. '
  1128. 'Panel11
  1129. '
  1130. Me.Panel11.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  1131. Me.Panel11.Controls.Add(Me.Button11)
  1132. Me.Panel11.Controls.Add(Me.DataGridView11)
  1133. Me.Panel11.Controls.Add(Me.B11_tb)
  1134. Me.Panel11.Controls.Add(Me.Label11)
  1135. Me.Panel11.Controls.Add(Me.日期_lb11)
  1136. Me.Panel11.Location = New System.Drawing.Point(997, 184)
  1137. Me.Panel11.Name = "Panel11"
  1138. Me.Panel11.Size = New System.Drawing.Size(220, 155)
  1139. Me.Panel11.TabIndex = 8
  1140. '
  1141. 'Button11
  1142. '
  1143. Me.Button11.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  1144. Me.Button11.Location = New System.Drawing.Point(129, -1)
  1145. Me.Button11.Name = "Button11"
  1146. Me.Button11.Size = New System.Drawing.Size(40, 23)
  1147. Me.Button11.TabIndex = 704
  1148. Me.Button11.Text = "參考"
  1149. Me.Button11.UseVisualStyleBackColor = True
  1150. '
  1151. 'DataGridView11
  1152. '
  1153. DataGridViewCellStyle11.BackColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(255, Byte), Integer), CType(CType(192, Byte), Integer))
  1154. Me.DataGridView11.AlternatingRowsDefaultCellStyle = DataGridViewCellStyle11
  1155. Me.DataGridView11.Anchor = CType((((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
  1156. Or System.Windows.Forms.AnchorStyles.Left) _
  1157. Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  1158. Me.DataGridView11.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill
  1159. Me.DataGridView11.BackgroundColor = System.Drawing.Color.White
  1160. Me.DataGridView11.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize
  1161. Me.DataGridView11.Location = New System.Drawing.Point(-1, 22)
  1162. Me.DataGridView11.Name = "DataGridView11"
  1163. Me.DataGridView11.RowHeadersWidth = 5
  1164. Me.DataGridView11.RowTemplate.Height = 24
  1165. Me.DataGridView11.Size = New System.Drawing.Size(220, 132)
  1166. Me.DataGridView11.TabIndex = 702
  1167. '
  1168. 'B11_tb
  1169. '
  1170. Me.B11_tb.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  1171. Me.B11_tb.Location = New System.Drawing.Point(175, -1)
  1172. Me.B11_tb.Name = "B11_tb"
  1173. Me.B11_tb.Size = New System.Drawing.Size(40, 23)
  1174. Me.B11_tb.TabIndex = 69
  1175. Me.B11_tb.Text = "明細"
  1176. Me.B11_tb.UseVisualStyleBackColor = True
  1177. '
  1178. 'Label11
  1179. '
  1180. Me.Label11.AutoSize = True
  1181. Me.Label11.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1182. Me.Label11.Location = New System.Drawing.Point(33, 2)
  1183. Me.Label11.Name = "Label11"
  1184. Me.Label11.Size = New System.Drawing.Size(26, 17)
  1185. Me.Label11.TabIndex = 64
  1186. Me.Label11.Text = "XX"
  1187. '
  1188. '日期_lb11
  1189. '
  1190. Me.日期_lb11.AutoSize = True
  1191. Me.日期_lb11.Font = New System.Drawing.Font("微軟正黑體", 15.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1192. Me.日期_lb11.Location = New System.Drawing.Point(3, -1)
  1193. Me.日期_lb11.Name = "日期_lb11"
  1194. Me.日期_lb11.Size = New System.Drawing.Size(38, 26)
  1195. Me.日期_lb11.TabIndex = 64
  1196. Me.日期_lb11.Text = "00"
  1197. '
  1198. 'Panel12
  1199. '
  1200. Me.Panel12.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  1201. Me.Panel12.Controls.Add(Me.Button12)
  1202. Me.Panel12.Controls.Add(Me.DataGridView12)
  1203. Me.Panel12.Controls.Add(Me.B12_tb)
  1204. Me.Panel12.Controls.Add(Me.Label12)
  1205. Me.Panel12.Controls.Add(Me.日期_lb12)
  1206. Me.Panel12.Location = New System.Drawing.Point(1216, 184)
  1207. Me.Panel12.Name = "Panel12"
  1208. Me.Panel12.Size = New System.Drawing.Size(220, 155)
  1209. Me.Panel12.TabIndex = 9
  1210. '
  1211. 'Button12
  1212. '
  1213. Me.Button12.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  1214. Me.Button12.Location = New System.Drawing.Point(129, -1)
  1215. Me.Button12.Name = "Button12"
  1216. Me.Button12.Size = New System.Drawing.Size(40, 23)
  1217. Me.Button12.TabIndex = 705
  1218. Me.Button12.Text = "參考"
  1219. Me.Button12.UseVisualStyleBackColor = True
  1220. '
  1221. 'DataGridView12
  1222. '
  1223. DataGridViewCellStyle12.BackColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(255, Byte), Integer), CType(CType(192, Byte), Integer))
  1224. Me.DataGridView12.AlternatingRowsDefaultCellStyle = DataGridViewCellStyle12
  1225. Me.DataGridView12.Anchor = CType((((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
  1226. Or System.Windows.Forms.AnchorStyles.Left) _
  1227. Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  1228. Me.DataGridView12.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill
  1229. Me.DataGridView12.BackgroundColor = System.Drawing.Color.White
  1230. Me.DataGridView12.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize
  1231. Me.DataGridView12.Location = New System.Drawing.Point(-1, 22)
  1232. Me.DataGridView12.Name = "DataGridView12"
  1233. Me.DataGridView12.RowHeadersWidth = 5
  1234. Me.DataGridView12.RowTemplate.Height = 24
  1235. Me.DataGridView12.Size = New System.Drawing.Size(220, 132)
  1236. Me.DataGridView12.TabIndex = 702
  1237. '
  1238. 'B12_tb
  1239. '
  1240. Me.B12_tb.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  1241. Me.B12_tb.Location = New System.Drawing.Point(175, -1)
  1242. Me.B12_tb.Name = "B12_tb"
  1243. Me.B12_tb.Size = New System.Drawing.Size(40, 23)
  1244. Me.B12_tb.TabIndex = 66
  1245. Me.B12_tb.Text = "明細"
  1246. Me.B12_tb.UseVisualStyleBackColor = True
  1247. '
  1248. 'Label12
  1249. '
  1250. Me.Label12.AutoSize = True
  1251. Me.Label12.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1252. Me.Label12.Location = New System.Drawing.Point(33, 2)
  1253. Me.Label12.Name = "Label12"
  1254. Me.Label12.Size = New System.Drawing.Size(26, 17)
  1255. Me.Label12.TabIndex = 65
  1256. Me.Label12.Text = "XX"
  1257. '
  1258. '日期_lb12
  1259. '
  1260. Me.日期_lb12.AutoSize = True
  1261. Me.日期_lb12.Font = New System.Drawing.Font("微軟正黑體", 15.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1262. Me.日期_lb12.Location = New System.Drawing.Point(3, -1)
  1263. Me.日期_lb12.Name = "日期_lb12"
  1264. Me.日期_lb12.Size = New System.Drawing.Size(38, 26)
  1265. Me.日期_lb12.TabIndex = 65
  1266. Me.日期_lb12.Text = "00"
  1267. '
  1268. 'Panel13
  1269. '
  1270. Me.Panel13.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  1271. Me.Panel13.Controls.Add(Me.Button13)
  1272. Me.Panel13.Controls.Add(Me.DataGridView13)
  1273. Me.Panel13.Controls.Add(Me.B13_tb)
  1274. Me.Panel13.Controls.Add(Me.Label13)
  1275. Me.Panel13.Controls.Add(Me.日期_lb13)
  1276. Me.Panel13.Location = New System.Drawing.Point(1435, 184)
  1277. Me.Panel13.Name = "Panel13"
  1278. Me.Panel13.Size = New System.Drawing.Size(220, 155)
  1279. Me.Panel13.TabIndex = 10
  1280. '
  1281. 'Button13
  1282. '
  1283. Me.Button13.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  1284. Me.Button13.Location = New System.Drawing.Point(129, -1)
  1285. Me.Button13.Name = "Button13"
  1286. Me.Button13.Size = New System.Drawing.Size(40, 23)
  1287. Me.Button13.TabIndex = 704
  1288. Me.Button13.Text = "參考"
  1289. Me.Button13.UseVisualStyleBackColor = True
  1290. '
  1291. 'DataGridView13
  1292. '
  1293. DataGridViewCellStyle13.BackColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(255, Byte), Integer), CType(CType(192, Byte), Integer))
  1294. Me.DataGridView13.AlternatingRowsDefaultCellStyle = DataGridViewCellStyle13
  1295. Me.DataGridView13.Anchor = CType((((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
  1296. Or System.Windows.Forms.AnchorStyles.Left) _
  1297. Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  1298. Me.DataGridView13.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill
  1299. Me.DataGridView13.BackgroundColor = System.Drawing.Color.White
  1300. Me.DataGridView13.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize
  1301. Me.DataGridView13.Location = New System.Drawing.Point(-1, 22)
  1302. Me.DataGridView13.Name = "DataGridView13"
  1303. Me.DataGridView13.RowHeadersWidth = 5
  1304. Me.DataGridView13.RowTemplate.Height = 24
  1305. Me.DataGridView13.Size = New System.Drawing.Size(220, 132)
  1306. Me.DataGridView13.TabIndex = 702
  1307. '
  1308. 'B13_tb
  1309. '
  1310. Me.B13_tb.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  1311. Me.B13_tb.Location = New System.Drawing.Point(175, -1)
  1312. Me.B13_tb.Name = "B13_tb"
  1313. Me.B13_tb.Size = New System.Drawing.Size(40, 23)
  1314. Me.B13_tb.TabIndex = 67
  1315. Me.B13_tb.Text = "明細"
  1316. Me.B13_tb.UseVisualStyleBackColor = True
  1317. '
  1318. 'Label13
  1319. '
  1320. Me.Label13.AutoSize = True
  1321. Me.Label13.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1322. Me.Label13.Location = New System.Drawing.Point(33, 2)
  1323. Me.Label13.Name = "Label13"
  1324. Me.Label13.Size = New System.Drawing.Size(26, 17)
  1325. Me.Label13.TabIndex = 66
  1326. Me.Label13.Text = "XX"
  1327. '
  1328. '日期_lb13
  1329. '
  1330. Me.日期_lb13.AutoSize = True
  1331. Me.日期_lb13.Font = New System.Drawing.Font("微軟正黑體", 15.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1332. Me.日期_lb13.Location = New System.Drawing.Point(3, -1)
  1333. Me.日期_lb13.Name = "日期_lb13"
  1334. Me.日期_lb13.Size = New System.Drawing.Size(38, 26)
  1335. Me.日期_lb13.TabIndex = 66
  1336. Me.日期_lb13.Text = "00"
  1337. '
  1338. 'Panel14
  1339. '
  1340. Me.Panel14.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  1341. Me.Panel14.Controls.Add(Me.Button14)
  1342. Me.Panel14.Controls.Add(Me.DataGridView14)
  1343. Me.Panel14.Controls.Add(Me.B14_tb)
  1344. Me.Panel14.Controls.Add(Me.Label14)
  1345. Me.Panel14.Controls.Add(Me.日期_lb14)
  1346. Me.Panel14.ForeColor = System.Drawing.Color.Green
  1347. Me.Panel14.Location = New System.Drawing.Point(1654, 184)
  1348. Me.Panel14.Name = "Panel14"
  1349. Me.Panel14.Size = New System.Drawing.Size(220, 155)
  1350. Me.Panel14.TabIndex = 1
  1351. '
  1352. 'Button14
  1353. '
  1354. Me.Button14.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  1355. Me.Button14.Location = New System.Drawing.Point(129, -1)
  1356. Me.Button14.Name = "Button14"
  1357. Me.Button14.Size = New System.Drawing.Size(40, 23)
  1358. Me.Button14.TabIndex = 704
  1359. Me.Button14.Text = "參考"
  1360. Me.Button14.UseVisualStyleBackColor = True
  1361. '
  1362. 'DataGridView14
  1363. '
  1364. DataGridViewCellStyle14.BackColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(255, Byte), Integer), CType(CType(192, Byte), Integer))
  1365. Me.DataGridView14.AlternatingRowsDefaultCellStyle = DataGridViewCellStyle14
  1366. Me.DataGridView14.Anchor = CType((((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
  1367. Or System.Windows.Forms.AnchorStyles.Left) _
  1368. Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  1369. Me.DataGridView14.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill
  1370. Me.DataGridView14.BackgroundColor = System.Drawing.Color.White
  1371. Me.DataGridView14.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize
  1372. Me.DataGridView14.Location = New System.Drawing.Point(-1, 22)
  1373. Me.DataGridView14.Name = "DataGridView14"
  1374. Me.DataGridView14.RowHeadersWidth = 5
  1375. Me.DataGridView14.RowTemplate.Height = 24
  1376. Me.DataGridView14.Size = New System.Drawing.Size(220, 132)
  1377. Me.DataGridView14.TabIndex = 702
  1378. '
  1379. 'B14_tb
  1380. '
  1381. Me.B14_tb.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  1382. Me.B14_tb.Location = New System.Drawing.Point(175, -1)
  1383. Me.B14_tb.Name = "B14_tb"
  1384. Me.B14_tb.Size = New System.Drawing.Size(40, 23)
  1385. Me.B14_tb.TabIndex = 68
  1386. Me.B14_tb.Text = "明細"
  1387. Me.B14_tb.UseVisualStyleBackColor = True
  1388. '
  1389. 'Label14
  1390. '
  1391. Me.Label14.AutoSize = True
  1392. Me.Label14.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1393. Me.Label14.Location = New System.Drawing.Point(33, 2)
  1394. Me.Label14.Name = "Label14"
  1395. Me.Label14.Size = New System.Drawing.Size(26, 17)
  1396. Me.Label14.TabIndex = 67
  1397. Me.Label14.Text = "XX"
  1398. '
  1399. '日期_lb14
  1400. '
  1401. Me.日期_lb14.AutoSize = True
  1402. Me.日期_lb14.Font = New System.Drawing.Font("微軟正黑體", 15.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1403. Me.日期_lb14.Location = New System.Drawing.Point(3, -1)
  1404. Me.日期_lb14.Name = "日期_lb14"
  1405. Me.日期_lb14.Size = New System.Drawing.Size(38, 26)
  1406. Me.日期_lb14.TabIndex = 67
  1407. Me.日期_lb14.Text = "00"
  1408. '
  1409. 'Panel15
  1410. '
  1411. Me.Panel15.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  1412. Me.Panel15.Controls.Add(Me.Button15)
  1413. Me.Panel15.Controls.Add(Me.DataGridView15)
  1414. Me.Panel15.Controls.Add(Me.B15_tb)
  1415. Me.Panel15.Controls.Add(Me.Label15)
  1416. Me.Panel15.Controls.Add(Me.日期_lb15)
  1417. Me.Panel15.ForeColor = System.Drawing.Color.Red
  1418. Me.Panel15.Location = New System.Drawing.Point(340, 338)
  1419. Me.Panel15.Name = "Panel15"
  1420. Me.Panel15.Size = New System.Drawing.Size(220, 155)
  1421. Me.Panel15.TabIndex = 11
  1422. '
  1423. 'Button15
  1424. '
  1425. Me.Button15.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  1426. Me.Button15.Location = New System.Drawing.Point(129, -1)
  1427. Me.Button15.Name = "Button15"
  1428. Me.Button15.Size = New System.Drawing.Size(40, 23)
  1429. Me.Button15.TabIndex = 704
  1430. Me.Button15.Text = "參考"
  1431. Me.Button15.UseVisualStyleBackColor = True
  1432. '
  1433. 'DataGridView15
  1434. '
  1435. DataGridViewCellStyle15.BackColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(255, Byte), Integer), CType(CType(192, Byte), Integer))
  1436. Me.DataGridView15.AlternatingRowsDefaultCellStyle = DataGridViewCellStyle15
  1437. Me.DataGridView15.Anchor = CType((((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
  1438. Or System.Windows.Forms.AnchorStyles.Left) _
  1439. Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  1440. Me.DataGridView15.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill
  1441. Me.DataGridView15.BackgroundColor = System.Drawing.Color.White
  1442. Me.DataGridView15.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize
  1443. Me.DataGridView15.Location = New System.Drawing.Point(-1, 22)
  1444. Me.DataGridView15.Name = "DataGridView15"
  1445. Me.DataGridView15.RowHeadersWidth = 5
  1446. Me.DataGridView15.RowTemplate.Height = 24
  1447. Me.DataGridView15.Size = New System.Drawing.Size(220, 132)
  1448. Me.DataGridView15.TabIndex = 702
  1449. '
  1450. 'B15_tb
  1451. '
  1452. Me.B15_tb.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  1453. Me.B15_tb.Location = New System.Drawing.Point(175, -1)
  1454. Me.B15_tb.Name = "B15_tb"
  1455. Me.B15_tb.Size = New System.Drawing.Size(40, 23)
  1456. Me.B15_tb.TabIndex = 65
  1457. Me.B15_tb.Text = "明細"
  1458. Me.B15_tb.UseVisualStyleBackColor = True
  1459. '
  1460. 'Label15
  1461. '
  1462. Me.Label15.AutoSize = True
  1463. Me.Label15.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1464. Me.Label15.Location = New System.Drawing.Point(33, 2)
  1465. Me.Label15.Name = "Label15"
  1466. Me.Label15.Size = New System.Drawing.Size(26, 17)
  1467. Me.Label15.TabIndex = 49
  1468. Me.Label15.Text = "XX"
  1469. '
  1470. '日期_lb15
  1471. '
  1472. Me.日期_lb15.AutoSize = True
  1473. Me.日期_lb15.Font = New System.Drawing.Font("微軟正黑體", 15.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1474. Me.日期_lb15.Location = New System.Drawing.Point(3, -1)
  1475. Me.日期_lb15.Name = "日期_lb15"
  1476. Me.日期_lb15.Size = New System.Drawing.Size(38, 26)
  1477. Me.日期_lb15.TabIndex = 48
  1478. Me.日期_lb15.Text = "00"
  1479. '
  1480. 'Panel16
  1481. '
  1482. Me.Panel16.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  1483. Me.Panel16.Controls.Add(Me.Button16)
  1484. Me.Panel16.Controls.Add(Me.DataGridView16)
  1485. Me.Panel16.Controls.Add(Me.B16_tb)
  1486. Me.Panel16.Controls.Add(Me.Label16)
  1487. Me.Panel16.Controls.Add(Me.日期_lb16)
  1488. Me.Panel16.Location = New System.Drawing.Point(559, 338)
  1489. Me.Panel16.Name = "Panel16"
  1490. Me.Panel16.Size = New System.Drawing.Size(220, 155)
  1491. Me.Panel16.TabIndex = 12
  1492. '
  1493. 'Button16
  1494. '
  1495. Me.Button16.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  1496. Me.Button16.Location = New System.Drawing.Point(129, -1)
  1497. Me.Button16.Name = "Button16"
  1498. Me.Button16.Size = New System.Drawing.Size(40, 23)
  1499. Me.Button16.TabIndex = 704
  1500. Me.Button16.Text = "參考"
  1501. Me.Button16.UseVisualStyleBackColor = True
  1502. '
  1503. 'DataGridView16
  1504. '
  1505. DataGridViewCellStyle16.BackColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(255, Byte), Integer), CType(CType(192, Byte), Integer))
  1506. Me.DataGridView16.AlternatingRowsDefaultCellStyle = DataGridViewCellStyle16
  1507. Me.DataGridView16.Anchor = CType((((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
  1508. Or System.Windows.Forms.AnchorStyles.Left) _
  1509. Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  1510. Me.DataGridView16.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill
  1511. Me.DataGridView16.BackgroundColor = System.Drawing.Color.White
  1512. Me.DataGridView16.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize
  1513. Me.DataGridView16.Location = New System.Drawing.Point(-1, 22)
  1514. Me.DataGridView16.Name = "DataGridView16"
  1515. Me.DataGridView16.RowHeadersWidth = 5
  1516. Me.DataGridView16.RowTemplate.Height = 24
  1517. Me.DataGridView16.Size = New System.Drawing.Size(220, 132)
  1518. Me.DataGridView16.TabIndex = 702
  1519. '
  1520. 'B16_tb
  1521. '
  1522. Me.B16_tb.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  1523. Me.B16_tb.Location = New System.Drawing.Point(175, -1)
  1524. Me.B16_tb.Name = "B16_tb"
  1525. Me.B16_tb.Size = New System.Drawing.Size(40, 23)
  1526. Me.B16_tb.TabIndex = 70
  1527. Me.B16_tb.Text = "明細"
  1528. Me.B16_tb.UseVisualStyleBackColor = True
  1529. '
  1530. 'Label16
  1531. '
  1532. Me.Label16.AutoSize = True
  1533. Me.Label16.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1534. Me.Label16.Location = New System.Drawing.Point(33, 2)
  1535. Me.Label16.Name = "Label16"
  1536. Me.Label16.Size = New System.Drawing.Size(26, 17)
  1537. Me.Label16.TabIndex = 50
  1538. Me.Label16.Text = "XX"
  1539. '
  1540. '日期_lb16
  1541. '
  1542. Me.日期_lb16.AutoSize = True
  1543. Me.日期_lb16.Font = New System.Drawing.Font("微軟正黑體", 15.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1544. Me.日期_lb16.Location = New System.Drawing.Point(3, -1)
  1545. Me.日期_lb16.Name = "日期_lb16"
  1546. Me.日期_lb16.Size = New System.Drawing.Size(38, 26)
  1547. Me.日期_lb16.TabIndex = 62
  1548. Me.日期_lb16.Text = "00"
  1549. '
  1550. 'Panel17
  1551. '
  1552. Me.Panel17.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  1553. Me.Panel17.Controls.Add(Me.Button17)
  1554. Me.Panel17.Controls.Add(Me.DataGridView17)
  1555. Me.Panel17.Controls.Add(Me.B17_tb)
  1556. Me.Panel17.Controls.Add(Me.Label17)
  1557. Me.Panel17.Controls.Add(Me.日期_lb17)
  1558. Me.Panel17.Location = New System.Drawing.Point(778, 338)
  1559. Me.Panel17.Name = "Panel17"
  1560. Me.Panel17.Size = New System.Drawing.Size(220, 155)
  1561. Me.Panel17.TabIndex = 13
  1562. '
  1563. 'Button17
  1564. '
  1565. Me.Button17.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  1566. Me.Button17.Location = New System.Drawing.Point(129, -1)
  1567. Me.Button17.Name = "Button17"
  1568. Me.Button17.Size = New System.Drawing.Size(40, 23)
  1569. Me.Button17.TabIndex = 704
  1570. Me.Button17.Text = "參考"
  1571. Me.Button17.UseVisualStyleBackColor = True
  1572. '
  1573. 'DataGridView17
  1574. '
  1575. DataGridViewCellStyle17.BackColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(255, Byte), Integer), CType(CType(192, Byte), Integer))
  1576. Me.DataGridView17.AlternatingRowsDefaultCellStyle = DataGridViewCellStyle17
  1577. Me.DataGridView17.Anchor = CType((((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
  1578. Or System.Windows.Forms.AnchorStyles.Left) _
  1579. Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  1580. Me.DataGridView17.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill
  1581. Me.DataGridView17.BackgroundColor = System.Drawing.Color.White
  1582. Me.DataGridView17.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize
  1583. Me.DataGridView17.Location = New System.Drawing.Point(-1, 22)
  1584. Me.DataGridView17.Name = "DataGridView17"
  1585. Me.DataGridView17.RowHeadersWidth = 5
  1586. Me.DataGridView17.RowTemplate.Height = 24
  1587. Me.DataGridView17.Size = New System.Drawing.Size(220, 132)
  1588. Me.DataGridView17.TabIndex = 702
  1589. '
  1590. 'B17_tb
  1591. '
  1592. Me.B17_tb.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  1593. Me.B17_tb.Location = New System.Drawing.Point(175, -1)
  1594. Me.B17_tb.Name = "B17_tb"
  1595. Me.B17_tb.Size = New System.Drawing.Size(40, 23)
  1596. Me.B17_tb.TabIndex = 71
  1597. Me.B17_tb.Text = "明細"
  1598. Me.B17_tb.UseVisualStyleBackColor = True
  1599. '
  1600. 'Label17
  1601. '
  1602. Me.Label17.AutoSize = True
  1603. Me.Label17.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1604. Me.Label17.Location = New System.Drawing.Point(33, 2)
  1605. Me.Label17.Name = "Label17"
  1606. Me.Label17.Size = New System.Drawing.Size(26, 17)
  1607. Me.Label17.TabIndex = 63
  1608. Me.Label17.Text = "XX"
  1609. '
  1610. '日期_lb17
  1611. '
  1612. Me.日期_lb17.AutoSize = True
  1613. Me.日期_lb17.Font = New System.Drawing.Font("微軟正黑體", 15.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1614. Me.日期_lb17.Location = New System.Drawing.Point(3, -1)
  1615. Me.日期_lb17.Name = "日期_lb17"
  1616. Me.日期_lb17.Size = New System.Drawing.Size(38, 26)
  1617. Me.日期_lb17.TabIndex = 61
  1618. Me.日期_lb17.Text = "00"
  1619. '
  1620. 'Panel18
  1621. '
  1622. Me.Panel18.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  1623. Me.Panel18.Controls.Add(Me.Button18)
  1624. Me.Panel18.Controls.Add(Me.DataGridView18)
  1625. Me.Panel18.Controls.Add(Me.B18_tb)
  1626. Me.Panel18.Controls.Add(Me.Label18)
  1627. Me.Panel18.Controls.Add(Me.日期_lb18)
  1628. Me.Panel18.Location = New System.Drawing.Point(997, 338)
  1629. Me.Panel18.Name = "Panel18"
  1630. Me.Panel18.Size = New System.Drawing.Size(220, 155)
  1631. Me.Panel18.TabIndex = 14
  1632. '
  1633. 'Button18
  1634. '
  1635. Me.Button18.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  1636. Me.Button18.Location = New System.Drawing.Point(129, -1)
  1637. Me.Button18.Name = "Button18"
  1638. Me.Button18.Size = New System.Drawing.Size(40, 23)
  1639. Me.Button18.TabIndex = 704
  1640. Me.Button18.Text = "參考"
  1641. Me.Button18.UseVisualStyleBackColor = True
  1642. '
  1643. 'DataGridView18
  1644. '
  1645. DataGridViewCellStyle18.BackColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(255, Byte), Integer), CType(CType(192, Byte), Integer))
  1646. Me.DataGridView18.AlternatingRowsDefaultCellStyle = DataGridViewCellStyle18
  1647. Me.DataGridView18.Anchor = CType((((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
  1648. Or System.Windows.Forms.AnchorStyles.Left) _
  1649. Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  1650. Me.DataGridView18.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill
  1651. Me.DataGridView18.BackgroundColor = System.Drawing.Color.White
  1652. Me.DataGridView18.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize
  1653. Me.DataGridView18.Location = New System.Drawing.Point(-1, 22)
  1654. Me.DataGridView18.Name = "DataGridView18"
  1655. Me.DataGridView18.RowHeadersWidth = 5
  1656. Me.DataGridView18.RowTemplate.Height = 24
  1657. Me.DataGridView18.Size = New System.Drawing.Size(220, 132)
  1658. Me.DataGridView18.TabIndex = 702
  1659. '
  1660. 'B18_tb
  1661. '
  1662. Me.B18_tb.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  1663. Me.B18_tb.Location = New System.Drawing.Point(175, -1)
  1664. Me.B18_tb.Name = "B18_tb"
  1665. Me.B18_tb.Size = New System.Drawing.Size(40, 23)
  1666. Me.B18_tb.TabIndex = 72
  1667. Me.B18_tb.Text = "明細"
  1668. Me.B18_tb.UseVisualStyleBackColor = True
  1669. '
  1670. 'Label18
  1671. '
  1672. Me.Label18.AutoSize = True
  1673. Me.Label18.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1674. Me.Label18.Location = New System.Drawing.Point(33, 2)
  1675. Me.Label18.Name = "Label18"
  1676. Me.Label18.Size = New System.Drawing.Size(26, 17)
  1677. Me.Label18.TabIndex = 64
  1678. Me.Label18.Text = "XX"
  1679. '
  1680. '日期_lb18
  1681. '
  1682. Me.日期_lb18.AutoSize = True
  1683. Me.日期_lb18.Font = New System.Drawing.Font("微軟正黑體", 15.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1684. Me.日期_lb18.Location = New System.Drawing.Point(3, -1)
  1685. Me.日期_lb18.Name = "日期_lb18"
  1686. Me.日期_lb18.Size = New System.Drawing.Size(38, 26)
  1687. Me.日期_lb18.TabIndex = 60
  1688. Me.日期_lb18.Text = "00"
  1689. '
  1690. 'Panel19
  1691. '
  1692. Me.Panel19.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  1693. Me.Panel19.Controls.Add(Me.Button19)
  1694. Me.Panel19.Controls.Add(Me.DataGridView19)
  1695. Me.Panel19.Controls.Add(Me.B19_tb)
  1696. Me.Panel19.Controls.Add(Me.Label19)
  1697. Me.Panel19.Controls.Add(Me.日期_lb19)
  1698. Me.Panel19.Location = New System.Drawing.Point(1216, 338)
  1699. Me.Panel19.Name = "Panel19"
  1700. Me.Panel19.Size = New System.Drawing.Size(220, 155)
  1701. Me.Panel19.TabIndex = 15
  1702. '
  1703. 'Button19
  1704. '
  1705. Me.Button19.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  1706. Me.Button19.Location = New System.Drawing.Point(129, -1)
  1707. Me.Button19.Name = "Button19"
  1708. Me.Button19.Size = New System.Drawing.Size(40, 23)
  1709. Me.Button19.TabIndex = 704
  1710. Me.Button19.Text = "參考"
  1711. Me.Button19.UseVisualStyleBackColor = True
  1712. '
  1713. 'DataGridView19
  1714. '
  1715. DataGridViewCellStyle19.BackColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(255, Byte), Integer), CType(CType(192, Byte), Integer))
  1716. Me.DataGridView19.AlternatingRowsDefaultCellStyle = DataGridViewCellStyle19
  1717. Me.DataGridView19.Anchor = CType((((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
  1718. Or System.Windows.Forms.AnchorStyles.Left) _
  1719. Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  1720. Me.DataGridView19.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill
  1721. Me.DataGridView19.BackgroundColor = System.Drawing.Color.White
  1722. Me.DataGridView19.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize
  1723. Me.DataGridView19.Location = New System.Drawing.Point(-1, 22)
  1724. Me.DataGridView19.Name = "DataGridView19"
  1725. Me.DataGridView19.RowHeadersWidth = 5
  1726. Me.DataGridView19.RowTemplate.Height = 24
  1727. Me.DataGridView19.Size = New System.Drawing.Size(220, 132)
  1728. Me.DataGridView19.TabIndex = 702
  1729. '
  1730. 'B19_tb
  1731. '
  1732. Me.B19_tb.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  1733. Me.B19_tb.Location = New System.Drawing.Point(175, -1)
  1734. Me.B19_tb.Name = "B19_tb"
  1735. Me.B19_tb.Size = New System.Drawing.Size(40, 23)
  1736. Me.B19_tb.TabIndex = 66
  1737. Me.B19_tb.Text = "明細"
  1738. Me.B19_tb.UseVisualStyleBackColor = True
  1739. '
  1740. 'Label19
  1741. '
  1742. Me.Label19.AutoSize = True
  1743. Me.Label19.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1744. Me.Label19.Location = New System.Drawing.Point(33, 2)
  1745. Me.Label19.Name = "Label19"
  1746. Me.Label19.Size = New System.Drawing.Size(26, 17)
  1747. Me.Label19.TabIndex = 65
  1748. Me.Label19.Text = "XX"
  1749. '
  1750. '日期_lb19
  1751. '
  1752. Me.日期_lb19.AutoSize = True
  1753. Me.日期_lb19.Font = New System.Drawing.Font("微軟正黑體", 15.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1754. Me.日期_lb19.Location = New System.Drawing.Point(3, -1)
  1755. Me.日期_lb19.Name = "日期_lb19"
  1756. Me.日期_lb19.Size = New System.Drawing.Size(38, 26)
  1757. Me.日期_lb19.TabIndex = 59
  1758. Me.日期_lb19.Text = "00"
  1759. '
  1760. 'Panel20
  1761. '
  1762. Me.Panel20.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  1763. Me.Panel20.Controls.Add(Me.Button20)
  1764. Me.Panel20.Controls.Add(Me.DataGridView20)
  1765. Me.Panel20.Controls.Add(Me.B20_tb)
  1766. Me.Panel20.Controls.Add(Me.Label20)
  1767. Me.Panel20.Controls.Add(Me.日期_lb20)
  1768. Me.Panel20.Location = New System.Drawing.Point(1435, 338)
  1769. Me.Panel20.Name = "Panel20"
  1770. Me.Panel20.Size = New System.Drawing.Size(220, 155)
  1771. Me.Panel20.TabIndex = 16
  1772. '
  1773. 'Button20
  1774. '
  1775. Me.Button20.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  1776. Me.Button20.Location = New System.Drawing.Point(129, -1)
  1777. Me.Button20.Name = "Button20"
  1778. Me.Button20.Size = New System.Drawing.Size(40, 23)
  1779. Me.Button20.TabIndex = 704
  1780. Me.Button20.Text = "參考"
  1781. Me.Button20.UseVisualStyleBackColor = True
  1782. '
  1783. 'DataGridView20
  1784. '
  1785. DataGridViewCellStyle20.BackColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(255, Byte), Integer), CType(CType(192, Byte), Integer))
  1786. Me.DataGridView20.AlternatingRowsDefaultCellStyle = DataGridViewCellStyle20
  1787. Me.DataGridView20.Anchor = CType((((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
  1788. Or System.Windows.Forms.AnchorStyles.Left) _
  1789. Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  1790. Me.DataGridView20.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill
  1791. Me.DataGridView20.BackgroundColor = System.Drawing.Color.White
  1792. Me.DataGridView20.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize
  1793. Me.DataGridView20.Location = New System.Drawing.Point(-1, 22)
  1794. Me.DataGridView20.Name = "DataGridView20"
  1795. Me.DataGridView20.RowHeadersWidth = 5
  1796. Me.DataGridView20.RowTemplate.Height = 24
  1797. Me.DataGridView20.Size = New System.Drawing.Size(220, 132)
  1798. Me.DataGridView20.TabIndex = 702
  1799. '
  1800. 'B20_tb
  1801. '
  1802. Me.B20_tb.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  1803. Me.B20_tb.Location = New System.Drawing.Point(175, -1)
  1804. Me.B20_tb.Name = "B20_tb"
  1805. Me.B20_tb.Size = New System.Drawing.Size(40, 23)
  1806. Me.B20_tb.TabIndex = 72
  1807. Me.B20_tb.Text = "明細"
  1808. Me.B20_tb.UseVisualStyleBackColor = True
  1809. '
  1810. 'Label20
  1811. '
  1812. Me.Label20.AutoSize = True
  1813. Me.Label20.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1814. Me.Label20.Location = New System.Drawing.Point(33, 2)
  1815. Me.Label20.Name = "Label20"
  1816. Me.Label20.Size = New System.Drawing.Size(26, 17)
  1817. Me.Label20.TabIndex = 66
  1818. Me.Label20.Text = "XX"
  1819. '
  1820. '日期_lb20
  1821. '
  1822. Me.日期_lb20.AutoSize = True
  1823. Me.日期_lb20.Font = New System.Drawing.Font("微軟正黑體", 15.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1824. Me.日期_lb20.Location = New System.Drawing.Point(3, -1)
  1825. Me.日期_lb20.Name = "日期_lb20"
  1826. Me.日期_lb20.Size = New System.Drawing.Size(38, 26)
  1827. Me.日期_lb20.TabIndex = 71
  1828. Me.日期_lb20.Text = "00"
  1829. '
  1830. 'Panel21
  1831. '
  1832. Me.Panel21.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  1833. Me.Panel21.Controls.Add(Me.Button21)
  1834. Me.Panel21.Controls.Add(Me.DataGridView21)
  1835. Me.Panel21.Controls.Add(Me.B21_tb)
  1836. Me.Panel21.Controls.Add(Me.Label21)
  1837. Me.Panel21.Controls.Add(Me.日期_lb21)
  1838. Me.Panel21.ForeColor = System.Drawing.Color.Green
  1839. Me.Panel21.Location = New System.Drawing.Point(1654, 338)
  1840. Me.Panel21.Name = "Panel21"
  1841. Me.Panel21.Size = New System.Drawing.Size(220, 155)
  1842. Me.Panel21.TabIndex = 17
  1843. '
  1844. 'Button21
  1845. '
  1846. Me.Button21.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  1847. Me.Button21.Location = New System.Drawing.Point(129, -1)
  1848. Me.Button21.Name = "Button21"
  1849. Me.Button21.Size = New System.Drawing.Size(40, 23)
  1850. Me.Button21.TabIndex = 705
  1851. Me.Button21.Text = "參考"
  1852. Me.Button21.UseVisualStyleBackColor = True
  1853. '
  1854. 'DataGridView21
  1855. '
  1856. DataGridViewCellStyle21.BackColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(255, Byte), Integer), CType(CType(192, Byte), Integer))
  1857. Me.DataGridView21.AlternatingRowsDefaultCellStyle = DataGridViewCellStyle21
  1858. Me.DataGridView21.Anchor = CType((((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
  1859. Or System.Windows.Forms.AnchorStyles.Left) _
  1860. Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  1861. Me.DataGridView21.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill
  1862. Me.DataGridView21.BackgroundColor = System.Drawing.Color.White
  1863. Me.DataGridView21.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize
  1864. Me.DataGridView21.Location = New System.Drawing.Point(-1, 22)
  1865. Me.DataGridView21.Name = "DataGridView21"
  1866. Me.DataGridView21.RowHeadersWidth = 5
  1867. Me.DataGridView21.RowTemplate.Height = 24
  1868. Me.DataGridView21.Size = New System.Drawing.Size(220, 132)
  1869. Me.DataGridView21.TabIndex = 702
  1870. '
  1871. 'B21_tb
  1872. '
  1873. Me.B21_tb.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  1874. Me.B21_tb.Location = New System.Drawing.Point(175, -1)
  1875. Me.B21_tb.Name = "B21_tb"
  1876. Me.B21_tb.Size = New System.Drawing.Size(40, 23)
  1877. Me.B21_tb.TabIndex = 73
  1878. Me.B21_tb.Text = "明細"
  1879. Me.B21_tb.UseVisualStyleBackColor = True
  1880. '
  1881. 'Label21
  1882. '
  1883. Me.Label21.AutoSize = True
  1884. Me.Label21.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1885. Me.Label21.Location = New System.Drawing.Point(33, 2)
  1886. Me.Label21.Name = "Label21"
  1887. Me.Label21.Size = New System.Drawing.Size(26, 17)
  1888. Me.Label21.TabIndex = 72
  1889. Me.Label21.Text = "XX"
  1890. '
  1891. '日期_lb21
  1892. '
  1893. Me.日期_lb21.AutoSize = True
  1894. Me.日期_lb21.Font = New System.Drawing.Font("微軟正黑體", 15.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1895. Me.日期_lb21.Location = New System.Drawing.Point(3, -1)
  1896. Me.日期_lb21.Name = "日期_lb21"
  1897. Me.日期_lb21.Size = New System.Drawing.Size(38, 26)
  1898. Me.日期_lb21.TabIndex = 68
  1899. Me.日期_lb21.Text = "00"
  1900. '
  1901. 'Panel22
  1902. '
  1903. Me.Panel22.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  1904. Me.Panel22.Controls.Add(Me.Button22)
  1905. Me.Panel22.Controls.Add(Me.DataGridView22)
  1906. Me.Panel22.Controls.Add(Me.B22_tb)
  1907. Me.Panel22.Controls.Add(Me.Label22)
  1908. Me.Panel22.Controls.Add(Me.日期_lb22)
  1909. Me.Panel22.ForeColor = System.Drawing.Color.Red
  1910. Me.Panel22.Location = New System.Drawing.Point(340, 492)
  1911. Me.Panel22.Name = "Panel22"
  1912. Me.Panel22.Size = New System.Drawing.Size(220, 155)
  1913. Me.Panel22.TabIndex = 18
  1914. '
  1915. 'Button22
  1916. '
  1917. Me.Button22.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  1918. Me.Button22.Location = New System.Drawing.Point(129, -1)
  1919. Me.Button22.Name = "Button22"
  1920. Me.Button22.Size = New System.Drawing.Size(40, 23)
  1921. Me.Button22.TabIndex = 704
  1922. Me.Button22.Text = "參考"
  1923. Me.Button22.UseVisualStyleBackColor = True
  1924. '
  1925. 'DataGridView22
  1926. '
  1927. DataGridViewCellStyle22.BackColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(255, Byte), Integer), CType(CType(192, Byte), Integer))
  1928. Me.DataGridView22.AlternatingRowsDefaultCellStyle = DataGridViewCellStyle22
  1929. Me.DataGridView22.Anchor = CType((((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
  1930. Or System.Windows.Forms.AnchorStyles.Left) _
  1931. Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  1932. Me.DataGridView22.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill
  1933. Me.DataGridView22.BackgroundColor = System.Drawing.Color.White
  1934. Me.DataGridView22.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize
  1935. Me.DataGridView22.Location = New System.Drawing.Point(-1, 22)
  1936. Me.DataGridView22.Name = "DataGridView22"
  1937. Me.DataGridView22.RowHeadersWidth = 5
  1938. Me.DataGridView22.RowTemplate.Height = 24
  1939. Me.DataGridView22.Size = New System.Drawing.Size(220, 132)
  1940. Me.DataGridView22.TabIndex = 702
  1941. '
  1942. 'B22_tb
  1943. '
  1944. Me.B22_tb.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  1945. Me.B22_tb.Location = New System.Drawing.Point(175, -1)
  1946. Me.B22_tb.Name = "B22_tb"
  1947. Me.B22_tb.Size = New System.Drawing.Size(40, 23)
  1948. Me.B22_tb.TabIndex = 65
  1949. Me.B22_tb.Text = "明細"
  1950. Me.B22_tb.UseVisualStyleBackColor = True
  1951. '
  1952. 'Label22
  1953. '
  1954. Me.Label22.AutoSize = True
  1955. Me.Label22.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1956. Me.Label22.Location = New System.Drawing.Point(33, 2)
  1957. Me.Label22.Name = "Label22"
  1958. Me.Label22.Size = New System.Drawing.Size(26, 17)
  1959. Me.Label22.TabIndex = 47
  1960. Me.Label22.Text = "XX"
  1961. '
  1962. '日期_lb22
  1963. '
  1964. Me.日期_lb22.AutoSize = True
  1965. Me.日期_lb22.Font = New System.Drawing.Font("微軟正黑體", 15.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1966. Me.日期_lb22.Location = New System.Drawing.Point(3, -1)
  1967. Me.日期_lb22.Name = "日期_lb22"
  1968. Me.日期_lb22.Size = New System.Drawing.Size(38, 26)
  1969. Me.日期_lb22.TabIndex = 46
  1970. Me.日期_lb22.Text = "00"
  1971. '
  1972. 'Panel23
  1973. '
  1974. Me.Panel23.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  1975. Me.Panel23.Controls.Add(Me.Button23)
  1976. Me.Panel23.Controls.Add(Me.DataGridView23)
  1977. Me.Panel23.Controls.Add(Me.B23_tb)
  1978. Me.Panel23.Controls.Add(Me.Label23)
  1979. Me.Panel23.Controls.Add(Me.日期_lb23)
  1980. Me.Panel23.Location = New System.Drawing.Point(559, 492)
  1981. Me.Panel23.Name = "Panel23"
  1982. Me.Panel23.Size = New System.Drawing.Size(220, 155)
  1983. Me.Panel23.TabIndex = 1
  1984. '
  1985. 'Button23
  1986. '
  1987. Me.Button23.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  1988. Me.Button23.Location = New System.Drawing.Point(129, -1)
  1989. Me.Button23.Name = "Button23"
  1990. Me.Button23.Size = New System.Drawing.Size(40, 23)
  1991. Me.Button23.TabIndex = 704
  1992. Me.Button23.Text = "參考"
  1993. Me.Button23.UseVisualStyleBackColor = True
  1994. '
  1995. 'DataGridView23
  1996. '
  1997. DataGridViewCellStyle23.BackColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(255, Byte), Integer), CType(CType(192, Byte), Integer))
  1998. Me.DataGridView23.AlternatingRowsDefaultCellStyle = DataGridViewCellStyle23
  1999. Me.DataGridView23.Anchor = CType((((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
  2000. Or System.Windows.Forms.AnchorStyles.Left) _
  2001. Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  2002. Me.DataGridView23.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill
  2003. Me.DataGridView23.BackgroundColor = System.Drawing.Color.White
  2004. Me.DataGridView23.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize
  2005. Me.DataGridView23.Location = New System.Drawing.Point(-1, 22)
  2006. Me.DataGridView23.Name = "DataGridView23"
  2007. Me.DataGridView23.RowHeadersWidth = 5
  2008. Me.DataGridView23.RowTemplate.Height = 24
  2009. Me.DataGridView23.Size = New System.Drawing.Size(220, 132)
  2010. Me.DataGridView23.TabIndex = 702
  2011. '
  2012. 'B23_tb
  2013. '
  2014. Me.B23_tb.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  2015. Me.B23_tb.Location = New System.Drawing.Point(175, -1)
  2016. Me.B23_tb.Name = "B23_tb"
  2017. Me.B23_tb.Size = New System.Drawing.Size(40, 23)
  2018. Me.B23_tb.TabIndex = 65
  2019. Me.B23_tb.Text = "明細"
  2020. Me.B23_tb.UseVisualStyleBackColor = True
  2021. '
  2022. 'Label23
  2023. '
  2024. Me.Label23.AutoSize = True
  2025. Me.Label23.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2026. Me.Label23.Location = New System.Drawing.Point(33, 2)
  2027. Me.Label23.Name = "Label23"
  2028. Me.Label23.Size = New System.Drawing.Size(26, 17)
  2029. Me.Label23.TabIndex = 48
  2030. Me.Label23.Text = "XX"
  2031. '
  2032. '日期_lb23
  2033. '
  2034. Me.日期_lb23.AutoSize = True
  2035. Me.日期_lb23.Font = New System.Drawing.Font("微軟正黑體", 15.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2036. Me.日期_lb23.Location = New System.Drawing.Point(3, -1)
  2037. Me.日期_lb23.Name = "日期_lb23"
  2038. Me.日期_lb23.Size = New System.Drawing.Size(38, 26)
  2039. Me.日期_lb23.TabIndex = 51
  2040. Me.日期_lb23.Text = "00"
  2041. '
  2042. 'Panel24
  2043. '
  2044. Me.Panel24.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  2045. Me.Panel24.Controls.Add(Me.Button24)
  2046. Me.Panel24.Controls.Add(Me.DataGridView24)
  2047. Me.Panel24.Controls.Add(Me.B24_tb)
  2048. Me.Panel24.Controls.Add(Me.Label24)
  2049. Me.Panel24.Controls.Add(Me.日期_lb24)
  2050. Me.Panel24.Location = New System.Drawing.Point(778, 492)
  2051. Me.Panel24.Name = "Panel24"
  2052. Me.Panel24.Size = New System.Drawing.Size(220, 155)
  2053. Me.Panel24.TabIndex = 19
  2054. '
  2055. 'Button24
  2056. '
  2057. Me.Button24.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  2058. Me.Button24.Location = New System.Drawing.Point(129, -1)
  2059. Me.Button24.Name = "Button24"
  2060. Me.Button24.Size = New System.Drawing.Size(40, 23)
  2061. Me.Button24.TabIndex = 704
  2062. Me.Button24.Text = "參考"
  2063. Me.Button24.UseVisualStyleBackColor = True
  2064. '
  2065. 'DataGridView24
  2066. '
  2067. DataGridViewCellStyle24.BackColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(255, Byte), Integer), CType(CType(192, Byte), Integer))
  2068. Me.DataGridView24.AlternatingRowsDefaultCellStyle = DataGridViewCellStyle24
  2069. Me.DataGridView24.Anchor = CType((((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
  2070. Or System.Windows.Forms.AnchorStyles.Left) _
  2071. Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  2072. Me.DataGridView24.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill
  2073. Me.DataGridView24.BackgroundColor = System.Drawing.Color.White
  2074. Me.DataGridView24.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize
  2075. Me.DataGridView24.Location = New System.Drawing.Point(-1, 22)
  2076. Me.DataGridView24.Name = "DataGridView24"
  2077. Me.DataGridView24.RowHeadersWidth = 5
  2078. Me.DataGridView24.RowTemplate.Height = 24
  2079. Me.DataGridView24.Size = New System.Drawing.Size(220, 132)
  2080. Me.DataGridView24.TabIndex = 702
  2081. '
  2082. 'B24_tb
  2083. '
  2084. Me.B24_tb.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  2085. Me.B24_tb.Location = New System.Drawing.Point(175, -1)
  2086. Me.B24_tb.Name = "B24_tb"
  2087. Me.B24_tb.Size = New System.Drawing.Size(40, 23)
  2088. Me.B24_tb.TabIndex = 65
  2089. Me.B24_tb.Text = "明細"
  2090. Me.B24_tb.UseVisualStyleBackColor = True
  2091. '
  2092. 'Label24
  2093. '
  2094. Me.Label24.AutoSize = True
  2095. Me.Label24.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2096. Me.Label24.Location = New System.Drawing.Point(33, 2)
  2097. Me.Label24.Name = "Label24"
  2098. Me.Label24.Size = New System.Drawing.Size(26, 17)
  2099. Me.Label24.TabIndex = 52
  2100. Me.Label24.Text = "XX"
  2101. '
  2102. '日期_lb24
  2103. '
  2104. Me.日期_lb24.AutoSize = True
  2105. Me.日期_lb24.Font = New System.Drawing.Font("微軟正黑體", 15.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2106. Me.日期_lb24.Location = New System.Drawing.Point(3, -1)
  2107. Me.日期_lb24.Name = "日期_lb24"
  2108. Me.日期_lb24.Size = New System.Drawing.Size(38, 26)
  2109. Me.日期_lb24.TabIndex = 52
  2110. Me.日期_lb24.Text = "00"
  2111. '
  2112. 'Panel25
  2113. '
  2114. Me.Panel25.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  2115. Me.Panel25.Controls.Add(Me.Button25)
  2116. Me.Panel25.Controls.Add(Me.DataGridView25)
  2117. Me.Panel25.Controls.Add(Me.B25_tb)
  2118. Me.Panel25.Controls.Add(Me.Label25)
  2119. Me.Panel25.Controls.Add(Me.日期_lb25)
  2120. Me.Panel25.Location = New System.Drawing.Point(997, 492)
  2121. Me.Panel25.Name = "Panel25"
  2122. Me.Panel25.Size = New System.Drawing.Size(220, 155)
  2123. Me.Panel25.TabIndex = 20
  2124. '
  2125. 'Button25
  2126. '
  2127. Me.Button25.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  2128. Me.Button25.Location = New System.Drawing.Point(129, -1)
  2129. Me.Button25.Name = "Button25"
  2130. Me.Button25.Size = New System.Drawing.Size(40, 23)
  2131. Me.Button25.TabIndex = 705
  2132. Me.Button25.Text = "參考"
  2133. Me.Button25.UseVisualStyleBackColor = True
  2134. '
  2135. 'DataGridView25
  2136. '
  2137. DataGridViewCellStyle25.BackColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(255, Byte), Integer), CType(CType(192, Byte), Integer))
  2138. Me.DataGridView25.AlternatingRowsDefaultCellStyle = DataGridViewCellStyle25
  2139. Me.DataGridView25.Anchor = CType((((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
  2140. Or System.Windows.Forms.AnchorStyles.Left) _
  2141. Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  2142. Me.DataGridView25.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill
  2143. Me.DataGridView25.BackgroundColor = System.Drawing.Color.White
  2144. Me.DataGridView25.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize
  2145. Me.DataGridView25.Location = New System.Drawing.Point(-1, 22)
  2146. Me.DataGridView25.Name = "DataGridView25"
  2147. Me.DataGridView25.RowHeadersWidth = 5
  2148. Me.DataGridView25.RowTemplate.Height = 24
  2149. Me.DataGridView25.Size = New System.Drawing.Size(220, 132)
  2150. Me.DataGridView25.TabIndex = 702
  2151. '
  2152. 'B25_tb
  2153. '
  2154. Me.B25_tb.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  2155. Me.B25_tb.Location = New System.Drawing.Point(175, -1)
  2156. Me.B25_tb.Name = "B25_tb"
  2157. Me.B25_tb.Size = New System.Drawing.Size(40, 23)
  2158. Me.B25_tb.TabIndex = 65
  2159. Me.B25_tb.Text = "明細"
  2160. Me.B25_tb.UseVisualStyleBackColor = True
  2161. '
  2162. 'Label25
  2163. '
  2164. Me.Label25.AutoSize = True
  2165. Me.Label25.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2166. Me.Label25.Location = New System.Drawing.Point(33, 2)
  2167. Me.Label25.Name = "Label25"
  2168. Me.Label25.Size = New System.Drawing.Size(26, 17)
  2169. Me.Label25.TabIndex = 53
  2170. Me.Label25.Text = "XX"
  2171. '
  2172. '日期_lb25
  2173. '
  2174. Me.日期_lb25.AutoSize = True
  2175. Me.日期_lb25.Font = New System.Drawing.Font("微軟正黑體", 15.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2176. Me.日期_lb25.Location = New System.Drawing.Point(3, -1)
  2177. Me.日期_lb25.Name = "日期_lb25"
  2178. Me.日期_lb25.Size = New System.Drawing.Size(38, 26)
  2179. Me.日期_lb25.TabIndex = 53
  2180. Me.日期_lb25.Text = "00"
  2181. '
  2182. 'Panel26
  2183. '
  2184. Me.Panel26.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  2185. Me.Panel26.Controls.Add(Me.Button26)
  2186. Me.Panel26.Controls.Add(Me.DataGridView26)
  2187. Me.Panel26.Controls.Add(Me.B26_tb)
  2188. Me.Panel26.Controls.Add(Me.Label26)
  2189. Me.Panel26.Controls.Add(Me.日期_lb26)
  2190. Me.Panel26.Location = New System.Drawing.Point(1216, 492)
  2191. Me.Panel26.Name = "Panel26"
  2192. Me.Panel26.Size = New System.Drawing.Size(220, 155)
  2193. Me.Panel26.TabIndex = 21
  2194. '
  2195. 'Button26
  2196. '
  2197. Me.Button26.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  2198. Me.Button26.Location = New System.Drawing.Point(129, -1)
  2199. Me.Button26.Name = "Button26"
  2200. Me.Button26.Size = New System.Drawing.Size(40, 23)
  2201. Me.Button26.TabIndex = 704
  2202. Me.Button26.Text = "參考"
  2203. Me.Button26.UseVisualStyleBackColor = True
  2204. '
  2205. 'DataGridView26
  2206. '
  2207. DataGridViewCellStyle26.BackColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(255, Byte), Integer), CType(CType(192, Byte), Integer))
  2208. Me.DataGridView26.AlternatingRowsDefaultCellStyle = DataGridViewCellStyle26
  2209. Me.DataGridView26.Anchor = CType((((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
  2210. Or System.Windows.Forms.AnchorStyles.Left) _
  2211. Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  2212. Me.DataGridView26.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill
  2213. Me.DataGridView26.BackgroundColor = System.Drawing.Color.White
  2214. Me.DataGridView26.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize
  2215. Me.DataGridView26.Location = New System.Drawing.Point(-1, 22)
  2216. Me.DataGridView26.Name = "DataGridView26"
  2217. Me.DataGridView26.RowHeadersWidth = 5
  2218. Me.DataGridView26.RowTemplate.Height = 24
  2219. Me.DataGridView26.Size = New System.Drawing.Size(220, 132)
  2220. Me.DataGridView26.TabIndex = 702
  2221. '
  2222. 'B26_tb
  2223. '
  2224. Me.B26_tb.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  2225. Me.B26_tb.Location = New System.Drawing.Point(175, -1)
  2226. Me.B26_tb.Name = "B26_tb"
  2227. Me.B26_tb.Size = New System.Drawing.Size(40, 23)
  2228. Me.B26_tb.TabIndex = 65
  2229. Me.B26_tb.Text = "明細"
  2230. Me.B26_tb.UseVisualStyleBackColor = True
  2231. '
  2232. 'Label26
  2233. '
  2234. Me.Label26.AutoSize = True
  2235. Me.Label26.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2236. Me.Label26.Location = New System.Drawing.Point(33, 2)
  2237. Me.Label26.Name = "Label26"
  2238. Me.Label26.Size = New System.Drawing.Size(26, 17)
  2239. Me.Label26.TabIndex = 54
  2240. Me.Label26.Text = "XX"
  2241. '
  2242. '日期_lb26
  2243. '
  2244. Me.日期_lb26.AutoSize = True
  2245. Me.日期_lb26.Font = New System.Drawing.Font("微軟正黑體", 15.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2246. Me.日期_lb26.Location = New System.Drawing.Point(3, -1)
  2247. Me.日期_lb26.Name = "日期_lb26"
  2248. Me.日期_lb26.Size = New System.Drawing.Size(38, 26)
  2249. Me.日期_lb26.TabIndex = 54
  2250. Me.日期_lb26.Text = "00"
  2251. '
  2252. 'Panel27
  2253. '
  2254. Me.Panel27.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  2255. Me.Panel27.Controls.Add(Me.Button27)
  2256. Me.Panel27.Controls.Add(Me.DataGridView27)
  2257. Me.Panel27.Controls.Add(Me.B27_tb)
  2258. Me.Panel27.Controls.Add(Me.Label27)
  2259. Me.Panel27.Controls.Add(Me.日期_lb27)
  2260. Me.Panel27.Location = New System.Drawing.Point(1435, 492)
  2261. Me.Panel27.Name = "Panel27"
  2262. Me.Panel27.Size = New System.Drawing.Size(220, 155)
  2263. Me.Panel27.TabIndex = 22
  2264. '
  2265. 'Button27
  2266. '
  2267. Me.Button27.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  2268. Me.Button27.Location = New System.Drawing.Point(129, -1)
  2269. Me.Button27.Name = "Button27"
  2270. Me.Button27.Size = New System.Drawing.Size(40, 23)
  2271. Me.Button27.TabIndex = 704
  2272. Me.Button27.Text = "參考"
  2273. Me.Button27.UseVisualStyleBackColor = True
  2274. '
  2275. 'DataGridView27
  2276. '
  2277. DataGridViewCellStyle27.BackColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(255, Byte), Integer), CType(CType(192, Byte), Integer))
  2278. Me.DataGridView27.AlternatingRowsDefaultCellStyle = DataGridViewCellStyle27
  2279. Me.DataGridView27.Anchor = CType((((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
  2280. Or System.Windows.Forms.AnchorStyles.Left) _
  2281. Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  2282. Me.DataGridView27.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill
  2283. Me.DataGridView27.BackgroundColor = System.Drawing.Color.White
  2284. Me.DataGridView27.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize
  2285. Me.DataGridView27.Location = New System.Drawing.Point(-1, 22)
  2286. Me.DataGridView27.Name = "DataGridView27"
  2287. Me.DataGridView27.RowHeadersWidth = 5
  2288. Me.DataGridView27.RowTemplate.Height = 24
  2289. Me.DataGridView27.Size = New System.Drawing.Size(220, 132)
  2290. Me.DataGridView27.TabIndex = 703
  2291. '
  2292. 'B27_tb
  2293. '
  2294. Me.B27_tb.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  2295. Me.B27_tb.Location = New System.Drawing.Point(175, -1)
  2296. Me.B27_tb.Name = "B27_tb"
  2297. Me.B27_tb.Size = New System.Drawing.Size(40, 23)
  2298. Me.B27_tb.TabIndex = 71
  2299. Me.B27_tb.Text = "明細"
  2300. Me.B27_tb.UseVisualStyleBackColor = True
  2301. '
  2302. 'Label27
  2303. '
  2304. Me.Label27.AutoSize = True
  2305. Me.Label27.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2306. Me.Label27.Location = New System.Drawing.Point(33, 2)
  2307. Me.Label27.Name = "Label27"
  2308. Me.Label27.Size = New System.Drawing.Size(26, 17)
  2309. Me.Label27.TabIndex = 55
  2310. Me.Label27.Text = "XX"
  2311. '
  2312. '日期_lb27
  2313. '
  2314. Me.日期_lb27.AutoSize = True
  2315. Me.日期_lb27.Font = New System.Drawing.Font("微軟正黑體", 15.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2316. Me.日期_lb27.Location = New System.Drawing.Point(3, -1)
  2317. Me.日期_lb27.Name = "日期_lb27"
  2318. Me.日期_lb27.Size = New System.Drawing.Size(38, 26)
  2319. Me.日期_lb27.TabIndex = 70
  2320. Me.日期_lb27.Text = "00"
  2321. '
  2322. 'Panel28
  2323. '
  2324. Me.Panel28.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  2325. Me.Panel28.Controls.Add(Me.Button28)
  2326. Me.Panel28.Controls.Add(Me.DataGridView28)
  2327. Me.Panel28.Controls.Add(Me.B28_tb)
  2328. Me.Panel28.Controls.Add(Me.Label28)
  2329. Me.Panel28.Controls.Add(Me.日期_lb28)
  2330. Me.Panel28.ForeColor = System.Drawing.Color.Green
  2331. Me.Panel28.Location = New System.Drawing.Point(1654, 492)
  2332. Me.Panel28.Name = "Panel28"
  2333. Me.Panel28.Size = New System.Drawing.Size(220, 155)
  2334. Me.Panel28.TabIndex = 23
  2335. '
  2336. 'Button28
  2337. '
  2338. Me.Button28.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  2339. Me.Button28.Location = New System.Drawing.Point(129, -1)
  2340. Me.Button28.Name = "Button28"
  2341. Me.Button28.Size = New System.Drawing.Size(40, 23)
  2342. Me.Button28.TabIndex = 705
  2343. Me.Button28.Text = "參考"
  2344. Me.Button28.UseVisualStyleBackColor = True
  2345. '
  2346. 'DataGridView28
  2347. '
  2348. DataGridViewCellStyle28.BackColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(255, Byte), Integer), CType(CType(192, Byte), Integer))
  2349. Me.DataGridView28.AlternatingRowsDefaultCellStyle = DataGridViewCellStyle28
  2350. Me.DataGridView28.Anchor = CType((((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
  2351. Or System.Windows.Forms.AnchorStyles.Left) _
  2352. Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  2353. Me.DataGridView28.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill
  2354. Me.DataGridView28.BackgroundColor = System.Drawing.Color.White
  2355. Me.DataGridView28.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize
  2356. Me.DataGridView28.Location = New System.Drawing.Point(-1, 22)
  2357. Me.DataGridView28.Name = "DataGridView28"
  2358. Me.DataGridView28.RowHeadersWidth = 5
  2359. Me.DataGridView28.RowTemplate.Height = 24
  2360. Me.DataGridView28.Size = New System.Drawing.Size(220, 132)
  2361. Me.DataGridView28.TabIndex = 702
  2362. '
  2363. 'B28_tb
  2364. '
  2365. Me.B28_tb.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  2366. Me.B28_tb.Location = New System.Drawing.Point(175, -1)
  2367. Me.B28_tb.Name = "B28_tb"
  2368. Me.B28_tb.Size = New System.Drawing.Size(40, 23)
  2369. Me.B28_tb.TabIndex = 72
  2370. Me.B28_tb.Text = "明細"
  2371. Me.B28_tb.UseVisualStyleBackColor = True
  2372. '
  2373. 'Label28
  2374. '
  2375. Me.Label28.AutoSize = True
  2376. Me.Label28.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2377. Me.Label28.Location = New System.Drawing.Point(33, 2)
  2378. Me.Label28.Name = "Label28"
  2379. Me.Label28.Size = New System.Drawing.Size(26, 17)
  2380. Me.Label28.TabIndex = 71
  2381. Me.Label28.Text = "XX"
  2382. '
  2383. '日期_lb28
  2384. '
  2385. Me.日期_lb28.AutoSize = True
  2386. Me.日期_lb28.Font = New System.Drawing.Font("微軟正黑體", 15.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2387. Me.日期_lb28.Location = New System.Drawing.Point(3, -1)
  2388. Me.日期_lb28.Name = "日期_lb28"
  2389. Me.日期_lb28.Size = New System.Drawing.Size(38, 26)
  2390. Me.日期_lb28.TabIndex = 69
  2391. Me.日期_lb28.Text = "00"
  2392. '
  2393. 'Panel29
  2394. '
  2395. Me.Panel29.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  2396. Me.Panel29.Controls.Add(Me.Button29)
  2397. Me.Panel29.Controls.Add(Me.DataGridView29)
  2398. Me.Panel29.Controls.Add(Me.B29_tb)
  2399. Me.Panel29.Controls.Add(Me.Label29)
  2400. Me.Panel29.Controls.Add(Me.日期_lb29)
  2401. Me.Panel29.ForeColor = System.Drawing.Color.Red
  2402. Me.Panel29.Location = New System.Drawing.Point(340, 646)
  2403. Me.Panel29.Name = "Panel29"
  2404. Me.Panel29.Size = New System.Drawing.Size(220, 155)
  2405. Me.Panel29.TabIndex = 24
  2406. '
  2407. 'Button29
  2408. '
  2409. Me.Button29.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  2410. Me.Button29.Location = New System.Drawing.Point(129, -1)
  2411. Me.Button29.Name = "Button29"
  2412. Me.Button29.Size = New System.Drawing.Size(40, 23)
  2413. Me.Button29.TabIndex = 704
  2414. Me.Button29.Text = "參考"
  2415. Me.Button29.UseVisualStyleBackColor = True
  2416. '
  2417. 'DataGridView29
  2418. '
  2419. DataGridViewCellStyle29.BackColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(255, Byte), Integer), CType(CType(192, Byte), Integer))
  2420. Me.DataGridView29.AlternatingRowsDefaultCellStyle = DataGridViewCellStyle29
  2421. Me.DataGridView29.Anchor = CType((((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
  2422. Or System.Windows.Forms.AnchorStyles.Left) _
  2423. Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  2424. Me.DataGridView29.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill
  2425. Me.DataGridView29.BackgroundColor = System.Drawing.Color.White
  2426. Me.DataGridView29.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize
  2427. Me.DataGridView29.Location = New System.Drawing.Point(-1, 22)
  2428. Me.DataGridView29.Name = "DataGridView29"
  2429. Me.DataGridView29.RowHeadersWidth = 5
  2430. Me.DataGridView29.RowTemplate.Height = 24
  2431. Me.DataGridView29.Size = New System.Drawing.Size(220, 132)
  2432. Me.DataGridView29.TabIndex = 702
  2433. '
  2434. 'B29_tb
  2435. '
  2436. Me.B29_tb.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  2437. Me.B29_tb.Location = New System.Drawing.Point(175, -1)
  2438. Me.B29_tb.Name = "B29_tb"
  2439. Me.B29_tb.Size = New System.Drawing.Size(40, 23)
  2440. Me.B29_tb.TabIndex = 65
  2441. Me.B29_tb.Text = "明細"
  2442. Me.B29_tb.UseVisualStyleBackColor = True
  2443. '
  2444. 'Label29
  2445. '
  2446. Me.Label29.AutoSize = True
  2447. Me.Label29.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2448. Me.Label29.Location = New System.Drawing.Point(33, 2)
  2449. Me.Label29.Name = "Label29"
  2450. Me.Label29.Size = New System.Drawing.Size(26, 17)
  2451. Me.Label29.TabIndex = 48
  2452. Me.Label29.Text = "XX"
  2453. '
  2454. '日期_lb29
  2455. '
  2456. Me.日期_lb29.AutoSize = True
  2457. Me.日期_lb29.Font = New System.Drawing.Font("微軟正黑體", 15.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2458. Me.日期_lb29.Location = New System.Drawing.Point(3, -1)
  2459. Me.日期_lb29.Name = "日期_lb29"
  2460. Me.日期_lb29.Size = New System.Drawing.Size(38, 26)
  2461. Me.日期_lb29.TabIndex = 46
  2462. Me.日期_lb29.Text = "00"
  2463. '
  2464. 'Panel30
  2465. '
  2466. Me.Panel30.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  2467. Me.Panel30.Controls.Add(Me.Button30)
  2468. Me.Panel30.Controls.Add(Me.DataGridView30)
  2469. Me.Panel30.Controls.Add(Me.B30_tb)
  2470. Me.Panel30.Controls.Add(Me.Label30)
  2471. Me.Panel30.Controls.Add(Me.日期_lb30)
  2472. Me.Panel30.Location = New System.Drawing.Point(559, 646)
  2473. Me.Panel30.Name = "Panel30"
  2474. Me.Panel30.Size = New System.Drawing.Size(220, 155)
  2475. Me.Panel30.TabIndex = 25
  2476. '
  2477. 'Button30
  2478. '
  2479. Me.Button30.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  2480. Me.Button30.Location = New System.Drawing.Point(129, -1)
  2481. Me.Button30.Name = "Button30"
  2482. Me.Button30.Size = New System.Drawing.Size(40, 23)
  2483. Me.Button30.TabIndex = 704
  2484. Me.Button30.Text = "參考"
  2485. Me.Button30.UseVisualStyleBackColor = True
  2486. '
  2487. 'DataGridView30
  2488. '
  2489. DataGridViewCellStyle30.BackColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(255, Byte), Integer), CType(CType(192, Byte), Integer))
  2490. Me.DataGridView30.AlternatingRowsDefaultCellStyle = DataGridViewCellStyle30
  2491. Me.DataGridView30.Anchor = CType((((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
  2492. Or System.Windows.Forms.AnchorStyles.Left) _
  2493. Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  2494. Me.DataGridView30.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill
  2495. Me.DataGridView30.BackgroundColor = System.Drawing.Color.White
  2496. Me.DataGridView30.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize
  2497. Me.DataGridView30.Location = New System.Drawing.Point(-1, 22)
  2498. Me.DataGridView30.Name = "DataGridView30"
  2499. Me.DataGridView30.RowHeadersWidth = 5
  2500. Me.DataGridView30.RowTemplate.Height = 24
  2501. Me.DataGridView30.Size = New System.Drawing.Size(220, 132)
  2502. Me.DataGridView30.TabIndex = 702
  2503. '
  2504. 'B30_tb
  2505. '
  2506. Me.B30_tb.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  2507. Me.B30_tb.Location = New System.Drawing.Point(175, -1)
  2508. Me.B30_tb.Name = "B30_tb"
  2509. Me.B30_tb.Size = New System.Drawing.Size(40, 23)
  2510. Me.B30_tb.TabIndex = 65
  2511. Me.B30_tb.Text = "明細"
  2512. Me.B30_tb.UseVisualStyleBackColor = True
  2513. '
  2514. 'Label30
  2515. '
  2516. Me.Label30.AutoSize = True
  2517. Me.Label30.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2518. Me.Label30.Location = New System.Drawing.Point(33, 2)
  2519. Me.Label30.Name = "Label30"
  2520. Me.Label30.Size = New System.Drawing.Size(26, 17)
  2521. Me.Label30.TabIndex = 49
  2522. Me.Label30.Text = "XX"
  2523. '
  2524. '日期_lb30
  2525. '
  2526. Me.日期_lb30.AutoSize = True
  2527. Me.日期_lb30.Font = New System.Drawing.Font("微軟正黑體", 15.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2528. Me.日期_lb30.Location = New System.Drawing.Point(3, -1)
  2529. Me.日期_lb30.Name = "日期_lb30"
  2530. Me.日期_lb30.Size = New System.Drawing.Size(38, 26)
  2531. Me.日期_lb30.TabIndex = 50
  2532. Me.日期_lb30.Text = "00"
  2533. '
  2534. 'Panel31
  2535. '
  2536. Me.Panel31.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  2537. Me.Panel31.Controls.Add(Me.Button31)
  2538. Me.Panel31.Controls.Add(Me.DataGridView31)
  2539. Me.Panel31.Controls.Add(Me.B31_tb)
  2540. Me.Panel31.Controls.Add(Me.Label31)
  2541. Me.Panel31.Controls.Add(Me.日期_lb31)
  2542. Me.Panel31.Location = New System.Drawing.Point(778, 646)
  2543. Me.Panel31.Name = "Panel31"
  2544. Me.Panel31.Size = New System.Drawing.Size(220, 155)
  2545. Me.Panel31.TabIndex = 26
  2546. '
  2547. 'Button31
  2548. '
  2549. Me.Button31.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  2550. Me.Button31.Location = New System.Drawing.Point(129, -1)
  2551. Me.Button31.Name = "Button31"
  2552. Me.Button31.Size = New System.Drawing.Size(40, 23)
  2553. Me.Button31.TabIndex = 704
  2554. Me.Button31.Text = "參考"
  2555. Me.Button31.UseVisualStyleBackColor = True
  2556. '
  2557. 'DataGridView31
  2558. '
  2559. DataGridViewCellStyle31.BackColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(255, Byte), Integer), CType(CType(192, Byte), Integer))
  2560. Me.DataGridView31.AlternatingRowsDefaultCellStyle = DataGridViewCellStyle31
  2561. Me.DataGridView31.Anchor = CType((((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
  2562. Or System.Windows.Forms.AnchorStyles.Left) _
  2563. Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  2564. Me.DataGridView31.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill
  2565. Me.DataGridView31.BackgroundColor = System.Drawing.Color.White
  2566. Me.DataGridView31.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize
  2567. Me.DataGridView31.Location = New System.Drawing.Point(-1, 22)
  2568. Me.DataGridView31.Name = "DataGridView31"
  2569. Me.DataGridView31.RowHeadersWidth = 5
  2570. Me.DataGridView31.RowTemplate.Height = 24
  2571. Me.DataGridView31.Size = New System.Drawing.Size(220, 132)
  2572. Me.DataGridView31.TabIndex = 702
  2573. '
  2574. 'B31_tb
  2575. '
  2576. Me.B31_tb.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  2577. Me.B31_tb.Location = New System.Drawing.Point(175, -1)
  2578. Me.B31_tb.Name = "B31_tb"
  2579. Me.B31_tb.Size = New System.Drawing.Size(40, 23)
  2580. Me.B31_tb.TabIndex = 65
  2581. Me.B31_tb.Text = "明細"
  2582. Me.B31_tb.UseVisualStyleBackColor = True
  2583. '
  2584. 'Label31
  2585. '
  2586. Me.Label31.AutoSize = True
  2587. Me.Label31.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2588. Me.Label31.Location = New System.Drawing.Point(33, 2)
  2589. Me.Label31.Name = "Label31"
  2590. Me.Label31.Size = New System.Drawing.Size(26, 17)
  2591. Me.Label31.TabIndex = 51
  2592. Me.Label31.Text = "XX"
  2593. '
  2594. '日期_lb31
  2595. '
  2596. Me.日期_lb31.AutoSize = True
  2597. Me.日期_lb31.Font = New System.Drawing.Font("微軟正黑體", 15.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2598. Me.日期_lb31.Location = New System.Drawing.Point(3, -1)
  2599. Me.日期_lb31.Name = "日期_lb31"
  2600. Me.日期_lb31.Size = New System.Drawing.Size(38, 26)
  2601. Me.日期_lb31.TabIndex = 49
  2602. Me.日期_lb31.Text = "00"
  2603. '
  2604. 'Panel32
  2605. '
  2606. Me.Panel32.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  2607. Me.Panel32.Controls.Add(Me.Button32)
  2608. Me.Panel32.Controls.Add(Me.DataGridView32)
  2609. Me.Panel32.Controls.Add(Me.B32_tb)
  2610. Me.Panel32.Controls.Add(Me.Label32)
  2611. Me.Panel32.Controls.Add(Me.日期_lb32)
  2612. Me.Panel32.Location = New System.Drawing.Point(997, 646)
  2613. Me.Panel32.Name = "Panel32"
  2614. Me.Panel32.Size = New System.Drawing.Size(220, 155)
  2615. Me.Panel32.TabIndex = 27
  2616. '
  2617. 'Button32
  2618. '
  2619. Me.Button32.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  2620. Me.Button32.Location = New System.Drawing.Point(129, -1)
  2621. Me.Button32.Name = "Button32"
  2622. Me.Button32.Size = New System.Drawing.Size(40, 23)
  2623. Me.Button32.TabIndex = 705
  2624. Me.Button32.Text = "參考"
  2625. Me.Button32.UseVisualStyleBackColor = True
  2626. '
  2627. 'DataGridView32
  2628. '
  2629. DataGridViewCellStyle32.BackColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(255, Byte), Integer), CType(CType(192, Byte), Integer))
  2630. Me.DataGridView32.AlternatingRowsDefaultCellStyle = DataGridViewCellStyle32
  2631. Me.DataGridView32.Anchor = CType((((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
  2632. Or System.Windows.Forms.AnchorStyles.Left) _
  2633. Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  2634. Me.DataGridView32.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill
  2635. Me.DataGridView32.BackgroundColor = System.Drawing.Color.White
  2636. Me.DataGridView32.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize
  2637. Me.DataGridView32.Location = New System.Drawing.Point(-1, 22)
  2638. Me.DataGridView32.Name = "DataGridView32"
  2639. Me.DataGridView32.RowHeadersWidth = 5
  2640. Me.DataGridView32.RowTemplate.Height = 24
  2641. Me.DataGridView32.Size = New System.Drawing.Size(220, 132)
  2642. Me.DataGridView32.TabIndex = 702
  2643. '
  2644. 'B32_tb
  2645. '
  2646. Me.B32_tb.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  2647. Me.B32_tb.Location = New System.Drawing.Point(175, -1)
  2648. Me.B32_tb.Name = "B32_tb"
  2649. Me.B32_tb.Size = New System.Drawing.Size(40, 23)
  2650. Me.B32_tb.TabIndex = 65
  2651. Me.B32_tb.Text = "明細"
  2652. Me.B32_tb.UseVisualStyleBackColor = True
  2653. '
  2654. 'Label32
  2655. '
  2656. Me.Label32.AutoSize = True
  2657. Me.Label32.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2658. Me.Label32.Location = New System.Drawing.Point(33, 2)
  2659. Me.Label32.Name = "Label32"
  2660. Me.Label32.Size = New System.Drawing.Size(26, 17)
  2661. Me.Label32.TabIndex = 52
  2662. Me.Label32.Text = "XX"
  2663. '
  2664. '日期_lb32
  2665. '
  2666. Me.日期_lb32.AutoSize = True
  2667. Me.日期_lb32.Font = New System.Drawing.Font("微軟正黑體", 15.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2668. Me.日期_lb32.Location = New System.Drawing.Point(3, -1)
  2669. Me.日期_lb32.Name = "日期_lb32"
  2670. Me.日期_lb32.Size = New System.Drawing.Size(38, 26)
  2671. Me.日期_lb32.TabIndex = 55
  2672. Me.日期_lb32.Text = "00"
  2673. '
  2674. 'Panel33
  2675. '
  2676. Me.Panel33.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  2677. Me.Panel33.Controls.Add(Me.Button33)
  2678. Me.Panel33.Controls.Add(Me.DataGridView33)
  2679. Me.Panel33.Controls.Add(Me.B33_tb)
  2680. Me.Panel33.Controls.Add(Me.Label33)
  2681. Me.Panel33.Controls.Add(Me.日期_lb33)
  2682. Me.Panel33.Location = New System.Drawing.Point(1216, 646)
  2683. Me.Panel33.Name = "Panel33"
  2684. Me.Panel33.Size = New System.Drawing.Size(220, 155)
  2685. Me.Panel33.TabIndex = 28
  2686. '
  2687. 'Button33
  2688. '
  2689. Me.Button33.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  2690. Me.Button33.Location = New System.Drawing.Point(129, -2)
  2691. Me.Button33.Name = "Button33"
  2692. Me.Button33.Size = New System.Drawing.Size(40, 23)
  2693. Me.Button33.TabIndex = 704
  2694. Me.Button33.Text = "參考"
  2695. Me.Button33.UseVisualStyleBackColor = True
  2696. '
  2697. 'DataGridView33
  2698. '
  2699. DataGridViewCellStyle33.BackColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(255, Byte), Integer), CType(CType(192, Byte), Integer))
  2700. Me.DataGridView33.AlternatingRowsDefaultCellStyle = DataGridViewCellStyle33
  2701. Me.DataGridView33.Anchor = CType((((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
  2702. Or System.Windows.Forms.AnchorStyles.Left) _
  2703. Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  2704. Me.DataGridView33.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill
  2705. Me.DataGridView33.BackgroundColor = System.Drawing.Color.White
  2706. Me.DataGridView33.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize
  2707. Me.DataGridView33.Location = New System.Drawing.Point(-1, 22)
  2708. Me.DataGridView33.Name = "DataGridView33"
  2709. Me.DataGridView33.RowHeadersWidth = 5
  2710. Me.DataGridView33.RowTemplate.Height = 24
  2711. Me.DataGridView33.Size = New System.Drawing.Size(220, 132)
  2712. Me.DataGridView33.TabIndex = 702
  2713. '
  2714. 'B33_tb
  2715. '
  2716. Me.B33_tb.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  2717. Me.B33_tb.Location = New System.Drawing.Point(175, -1)
  2718. Me.B33_tb.Name = "B33_tb"
  2719. Me.B33_tb.Size = New System.Drawing.Size(40, 23)
  2720. Me.B33_tb.TabIndex = 65
  2721. Me.B33_tb.Text = "明細"
  2722. Me.B33_tb.UseVisualStyleBackColor = True
  2723. '
  2724. 'Label33
  2725. '
  2726. Me.Label33.AutoSize = True
  2727. Me.Label33.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2728. Me.Label33.Location = New System.Drawing.Point(33, 2)
  2729. Me.Label33.Name = "Label33"
  2730. Me.Label33.Size = New System.Drawing.Size(26, 17)
  2731. Me.Label33.TabIndex = 56
  2732. Me.Label33.Text = "XX"
  2733. '
  2734. '日期_lb33
  2735. '
  2736. Me.日期_lb33.AutoSize = True
  2737. Me.日期_lb33.Font = New System.Drawing.Font("微軟正黑體", 15.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2738. Me.日期_lb33.Location = New System.Drawing.Point(3, -1)
  2739. Me.日期_lb33.Name = "日期_lb33"
  2740. Me.日期_lb33.Size = New System.Drawing.Size(38, 26)
  2741. Me.日期_lb33.TabIndex = 57
  2742. Me.日期_lb33.Text = "00"
  2743. '
  2744. 'Panel34
  2745. '
  2746. Me.Panel34.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  2747. Me.Panel34.Controls.Add(Me.Button34)
  2748. Me.Panel34.Controls.Add(Me.DataGridView34)
  2749. Me.Panel34.Controls.Add(Me.B34_tb)
  2750. Me.Panel34.Controls.Add(Me.Label34)
  2751. Me.Panel34.Controls.Add(Me.日期_lb34)
  2752. Me.Panel34.Location = New System.Drawing.Point(1435, 646)
  2753. Me.Panel34.Name = "Panel34"
  2754. Me.Panel34.Size = New System.Drawing.Size(220, 155)
  2755. Me.Panel34.TabIndex = 29
  2756. '
  2757. 'Button34
  2758. '
  2759. Me.Button34.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  2760. Me.Button34.Location = New System.Drawing.Point(129, -2)
  2761. Me.Button34.Name = "Button34"
  2762. Me.Button34.Size = New System.Drawing.Size(40, 23)
  2763. Me.Button34.TabIndex = 704
  2764. Me.Button34.Text = "參考"
  2765. Me.Button34.UseVisualStyleBackColor = True
  2766. '
  2767. 'DataGridView34
  2768. '
  2769. DataGridViewCellStyle34.BackColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(255, Byte), Integer), CType(CType(192, Byte), Integer))
  2770. Me.DataGridView34.AlternatingRowsDefaultCellStyle = DataGridViewCellStyle34
  2771. Me.DataGridView34.Anchor = CType((((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
  2772. Or System.Windows.Forms.AnchorStyles.Left) _
  2773. Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  2774. Me.DataGridView34.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill
  2775. Me.DataGridView34.BackgroundColor = System.Drawing.Color.White
  2776. Me.DataGridView34.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize
  2777. Me.DataGridView34.Location = New System.Drawing.Point(-1, 22)
  2778. Me.DataGridView34.Name = "DataGridView34"
  2779. Me.DataGridView34.RowHeadersWidth = 5
  2780. Me.DataGridView34.RowTemplate.Height = 24
  2781. Me.DataGridView34.Size = New System.Drawing.Size(220, 132)
  2782. Me.DataGridView34.TabIndex = 702
  2783. '
  2784. 'B34_tb
  2785. '
  2786. Me.B34_tb.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  2787. Me.B34_tb.Location = New System.Drawing.Point(175, -1)
  2788. Me.B34_tb.Name = "B34_tb"
  2789. Me.B34_tb.Size = New System.Drawing.Size(40, 23)
  2790. Me.B34_tb.TabIndex = 73
  2791. Me.B34_tb.Text = "明細"
  2792. Me.B34_tb.UseVisualStyleBackColor = True
  2793. '
  2794. 'Label34
  2795. '
  2796. Me.Label34.AutoSize = True
  2797. Me.Label34.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2798. Me.Label34.Location = New System.Drawing.Point(33, 2)
  2799. Me.Label34.Name = "Label34"
  2800. Me.Label34.Size = New System.Drawing.Size(26, 17)
  2801. Me.Label34.TabIndex = 58
  2802. Me.Label34.Text = "XX"
  2803. '
  2804. '日期_lb34
  2805. '
  2806. Me.日期_lb34.AutoSize = True
  2807. Me.日期_lb34.Font = New System.Drawing.Font("微軟正黑體", 15.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2808. Me.日期_lb34.Location = New System.Drawing.Point(3, -1)
  2809. Me.日期_lb34.Name = "日期_lb34"
  2810. Me.日期_lb34.Size = New System.Drawing.Size(38, 26)
  2811. Me.日期_lb34.TabIndex = 72
  2812. Me.日期_lb34.Text = "00"
  2813. '
  2814. 'Panel35
  2815. '
  2816. Me.Panel35.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  2817. Me.Panel35.Controls.Add(Me.Button35)
  2818. Me.Panel35.Controls.Add(Me.DataGridView35)
  2819. Me.Panel35.Controls.Add(Me.B35_tb)
  2820. Me.Panel35.Controls.Add(Me.Label35)
  2821. Me.Panel35.Controls.Add(Me.日期_lb35)
  2822. Me.Panel35.ForeColor = System.Drawing.Color.Green
  2823. Me.Panel35.Location = New System.Drawing.Point(1654, 646)
  2824. Me.Panel35.Name = "Panel35"
  2825. Me.Panel35.Size = New System.Drawing.Size(220, 155)
  2826. Me.Panel35.TabIndex = 30
  2827. '
  2828. 'Button35
  2829. '
  2830. Me.Button35.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  2831. Me.Button35.Location = New System.Drawing.Point(129, -1)
  2832. Me.Button35.Name = "Button35"
  2833. Me.Button35.Size = New System.Drawing.Size(40, 23)
  2834. Me.Button35.TabIndex = 704
  2835. Me.Button35.Text = "參考"
  2836. Me.Button35.UseVisualStyleBackColor = True
  2837. '
  2838. 'DataGridView35
  2839. '
  2840. DataGridViewCellStyle35.BackColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(255, Byte), Integer), CType(CType(192, Byte), Integer))
  2841. Me.DataGridView35.AlternatingRowsDefaultCellStyle = DataGridViewCellStyle35
  2842. Me.DataGridView35.Anchor = CType((((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
  2843. Or System.Windows.Forms.AnchorStyles.Left) _
  2844. Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  2845. Me.DataGridView35.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill
  2846. Me.DataGridView35.BackgroundColor = System.Drawing.Color.White
  2847. Me.DataGridView35.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize
  2848. Me.DataGridView35.Location = New System.Drawing.Point(-1, 22)
  2849. Me.DataGridView35.Name = "DataGridView35"
  2850. Me.DataGridView35.RowHeadersWidth = 5
  2851. Me.DataGridView35.RowTemplate.Height = 24
  2852. Me.DataGridView35.Size = New System.Drawing.Size(220, 132)
  2853. Me.DataGridView35.TabIndex = 703
  2854. '
  2855. 'B35_tb
  2856. '
  2857. Me.B35_tb.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  2858. Me.B35_tb.Location = New System.Drawing.Point(175, -1)
  2859. Me.B35_tb.Name = "B35_tb"
  2860. Me.B35_tb.Size = New System.Drawing.Size(40, 23)
  2861. Me.B35_tb.TabIndex = 76
  2862. Me.B35_tb.Text = "明細"
  2863. Me.B35_tb.UseVisualStyleBackColor = True
  2864. '
  2865. 'Label35
  2866. '
  2867. Me.Label35.AutoSize = True
  2868. Me.Label35.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2869. Me.Label35.Location = New System.Drawing.Point(33, 2)
  2870. Me.Label35.Name = "Label35"
  2871. Me.Label35.Size = New System.Drawing.Size(26, 17)
  2872. Me.Label35.TabIndex = 73
  2873. Me.Label35.Text = "XX"
  2874. '
  2875. '日期_lb35
  2876. '
  2877. Me.日期_lb35.AutoSize = True
  2878. Me.日期_lb35.Font = New System.Drawing.Font("微軟正黑體", 15.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2879. Me.日期_lb35.Location = New System.Drawing.Point(3, -1)
  2880. Me.日期_lb35.Name = "日期_lb35"
  2881. Me.日期_lb35.Size = New System.Drawing.Size(38, 26)
  2882. Me.日期_lb35.TabIndex = 75
  2883. Me.日期_lb35.Text = "00"
  2884. '
  2885. 'Panel36
  2886. '
  2887. Me.Panel36.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  2888. Me.Panel36.Controls.Add(Me.DataGridView36)
  2889. Me.Panel36.Controls.Add(Me.B36_tb)
  2890. Me.Panel36.Controls.Add(Me.Label36)
  2891. Me.Panel36.Controls.Add(Me.日期_lb36)
  2892. Me.Panel36.Controls.Add(Me.Button36)
  2893. Me.Panel36.ForeColor = System.Drawing.Color.Red
  2894. Me.Panel36.Location = New System.Drawing.Point(340, 800)
  2895. Me.Panel36.Name = "Panel36"
  2896. Me.Panel36.Size = New System.Drawing.Size(220, 155)
  2897. Me.Panel36.TabIndex = 31
  2898. '
  2899. 'DataGridView36
  2900. '
  2901. DataGridViewCellStyle36.BackColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(255, Byte), Integer), CType(CType(192, Byte), Integer))
  2902. Me.DataGridView36.AlternatingRowsDefaultCellStyle = DataGridViewCellStyle36
  2903. Me.DataGridView36.Anchor = CType((((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
  2904. Or System.Windows.Forms.AnchorStyles.Left) _
  2905. Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  2906. Me.DataGridView36.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill
  2907. Me.DataGridView36.BackgroundColor = System.Drawing.Color.White
  2908. Me.DataGridView36.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize
  2909. Me.DataGridView36.Location = New System.Drawing.Point(-1, 22)
  2910. Me.DataGridView36.Name = "DataGridView36"
  2911. Me.DataGridView36.RowHeadersWidth = 5
  2912. Me.DataGridView36.RowTemplate.Height = 24
  2913. Me.DataGridView36.Size = New System.Drawing.Size(220, 132)
  2914. Me.DataGridView36.TabIndex = 702
  2915. '
  2916. 'B36_tb
  2917. '
  2918. Me.B36_tb.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  2919. Me.B36_tb.Location = New System.Drawing.Point(175, -1)
  2920. Me.B36_tb.Name = "B36_tb"
  2921. Me.B36_tb.Size = New System.Drawing.Size(40, 23)
  2922. Me.B36_tb.TabIndex = 65
  2923. Me.B36_tb.Text = "明細"
  2924. Me.B36_tb.UseVisualStyleBackColor = True
  2925. '
  2926. 'Label36
  2927. '
  2928. Me.Label36.AutoSize = True
  2929. Me.Label36.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2930. Me.Label36.Location = New System.Drawing.Point(33, 2)
  2931. Me.Label36.Name = "Label36"
  2932. Me.Label36.Size = New System.Drawing.Size(26, 17)
  2933. Me.Label36.TabIndex = 47
  2934. Me.Label36.Text = "XX"
  2935. '
  2936. '日期_lb36
  2937. '
  2938. Me.日期_lb36.AutoSize = True
  2939. Me.日期_lb36.Font = New System.Drawing.Font("微軟正黑體", 15.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2940. Me.日期_lb36.Location = New System.Drawing.Point(3, -1)
  2941. Me.日期_lb36.Name = "日期_lb36"
  2942. Me.日期_lb36.Size = New System.Drawing.Size(38, 26)
  2943. Me.日期_lb36.TabIndex = 46
  2944. Me.日期_lb36.Text = "00"
  2945. '
  2946. 'Button36
  2947. '
  2948. Me.Button36.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  2949. Me.Button36.Location = New System.Drawing.Point(129, -1)
  2950. Me.Button36.Name = "Button36"
  2951. Me.Button36.Size = New System.Drawing.Size(40, 23)
  2952. Me.Button36.TabIndex = 704
  2953. Me.Button36.Text = "參考"
  2954. Me.Button36.UseVisualStyleBackColor = True
  2955. '
  2956. 'Panel37
  2957. '
  2958. Me.Panel37.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  2959. Me.Panel37.Controls.Add(Me.Button37)
  2960. Me.Panel37.Controls.Add(Me.DataGridView37)
  2961. Me.Panel37.Controls.Add(Me.B37_tb)
  2962. Me.Panel37.Controls.Add(Me.Label37)
  2963. Me.Panel37.Controls.Add(Me.日期_lb37)
  2964. Me.Panel37.Location = New System.Drawing.Point(559, 800)
  2965. Me.Panel37.Name = "Panel37"
  2966. Me.Panel37.Size = New System.Drawing.Size(220, 155)
  2967. Me.Panel37.TabIndex = 32
  2968. '
  2969. 'Button37
  2970. '
  2971. Me.Button37.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  2972. Me.Button37.Location = New System.Drawing.Point(129, -1)
  2973. Me.Button37.Name = "Button37"
  2974. Me.Button37.Size = New System.Drawing.Size(40, 23)
  2975. Me.Button37.TabIndex = 705
  2976. Me.Button37.Text = "參考"
  2977. Me.Button37.UseVisualStyleBackColor = True
  2978. '
  2979. 'DataGridView37
  2980. '
  2981. DataGridViewCellStyle37.BackColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(255, Byte), Integer), CType(CType(192, Byte), Integer))
  2982. Me.DataGridView37.AlternatingRowsDefaultCellStyle = DataGridViewCellStyle37
  2983. Me.DataGridView37.Anchor = CType((((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
  2984. Or System.Windows.Forms.AnchorStyles.Left) _
  2985. Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  2986. Me.DataGridView37.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill
  2987. Me.DataGridView37.BackgroundColor = System.Drawing.Color.White
  2988. Me.DataGridView37.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize
  2989. Me.DataGridView37.Location = New System.Drawing.Point(-1, 22)
  2990. Me.DataGridView37.Name = "DataGridView37"
  2991. Me.DataGridView37.RowHeadersWidth = 5
  2992. Me.DataGridView37.RowTemplate.Height = 24
  2993. Me.DataGridView37.Size = New System.Drawing.Size(220, 132)
  2994. Me.DataGridView37.TabIndex = 703
  2995. '
  2996. 'B37_tb
  2997. '
  2998. Me.B37_tb.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  2999. Me.B37_tb.Location = New System.Drawing.Point(175, -1)
  3000. Me.B37_tb.Name = "B37_tb"
  3001. Me.B37_tb.Size = New System.Drawing.Size(40, 23)
  3002. Me.B37_tb.TabIndex = 65
  3003. Me.B37_tb.Text = "明細"
  3004. Me.B37_tb.UseVisualStyleBackColor = True
  3005. '
  3006. 'Label37
  3007. '
  3008. Me.Label37.AutoSize = True
  3009. Me.Label37.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  3010. Me.Label37.Location = New System.Drawing.Point(33, 2)
  3011. Me.Label37.Name = "Label37"
  3012. Me.Label37.Size = New System.Drawing.Size(26, 17)
  3013. Me.Label37.TabIndex = 48
  3014. Me.Label37.Text = "XX"
  3015. '
  3016. '日期_lb37
  3017. '
  3018. Me.日期_lb37.AutoSize = True
  3019. Me.日期_lb37.Font = New System.Drawing.Font("微軟正黑體", 15.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  3020. Me.日期_lb37.Location = New System.Drawing.Point(3, -1)
  3021. Me.日期_lb37.Name = "日期_lb37"
  3022. Me.日期_lb37.Size = New System.Drawing.Size(38, 26)
  3023. Me.日期_lb37.TabIndex = 47
  3024. Me.日期_lb37.Text = "00"
  3025. '
  3026. 'Panel38
  3027. '
  3028. Me.Panel38.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  3029. Me.Panel38.Controls.Add(Me.Button38)
  3030. Me.Panel38.Controls.Add(Me.DataGridView38)
  3031. Me.Panel38.Controls.Add(Me.B38_tb)
  3032. Me.Panel38.Controls.Add(Me.Label38)
  3033. Me.Panel38.Controls.Add(Me.日期_lb38)
  3034. Me.Panel38.Location = New System.Drawing.Point(778, 800)
  3035. Me.Panel38.Name = "Panel38"
  3036. Me.Panel38.Size = New System.Drawing.Size(220, 155)
  3037. Me.Panel38.TabIndex = 33
  3038. '
  3039. 'Button38
  3040. '
  3041. Me.Button38.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  3042. Me.Button38.Location = New System.Drawing.Point(129, -1)
  3043. Me.Button38.Name = "Button38"
  3044. Me.Button38.Size = New System.Drawing.Size(40, 23)
  3045. Me.Button38.TabIndex = 706
  3046. Me.Button38.Text = "參考"
  3047. Me.Button38.UseVisualStyleBackColor = True
  3048. '
  3049. 'DataGridView38
  3050. '
  3051. DataGridViewCellStyle38.BackColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(255, Byte), Integer), CType(CType(192, Byte), Integer))
  3052. Me.DataGridView38.AlternatingRowsDefaultCellStyle = DataGridViewCellStyle38
  3053. Me.DataGridView38.Anchor = CType((((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
  3054. Or System.Windows.Forms.AnchorStyles.Left) _
  3055. Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  3056. Me.DataGridView38.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill
  3057. Me.DataGridView38.BackgroundColor = System.Drawing.Color.White
  3058. Me.DataGridView38.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize
  3059. Me.DataGridView38.Location = New System.Drawing.Point(-1, 22)
  3060. Me.DataGridView38.Name = "DataGridView38"
  3061. Me.DataGridView38.RowHeadersWidth = 5
  3062. Me.DataGridView38.RowTemplate.Height = 24
  3063. Me.DataGridView38.Size = New System.Drawing.Size(220, 132)
  3064. Me.DataGridView38.TabIndex = 702
  3065. '
  3066. 'B38_tb
  3067. '
  3068. Me.B38_tb.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  3069. Me.B38_tb.Location = New System.Drawing.Point(175, -1)
  3070. Me.B38_tb.Name = "B38_tb"
  3071. Me.B38_tb.Size = New System.Drawing.Size(40, 23)
  3072. Me.B38_tb.TabIndex = 65
  3073. Me.B38_tb.Text = "明細"
  3074. Me.B38_tb.UseVisualStyleBackColor = True
  3075. '
  3076. 'Label38
  3077. '
  3078. Me.Label38.AutoSize = True
  3079. Me.Label38.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  3080. Me.Label38.Location = New System.Drawing.Point(33, 2)
  3081. Me.Label38.Name = "Label38"
  3082. Me.Label38.Size = New System.Drawing.Size(26, 17)
  3083. Me.Label38.TabIndex = 49
  3084. Me.Label38.Text = "XX"
  3085. '
  3086. '日期_lb38
  3087. '
  3088. Me.日期_lb38.AutoSize = True
  3089. Me.日期_lb38.Font = New System.Drawing.Font("微軟正黑體", 15.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  3090. Me.日期_lb38.Location = New System.Drawing.Point(3, -1)
  3091. Me.日期_lb38.Name = "日期_lb38"
  3092. Me.日期_lb38.Size = New System.Drawing.Size(38, 26)
  3093. Me.日期_lb38.TabIndex = 48
  3094. Me.日期_lb38.Text = "00"
  3095. '
  3096. 'Panel39
  3097. '
  3098. Me.Panel39.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  3099. Me.Panel39.Controls.Add(Me.Button39)
  3100. Me.Panel39.Controls.Add(Me.DataGridView39)
  3101. Me.Panel39.Controls.Add(Me.B39_tb)
  3102. Me.Panel39.Controls.Add(Me.Label39)
  3103. Me.Panel39.Controls.Add(Me.日期_lb39)
  3104. Me.Panel39.Location = New System.Drawing.Point(997, 800)
  3105. Me.Panel39.Name = "Panel39"
  3106. Me.Panel39.Size = New System.Drawing.Size(220, 155)
  3107. Me.Panel39.TabIndex = 34
  3108. '
  3109. 'Button39
  3110. '
  3111. Me.Button39.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  3112. Me.Button39.Location = New System.Drawing.Point(129, -1)
  3113. Me.Button39.Name = "Button39"
  3114. Me.Button39.Size = New System.Drawing.Size(40, 23)
  3115. Me.Button39.TabIndex = 704
  3116. Me.Button39.Text = "參考"
  3117. Me.Button39.UseVisualStyleBackColor = True
  3118. '
  3119. 'DataGridView39
  3120. '
  3121. DataGridViewCellStyle39.BackColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(255, Byte), Integer), CType(CType(192, Byte), Integer))
  3122. Me.DataGridView39.AlternatingRowsDefaultCellStyle = DataGridViewCellStyle39
  3123. Me.DataGridView39.Anchor = CType((((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
  3124. Or System.Windows.Forms.AnchorStyles.Left) _
  3125. Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  3126. Me.DataGridView39.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill
  3127. Me.DataGridView39.BackgroundColor = System.Drawing.Color.White
  3128. Me.DataGridView39.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize
  3129. Me.DataGridView39.Location = New System.Drawing.Point(-1, 22)
  3130. Me.DataGridView39.Name = "DataGridView39"
  3131. Me.DataGridView39.RowHeadersWidth = 5
  3132. Me.DataGridView39.RowTemplate.Height = 24
  3133. Me.DataGridView39.Size = New System.Drawing.Size(220, 132)
  3134. Me.DataGridView39.TabIndex = 703
  3135. '
  3136. 'B39_tb
  3137. '
  3138. Me.B39_tb.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  3139. Me.B39_tb.Location = New System.Drawing.Point(175, -1)
  3140. Me.B39_tb.Name = "B39_tb"
  3141. Me.B39_tb.Size = New System.Drawing.Size(40, 23)
  3142. Me.B39_tb.TabIndex = 65
  3143. Me.B39_tb.Text = "明細"
  3144. Me.B39_tb.UseVisualStyleBackColor = True
  3145. '
  3146. 'Label39
  3147. '
  3148. Me.Label39.AutoSize = True
  3149. Me.Label39.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  3150. Me.Label39.Location = New System.Drawing.Point(33, 2)
  3151. Me.Label39.Name = "Label39"
  3152. Me.Label39.Size = New System.Drawing.Size(26, 17)
  3153. Me.Label39.TabIndex = 50
  3154. Me.Label39.Text = "XX"
  3155. '
  3156. '日期_lb39
  3157. '
  3158. Me.日期_lb39.AutoSize = True
  3159. Me.日期_lb39.Font = New System.Drawing.Font("微軟正黑體", 15.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  3160. Me.日期_lb39.Location = New System.Drawing.Point(3, -1)
  3161. Me.日期_lb39.Name = "日期_lb39"
  3162. Me.日期_lb39.Size = New System.Drawing.Size(38, 26)
  3163. Me.日期_lb39.TabIndex = 56
  3164. Me.日期_lb39.Text = "00"
  3165. '
  3166. 'Panel40
  3167. '
  3168. Me.Panel40.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  3169. Me.Panel40.Controls.Add(Me.Button40)
  3170. Me.Panel40.Controls.Add(Me.DataGridView40)
  3171. Me.Panel40.Controls.Add(Me.B40_tb)
  3172. Me.Panel40.Controls.Add(Me.Label40)
  3173. Me.Panel40.Controls.Add(Me.日期_lb40)
  3174. Me.Panel40.Location = New System.Drawing.Point(1216, 800)
  3175. Me.Panel40.Name = "Panel40"
  3176. Me.Panel40.Size = New System.Drawing.Size(220, 155)
  3177. Me.Panel40.TabIndex = 35
  3178. '
  3179. 'Button40
  3180. '
  3181. Me.Button40.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  3182. Me.Button40.Location = New System.Drawing.Point(129, -1)
  3183. Me.Button40.Name = "Button40"
  3184. Me.Button40.Size = New System.Drawing.Size(40, 23)
  3185. Me.Button40.TabIndex = 705
  3186. Me.Button40.Text = "參考"
  3187. Me.Button40.UseVisualStyleBackColor = True
  3188. '
  3189. 'DataGridView40
  3190. '
  3191. DataGridViewCellStyle40.BackColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(255, Byte), Integer), CType(CType(192, Byte), Integer))
  3192. Me.DataGridView40.AlternatingRowsDefaultCellStyle = DataGridViewCellStyle40
  3193. Me.DataGridView40.Anchor = CType((((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
  3194. Or System.Windows.Forms.AnchorStyles.Left) _
  3195. Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  3196. Me.DataGridView40.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill
  3197. Me.DataGridView40.BackgroundColor = System.Drawing.Color.White
  3198. Me.DataGridView40.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize
  3199. Me.DataGridView40.Location = New System.Drawing.Point(-1, 22)
  3200. Me.DataGridView40.Name = "DataGridView40"
  3201. Me.DataGridView40.RowHeadersWidth = 5
  3202. Me.DataGridView40.RowTemplate.Height = 24
  3203. Me.DataGridView40.Size = New System.Drawing.Size(220, 132)
  3204. Me.DataGridView40.TabIndex = 704
  3205. '
  3206. 'B40_tb
  3207. '
  3208. Me.B40_tb.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  3209. Me.B40_tb.Location = New System.Drawing.Point(175, -1)
  3210. Me.B40_tb.Name = "B40_tb"
  3211. Me.B40_tb.Size = New System.Drawing.Size(40, 23)
  3212. Me.B40_tb.TabIndex = 65
  3213. Me.B40_tb.Text = "明細"
  3214. Me.B40_tb.UseVisualStyleBackColor = True
  3215. '
  3216. 'Label40
  3217. '
  3218. Me.Label40.AutoSize = True
  3219. Me.Label40.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  3220. Me.Label40.Location = New System.Drawing.Point(33, 2)
  3221. Me.Label40.Name = "Label40"
  3222. Me.Label40.Size = New System.Drawing.Size(26, 17)
  3223. Me.Label40.TabIndex = 57
  3224. Me.Label40.Text = "XX"
  3225. '
  3226. '日期_lb40
  3227. '
  3228. Me.日期_lb40.AutoSize = True
  3229. Me.日期_lb40.Font = New System.Drawing.Font("微軟正黑體", 15.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  3230. Me.日期_lb40.Location = New System.Drawing.Point(3, -1)
  3231. Me.日期_lb40.Name = "日期_lb40"
  3232. Me.日期_lb40.Size = New System.Drawing.Size(38, 26)
  3233. Me.日期_lb40.TabIndex = 58
  3234. Me.日期_lb40.Text = "00"
  3235. '
  3236. 'Panel41
  3237. '
  3238. Me.Panel41.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  3239. Me.Panel41.Controls.Add(Me.Button41)
  3240. Me.Panel41.Controls.Add(Me.DataGridView41)
  3241. Me.Panel41.Controls.Add(Me.B41_tb)
  3242. Me.Panel41.Controls.Add(Me.Label41)
  3243. Me.Panel41.Controls.Add(Me.日期_lb41)
  3244. Me.Panel41.Location = New System.Drawing.Point(1435, 800)
  3245. Me.Panel41.Name = "Panel41"
  3246. Me.Panel41.Size = New System.Drawing.Size(220, 155)
  3247. Me.Panel41.TabIndex = 1
  3248. '
  3249. 'Button41
  3250. '
  3251. Me.Button41.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  3252. Me.Button41.Location = New System.Drawing.Point(129, -1)
  3253. Me.Button41.Name = "Button41"
  3254. Me.Button41.Size = New System.Drawing.Size(40, 23)
  3255. Me.Button41.TabIndex = 706
  3256. Me.Button41.Text = "參考"
  3257. Me.Button41.UseVisualStyleBackColor = True
  3258. '
  3259. 'DataGridView41
  3260. '
  3261. DataGridViewCellStyle41.BackColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(255, Byte), Integer), CType(CType(192, Byte), Integer))
  3262. Me.DataGridView41.AlternatingRowsDefaultCellStyle = DataGridViewCellStyle41
  3263. Me.DataGridView41.Anchor = CType((((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
  3264. Or System.Windows.Forms.AnchorStyles.Left) _
  3265. Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  3266. Me.DataGridView41.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill
  3267. Me.DataGridView41.BackgroundColor = System.Drawing.Color.White
  3268. Me.DataGridView41.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize
  3269. Me.DataGridView41.Location = New System.Drawing.Point(-1, 22)
  3270. Me.DataGridView41.Name = "DataGridView41"
  3271. Me.DataGridView41.RowHeadersWidth = 5
  3272. Me.DataGridView41.RowTemplate.Height = 24
  3273. Me.DataGridView41.Size = New System.Drawing.Size(220, 132)
  3274. Me.DataGridView41.TabIndex = 705
  3275. '
  3276. 'B41_tb
  3277. '
  3278. Me.B41_tb.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  3279. Me.B41_tb.Location = New System.Drawing.Point(175, -1)
  3280. Me.B41_tb.Name = "B41_tb"
  3281. Me.B41_tb.Size = New System.Drawing.Size(40, 23)
  3282. Me.B41_tb.TabIndex = 74
  3283. Me.B41_tb.Text = "明細"
  3284. Me.B41_tb.UseVisualStyleBackColor = True
  3285. '
  3286. 'Label41
  3287. '
  3288. Me.Label41.AutoSize = True
  3289. Me.Label41.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  3290. Me.Label41.Location = New System.Drawing.Point(33, 2)
  3291. Me.Label41.Name = "Label41"
  3292. Me.Label41.Size = New System.Drawing.Size(26, 17)
  3293. Me.Label41.TabIndex = 59
  3294. Me.Label41.Text = "XX"
  3295. '
  3296. '日期_lb41
  3297. '
  3298. Me.日期_lb41.AutoSize = True
  3299. Me.日期_lb41.Font = New System.Drawing.Font("微軟正黑體", 15.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  3300. Me.日期_lb41.Location = New System.Drawing.Point(3, -1)
  3301. Me.日期_lb41.Name = "日期_lb41"
  3302. Me.日期_lb41.Size = New System.Drawing.Size(38, 26)
  3303. Me.日期_lb41.TabIndex = 73
  3304. Me.日期_lb41.Text = "00"
  3305. '
  3306. 'Panel42
  3307. '
  3308. Me.Panel42.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
  3309. Me.Panel42.Controls.Add(Me.Button42)
  3310. Me.Panel42.Controls.Add(Me.DataGridView42)
  3311. Me.Panel42.Controls.Add(Me.B42_tb)
  3312. Me.Panel42.Controls.Add(Me.Label42)
  3313. Me.Panel42.Controls.Add(Me.日期_lb42)
  3314. Me.Panel42.ForeColor = System.Drawing.Color.Green
  3315. Me.Panel42.Location = New System.Drawing.Point(1654, 800)
  3316. Me.Panel42.Name = "Panel42"
  3317. Me.Panel42.Size = New System.Drawing.Size(220, 155)
  3318. Me.Panel42.TabIndex = 36
  3319. '
  3320. 'Button42
  3321. '
  3322. Me.Button42.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  3323. Me.Button42.Location = New System.Drawing.Point(129, -1)
  3324. Me.Button42.Name = "Button42"
  3325. Me.Button42.Size = New System.Drawing.Size(40, 23)
  3326. Me.Button42.TabIndex = 704
  3327. Me.Button42.Text = "參考"
  3328. Me.Button42.UseVisualStyleBackColor = True
  3329. '
  3330. 'DataGridView42
  3331. '
  3332. DataGridViewCellStyle42.BackColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(255, Byte), Integer), CType(CType(192, Byte), Integer))
  3333. Me.DataGridView42.AlternatingRowsDefaultCellStyle = DataGridViewCellStyle42
  3334. Me.DataGridView42.Anchor = CType((((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
  3335. Or System.Windows.Forms.AnchorStyles.Left) _
  3336. Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  3337. Me.DataGridView42.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill
  3338. Me.DataGridView42.BackgroundColor = System.Drawing.Color.White
  3339. Me.DataGridView42.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize
  3340. Me.DataGridView42.Location = New System.Drawing.Point(-1, 22)
  3341. Me.DataGridView42.Name = "DataGridView42"
  3342. Me.DataGridView42.RowHeadersWidth = 5
  3343. Me.DataGridView42.RowTemplate.Height = 24
  3344. Me.DataGridView42.Size = New System.Drawing.Size(220, 132)
  3345. Me.DataGridView42.TabIndex = 702
  3346. '
  3347. 'B42_tb
  3348. '
  3349. Me.B42_tb.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
  3350. Me.B42_tb.Location = New System.Drawing.Point(175, -1)
  3351. Me.B42_tb.Name = "B42_tb"
  3352. Me.B42_tb.Size = New System.Drawing.Size(40, 23)
  3353. Me.B42_tb.TabIndex = 75
  3354. Me.B42_tb.Text = "明細"
  3355. Me.B42_tb.UseVisualStyleBackColor = True
  3356. '
  3357. 'Label42
  3358. '
  3359. Me.Label42.AutoSize = True
  3360. Me.Label42.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  3361. Me.Label42.Location = New System.Drawing.Point(33, 2)
  3362. Me.Label42.Name = "Label42"
  3363. Me.Label42.Size = New System.Drawing.Size(26, 17)
  3364. Me.Label42.TabIndex = 74
  3365. Me.Label42.Text = "XX"
  3366. '
  3367. '日期_lb42
  3368. '
  3369. Me.日期_lb42.AutoSize = True
  3370. Me.日期_lb42.Font = New System.Drawing.Font("微軟正黑體", 15.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  3371. Me.日期_lb42.Location = New System.Drawing.Point(3, -1)
  3372. Me.日期_lb42.Name = "日期_lb42"
  3373. Me.日期_lb42.Size = New System.Drawing.Size(38, 26)
  3374. Me.日期_lb42.TabIndex = 74
  3375. Me.日期_lb42.Text = "00"
  3376. '
  3377. '星期日_lb
  3378. '
  3379. Me.星期日_lb.AutoSize = True
  3380. Me.星期日_lb.Font = New System.Drawing.Font("微軟正黑體", 15.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  3381. Me.星期日_lb.ForeColor = System.Drawing.Color.Red
  3382. Me.星期日_lb.Location = New System.Drawing.Point(425, 2)
  3383. Me.星期日_lb.Name = "星期日_lb"
  3384. Me.星期日_lb.Size = New System.Drawing.Size(75, 26)
  3385. Me.星期日_lb.TabIndex = 37
  3386. Me.星期日_lb.Text = "星期日"
  3387. '
  3388. '星期一_lb
  3389. '
  3390. Me.星期一_lb.AutoSize = True
  3391. Me.星期一_lb.Font = New System.Drawing.Font("微軟正黑體", 15.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  3392. Me.星期一_lb.Location = New System.Drawing.Point(644, 2)
  3393. Me.星期一_lb.Name = "星期一_lb"
  3394. Me.星期一_lb.Size = New System.Drawing.Size(75, 26)
  3395. Me.星期一_lb.TabIndex = 38
  3396. Me.星期一_lb.Text = "星期一"
  3397. '
  3398. '星期二_lb
  3399. '
  3400. Me.星期二_lb.AutoSize = True
  3401. Me.星期二_lb.Font = New System.Drawing.Font("微軟正黑體", 15.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  3402. Me.星期二_lb.Location = New System.Drawing.Point(863, 2)
  3403. Me.星期二_lb.Name = "星期二_lb"
  3404. Me.星期二_lb.Size = New System.Drawing.Size(75, 26)
  3405. Me.星期二_lb.TabIndex = 39
  3406. Me.星期二_lb.Text = "星期二"
  3407. '
  3408. '星期三_lb
  3409. '
  3410. Me.星期三_lb.AutoSize = True
  3411. Me.星期三_lb.Font = New System.Drawing.Font("微軟正黑體", 15.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  3412. Me.星期三_lb.Location = New System.Drawing.Point(1079, 2)
  3413. Me.星期三_lb.Name = "星期三_lb"
  3414. Me.星期三_lb.Size = New System.Drawing.Size(75, 26)
  3415. Me.星期三_lb.TabIndex = 40
  3416. Me.星期三_lb.Text = "星期三"
  3417. '
  3418. '星期四_lb
  3419. '
  3420. Me.星期四_lb.AutoSize = True
  3421. Me.星期四_lb.Font = New System.Drawing.Font("微軟正黑體", 15.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  3422. Me.星期四_lb.Location = New System.Drawing.Point(1296, 2)
  3423. Me.星期四_lb.Name = "星期四_lb"
  3424. Me.星期四_lb.Size = New System.Drawing.Size(75, 26)
  3425. Me.星期四_lb.TabIndex = 41
  3426. Me.星期四_lb.Text = "星期四"
  3427. '
  3428. '星期五_lb
  3429. '
  3430. Me.星期五_lb.AutoSize = True
  3431. Me.星期五_lb.Font = New System.Drawing.Font("微軟正黑體", 15.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  3432. Me.星期五_lb.Location = New System.Drawing.Point(1515, 2)
  3433. Me.星期五_lb.Name = "星期五_lb"
  3434. Me.星期五_lb.Size = New System.Drawing.Size(75, 26)
  3435. Me.星期五_lb.TabIndex = 42
  3436. Me.星期五_lb.Text = "星期五"
  3437. '
  3438. '星期六_lb
  3439. '
  3440. Me.星期六_lb.AutoSize = True
  3441. Me.星期六_lb.Font = New System.Drawing.Font("微軟正黑體", 15.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  3442. Me.星期六_lb.ForeColor = System.Drawing.Color.Green
  3443. Me.星期六_lb.Location = New System.Drawing.Point(1730, 2)
  3444. Me.星期六_lb.Name = "星期六_lb"
  3445. Me.星期六_lb.Size = New System.Drawing.Size(75, 26)
  3446. Me.星期六_lb.TabIndex = 43
  3447. Me.星期六_lb.Text = "星期六"
  3448. '
  3449. '月份_cb
  3450. '
  3451. Me.月份_cb.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
  3452. Me.月份_cb.FormattingEnabled = True
  3453. Me.月份_cb.Items.AddRange(New Object() {"01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12"})
  3454. Me.月份_cb.Location = New System.Drawing.Point(142, 3)
  3455. Me.月份_cb.Name = "月份_cb"
  3456. Me.月份_cb.Size = New System.Drawing.Size(43, 24)
  3457. Me.月份_cb.TabIndex = 698
  3458. '
  3459. '年份_cb
  3460. '
  3461. Me.年份_cb.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
  3462. Me.年份_cb.FormattingEnabled = True
  3463. Me.年份_cb.Items.AddRange(New Object() {"2019", "2020", "2021", "2022", "2023", "2024", "2025", "2026", "2027", "2028", "2029", "2030"})
  3464. Me.年份_cb.Location = New System.Drawing.Point(39, 3)
  3465. Me.年份_cb.Name = "年份_cb"
  3466. Me.年份_cb.Size = New System.Drawing.Size(69, 24)
  3467. Me.年份_cb.TabIndex = 697
  3468. '
  3469. '月份_lb
  3470. '
  3471. Me.月份_lb.AutoSize = True
  3472. Me.月份_lb.Location = New System.Drawing.Point(110, 7)
  3473. Me.月份_lb.Name = "月份_lb"
  3474. Me.月份_lb.Size = New System.Drawing.Size(31, 16)
  3475. Me.月份_lb.TabIndex = 696
  3476. Me.月份_lb.Text = "月份"
  3477. '
  3478. '年份_lb
  3479. '
  3480. Me.年份_lb.AutoSize = True
  3481. Me.年份_lb.Location = New System.Drawing.Point(6, 7)
  3482. Me.年份_lb.Name = "年份_lb"
  3483. Me.年份_lb.Size = New System.Drawing.Size(31, 16)
  3484. Me.年份_lb.TabIndex = 695
  3485. Me.年份_lb.Text = "年份"
  3486. '
  3487. '日期_dgv
  3488. '
  3489. DataGridViewCellStyle43.BackColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(255, Byte), Integer), CType(CType(192, Byte), Integer))
  3490. Me.日期_dgv.AlternatingRowsDefaultCellStyle = DataGridViewCellStyle43
  3491. Me.日期_dgv.Anchor = CType(((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
  3492. Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  3493. Me.日期_dgv.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill
  3494. Me.日期_dgv.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize
  3495. Me.日期_dgv.Location = New System.Drawing.Point(75, 325)
  3496. Me.日期_dgv.Name = "日期_dgv"
  3497. Me.日期_dgv.RowHeadersWidth = 5
  3498. Me.日期_dgv.RowTemplate.Height = 24
  3499. Me.日期_dgv.Size = New System.Drawing.Size(138, 93)
  3500. Me.日期_dgv.TabIndex = 699
  3501. '
  3502. '人員彙總_dgv
  3503. '
  3504. DataGridViewCellStyle44.BackColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(192, Byte), Integer), CType(CType(255, Byte), Integer))
  3505. Me.人員彙總_dgv.AlternatingRowsDefaultCellStyle = DataGridViewCellStyle44
  3506. Me.人員彙總_dgv.Anchor = CType(((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
  3507. Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  3508. Me.人員彙總_dgv.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill
  3509. Me.人員彙總_dgv.BackgroundColor = System.Drawing.Color.White
  3510. Me.人員彙總_dgv.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize
  3511. Me.人員彙總_dgv.Location = New System.Drawing.Point(4, 53)
  3512. Me.人員彙總_dgv.Name = "人員彙總_dgv"
  3513. Me.人員彙總_dgv.RowHeadersWidth = 5
  3514. DataGridViewCellStyle45.WrapMode = System.Windows.Forms.DataGridViewTriState.[True]
  3515. Me.人員彙總_dgv.RowsDefaultCellStyle = DataGridViewCellStyle45
  3516. Me.人員彙總_dgv.RowTemplate.Height = 24
  3517. Me.人員彙總_dgv.Size = New System.Drawing.Size(335, 905)
  3518. Me.人員彙總_dgv.TabIndex = 700
  3519. '
  3520. '醫生_ch
  3521. '
  3522. Me.醫生_ch.AutoSize = True
  3523. Me.醫生_ch.Location = New System.Drawing.Point(6, 30)
  3524. Me.醫生_ch.Name = "醫生_ch"
  3525. Me.醫生_ch.Size = New System.Drawing.Size(50, 20)
  3526. Me.醫生_ch.TabIndex = 701
  3527. Me.醫生_ch.Text = "醫生"
  3528. Me.醫生_ch.UseVisualStyleBackColor = True
  3529. '
  3530. '職員_ch
  3531. '
  3532. Me.職員_ch.AutoSize = True
  3533. Me.職員_ch.Checked = True
  3534. Me.職員_ch.CheckState = System.Windows.Forms.CheckState.Checked
  3535. Me.職員_ch.Location = New System.Drawing.Point(68, 30)
  3536. Me.職員_ch.Name = "職員_ch"
  3537. Me.職員_ch.Size = New System.Drawing.Size(50, 20)
  3538. Me.職員_ch.TabIndex = 702
  3539. Me.職員_ch.Text = "職員"
  3540. Me.職員_ch.UseVisualStyleBackColor = True
  3541. '
  3542. '重新讀取_bt
  3543. '
  3544. Me.重新讀取_bt.BackgroundImage = Global.HSKIN_MIS_SYS.My.Resources.Resources.renew
  3545. Me.重新讀取_bt.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom
  3546. Me.重新讀取_bt.Location = New System.Drawing.Point(187, 2)
  3547. Me.重新讀取_bt.Name = "重新讀取_bt"
  3548. Me.重新讀取_bt.Size = New System.Drawing.Size(26, 26)
  3549. Me.重新讀取_bt.TabIndex = 704
  3550. Me.重新讀取_bt.UseVisualStyleBackColor = True
  3551. '
  3552. '列印_bt
  3553. '
  3554. Me.列印_bt.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom
  3555. Me.列印_bt.Location = New System.Drawing.Point(254, 26)
  3556. Me.列印_bt.Name = "列印_bt"
  3557. Me.列印_bt.Size = New System.Drawing.Size(86, 26)
  3558. Me.列印_bt.TabIndex = 705
  3559. Me.列印_bt.Text = "列印 EXCEL"
  3560. Me.列印_bt.UseVisualStyleBackColor = True
  3561. '
  3562. '請休假_ch
  3563. '
  3564. Me.請休假_ch.AutoSize = True
  3565. Me.請休假_ch.Location = New System.Drawing.Point(134, 30)
  3566. Me.請休假_ch.Name = "請休假_ch"
  3567. Me.請休假_ch.Size = New System.Drawing.Size(62, 20)
  3568. Me.請休假_ch.TabIndex = 706
  3569. Me.請休假_ch.Text = "請休假"
  3570. Me.請休假_ch.UseVisualStyleBackColor = True
  3571. '
  3572. '排班資料
  3573. '
  3574. Me.AutoScaleDimensions = New System.Drawing.SizeF(7.0!, 16.0!)
  3575. Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font
  3576. Me.ClientSize = New System.Drawing.Size(1884, 961)
  3577. Me.Controls.Add(Me.請休假_ch)
  3578. Me.Controls.Add(Me.列印_bt)
  3579. Me.Controls.Add(Me.重新讀取_bt)
  3580. Me.Controls.Add(Me.職員_ch)
  3581. Me.Controls.Add(Me.醫生_ch)
  3582. Me.Controls.Add(Me.人員彙總_dgv)
  3583. Me.Controls.Add(Me.日期_dgv)
  3584. Me.Controls.Add(Me.月份_cb)
  3585. Me.Controls.Add(Me.年份_cb)
  3586. Me.Controls.Add(Me.月份_lb)
  3587. Me.Controls.Add(Me.年份_lb)
  3588. Me.Controls.Add(Me.星期六_lb)
  3589. Me.Controls.Add(Me.星期五_lb)
  3590. Me.Controls.Add(Me.星期四_lb)
  3591. Me.Controls.Add(Me.星期三_lb)
  3592. Me.Controls.Add(Me.星期二_lb)
  3593. Me.Controls.Add(Me.星期一_lb)
  3594. Me.Controls.Add(Me.星期日_lb)
  3595. Me.Controls.Add(Me.Panel42)
  3596. Me.Controls.Add(Me.Panel41)
  3597. Me.Controls.Add(Me.Panel40)
  3598. Me.Controls.Add(Me.Panel39)
  3599. Me.Controls.Add(Me.Panel38)
  3600. Me.Controls.Add(Me.Panel37)
  3601. Me.Controls.Add(Me.Panel36)
  3602. Me.Controls.Add(Me.Panel35)
  3603. Me.Controls.Add(Me.Panel34)
  3604. Me.Controls.Add(Me.Panel33)
  3605. Me.Controls.Add(Me.Panel32)
  3606. Me.Controls.Add(Me.Panel31)
  3607. Me.Controls.Add(Me.Panel30)
  3608. Me.Controls.Add(Me.Panel29)
  3609. Me.Controls.Add(Me.Panel28)
  3610. Me.Controls.Add(Me.Panel27)
  3611. Me.Controls.Add(Me.Panel26)
  3612. Me.Controls.Add(Me.Panel25)
  3613. Me.Controls.Add(Me.Panel24)
  3614. Me.Controls.Add(Me.Panel23)
  3615. Me.Controls.Add(Me.Panel22)
  3616. Me.Controls.Add(Me.Panel21)
  3617. Me.Controls.Add(Me.Panel20)
  3618. Me.Controls.Add(Me.Panel19)
  3619. Me.Controls.Add(Me.Panel18)
  3620. Me.Controls.Add(Me.Panel17)
  3621. Me.Controls.Add(Me.Panel16)
  3622. Me.Controls.Add(Me.Panel15)
  3623. Me.Controls.Add(Me.Panel14)
  3624. Me.Controls.Add(Me.Panel13)
  3625. Me.Controls.Add(Me.Panel12)
  3626. Me.Controls.Add(Me.Panel11)
  3627. Me.Controls.Add(Me.Panel10)
  3628. Me.Controls.Add(Me.Panel9)
  3629. Me.Controls.Add(Me.Panel8)
  3630. Me.Controls.Add(Me.Panel7)
  3631. Me.Controls.Add(Me.Panel6)
  3632. Me.Controls.Add(Me.Panel5)
  3633. Me.Controls.Add(Me.Panel3)
  3634. Me.Controls.Add(Me.Panel4)
  3635. Me.Controls.Add(Me.Panel2)
  3636. Me.Controls.Add(Me.Panel1)
  3637. Me.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  3638. Me.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4)
  3639. Me.Name = "排班資料"
  3640. Me.Text = "排班資料"
  3641. Me.Panel1.ResumeLayout(False)
  3642. Me.Panel1.PerformLayout()
  3643. CType(Me.DataGridView1, System.ComponentModel.ISupportInitialize).EndInit()
  3644. Me.Panel2.ResumeLayout(False)
  3645. Me.Panel2.PerformLayout()
  3646. CType(Me.DataGridView2, System.ComponentModel.ISupportInitialize).EndInit()
  3647. Me.Panel3.ResumeLayout(False)
  3648. Me.Panel3.PerformLayout()
  3649. CType(Me.DataGridView3, System.ComponentModel.ISupportInitialize).EndInit()
  3650. Me.Panel4.ResumeLayout(False)
  3651. Me.Panel4.PerformLayout()
  3652. CType(Me.DataGridView4, System.ComponentModel.ISupportInitialize).EndInit()
  3653. Me.Panel5.ResumeLayout(False)
  3654. Me.Panel5.PerformLayout()
  3655. CType(Me.DataGridView5, System.ComponentModel.ISupportInitialize).EndInit()
  3656. Me.Panel6.ResumeLayout(False)
  3657. Me.Panel6.PerformLayout()
  3658. CType(Me.DataGridView6, System.ComponentModel.ISupportInitialize).EndInit()
  3659. Me.Panel7.ResumeLayout(False)
  3660. Me.Panel7.PerformLayout()
  3661. CType(Me.DataGridView7, System.ComponentModel.ISupportInitialize).EndInit()
  3662. Me.Panel8.ResumeLayout(False)
  3663. Me.Panel8.PerformLayout()
  3664. CType(Me.DataGridView8, System.ComponentModel.ISupportInitialize).EndInit()
  3665. Me.Panel9.ResumeLayout(False)
  3666. Me.Panel9.PerformLayout()
  3667. CType(Me.DataGridView9, System.ComponentModel.ISupportInitialize).EndInit()
  3668. Me.Panel10.ResumeLayout(False)
  3669. Me.Panel10.PerformLayout()
  3670. CType(Me.DataGridView10, System.ComponentModel.ISupportInitialize).EndInit()
  3671. Me.Panel11.ResumeLayout(False)
  3672. Me.Panel11.PerformLayout()
  3673. CType(Me.DataGridView11, System.ComponentModel.ISupportInitialize).EndInit()
  3674. Me.Panel12.ResumeLayout(False)
  3675. Me.Panel12.PerformLayout()
  3676. CType(Me.DataGridView12, System.ComponentModel.ISupportInitialize).EndInit()
  3677. Me.Panel13.ResumeLayout(False)
  3678. Me.Panel13.PerformLayout()
  3679. CType(Me.DataGridView13, System.ComponentModel.ISupportInitialize).EndInit()
  3680. Me.Panel14.ResumeLayout(False)
  3681. Me.Panel14.PerformLayout()
  3682. CType(Me.DataGridView14, System.ComponentModel.ISupportInitialize).EndInit()
  3683. Me.Panel15.ResumeLayout(False)
  3684. Me.Panel15.PerformLayout()
  3685. CType(Me.DataGridView15, System.ComponentModel.ISupportInitialize).EndInit()
  3686. Me.Panel16.ResumeLayout(False)
  3687. Me.Panel16.PerformLayout()
  3688. CType(Me.DataGridView16, System.ComponentModel.ISupportInitialize).EndInit()
  3689. Me.Panel17.ResumeLayout(False)
  3690. Me.Panel17.PerformLayout()
  3691. CType(Me.DataGridView17, System.ComponentModel.ISupportInitialize).EndInit()
  3692. Me.Panel18.ResumeLayout(False)
  3693. Me.Panel18.PerformLayout()
  3694. CType(Me.DataGridView18, System.ComponentModel.ISupportInitialize).EndInit()
  3695. Me.Panel19.ResumeLayout(False)
  3696. Me.Panel19.PerformLayout()
  3697. CType(Me.DataGridView19, System.ComponentModel.ISupportInitialize).EndInit()
  3698. Me.Panel20.ResumeLayout(False)
  3699. Me.Panel20.PerformLayout()
  3700. CType(Me.DataGridView20, System.ComponentModel.ISupportInitialize).EndInit()
  3701. Me.Panel21.ResumeLayout(False)
  3702. Me.Panel21.PerformLayout()
  3703. CType(Me.DataGridView21, System.ComponentModel.ISupportInitialize).EndInit()
  3704. Me.Panel22.ResumeLayout(False)
  3705. Me.Panel22.PerformLayout()
  3706. CType(Me.DataGridView22, System.ComponentModel.ISupportInitialize).EndInit()
  3707. Me.Panel23.ResumeLayout(False)
  3708. Me.Panel23.PerformLayout()
  3709. CType(Me.DataGridView23, System.ComponentModel.ISupportInitialize).EndInit()
  3710. Me.Panel24.ResumeLayout(False)
  3711. Me.Panel24.PerformLayout()
  3712. CType(Me.DataGridView24, System.ComponentModel.ISupportInitialize).EndInit()
  3713. Me.Panel25.ResumeLayout(False)
  3714. Me.Panel25.PerformLayout()
  3715. CType(Me.DataGridView25, System.ComponentModel.ISupportInitialize).EndInit()
  3716. Me.Panel26.ResumeLayout(False)
  3717. Me.Panel26.PerformLayout()
  3718. CType(Me.DataGridView26, System.ComponentModel.ISupportInitialize).EndInit()
  3719. Me.Panel27.ResumeLayout(False)
  3720. Me.Panel27.PerformLayout()
  3721. CType(Me.DataGridView27, System.ComponentModel.ISupportInitialize).EndInit()
  3722. Me.Panel28.ResumeLayout(False)
  3723. Me.Panel28.PerformLayout()
  3724. CType(Me.DataGridView28, System.ComponentModel.ISupportInitialize).EndInit()
  3725. Me.Panel29.ResumeLayout(False)
  3726. Me.Panel29.PerformLayout()
  3727. CType(Me.DataGridView29, System.ComponentModel.ISupportInitialize).EndInit()
  3728. Me.Panel30.ResumeLayout(False)
  3729. Me.Panel30.PerformLayout()
  3730. CType(Me.DataGridView30, System.ComponentModel.ISupportInitialize).EndInit()
  3731. Me.Panel31.ResumeLayout(False)
  3732. Me.Panel31.PerformLayout()
  3733. CType(Me.DataGridView31, System.ComponentModel.ISupportInitialize).EndInit()
  3734. Me.Panel32.ResumeLayout(False)
  3735. Me.Panel32.PerformLayout()
  3736. CType(Me.DataGridView32, System.ComponentModel.ISupportInitialize).EndInit()
  3737. Me.Panel33.ResumeLayout(False)
  3738. Me.Panel33.PerformLayout()
  3739. CType(Me.DataGridView33, System.ComponentModel.ISupportInitialize).EndInit()
  3740. Me.Panel34.ResumeLayout(False)
  3741. Me.Panel34.PerformLayout()
  3742. CType(Me.DataGridView34, System.ComponentModel.ISupportInitialize).EndInit()
  3743. Me.Panel35.ResumeLayout(False)
  3744. Me.Panel35.PerformLayout()
  3745. CType(Me.DataGridView35, System.ComponentModel.ISupportInitialize).EndInit()
  3746. Me.Panel36.ResumeLayout(False)
  3747. Me.Panel36.PerformLayout()
  3748. CType(Me.DataGridView36, System.ComponentModel.ISupportInitialize).EndInit()
  3749. Me.Panel37.ResumeLayout(False)
  3750. Me.Panel37.PerformLayout()
  3751. CType(Me.DataGridView37, System.ComponentModel.ISupportInitialize).EndInit()
  3752. Me.Panel38.ResumeLayout(False)
  3753. Me.Panel38.PerformLayout()
  3754. CType(Me.DataGridView38, System.ComponentModel.ISupportInitialize).EndInit()
  3755. Me.Panel39.ResumeLayout(False)
  3756. Me.Panel39.PerformLayout()
  3757. CType(Me.DataGridView39, System.ComponentModel.ISupportInitialize).EndInit()
  3758. Me.Panel40.ResumeLayout(False)
  3759. Me.Panel40.PerformLayout()
  3760. CType(Me.DataGridView40, System.ComponentModel.ISupportInitialize).EndInit()
  3761. Me.Panel41.ResumeLayout(False)
  3762. Me.Panel41.PerformLayout()
  3763. CType(Me.DataGridView41, System.ComponentModel.ISupportInitialize).EndInit()
  3764. Me.Panel42.ResumeLayout(False)
  3765. Me.Panel42.PerformLayout()
  3766. CType(Me.DataGridView42, System.ComponentModel.ISupportInitialize).EndInit()
  3767. CType(Me.日期_dgv, System.ComponentModel.ISupportInitialize).EndInit()
  3768. CType(Me.人員彙總_dgv, System.ComponentModel.ISupportInitialize).EndInit()
  3769. Me.ResumeLayout(False)
  3770. Me.PerformLayout()
  3771. End Sub
  3772. Friend WithEvents Panel1 As Panel
  3773. Friend WithEvents Panel2 As Panel
  3774. Friend WithEvents Panel3 As Panel
  3775. Friend WithEvents Panel4 As Panel
  3776. Friend WithEvents Panel5 As Panel
  3777. Friend WithEvents Panel6 As Panel
  3778. Friend WithEvents Panel7 As Panel
  3779. Friend WithEvents Panel8 As Panel
  3780. Friend WithEvents Panel9 As Panel
  3781. Friend WithEvents Panel10 As Panel
  3782. Friend WithEvents Panel11 As Panel
  3783. Friend WithEvents Panel12 As Panel
  3784. Friend WithEvents Panel13 As Panel
  3785. Friend WithEvents Panel14 As Panel
  3786. Friend WithEvents Panel15 As Panel
  3787. Friend WithEvents Panel16 As Panel
  3788. Friend WithEvents Panel17 As Panel
  3789. Friend WithEvents Panel18 As Panel
  3790. Friend WithEvents Panel19 As Panel
  3791. Friend WithEvents Panel20 As Panel
  3792. Friend WithEvents Panel21 As Panel
  3793. Friend WithEvents Panel22 As Panel
  3794. Friend WithEvents Panel23 As Panel
  3795. Friend WithEvents Panel24 As Panel
  3796. Friend WithEvents Panel25 As Panel
  3797. Friend WithEvents Panel26 As Panel
  3798. Friend WithEvents Panel27 As Panel
  3799. Friend WithEvents Panel28 As Panel
  3800. Friend WithEvents Panel29 As Panel
  3801. Friend WithEvents Panel30 As Panel
  3802. Friend WithEvents Panel31 As Panel
  3803. Friend WithEvents Panel32 As Panel
  3804. Friend WithEvents Panel33 As Panel
  3805. Friend WithEvents Panel34 As Panel
  3806. Friend WithEvents Panel35 As Panel
  3807. Friend WithEvents Panel36 As Panel
  3808. Friend WithEvents Panel37 As Panel
  3809. Friend WithEvents Panel38 As Panel
  3810. Friend WithEvents Panel39 As Panel
  3811. Friend WithEvents Panel40 As Panel
  3812. Friend WithEvents Panel41 As Panel
  3813. Friend WithEvents Panel42 As Panel
  3814. Friend WithEvents 星期日_lb As Label
  3815. Friend WithEvents 星期一_lb As Label
  3816. Friend WithEvents 星期二_lb As Label
  3817. Friend WithEvents 星期三_lb As Label
  3818. Friend WithEvents 星期四_lb As Label
  3819. Friend WithEvents 星期五_lb As Label
  3820. Friend WithEvents 星期六_lb As Label
  3821. Friend WithEvents 月份_cb As ComboBox
  3822. Friend WithEvents 年份_cb As ComboBox
  3823. Friend WithEvents 月份_lb As Label
  3824. Friend WithEvents 年份_lb As Label
  3825. Friend WithEvents 日期_dgv As DataGridView
  3826. Friend WithEvents 日期_lb1 As Label
  3827. Friend WithEvents 日期_lb2 As Label
  3828. Friend WithEvents 日期_lb3 As Label
  3829. Friend WithEvents 日期_lb4 As Label
  3830. Friend WithEvents 日期_lb5 As Label
  3831. Friend WithEvents 日期_lb6 As Label
  3832. Friend WithEvents 日期_lb7 As Label
  3833. Friend WithEvents 日期_lb8 As Label
  3834. Friend WithEvents 日期_lb9 As Label
  3835. Friend WithEvents 日期_lb10 As Label
  3836. Friend WithEvents 日期_lb11 As Label
  3837. Friend WithEvents 日期_lb12 As Label
  3838. Friend WithEvents 日期_lb13 As Label
  3839. Friend WithEvents 日期_lb14 As Label
  3840. Friend WithEvents 日期_lb15 As Label
  3841. Friend WithEvents 日期_lb16 As Label
  3842. Friend WithEvents 日期_lb17 As Label
  3843. Friend WithEvents 日期_lb18 As Label
  3844. Friend WithEvents 日期_lb19 As Label
  3845. Friend WithEvents 日期_lb20 As Label
  3846. Friend WithEvents 日期_lb21 As Label
  3847. Friend WithEvents 日期_lb22 As Label
  3848. Friend WithEvents 日期_lb23 As Label
  3849. Friend WithEvents 日期_lb24 As Label
  3850. Friend WithEvents 日期_lb25 As Label
  3851. Friend WithEvents 日期_lb26 As Label
  3852. Friend WithEvents 日期_lb27 As Label
  3853. Friend WithEvents 日期_lb28 As Label
  3854. Friend WithEvents 日期_lb29 As Label
  3855. Friend WithEvents 日期_lb30 As Label
  3856. Friend WithEvents 日期_lb31 As Label
  3857. Friend WithEvents 日期_lb32 As Label
  3858. Friend WithEvents 日期_lb33 As Label
  3859. Friend WithEvents 日期_lb34 As Label
  3860. Friend WithEvents 日期_lb35 As Label
  3861. Friend WithEvents 日期_lb36 As Label
  3862. Friend WithEvents 日期_lb37 As Label
  3863. Friend WithEvents 日期_lb38 As Label
  3864. Friend WithEvents 日期_lb39 As Label
  3865. Friend WithEvents 日期_lb40 As Label
  3866. Friend WithEvents 日期_lb41 As Label
  3867. Friend WithEvents 日期_lb42 As Label
  3868. Friend WithEvents Label1 As Label
  3869. Friend WithEvents Label2 As Label
  3870. Friend WithEvents Label3 As Label
  3871. Friend WithEvents Label4 As Label
  3872. Friend WithEvents Label5 As Label
  3873. Friend WithEvents Label6 As Label
  3874. Friend WithEvents Label7 As Label
  3875. Friend WithEvents Label8 As Label
  3876. Friend WithEvents Label9 As Label
  3877. Friend WithEvents Label10 As Label
  3878. Friend WithEvents Label11 As Label
  3879. Friend WithEvents Label12 As Label
  3880. Friend WithEvents Label13 As Label
  3881. Friend WithEvents Label14 As Label
  3882. Friend WithEvents Label15 As Label
  3883. Friend WithEvents Label16 As Label
  3884. Friend WithEvents Label17 As Label
  3885. Friend WithEvents Label18 As Label
  3886. Friend WithEvents Label19 As Label
  3887. Friend WithEvents Label20 As Label
  3888. Friend WithEvents Label21 As Label
  3889. Friend WithEvents Label22 As Label
  3890. Friend WithEvents Label23 As Label
  3891. Friend WithEvents Label24 As Label
  3892. Friend WithEvents Label25 As Label
  3893. Friend WithEvents Label26 As Label
  3894. Friend WithEvents Label27 As Label
  3895. Friend WithEvents Label28 As Label
  3896. Friend WithEvents Label29 As Label
  3897. Friend WithEvents Label30 As Label
  3898. Friend WithEvents Label31 As Label
  3899. Friend WithEvents Label32 As Label
  3900. Friend WithEvents Label33 As Label
  3901. Friend WithEvents Label34 As Label
  3902. Friend WithEvents Label35 As Label
  3903. Friend WithEvents Label36 As Label
  3904. Friend WithEvents Label37 As Label
  3905. Friend WithEvents Label38 As Label
  3906. Friend WithEvents Label39 As Label
  3907. Friend WithEvents Label40 As Label
  3908. Friend WithEvents Label41 As Label
  3909. Friend WithEvents Label42 As Label
  3910. Friend WithEvents B10_tb As Button
  3911. Friend WithEvents B01_tb As Button
  3912. Friend WithEvents B02_tb As Button
  3913. Friend WithEvents B03_tb As Button
  3914. Friend WithEvents B04_tb As Button
  3915. Friend WithEvents B05_tb As Button
  3916. Friend WithEvents B06_tb As Button
  3917. Friend WithEvents B07_tb As Button
  3918. Friend WithEvents B08_tb As Button
  3919. Friend WithEvents B09_tb As Button
  3920. Friend WithEvents B11_tb As Button
  3921. Friend WithEvents B12_tb As Button
  3922. Friend WithEvents B13_tb As Button
  3923. Friend WithEvents B14_tb As Button
  3924. Friend WithEvents B15_tb As Button
  3925. Friend WithEvents B16_tb As Button
  3926. Friend WithEvents B17_tb As Button
  3927. Friend WithEvents B18_tb As Button
  3928. Friend WithEvents B19_tb As Button
  3929. Friend WithEvents B20_tb As Button
  3930. Friend WithEvents B21_tb As Button
  3931. Friend WithEvents B22_tb As Button
  3932. Friend WithEvents B23_tb As Button
  3933. Friend WithEvents B24_tb As Button
  3934. Friend WithEvents B25_tb As Button
  3935. Friend WithEvents B26_tb As Button
  3936. Friend WithEvents B27_tb As Button
  3937. Friend WithEvents B28_tb As Button
  3938. Friend WithEvents B29_tb As Button
  3939. Friend WithEvents B30_tb As Button
  3940. Friend WithEvents B31_tb As Button
  3941. Friend WithEvents B32_tb As Button
  3942. Friend WithEvents B33_tb As Button
  3943. Friend WithEvents B34_tb As Button
  3944. Friend WithEvents B35_tb As Button
  3945. Friend WithEvents B36_tb As Button
  3946. Friend WithEvents B37_tb As Button
  3947. Friend WithEvents B38_tb As Button
  3948. Friend WithEvents B39_tb As Button
  3949. Friend WithEvents B40_tb As Button
  3950. Friend WithEvents B41_tb As Button
  3951. Friend WithEvents B42_tb As Button
  3952. Friend WithEvents DataGridView1 As DataGridView
  3953. Friend WithEvents DataGridView2 As DataGridView
  3954. Friend WithEvents DataGridView3 As DataGridView
  3955. Friend WithEvents DataGridView4 As DataGridView
  3956. Friend WithEvents DataGridView5 As DataGridView
  3957. Friend WithEvents DataGridView6 As DataGridView
  3958. Friend WithEvents DataGridView7 As DataGridView
  3959. Friend WithEvents DataGridView8 As DataGridView
  3960. Friend WithEvents DataGridView9 As DataGridView
  3961. Friend WithEvents DataGridView10 As DataGridView
  3962. Friend WithEvents DataGridView11 As DataGridView
  3963. Friend WithEvents DataGridView12 As DataGridView
  3964. Friend WithEvents DataGridView13 As DataGridView
  3965. Friend WithEvents DataGridView14 As DataGridView
  3966. Friend WithEvents DataGridView15 As DataGridView
  3967. Friend WithEvents DataGridView16 As DataGridView
  3968. Friend WithEvents DataGridView17 As DataGridView
  3969. Friend WithEvents DataGridView18 As DataGridView
  3970. Friend WithEvents DataGridView19 As DataGridView
  3971. Friend WithEvents DataGridView20 As DataGridView
  3972. Friend WithEvents DataGridView21 As DataGridView
  3973. Friend WithEvents DataGridView22 As DataGridView
  3974. Friend WithEvents DataGridView23 As DataGridView
  3975. Friend WithEvents DataGridView24 As DataGridView
  3976. Friend WithEvents DataGridView25 As DataGridView
  3977. Friend WithEvents DataGridView26 As DataGridView
  3978. Friend WithEvents DataGridView27 As DataGridView
  3979. Friend WithEvents DataGridView28 As DataGridView
  3980. Friend WithEvents DataGridView29 As DataGridView
  3981. Friend WithEvents DataGridView30 As DataGridView
  3982. Friend WithEvents DataGridView31 As DataGridView
  3983. Friend WithEvents DataGridView32 As DataGridView
  3984. Friend WithEvents DataGridView33 As DataGridView
  3985. Friend WithEvents DataGridView34 As DataGridView
  3986. Friend WithEvents DataGridView35 As DataGridView
  3987. Friend WithEvents DataGridView36 As DataGridView
  3988. Friend WithEvents DataGridView37 As DataGridView
  3989. Friend WithEvents DataGridView38 As DataGridView
  3990. Friend WithEvents DataGridView39 As DataGridView
  3991. Friend WithEvents DataGridView40 As DataGridView
  3992. Friend WithEvents DataGridView41 As DataGridView
  3993. Friend WithEvents DataGridView42 As DataGridView
  3994. Friend WithEvents Button1 As Button
  3995. Friend WithEvents Button2 As Button
  3996. Friend WithEvents Button3 As Button
  3997. Friend WithEvents Button4 As Button
  3998. Friend WithEvents Button5 As Button
  3999. Friend WithEvents Button6 As Button
  4000. Friend WithEvents Button7 As Button
  4001. Friend WithEvents Button8 As Button
  4002. Friend WithEvents Button9 As Button
  4003. Friend WithEvents Button10 As Button
  4004. Friend WithEvents Button11 As Button
  4005. Friend WithEvents Button12 As Button
  4006. Friend WithEvents Button13 As Button
  4007. Friend WithEvents Button14 As Button
  4008. Friend WithEvents Button15 As Button
  4009. Friend WithEvents Button16 As Button
  4010. Friend WithEvents Button17 As Button
  4011. Friend WithEvents Button18 As Button
  4012. Friend WithEvents Button19 As Button
  4013. Friend WithEvents Button20 As Button
  4014. Friend WithEvents Button21 As Button
  4015. Friend WithEvents Button22 As Button
  4016. Friend WithEvents Button23 As Button
  4017. Friend WithEvents Button24 As Button
  4018. Friend WithEvents Button25 As Button
  4019. Friend WithEvents Button26 As Button
  4020. Friend WithEvents Button27 As Button
  4021. Friend WithEvents Button28 As Button
  4022. Friend WithEvents Button29 As Button
  4023. Friend WithEvents Button30 As Button
  4024. Friend WithEvents Button31 As Button
  4025. Friend WithEvents Button32 As Button
  4026. Friend WithEvents Button33 As Button
  4027. Friend WithEvents Button34 As Button
  4028. Friend WithEvents Button35 As Button
  4029. Friend WithEvents Button36 As Button
  4030. Friend WithEvents Button37 As Button
  4031. Friend WithEvents Button38 As Button
  4032. Friend WithEvents Button39 As Button
  4033. Friend WithEvents Button40 As Button
  4034. Friend WithEvents Button41 As Button
  4035. Friend WithEvents Button42 As Button
  4036. Friend WithEvents 職員_ch As CheckBox
  4037. Friend WithEvents 醫生_ch As CheckBox
  4038. Friend WithEvents 重新讀取_bt As Button
  4039. Friend WithEvents 列印_bt As Button
  4040. Friend WithEvents 請休假_ch As CheckBox
  4041. Friend WithEvents 人員彙總_dgv As DataGridView
  4042. End Class