Ei kuvausta
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 138KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382
  1. <Global.Microsoft.VisualBasic.CompilerServices.DesignerGenerated()> _
  2. Partial Class 營運成本收支_決算表
  3. Inherits System.Windows.Forms.Form
  4. 'Form 覆寫 Dispose 以清除元件清單。
  5. <System.Diagnostics.DebuggerNonUserCode()> _
  6. Protected Overrides Sub Dispose(ByVal disposing As Boolean)
  7. Try
  8. If disposing AndAlso components IsNot Nothing Then
  9. components.Dispose()
  10. End If
  11. Finally
  12. MyBase.Dispose(disposing)
  13. End Try
  14. End Sub
  15. '為 Windows Form 設計工具的必要項
  16. Private components As System.ComponentModel.IContainer
  17. '注意: 以下為 Windows Form 設計工具所需的程序
  18. '可以使用 Windows Form 設計工具進行修改。
  19. '請勿使用程式碼編輯器進行修改。
  20. <System.Diagnostics.DebuggerStepThrough()> _
  21. Private Sub InitializeComponent()
  22. Me.components = New System.ComponentModel.Container()
  23. Dim DataGridViewCellStyle1 As System.Windows.Forms.DataGridViewCellStyle = New System.Windows.Forms.DataGridViewCellStyle()
  24. Dim DataGridViewCellStyle2 As System.Windows.Forms.DataGridViewCellStyle = New System.Windows.Forms.DataGridViewCellStyle()
  25. Dim DataGridViewCellStyle3 As System.Windows.Forms.DataGridViewCellStyle = New System.Windows.Forms.DataGridViewCellStyle()
  26. Dim DataGridViewCellStyle4 As System.Windows.Forms.DataGridViewCellStyle = New System.Windows.Forms.DataGridViewCellStyle()
  27. Dim DataGridViewCellStyle5 As System.Windows.Forms.DataGridViewCellStyle = New System.Windows.Forms.DataGridViewCellStyle()
  28. Dim DataGridViewCellStyle6 As System.Windows.Forms.DataGridViewCellStyle = New System.Windows.Forms.DataGridViewCellStyle()
  29. Dim DataGridViewCellStyle7 As System.Windows.Forms.DataGridViewCellStyle = New System.Windows.Forms.DataGridViewCellStyle()
  30. Dim DataGridViewCellStyle8 As System.Windows.Forms.DataGridViewCellStyle = New System.Windows.Forms.DataGridViewCellStyle()
  31. Dim DataGridViewCellStyle9 As System.Windows.Forms.DataGridViewCellStyle = New System.Windows.Forms.DataGridViewCellStyle()
  32. Dim DataGridViewCellStyle10 As System.Windows.Forms.DataGridViewCellStyle = New System.Windows.Forms.DataGridViewCellStyle()
  33. Dim DataGridViewCellStyle11 As System.Windows.Forms.DataGridViewCellStyle = New System.Windows.Forms.DataGridViewCellStyle()
  34. Dim DataGridViewCellStyle12 As System.Windows.Forms.DataGridViewCellStyle = New System.Windows.Forms.DataGridViewCellStyle()
  35. Dim DataGridViewCellStyle13 As System.Windows.Forms.DataGridViewCellStyle = New System.Windows.Forms.DataGridViewCellStyle()
  36. Dim DataGridViewCellStyle14 As System.Windows.Forms.DataGridViewCellStyle = New System.Windows.Forms.DataGridViewCellStyle()
  37. Me.ContextMenuStrip1 = New System.Windows.Forms.ContextMenuStrip(Me.components)
  38. Me.重新整理ToolStripMenuItem = New System.Windows.Forms.ToolStripMenuItem()
  39. Me.Button2 = New System.Windows.Forms.Button()
  40. Me.Button1 = New System.Windows.Forms.Button()
  41. Me.Label13 = New System.Windows.Forms.Label()
  42. Me.Label12 = New System.Windows.Forms.Label()
  43. Me.Label11 = New System.Windows.Forms.Label()
  44. Me.Label10 = New System.Windows.Forms.Label()
  45. Me.Label9 = New System.Windows.Forms.Label()
  46. Me.Label8 = New System.Windows.Forms.Label()
  47. Me.Label7 = New System.Windows.Forms.Label()
  48. Me.Label6 = New System.Windows.Forms.Label()
  49. Me.Label5 = New System.Windows.Forms.Label()
  50. Me.Label4 = New System.Windows.Forms.Label()
  51. Me.Label3 = New System.Windows.Forms.Label()
  52. Me.Label2 = New System.Windows.Forms.Label()
  53. Me.DataGridView13 = New System.Windows.Forms.DataGridView()
  54. Me.DataGridView12 = New System.Windows.Forms.DataGridView()
  55. Me.DataGridView11 = New System.Windows.Forms.DataGridView()
  56. Me.DataGridView10 = New System.Windows.Forms.DataGridView()
  57. Me.DataGridView9 = New System.Windows.Forms.DataGridView()
  58. Me.DataGridView8 = New System.Windows.Forms.DataGridView()
  59. Me.DataGridView7 = New System.Windows.Forms.DataGridView()
  60. Me.DataGridView6 = New System.Windows.Forms.DataGridView()
  61. Me.DataGridView5 = New System.Windows.Forms.DataGridView()
  62. Me.DataGridView4 = New System.Windows.Forms.DataGridView()
  63. Me.DataGridView3 = New System.Windows.Forms.DataGridView()
  64. Me.DataGridView1 = New System.Windows.Forms.DataGridView()
  65. Me.ComboBox1 = New System.Windows.Forms.ComboBox()
  66. Me.Label1 = New System.Windows.Forms.Label()
  67. Me.DataGridView2 = New System.Windows.Forms.DataGridView()
  68. Me.Label19 = New System.Windows.Forms.Label()
  69. Me.TextBox64 = New System.Windows.Forms.TextBox()
  70. Me.TextBox65 = New System.Windows.Forms.TextBox()
  71. Me.TextBox66 = New System.Windows.Forms.TextBox()
  72. Me.TextBox67 = New System.Windows.Forms.TextBox()
  73. Me.TextBox68 = New System.Windows.Forms.TextBox()
  74. Me.TextBox69 = New System.Windows.Forms.TextBox()
  75. Me.TextBox70 = New System.Windows.Forms.TextBox()
  76. Me.TextBox71 = New System.Windows.Forms.TextBox()
  77. Me.TextBox72 = New System.Windows.Forms.TextBox()
  78. Me.TextBox73 = New System.Windows.Forms.TextBox()
  79. Me.TextBox74 = New System.Windows.Forms.TextBox()
  80. Me.TextBox75 = New System.Windows.Forms.TextBox()
  81. Me.TextBox76 = New System.Windows.Forms.TextBox()
  82. Me.TextBox63 = New System.Windows.Forms.TextBox()
  83. Me.TextBox62 = New System.Windows.Forms.TextBox()
  84. Me.TextBox61 = New System.Windows.Forms.TextBox()
  85. Me.TextBox56 = New System.Windows.Forms.TextBox()
  86. Me.TextBox57 = New System.Windows.Forms.TextBox()
  87. Me.TextBox58 = New System.Windows.Forms.TextBox()
  88. Me.TextBox59 = New System.Windows.Forms.TextBox()
  89. Me.TextBox60 = New System.Windows.Forms.TextBox()
  90. Me.TextBox51 = New System.Windows.Forms.TextBox()
  91. Me.TextBox52 = New System.Windows.Forms.TextBox()
  92. Me.TextBox53 = New System.Windows.Forms.TextBox()
  93. Me.TextBox54 = New System.Windows.Forms.TextBox()
  94. Me.TextBox55 = New System.Windows.Forms.TextBox()
  95. Me.TextBox46 = New System.Windows.Forms.TextBox()
  96. Me.TextBox47 = New System.Windows.Forms.TextBox()
  97. Me.TextBox48 = New System.Windows.Forms.TextBox()
  98. Me.TextBox49 = New System.Windows.Forms.TextBox()
  99. Me.TextBox50 = New System.Windows.Forms.TextBox()
  100. Me.TextBox41 = New System.Windows.Forms.TextBox()
  101. Me.TextBox42 = New System.Windows.Forms.TextBox()
  102. Me.TextBox43 = New System.Windows.Forms.TextBox()
  103. Me.TextBox44 = New System.Windows.Forms.TextBox()
  104. Me.TextBox45 = New System.Windows.Forms.TextBox()
  105. Me.TextBox36 = New System.Windows.Forms.TextBox()
  106. Me.TextBox37 = New System.Windows.Forms.TextBox()
  107. Me.TextBox38 = New System.Windows.Forms.TextBox()
  108. Me.TextBox39 = New System.Windows.Forms.TextBox()
  109. Me.TextBox40 = New System.Windows.Forms.TextBox()
  110. Me.TextBox31 = New System.Windows.Forms.TextBox()
  111. Me.TextBox32 = New System.Windows.Forms.TextBox()
  112. Me.TextBox33 = New System.Windows.Forms.TextBox()
  113. Me.TextBox34 = New System.Windows.Forms.TextBox()
  114. Me.TextBox35 = New System.Windows.Forms.TextBox()
  115. Me.Label18 = New System.Windows.Forms.Label()
  116. Me.TextBox25 = New System.Windows.Forms.TextBox()
  117. Me.TextBox26 = New System.Windows.Forms.TextBox()
  118. Me.TextBox27 = New System.Windows.Forms.TextBox()
  119. Me.TextBox28 = New System.Windows.Forms.TextBox()
  120. Me.TextBox29 = New System.Windows.Forms.TextBox()
  121. Me.TextBox30 = New System.Windows.Forms.TextBox()
  122. Me.TextBox24 = New System.Windows.Forms.TextBox()
  123. Me.TextBox23 = New System.Windows.Forms.TextBox()
  124. Me.TextBox22 = New System.Windows.Forms.TextBox()
  125. Me.TextBox21 = New System.Windows.Forms.TextBox()
  126. Me.TextBox20 = New System.Windows.Forms.TextBox()
  127. Me.TextBox19 = New System.Windows.Forms.TextBox()
  128. Me.TextBox18 = New System.Windows.Forms.TextBox()
  129. Me.TextBox17 = New System.Windows.Forms.TextBox()
  130. Me.TextBox16 = New System.Windows.Forms.TextBox()
  131. Me.TextBox15 = New System.Windows.Forms.TextBox()
  132. Me.TextBox14 = New System.Windows.Forms.TextBox()
  133. Me.TextBox13 = New System.Windows.Forms.TextBox()
  134. Me.TextBox12 = New System.Windows.Forms.TextBox()
  135. Me.TextBox11 = New System.Windows.Forms.TextBox()
  136. Me.TextBox10 = New System.Windows.Forms.TextBox()
  137. Me.TextBox9 = New System.Windows.Forms.TextBox()
  138. Me.TextBox8 = New System.Windows.Forms.TextBox()
  139. Me.TextBox7 = New System.Windows.Forms.TextBox()
  140. Me.TextBox6 = New System.Windows.Forms.TextBox()
  141. Me.TextBox5 = New System.Windows.Forms.TextBox()
  142. Me.TextBox4 = New System.Windows.Forms.TextBox()
  143. Me.Label17 = New System.Windows.Forms.Label()
  144. Me.TextBox3 = New System.Windows.Forms.TextBox()
  145. Me.Label16 = New System.Windows.Forms.Label()
  146. Me.TextBox2 = New System.Windows.Forms.TextBox()
  147. Me.Label15 = New System.Windows.Forms.Label()
  148. Me.TextBox1 = New System.Windows.Forms.TextBox()
  149. Me.Label14 = New System.Windows.Forms.Label()
  150. Me.ComboBox2 = New System.Windows.Forms.ComboBox()
  151. Me.ComboBox3 = New System.Windows.Forms.ComboBox()
  152. Me.ComboBox4 = New System.Windows.Forms.ComboBox()
  153. Me.ComboBox5 = New System.Windows.Forms.ComboBox()
  154. Me.TextBox77 = New System.Windows.Forms.TextBox()
  155. Me.ComboBox6 = New System.Windows.Forms.ComboBox()
  156. Me.TextBox78 = New System.Windows.Forms.TextBox()
  157. Me.TextBox79 = New System.Windows.Forms.TextBox()
  158. Me.TextBox80 = New System.Windows.Forms.TextBox()
  159. Me.TextBox81 = New System.Windows.Forms.TextBox()
  160. Me.TextBox82 = New System.Windows.Forms.TextBox()
  161. Me.TextBox83 = New System.Windows.Forms.TextBox()
  162. Me.TextBox84 = New System.Windows.Forms.TextBox()
  163. Me.TextBox85 = New System.Windows.Forms.TextBox()
  164. Me.TextBox86 = New System.Windows.Forms.TextBox()
  165. Me.TextBox87 = New System.Windows.Forms.TextBox()
  166. Me.TextBox88 = New System.Windows.Forms.TextBox()
  167. Me.TextBox89 = New System.Windows.Forms.TextBox()
  168. Me.TextBox90 = New System.Windows.Forms.TextBox()
  169. Me.TextBox91 = New System.Windows.Forms.TextBox()
  170. Me.ComboBox7 = New System.Windows.Forms.ComboBox()
  171. Me.Label20 = New System.Windows.Forms.Label()
  172. Me.TextBox92 = New System.Windows.Forms.TextBox()
  173. Me.TextBox93 = New System.Windows.Forms.TextBox()
  174. Me.TextBox94 = New System.Windows.Forms.TextBox()
  175. Me.TextBox95 = New System.Windows.Forms.TextBox()
  176. Me.TextBox96 = New System.Windows.Forms.TextBox()
  177. Me.TextBox97 = New System.Windows.Forms.TextBox()
  178. Me.TextBox98 = New System.Windows.Forms.TextBox()
  179. Me.TextBox99 = New System.Windows.Forms.TextBox()
  180. Me.TextBox100 = New System.Windows.Forms.TextBox()
  181. Me.TextBox101 = New System.Windows.Forms.TextBox()
  182. Me.TextBox102 = New System.Windows.Forms.TextBox()
  183. Me.TextBox103 = New System.Windows.Forms.TextBox()
  184. Me.TextBox104 = New System.Windows.Forms.TextBox()
  185. Me.ComboBox8 = New System.Windows.Forms.ComboBox()
  186. Me.Label21 = New System.Windows.Forms.Label()
  187. Me.Label22 = New System.Windows.Forms.Label()
  188. Me.CheckBox1 = New System.Windows.Forms.CheckBox()
  189. Me.CheckBox2 = New System.Windows.Forms.CheckBox()
  190. Me.CheckBox3 = New System.Windows.Forms.CheckBox()
  191. Me.CheckBox4 = New System.Windows.Forms.CheckBox()
  192. Me.CheckBox5 = New System.Windows.Forms.CheckBox()
  193. Me.CheckBox6 = New System.Windows.Forms.CheckBox()
  194. Me.CheckBox7 = New System.Windows.Forms.CheckBox()
  195. Me.DataGridView14 = New System.Windows.Forms.DataGridView()
  196. Me.Button3 = New System.Windows.Forms.Button()
  197. Me.Button4 = New System.Windows.Forms.Button()
  198. Me.TextBox105 = New System.Windows.Forms.TextBox()
  199. Me.TextBox106 = New System.Windows.Forms.TextBox()
  200. Me.TextBox107 = New System.Windows.Forms.TextBox()
  201. Me.TextBox108 = New System.Windows.Forms.TextBox()
  202. Me.TextBox109 = New System.Windows.Forms.TextBox()
  203. Me.TextBox110 = New System.Windows.Forms.TextBox()
  204. Me.TextBox111 = New System.Windows.Forms.TextBox()
  205. Me.ContextMenuStrip1.SuspendLayout()
  206. CType(Me.DataGridView13, System.ComponentModel.ISupportInitialize).BeginInit()
  207. CType(Me.DataGridView12, System.ComponentModel.ISupportInitialize).BeginInit()
  208. CType(Me.DataGridView11, System.ComponentModel.ISupportInitialize).BeginInit()
  209. CType(Me.DataGridView10, System.ComponentModel.ISupportInitialize).BeginInit()
  210. CType(Me.DataGridView9, System.ComponentModel.ISupportInitialize).BeginInit()
  211. CType(Me.DataGridView8, System.ComponentModel.ISupportInitialize).BeginInit()
  212. CType(Me.DataGridView7, System.ComponentModel.ISupportInitialize).BeginInit()
  213. CType(Me.DataGridView6, System.ComponentModel.ISupportInitialize).BeginInit()
  214. CType(Me.DataGridView5, System.ComponentModel.ISupportInitialize).BeginInit()
  215. CType(Me.DataGridView4, System.ComponentModel.ISupportInitialize).BeginInit()
  216. CType(Me.DataGridView3, System.ComponentModel.ISupportInitialize).BeginInit()
  217. CType(Me.DataGridView1, System.ComponentModel.ISupportInitialize).BeginInit()
  218. CType(Me.DataGridView2, System.ComponentModel.ISupportInitialize).BeginInit()
  219. CType(Me.DataGridView14, System.ComponentModel.ISupportInitialize).BeginInit()
  220. Me.SuspendLayout()
  221. '
  222. 'ContextMenuStrip1
  223. '
  224. Me.ContextMenuStrip1.Items.AddRange(New System.Windows.Forms.ToolStripItem() {Me.重新整理ToolStripMenuItem})
  225. Me.ContextMenuStrip1.Name = "ContextMenuStrip1"
  226. Me.ContextMenuStrip1.Size = New System.Drawing.Size(123, 26)
  227. '
  228. '重新整理ToolStripMenuItem
  229. '
  230. Me.重新整理ToolStripMenuItem.Name = "重新整理ToolStripMenuItem"
  231. Me.重新整理ToolStripMenuItem.Size = New System.Drawing.Size(122, 22)
  232. Me.重新整理ToolStripMenuItem.Text = "重新整理"
  233. '
  234. 'Button2
  235. '
  236. Me.Button2.ForeColor = System.Drawing.Color.Blue
  237. Me.Button2.Location = New System.Drawing.Point(295, 2)
  238. Me.Button2.Name = "Button2"
  239. Me.Button2.Size = New System.Drawing.Size(113, 23)
  240. Me.Button2.TabIndex = 1219
  241. Me.Button2.Text = "全部資料合併計算"
  242. Me.Button2.UseVisualStyleBackColor = True
  243. '
  244. 'Button1
  245. '
  246. Me.Button1.Location = New System.Drawing.Point(190, 2)
  247. Me.Button1.Name = "Button1"
  248. Me.Button1.Size = New System.Drawing.Size(75, 23)
  249. Me.Button1.TabIndex = 1218
  250. Me.Button1.Text = "重新整理"
  251. Me.Button1.UseVisualStyleBackColor = True
  252. '
  253. 'Label13
  254. '
  255. Me.Label13.AutoSize = True
  256. Me.Label13.Font = New System.Drawing.Font("微軟正黑體", 14.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  257. Me.Label13.ForeColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
  258. Me.Label13.Location = New System.Drawing.Point(1818, 2)
  259. Me.Label13.Name = "Label13"
  260. Me.Label13.Size = New System.Drawing.Size(51, 24)
  261. Me.Label13.TabIndex = 1217
  262. Me.Label13.Text = "12月"
  263. '
  264. 'Label12
  265. '
  266. Me.Label12.AutoSize = True
  267. Me.Label12.Font = New System.Drawing.Font("微軟正黑體", 14.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  268. Me.Label12.ForeColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
  269. Me.Label12.Location = New System.Drawing.Point(1700, 2)
  270. Me.Label12.Name = "Label12"
  271. Me.Label12.Size = New System.Drawing.Size(51, 24)
  272. Me.Label12.TabIndex = 1216
  273. Me.Label12.Text = "11月"
  274. '
  275. 'Label11
  276. '
  277. Me.Label11.AutoSize = True
  278. Me.Label11.Font = New System.Drawing.Font("微軟正黑體", 14.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  279. Me.Label11.ForeColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
  280. Me.Label11.Location = New System.Drawing.Point(1582, 2)
  281. Me.Label11.Name = "Label11"
  282. Me.Label11.Size = New System.Drawing.Size(51, 24)
  283. Me.Label11.TabIndex = 1215
  284. Me.Label11.Text = "10月"
  285. '
  286. 'Label10
  287. '
  288. Me.Label10.AutoSize = True
  289. Me.Label10.Font = New System.Drawing.Font("微軟正黑體", 14.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  290. Me.Label10.ForeColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
  291. Me.Label10.Location = New System.Drawing.Point(1464, 2)
  292. Me.Label10.Name = "Label10"
  293. Me.Label10.Size = New System.Drawing.Size(40, 24)
  294. Me.Label10.TabIndex = 1214
  295. Me.Label10.Text = "9月"
  296. '
  297. 'Label9
  298. '
  299. Me.Label9.AutoSize = True
  300. Me.Label9.Font = New System.Drawing.Font("微軟正黑體", 14.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  301. Me.Label9.ForeColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
  302. Me.Label9.Location = New System.Drawing.Point(1346, 2)
  303. Me.Label9.Name = "Label9"
  304. Me.Label9.Size = New System.Drawing.Size(40, 24)
  305. Me.Label9.TabIndex = 1213
  306. Me.Label9.Text = "8月"
  307. '
  308. 'Label8
  309. '
  310. Me.Label8.AutoSize = True
  311. Me.Label8.Font = New System.Drawing.Font("微軟正黑體", 14.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  312. Me.Label8.ForeColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
  313. Me.Label8.Location = New System.Drawing.Point(1228, 2)
  314. Me.Label8.Name = "Label8"
  315. Me.Label8.Size = New System.Drawing.Size(40, 24)
  316. Me.Label8.TabIndex = 1212
  317. Me.Label8.Text = "7月"
  318. '
  319. 'Label7
  320. '
  321. Me.Label7.AutoSize = True
  322. Me.Label7.Font = New System.Drawing.Font("微軟正黑體", 14.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  323. Me.Label7.ForeColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
  324. Me.Label7.Location = New System.Drawing.Point(1110, 2)
  325. Me.Label7.Name = "Label7"
  326. Me.Label7.Size = New System.Drawing.Size(40, 24)
  327. Me.Label7.TabIndex = 1211
  328. Me.Label7.Text = "6月"
  329. '
  330. 'Label6
  331. '
  332. Me.Label6.AutoSize = True
  333. Me.Label6.Font = New System.Drawing.Font("微軟正黑體", 14.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  334. Me.Label6.ForeColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
  335. Me.Label6.Location = New System.Drawing.Point(992, 2)
  336. Me.Label6.Name = "Label6"
  337. Me.Label6.Size = New System.Drawing.Size(40, 24)
  338. Me.Label6.TabIndex = 1210
  339. Me.Label6.Text = "5月"
  340. '
  341. 'Label5
  342. '
  343. Me.Label5.AutoSize = True
  344. Me.Label5.Font = New System.Drawing.Font("微軟正黑體", 14.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  345. Me.Label5.ForeColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
  346. Me.Label5.Location = New System.Drawing.Point(874, 2)
  347. Me.Label5.Name = "Label5"
  348. Me.Label5.Size = New System.Drawing.Size(40, 24)
  349. Me.Label5.TabIndex = 1209
  350. Me.Label5.Text = "4月"
  351. '
  352. 'Label4
  353. '
  354. Me.Label4.AutoSize = True
  355. Me.Label4.Font = New System.Drawing.Font("微軟正黑體", 14.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  356. Me.Label4.ForeColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
  357. Me.Label4.Location = New System.Drawing.Point(756, 2)
  358. Me.Label4.Name = "Label4"
  359. Me.Label4.Size = New System.Drawing.Size(40, 24)
  360. Me.Label4.TabIndex = 1208
  361. Me.Label4.Text = "3月"
  362. '
  363. 'Label3
  364. '
  365. Me.Label3.AutoSize = True
  366. Me.Label3.Font = New System.Drawing.Font("微軟正黑體", 14.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  367. Me.Label3.ForeColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
  368. Me.Label3.Location = New System.Drawing.Point(638, 2)
  369. Me.Label3.Name = "Label3"
  370. Me.Label3.Size = New System.Drawing.Size(40, 24)
  371. Me.Label3.TabIndex = 1207
  372. Me.Label3.Text = "2月"
  373. '
  374. 'Label2
  375. '
  376. Me.Label2.AutoSize = True
  377. Me.Label2.Font = New System.Drawing.Font("微軟正黑體", 14.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  378. Me.Label2.ForeColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
  379. Me.Label2.Location = New System.Drawing.Point(520, 2)
  380. Me.Label2.Name = "Label2"
  381. Me.Label2.Size = New System.Drawing.Size(40, 24)
  382. Me.Label2.TabIndex = 1206
  383. Me.Label2.Text = "1月"
  384. '
  385. 'DataGridView13
  386. '
  387. Me.DataGridView13.Anchor = CType(((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
  388. Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  389. Me.DataGridView13.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill
  390. Me.DataGridView13.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize
  391. Me.DataGridView13.Location = New System.Drawing.Point(1780, 27)
  392. Me.DataGridView13.Name = "DataGridView13"
  393. Me.DataGridView13.RowHeadersWidth = 5
  394. DataGridViewCellStyle1.Font = New System.Drawing.Font("微軟正黑體", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  395. DataGridViewCellStyle1.WrapMode = System.Windows.Forms.DataGridViewTriState.[True]
  396. Me.DataGridView13.RowsDefaultCellStyle = DataGridViewCellStyle1
  397. Me.DataGridView13.RowTemplate.Height = 24
  398. Me.DataGridView13.ScrollBars = System.Windows.Forms.ScrollBars.None
  399. Me.DataGridView13.Size = New System.Drawing.Size(116, 740)
  400. Me.DataGridView13.TabIndex = 1205
  401. '
  402. 'DataGridView12
  403. '
  404. Me.DataGridView12.Anchor = CType(((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
  405. Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  406. Me.DataGridView12.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill
  407. Me.DataGridView12.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize
  408. Me.DataGridView12.Location = New System.Drawing.Point(1662, 27)
  409. Me.DataGridView12.Name = "DataGridView12"
  410. Me.DataGridView12.RowHeadersWidth = 5
  411. DataGridViewCellStyle2.Font = New System.Drawing.Font("微軟正黑體", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  412. DataGridViewCellStyle2.WrapMode = System.Windows.Forms.DataGridViewTriState.[True]
  413. Me.DataGridView12.RowsDefaultCellStyle = DataGridViewCellStyle2
  414. Me.DataGridView12.RowTemplate.Height = 24
  415. Me.DataGridView12.ScrollBars = System.Windows.Forms.ScrollBars.None
  416. Me.DataGridView12.Size = New System.Drawing.Size(116, 740)
  417. Me.DataGridView12.TabIndex = 1204
  418. '
  419. 'DataGridView11
  420. '
  421. Me.DataGridView11.Anchor = CType(((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
  422. Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  423. Me.DataGridView11.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill
  424. Me.DataGridView11.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize
  425. Me.DataGridView11.Location = New System.Drawing.Point(1544, 27)
  426. Me.DataGridView11.Name = "DataGridView11"
  427. Me.DataGridView11.RowHeadersWidth = 5
  428. DataGridViewCellStyle3.Font = New System.Drawing.Font("微軟正黑體", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  429. DataGridViewCellStyle3.WrapMode = System.Windows.Forms.DataGridViewTriState.[True]
  430. Me.DataGridView11.RowsDefaultCellStyle = DataGridViewCellStyle3
  431. Me.DataGridView11.RowTemplate.Height = 24
  432. Me.DataGridView11.ScrollBars = System.Windows.Forms.ScrollBars.None
  433. Me.DataGridView11.Size = New System.Drawing.Size(116, 740)
  434. Me.DataGridView11.TabIndex = 1203
  435. '
  436. 'DataGridView10
  437. '
  438. Me.DataGridView10.Anchor = CType(((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
  439. Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  440. Me.DataGridView10.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill
  441. Me.DataGridView10.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize
  442. Me.DataGridView10.Location = New System.Drawing.Point(1426, 27)
  443. Me.DataGridView10.Name = "DataGridView10"
  444. Me.DataGridView10.RowHeadersWidth = 5
  445. DataGridViewCellStyle4.Font = New System.Drawing.Font("微軟正黑體", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  446. DataGridViewCellStyle4.WrapMode = System.Windows.Forms.DataGridViewTriState.[True]
  447. Me.DataGridView10.RowsDefaultCellStyle = DataGridViewCellStyle4
  448. Me.DataGridView10.RowTemplate.Height = 24
  449. Me.DataGridView10.ScrollBars = System.Windows.Forms.ScrollBars.None
  450. Me.DataGridView10.Size = New System.Drawing.Size(116, 740)
  451. Me.DataGridView10.TabIndex = 1202
  452. '
  453. 'DataGridView9
  454. '
  455. Me.DataGridView9.Anchor = CType(((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
  456. Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  457. Me.DataGridView9.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill
  458. Me.DataGridView9.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize
  459. Me.DataGridView9.Location = New System.Drawing.Point(1308, 27)
  460. Me.DataGridView9.Name = "DataGridView9"
  461. Me.DataGridView9.RowHeadersWidth = 5
  462. DataGridViewCellStyle5.Font = New System.Drawing.Font("微軟正黑體", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  463. DataGridViewCellStyle5.WrapMode = System.Windows.Forms.DataGridViewTriState.[True]
  464. Me.DataGridView9.RowsDefaultCellStyle = DataGridViewCellStyle5
  465. Me.DataGridView9.RowTemplate.Height = 24
  466. Me.DataGridView9.ScrollBars = System.Windows.Forms.ScrollBars.None
  467. Me.DataGridView9.Size = New System.Drawing.Size(116, 740)
  468. Me.DataGridView9.TabIndex = 1201
  469. '
  470. 'DataGridView8
  471. '
  472. Me.DataGridView8.Anchor = CType(((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
  473. Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  474. Me.DataGridView8.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill
  475. Me.DataGridView8.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize
  476. Me.DataGridView8.Location = New System.Drawing.Point(1190, 27)
  477. Me.DataGridView8.Name = "DataGridView8"
  478. Me.DataGridView8.RowHeadersWidth = 5
  479. DataGridViewCellStyle6.Font = New System.Drawing.Font("微軟正黑體", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  480. DataGridViewCellStyle6.WrapMode = System.Windows.Forms.DataGridViewTriState.[True]
  481. Me.DataGridView8.RowsDefaultCellStyle = DataGridViewCellStyle6
  482. Me.DataGridView8.RowTemplate.Height = 24
  483. Me.DataGridView8.ScrollBars = System.Windows.Forms.ScrollBars.None
  484. Me.DataGridView8.Size = New System.Drawing.Size(116, 740)
  485. Me.DataGridView8.TabIndex = 1200
  486. '
  487. 'DataGridView7
  488. '
  489. Me.DataGridView7.Anchor = CType(((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
  490. Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  491. Me.DataGridView7.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill
  492. Me.DataGridView7.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize
  493. Me.DataGridView7.Location = New System.Drawing.Point(1072, 27)
  494. Me.DataGridView7.Name = "DataGridView7"
  495. Me.DataGridView7.RowHeadersWidth = 5
  496. DataGridViewCellStyle7.Font = New System.Drawing.Font("微軟正黑體", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  497. DataGridViewCellStyle7.WrapMode = System.Windows.Forms.DataGridViewTriState.[True]
  498. Me.DataGridView7.RowsDefaultCellStyle = DataGridViewCellStyle7
  499. Me.DataGridView7.RowTemplate.Height = 24
  500. Me.DataGridView7.ScrollBars = System.Windows.Forms.ScrollBars.None
  501. Me.DataGridView7.Size = New System.Drawing.Size(116, 740)
  502. Me.DataGridView7.TabIndex = 1199
  503. '
  504. 'DataGridView6
  505. '
  506. Me.DataGridView6.Anchor = CType(((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
  507. Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  508. Me.DataGridView6.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill
  509. Me.DataGridView6.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize
  510. Me.DataGridView6.Location = New System.Drawing.Point(954, 27)
  511. Me.DataGridView6.Name = "DataGridView6"
  512. Me.DataGridView6.RowHeadersWidth = 5
  513. DataGridViewCellStyle8.Font = New System.Drawing.Font("微軟正黑體", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  514. DataGridViewCellStyle8.WrapMode = System.Windows.Forms.DataGridViewTriState.[True]
  515. Me.DataGridView6.RowsDefaultCellStyle = DataGridViewCellStyle8
  516. Me.DataGridView6.RowTemplate.Height = 24
  517. Me.DataGridView6.ScrollBars = System.Windows.Forms.ScrollBars.None
  518. Me.DataGridView6.Size = New System.Drawing.Size(116, 740)
  519. Me.DataGridView6.TabIndex = 1198
  520. '
  521. 'DataGridView5
  522. '
  523. Me.DataGridView5.Anchor = CType(((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
  524. Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  525. Me.DataGridView5.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill
  526. Me.DataGridView5.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize
  527. Me.DataGridView5.Location = New System.Drawing.Point(836, 27)
  528. Me.DataGridView5.Name = "DataGridView5"
  529. Me.DataGridView5.RowHeadersWidth = 5
  530. DataGridViewCellStyle9.Font = New System.Drawing.Font("微軟正黑體", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  531. DataGridViewCellStyle9.WrapMode = System.Windows.Forms.DataGridViewTriState.[True]
  532. Me.DataGridView5.RowsDefaultCellStyle = DataGridViewCellStyle9
  533. Me.DataGridView5.RowTemplate.Height = 24
  534. Me.DataGridView5.ScrollBars = System.Windows.Forms.ScrollBars.None
  535. Me.DataGridView5.Size = New System.Drawing.Size(116, 740)
  536. Me.DataGridView5.TabIndex = 1197
  537. '
  538. 'DataGridView4
  539. '
  540. Me.DataGridView4.Anchor = CType(((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
  541. Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  542. Me.DataGridView4.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill
  543. Me.DataGridView4.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize
  544. Me.DataGridView4.Location = New System.Drawing.Point(718, 27)
  545. Me.DataGridView4.Name = "DataGridView4"
  546. Me.DataGridView4.RowHeadersWidth = 5
  547. DataGridViewCellStyle10.Font = New System.Drawing.Font("微軟正黑體", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  548. DataGridViewCellStyle10.WrapMode = System.Windows.Forms.DataGridViewTriState.[True]
  549. Me.DataGridView4.RowsDefaultCellStyle = DataGridViewCellStyle10
  550. Me.DataGridView4.RowTemplate.Height = 24
  551. Me.DataGridView4.ScrollBars = System.Windows.Forms.ScrollBars.None
  552. Me.DataGridView4.Size = New System.Drawing.Size(116, 740)
  553. Me.DataGridView4.TabIndex = 1196
  554. '
  555. 'DataGridView3
  556. '
  557. Me.DataGridView3.Anchor = CType(((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
  558. Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  559. Me.DataGridView3.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill
  560. Me.DataGridView3.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize
  561. Me.DataGridView3.Location = New System.Drawing.Point(600, 27)
  562. Me.DataGridView3.Name = "DataGridView3"
  563. Me.DataGridView3.RowHeadersWidth = 5
  564. DataGridViewCellStyle11.Font = New System.Drawing.Font("微軟正黑體", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  565. DataGridViewCellStyle11.WrapMode = System.Windows.Forms.DataGridViewTriState.[True]
  566. Me.DataGridView3.RowsDefaultCellStyle = DataGridViewCellStyle11
  567. Me.DataGridView3.RowTemplate.Height = 24
  568. Me.DataGridView3.ScrollBars = System.Windows.Forms.ScrollBars.None
  569. Me.DataGridView3.Size = New System.Drawing.Size(116, 740)
  570. Me.DataGridView3.TabIndex = 1195
  571. '
  572. 'DataGridView1
  573. '
  574. Me.DataGridView1.Anchor = CType(((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
  575. Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  576. Me.DataGridView1.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill
  577. Me.DataGridView1.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize
  578. Me.DataGridView1.Location = New System.Drawing.Point(482, 27)
  579. Me.DataGridView1.Name = "DataGridView1"
  580. Me.DataGridView1.RowHeadersWidth = 5
  581. DataGridViewCellStyle12.Font = New System.Drawing.Font("微軟正黑體", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  582. DataGridViewCellStyle12.WrapMode = System.Windows.Forms.DataGridViewTriState.[True]
  583. Me.DataGridView1.RowsDefaultCellStyle = DataGridViewCellStyle12
  584. Me.DataGridView1.RowTemplate.Height = 24
  585. Me.DataGridView1.ScrollBars = System.Windows.Forms.ScrollBars.None
  586. Me.DataGridView1.Size = New System.Drawing.Size(116, 740)
  587. Me.DataGridView1.TabIndex = 1194
  588. '
  589. 'ComboBox1
  590. '
  591. Me.ComboBox1.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
  592. Me.ComboBox1.FormattingEnabled = True
  593. Me.ComboBox1.Items.AddRange(New Object() {"2019"})
  594. Me.ComboBox1.Location = New System.Drawing.Point(114, 2)
  595. Me.ComboBox1.Name = "ComboBox1"
  596. Me.ComboBox1.Size = New System.Drawing.Size(70, 24)
  597. Me.ComboBox1.TabIndex = 1193
  598. '
  599. 'Label1
  600. '
  601. Me.Label1.AutoSize = True
  602. Me.Label1.Font = New System.Drawing.Font("微軟正黑體", 14.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  603. Me.Label1.ForeColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
  604. Me.Label1.Location = New System.Drawing.Point(3, 2)
  605. Me.Label1.Name = "Label1"
  606. Me.Label1.Size = New System.Drawing.Size(105, 24)
  607. Me.Label1.TabIndex = 1192
  608. Me.Label1.Text = "財務決算表"
  609. '
  610. 'DataGridView2
  611. '
  612. Me.DataGridView2.Anchor = CType(((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
  613. Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  614. Me.DataGridView2.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill
  615. Me.DataGridView2.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize
  616. Me.DataGridView2.Location = New System.Drawing.Point(7, 27)
  617. Me.DataGridView2.Name = "DataGridView2"
  618. Me.DataGridView2.RowHeadersWidth = 5
  619. DataGridViewCellStyle13.Font = New System.Drawing.Font("微軟正黑體", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  620. DataGridViewCellStyle13.WrapMode = System.Windows.Forms.DataGridViewTriState.[True]
  621. Me.DataGridView2.RowsDefaultCellStyle = DataGridViewCellStyle13
  622. Me.DataGridView2.RowTemplate.Height = 24
  623. Me.DataGridView2.Size = New System.Drawing.Size(473, 740)
  624. Me.DataGridView2.TabIndex = 1191
  625. '
  626. 'Label19
  627. '
  628. Me.Label19.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  629. Me.Label19.AutoSize = True
  630. Me.Label19.Font = New System.Drawing.Font("微軟正黑體", 11.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  631. Me.Label19.Location = New System.Drawing.Point(217, 946)
  632. Me.Label19.Name = "Label19"
  633. Me.Label19.Size = New System.Drawing.Size(91, 19)
  634. Me.Label19.TabIndex = 1301
  635. Me.Label19.Text = "損 益"
  636. '
  637. 'TextBox64
  638. '
  639. Me.TextBox64.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  640. Me.TextBox64.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  641. Me.TextBox64.Location = New System.Drawing.Point(339, 945)
  642. Me.TextBox64.Name = "TextBox64"
  643. Me.TextBox64.Size = New System.Drawing.Size(116, 23)
  644. Me.TextBox64.TabIndex = 1300
  645. Me.TextBox64.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  646. '
  647. 'TextBox65
  648. '
  649. Me.TextBox65.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  650. Me.TextBox65.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  651. Me.TextBox65.Location = New System.Drawing.Point(1780, 845)
  652. Me.TextBox65.Name = "TextBox65"
  653. Me.TextBox65.Size = New System.Drawing.Size(116, 23)
  654. Me.TextBox65.TabIndex = 1299
  655. Me.TextBox65.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  656. '
  657. 'TextBox66
  658. '
  659. Me.TextBox66.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  660. Me.TextBox66.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  661. Me.TextBox66.Location = New System.Drawing.Point(1662, 845)
  662. Me.TextBox66.Name = "TextBox66"
  663. Me.TextBox66.Size = New System.Drawing.Size(116, 23)
  664. Me.TextBox66.TabIndex = 1298
  665. Me.TextBox66.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  666. '
  667. 'TextBox67
  668. '
  669. Me.TextBox67.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  670. Me.TextBox67.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  671. Me.TextBox67.Location = New System.Drawing.Point(1544, 845)
  672. Me.TextBox67.Name = "TextBox67"
  673. Me.TextBox67.Size = New System.Drawing.Size(116, 23)
  674. Me.TextBox67.TabIndex = 1297
  675. Me.TextBox67.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  676. '
  677. 'TextBox68
  678. '
  679. Me.TextBox68.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  680. Me.TextBox68.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  681. Me.TextBox68.Location = New System.Drawing.Point(1426, 845)
  682. Me.TextBox68.Name = "TextBox68"
  683. Me.TextBox68.Size = New System.Drawing.Size(116, 23)
  684. Me.TextBox68.TabIndex = 1296
  685. Me.TextBox68.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  686. '
  687. 'TextBox69
  688. '
  689. Me.TextBox69.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  690. Me.TextBox69.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  691. Me.TextBox69.Location = New System.Drawing.Point(1308, 845)
  692. Me.TextBox69.Name = "TextBox69"
  693. Me.TextBox69.Size = New System.Drawing.Size(116, 23)
  694. Me.TextBox69.TabIndex = 1295
  695. Me.TextBox69.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  696. '
  697. 'TextBox70
  698. '
  699. Me.TextBox70.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  700. Me.TextBox70.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  701. Me.TextBox70.Location = New System.Drawing.Point(1190, 845)
  702. Me.TextBox70.Name = "TextBox70"
  703. Me.TextBox70.Size = New System.Drawing.Size(116, 23)
  704. Me.TextBox70.TabIndex = 1294
  705. Me.TextBox70.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  706. '
  707. 'TextBox71
  708. '
  709. Me.TextBox71.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  710. Me.TextBox71.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  711. Me.TextBox71.Location = New System.Drawing.Point(1072, 845)
  712. Me.TextBox71.Name = "TextBox71"
  713. Me.TextBox71.Size = New System.Drawing.Size(116, 23)
  714. Me.TextBox71.TabIndex = 1293
  715. Me.TextBox71.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  716. '
  717. 'TextBox72
  718. '
  719. Me.TextBox72.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  720. Me.TextBox72.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  721. Me.TextBox72.Location = New System.Drawing.Point(954, 845)
  722. Me.TextBox72.Name = "TextBox72"
  723. Me.TextBox72.Size = New System.Drawing.Size(116, 23)
  724. Me.TextBox72.TabIndex = 1292
  725. Me.TextBox72.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  726. '
  727. 'TextBox73
  728. '
  729. Me.TextBox73.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  730. Me.TextBox73.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  731. Me.TextBox73.Location = New System.Drawing.Point(836, 845)
  732. Me.TextBox73.Name = "TextBox73"
  733. Me.TextBox73.Size = New System.Drawing.Size(116, 23)
  734. Me.TextBox73.TabIndex = 1291
  735. Me.TextBox73.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  736. '
  737. 'TextBox74
  738. '
  739. Me.TextBox74.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  740. Me.TextBox74.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  741. Me.TextBox74.Location = New System.Drawing.Point(718, 845)
  742. Me.TextBox74.Name = "TextBox74"
  743. Me.TextBox74.Size = New System.Drawing.Size(116, 23)
  744. Me.TextBox74.TabIndex = 1290
  745. Me.TextBox74.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  746. '
  747. 'TextBox75
  748. '
  749. Me.TextBox75.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  750. Me.TextBox75.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  751. Me.TextBox75.Location = New System.Drawing.Point(600, 845)
  752. Me.TextBox75.Name = "TextBox75"
  753. Me.TextBox75.Size = New System.Drawing.Size(116, 23)
  754. Me.TextBox75.TabIndex = 1289
  755. Me.TextBox75.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  756. '
  757. 'TextBox76
  758. '
  759. Me.TextBox76.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  760. Me.TextBox76.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  761. Me.TextBox76.Location = New System.Drawing.Point(482, 845)
  762. Me.TextBox76.Name = "TextBox76"
  763. Me.TextBox76.Size = New System.Drawing.Size(116, 23)
  764. Me.TextBox76.TabIndex = 1288
  765. Me.TextBox76.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  766. '
  767. 'TextBox63
  768. '
  769. Me.TextBox63.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  770. Me.TextBox63.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  771. Me.TextBox63.Location = New System.Drawing.Point(339, 820)
  772. Me.TextBox63.Name = "TextBox63"
  773. Me.TextBox63.Size = New System.Drawing.Size(116, 23)
  774. Me.TextBox63.TabIndex = 1287
  775. Me.TextBox63.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  776. '
  777. 'TextBox62
  778. '
  779. Me.TextBox62.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  780. Me.TextBox62.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  781. Me.TextBox62.Location = New System.Drawing.Point(339, 795)
  782. Me.TextBox62.Name = "TextBox62"
  783. Me.TextBox62.Size = New System.Drawing.Size(116, 23)
  784. Me.TextBox62.TabIndex = 1286
  785. Me.TextBox62.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  786. '
  787. 'TextBox61
  788. '
  789. Me.TextBox61.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  790. Me.TextBox61.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  791. Me.TextBox61.Location = New System.Drawing.Point(339, 770)
  792. Me.TextBox61.Name = "TextBox61"
  793. Me.TextBox61.Size = New System.Drawing.Size(116, 23)
  794. Me.TextBox61.TabIndex = 1285
  795. Me.TextBox61.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  796. '
  797. 'TextBox56
  798. '
  799. Me.TextBox56.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  800. Me.TextBox56.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  801. Me.TextBox56.Location = New System.Drawing.Point(1780, 920)
  802. Me.TextBox56.Name = "TextBox56"
  803. Me.TextBox56.Size = New System.Drawing.Size(116, 23)
  804. Me.TextBox56.TabIndex = 1284
  805. Me.TextBox56.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  806. '
  807. 'TextBox57
  808. '
  809. Me.TextBox57.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  810. Me.TextBox57.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  811. Me.TextBox57.Location = New System.Drawing.Point(1780, 945)
  812. Me.TextBox57.Name = "TextBox57"
  813. Me.TextBox57.Size = New System.Drawing.Size(116, 23)
  814. Me.TextBox57.TabIndex = 1283
  815. Me.TextBox57.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  816. '
  817. 'TextBox58
  818. '
  819. Me.TextBox58.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  820. Me.TextBox58.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  821. Me.TextBox58.Location = New System.Drawing.Point(1780, 820)
  822. Me.TextBox58.Name = "TextBox58"
  823. Me.TextBox58.Size = New System.Drawing.Size(116, 23)
  824. Me.TextBox58.TabIndex = 1282
  825. Me.TextBox58.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  826. '
  827. 'TextBox59
  828. '
  829. Me.TextBox59.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  830. Me.TextBox59.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  831. Me.TextBox59.Location = New System.Drawing.Point(1780, 795)
  832. Me.TextBox59.Name = "TextBox59"
  833. Me.TextBox59.Size = New System.Drawing.Size(116, 23)
  834. Me.TextBox59.TabIndex = 1281
  835. Me.TextBox59.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  836. '
  837. 'TextBox60
  838. '
  839. Me.TextBox60.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  840. Me.TextBox60.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  841. Me.TextBox60.Location = New System.Drawing.Point(1780, 770)
  842. Me.TextBox60.Name = "TextBox60"
  843. Me.TextBox60.Size = New System.Drawing.Size(116, 23)
  844. Me.TextBox60.TabIndex = 1280
  845. Me.TextBox60.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  846. '
  847. 'TextBox51
  848. '
  849. Me.TextBox51.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  850. Me.TextBox51.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  851. Me.TextBox51.Location = New System.Drawing.Point(1662, 920)
  852. Me.TextBox51.Name = "TextBox51"
  853. Me.TextBox51.Size = New System.Drawing.Size(116, 23)
  854. Me.TextBox51.TabIndex = 1279
  855. Me.TextBox51.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  856. '
  857. 'TextBox52
  858. '
  859. Me.TextBox52.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  860. Me.TextBox52.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  861. Me.TextBox52.Location = New System.Drawing.Point(1662, 945)
  862. Me.TextBox52.Name = "TextBox52"
  863. Me.TextBox52.Size = New System.Drawing.Size(116, 23)
  864. Me.TextBox52.TabIndex = 1278
  865. Me.TextBox52.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  866. '
  867. 'TextBox53
  868. '
  869. Me.TextBox53.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  870. Me.TextBox53.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  871. Me.TextBox53.Location = New System.Drawing.Point(1662, 820)
  872. Me.TextBox53.Name = "TextBox53"
  873. Me.TextBox53.Size = New System.Drawing.Size(116, 23)
  874. Me.TextBox53.TabIndex = 1277
  875. Me.TextBox53.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  876. '
  877. 'TextBox54
  878. '
  879. Me.TextBox54.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  880. Me.TextBox54.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  881. Me.TextBox54.Location = New System.Drawing.Point(1662, 795)
  882. Me.TextBox54.Name = "TextBox54"
  883. Me.TextBox54.Size = New System.Drawing.Size(116, 23)
  884. Me.TextBox54.TabIndex = 1276
  885. Me.TextBox54.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  886. '
  887. 'TextBox55
  888. '
  889. Me.TextBox55.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  890. Me.TextBox55.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  891. Me.TextBox55.Location = New System.Drawing.Point(1662, 770)
  892. Me.TextBox55.Name = "TextBox55"
  893. Me.TextBox55.Size = New System.Drawing.Size(116, 23)
  894. Me.TextBox55.TabIndex = 1275
  895. Me.TextBox55.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  896. '
  897. 'TextBox46
  898. '
  899. Me.TextBox46.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  900. Me.TextBox46.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  901. Me.TextBox46.Location = New System.Drawing.Point(1544, 920)
  902. Me.TextBox46.Name = "TextBox46"
  903. Me.TextBox46.Size = New System.Drawing.Size(116, 23)
  904. Me.TextBox46.TabIndex = 1274
  905. Me.TextBox46.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  906. '
  907. 'TextBox47
  908. '
  909. Me.TextBox47.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  910. Me.TextBox47.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  911. Me.TextBox47.Location = New System.Drawing.Point(1544, 945)
  912. Me.TextBox47.Name = "TextBox47"
  913. Me.TextBox47.Size = New System.Drawing.Size(116, 23)
  914. Me.TextBox47.TabIndex = 1273
  915. Me.TextBox47.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  916. '
  917. 'TextBox48
  918. '
  919. Me.TextBox48.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  920. Me.TextBox48.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  921. Me.TextBox48.Location = New System.Drawing.Point(1544, 820)
  922. Me.TextBox48.Name = "TextBox48"
  923. Me.TextBox48.Size = New System.Drawing.Size(116, 23)
  924. Me.TextBox48.TabIndex = 1272
  925. Me.TextBox48.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  926. '
  927. 'TextBox49
  928. '
  929. Me.TextBox49.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  930. Me.TextBox49.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  931. Me.TextBox49.Location = New System.Drawing.Point(1544, 795)
  932. Me.TextBox49.Name = "TextBox49"
  933. Me.TextBox49.Size = New System.Drawing.Size(116, 23)
  934. Me.TextBox49.TabIndex = 1271
  935. Me.TextBox49.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  936. '
  937. 'TextBox50
  938. '
  939. Me.TextBox50.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  940. Me.TextBox50.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  941. Me.TextBox50.Location = New System.Drawing.Point(1544, 770)
  942. Me.TextBox50.Name = "TextBox50"
  943. Me.TextBox50.Size = New System.Drawing.Size(116, 23)
  944. Me.TextBox50.TabIndex = 1270
  945. Me.TextBox50.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  946. '
  947. 'TextBox41
  948. '
  949. Me.TextBox41.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  950. Me.TextBox41.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  951. Me.TextBox41.Location = New System.Drawing.Point(1426, 920)
  952. Me.TextBox41.Name = "TextBox41"
  953. Me.TextBox41.Size = New System.Drawing.Size(116, 23)
  954. Me.TextBox41.TabIndex = 1269
  955. Me.TextBox41.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  956. '
  957. 'TextBox42
  958. '
  959. Me.TextBox42.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  960. Me.TextBox42.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  961. Me.TextBox42.Location = New System.Drawing.Point(1426, 945)
  962. Me.TextBox42.Name = "TextBox42"
  963. Me.TextBox42.Size = New System.Drawing.Size(116, 23)
  964. Me.TextBox42.TabIndex = 1268
  965. Me.TextBox42.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  966. '
  967. 'TextBox43
  968. '
  969. Me.TextBox43.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  970. Me.TextBox43.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  971. Me.TextBox43.Location = New System.Drawing.Point(1426, 820)
  972. Me.TextBox43.Name = "TextBox43"
  973. Me.TextBox43.Size = New System.Drawing.Size(116, 23)
  974. Me.TextBox43.TabIndex = 1267
  975. Me.TextBox43.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  976. '
  977. 'TextBox44
  978. '
  979. Me.TextBox44.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  980. Me.TextBox44.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  981. Me.TextBox44.Location = New System.Drawing.Point(1426, 795)
  982. Me.TextBox44.Name = "TextBox44"
  983. Me.TextBox44.Size = New System.Drawing.Size(116, 23)
  984. Me.TextBox44.TabIndex = 1266
  985. Me.TextBox44.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  986. '
  987. 'TextBox45
  988. '
  989. Me.TextBox45.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  990. Me.TextBox45.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  991. Me.TextBox45.Location = New System.Drawing.Point(1426, 770)
  992. Me.TextBox45.Name = "TextBox45"
  993. Me.TextBox45.Size = New System.Drawing.Size(116, 23)
  994. Me.TextBox45.TabIndex = 1265
  995. Me.TextBox45.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  996. '
  997. 'TextBox36
  998. '
  999. Me.TextBox36.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  1000. Me.TextBox36.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1001. Me.TextBox36.Location = New System.Drawing.Point(1308, 920)
  1002. Me.TextBox36.Name = "TextBox36"
  1003. Me.TextBox36.Size = New System.Drawing.Size(116, 23)
  1004. Me.TextBox36.TabIndex = 1264
  1005. Me.TextBox36.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  1006. '
  1007. 'TextBox37
  1008. '
  1009. Me.TextBox37.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  1010. Me.TextBox37.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1011. Me.TextBox37.Location = New System.Drawing.Point(1308, 945)
  1012. Me.TextBox37.Name = "TextBox37"
  1013. Me.TextBox37.Size = New System.Drawing.Size(116, 23)
  1014. Me.TextBox37.TabIndex = 1263
  1015. Me.TextBox37.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  1016. '
  1017. 'TextBox38
  1018. '
  1019. Me.TextBox38.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  1020. Me.TextBox38.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1021. Me.TextBox38.Location = New System.Drawing.Point(1308, 820)
  1022. Me.TextBox38.Name = "TextBox38"
  1023. Me.TextBox38.Size = New System.Drawing.Size(116, 23)
  1024. Me.TextBox38.TabIndex = 1262
  1025. Me.TextBox38.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  1026. '
  1027. 'TextBox39
  1028. '
  1029. Me.TextBox39.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  1030. Me.TextBox39.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1031. Me.TextBox39.Location = New System.Drawing.Point(1308, 795)
  1032. Me.TextBox39.Name = "TextBox39"
  1033. Me.TextBox39.Size = New System.Drawing.Size(116, 23)
  1034. Me.TextBox39.TabIndex = 1261
  1035. Me.TextBox39.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  1036. '
  1037. 'TextBox40
  1038. '
  1039. Me.TextBox40.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  1040. Me.TextBox40.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1041. Me.TextBox40.Location = New System.Drawing.Point(1308, 770)
  1042. Me.TextBox40.Name = "TextBox40"
  1043. Me.TextBox40.Size = New System.Drawing.Size(116, 23)
  1044. Me.TextBox40.TabIndex = 1260
  1045. Me.TextBox40.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  1046. '
  1047. 'TextBox31
  1048. '
  1049. Me.TextBox31.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  1050. Me.TextBox31.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1051. Me.TextBox31.Location = New System.Drawing.Point(1190, 920)
  1052. Me.TextBox31.Name = "TextBox31"
  1053. Me.TextBox31.Size = New System.Drawing.Size(116, 23)
  1054. Me.TextBox31.TabIndex = 1259
  1055. Me.TextBox31.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  1056. '
  1057. 'TextBox32
  1058. '
  1059. Me.TextBox32.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  1060. Me.TextBox32.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1061. Me.TextBox32.Location = New System.Drawing.Point(1190, 945)
  1062. Me.TextBox32.Name = "TextBox32"
  1063. Me.TextBox32.Size = New System.Drawing.Size(116, 23)
  1064. Me.TextBox32.TabIndex = 1258
  1065. Me.TextBox32.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  1066. '
  1067. 'TextBox33
  1068. '
  1069. Me.TextBox33.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  1070. Me.TextBox33.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1071. Me.TextBox33.Location = New System.Drawing.Point(1190, 820)
  1072. Me.TextBox33.Name = "TextBox33"
  1073. Me.TextBox33.Size = New System.Drawing.Size(116, 23)
  1074. Me.TextBox33.TabIndex = 1257
  1075. Me.TextBox33.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  1076. '
  1077. 'TextBox34
  1078. '
  1079. Me.TextBox34.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  1080. Me.TextBox34.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1081. Me.TextBox34.Location = New System.Drawing.Point(1190, 795)
  1082. Me.TextBox34.Name = "TextBox34"
  1083. Me.TextBox34.Size = New System.Drawing.Size(116, 23)
  1084. Me.TextBox34.TabIndex = 1256
  1085. Me.TextBox34.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  1086. '
  1087. 'TextBox35
  1088. '
  1089. Me.TextBox35.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  1090. Me.TextBox35.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1091. Me.TextBox35.Location = New System.Drawing.Point(1190, 770)
  1092. Me.TextBox35.Name = "TextBox35"
  1093. Me.TextBox35.Size = New System.Drawing.Size(116, 23)
  1094. Me.TextBox35.TabIndex = 1255
  1095. Me.TextBox35.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  1096. '
  1097. 'Label18
  1098. '
  1099. Me.Label18.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  1100. Me.Label18.AutoSize = True
  1101. Me.Label18.Location = New System.Drawing.Point(176, 873)
  1102. Me.Label18.Name = "Label18"
  1103. Me.Label18.Size = New System.Drawing.Size(27, 16)
  1104. Me.Label18.TabIndex = 1254
  1105. Me.Label18.Text = "5、"
  1106. '
  1107. 'TextBox25
  1108. '
  1109. Me.TextBox25.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  1110. Me.TextBox25.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1111. Me.TextBox25.Location = New System.Drawing.Point(1072, 920)
  1112. Me.TextBox25.Name = "TextBox25"
  1113. Me.TextBox25.Size = New System.Drawing.Size(116, 23)
  1114. Me.TextBox25.TabIndex = 1253
  1115. Me.TextBox25.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  1116. '
  1117. 'TextBox26
  1118. '
  1119. Me.TextBox26.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  1120. Me.TextBox26.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1121. Me.TextBox26.Location = New System.Drawing.Point(954, 920)
  1122. Me.TextBox26.Name = "TextBox26"
  1123. Me.TextBox26.Size = New System.Drawing.Size(116, 23)
  1124. Me.TextBox26.TabIndex = 1252
  1125. Me.TextBox26.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  1126. '
  1127. 'TextBox27
  1128. '
  1129. Me.TextBox27.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  1130. Me.TextBox27.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1131. Me.TextBox27.Location = New System.Drawing.Point(836, 920)
  1132. Me.TextBox27.Name = "TextBox27"
  1133. Me.TextBox27.Size = New System.Drawing.Size(116, 23)
  1134. Me.TextBox27.TabIndex = 1251
  1135. Me.TextBox27.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  1136. '
  1137. 'TextBox28
  1138. '
  1139. Me.TextBox28.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  1140. Me.TextBox28.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1141. Me.TextBox28.Location = New System.Drawing.Point(718, 920)
  1142. Me.TextBox28.Name = "TextBox28"
  1143. Me.TextBox28.Size = New System.Drawing.Size(116, 23)
  1144. Me.TextBox28.TabIndex = 1250
  1145. Me.TextBox28.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  1146. '
  1147. 'TextBox29
  1148. '
  1149. Me.TextBox29.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  1150. Me.TextBox29.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1151. Me.TextBox29.Location = New System.Drawing.Point(600, 920)
  1152. Me.TextBox29.Name = "TextBox29"
  1153. Me.TextBox29.Size = New System.Drawing.Size(116, 23)
  1154. Me.TextBox29.TabIndex = 1249
  1155. Me.TextBox29.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  1156. '
  1157. 'TextBox30
  1158. '
  1159. Me.TextBox30.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  1160. Me.TextBox30.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1161. Me.TextBox30.Location = New System.Drawing.Point(482, 920)
  1162. Me.TextBox30.Name = "TextBox30"
  1163. Me.TextBox30.Size = New System.Drawing.Size(116, 23)
  1164. Me.TextBox30.TabIndex = 1248
  1165. Me.TextBox30.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  1166. '
  1167. 'TextBox24
  1168. '
  1169. Me.TextBox24.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  1170. Me.TextBox24.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1171. Me.TextBox24.Location = New System.Drawing.Point(1072, 945)
  1172. Me.TextBox24.Name = "TextBox24"
  1173. Me.TextBox24.Size = New System.Drawing.Size(116, 23)
  1174. Me.TextBox24.TabIndex = 1247
  1175. Me.TextBox24.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  1176. '
  1177. 'TextBox23
  1178. '
  1179. Me.TextBox23.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  1180. Me.TextBox23.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1181. Me.TextBox23.Location = New System.Drawing.Point(1072, 820)
  1182. Me.TextBox23.Name = "TextBox23"
  1183. Me.TextBox23.Size = New System.Drawing.Size(116, 23)
  1184. Me.TextBox23.TabIndex = 1246
  1185. Me.TextBox23.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  1186. '
  1187. 'TextBox22
  1188. '
  1189. Me.TextBox22.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  1190. Me.TextBox22.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1191. Me.TextBox22.Location = New System.Drawing.Point(1072, 795)
  1192. Me.TextBox22.Name = "TextBox22"
  1193. Me.TextBox22.Size = New System.Drawing.Size(116, 23)
  1194. Me.TextBox22.TabIndex = 1245
  1195. Me.TextBox22.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  1196. '
  1197. 'TextBox21
  1198. '
  1199. Me.TextBox21.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  1200. Me.TextBox21.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1201. Me.TextBox21.Location = New System.Drawing.Point(1072, 770)
  1202. Me.TextBox21.Name = "TextBox21"
  1203. Me.TextBox21.Size = New System.Drawing.Size(116, 23)
  1204. Me.TextBox21.TabIndex = 1244
  1205. Me.TextBox21.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  1206. '
  1207. 'TextBox20
  1208. '
  1209. Me.TextBox20.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  1210. Me.TextBox20.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1211. Me.TextBox20.Location = New System.Drawing.Point(954, 945)
  1212. Me.TextBox20.Name = "TextBox20"
  1213. Me.TextBox20.Size = New System.Drawing.Size(116, 23)
  1214. Me.TextBox20.TabIndex = 1243
  1215. Me.TextBox20.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  1216. '
  1217. 'TextBox19
  1218. '
  1219. Me.TextBox19.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  1220. Me.TextBox19.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1221. Me.TextBox19.Location = New System.Drawing.Point(954, 820)
  1222. Me.TextBox19.Name = "TextBox19"
  1223. Me.TextBox19.Size = New System.Drawing.Size(116, 23)
  1224. Me.TextBox19.TabIndex = 1242
  1225. Me.TextBox19.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  1226. '
  1227. 'TextBox18
  1228. '
  1229. Me.TextBox18.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  1230. Me.TextBox18.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1231. Me.TextBox18.Location = New System.Drawing.Point(954, 795)
  1232. Me.TextBox18.Name = "TextBox18"
  1233. Me.TextBox18.Size = New System.Drawing.Size(116, 23)
  1234. Me.TextBox18.TabIndex = 1241
  1235. Me.TextBox18.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  1236. '
  1237. 'TextBox17
  1238. '
  1239. Me.TextBox17.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  1240. Me.TextBox17.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1241. Me.TextBox17.Location = New System.Drawing.Point(954, 770)
  1242. Me.TextBox17.Name = "TextBox17"
  1243. Me.TextBox17.Size = New System.Drawing.Size(116, 23)
  1244. Me.TextBox17.TabIndex = 1240
  1245. Me.TextBox17.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  1246. '
  1247. 'TextBox16
  1248. '
  1249. Me.TextBox16.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  1250. Me.TextBox16.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1251. Me.TextBox16.Location = New System.Drawing.Point(836, 945)
  1252. Me.TextBox16.Name = "TextBox16"
  1253. Me.TextBox16.Size = New System.Drawing.Size(116, 23)
  1254. Me.TextBox16.TabIndex = 1239
  1255. Me.TextBox16.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  1256. '
  1257. 'TextBox15
  1258. '
  1259. Me.TextBox15.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  1260. Me.TextBox15.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1261. Me.TextBox15.Location = New System.Drawing.Point(836, 820)
  1262. Me.TextBox15.Name = "TextBox15"
  1263. Me.TextBox15.Size = New System.Drawing.Size(116, 23)
  1264. Me.TextBox15.TabIndex = 1238
  1265. Me.TextBox15.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  1266. '
  1267. 'TextBox14
  1268. '
  1269. Me.TextBox14.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  1270. Me.TextBox14.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1271. Me.TextBox14.Location = New System.Drawing.Point(836, 795)
  1272. Me.TextBox14.Name = "TextBox14"
  1273. Me.TextBox14.Size = New System.Drawing.Size(116, 23)
  1274. Me.TextBox14.TabIndex = 1237
  1275. Me.TextBox14.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  1276. '
  1277. 'TextBox13
  1278. '
  1279. Me.TextBox13.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  1280. Me.TextBox13.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1281. Me.TextBox13.Location = New System.Drawing.Point(836, 770)
  1282. Me.TextBox13.Name = "TextBox13"
  1283. Me.TextBox13.Size = New System.Drawing.Size(116, 23)
  1284. Me.TextBox13.TabIndex = 1236
  1285. Me.TextBox13.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  1286. '
  1287. 'TextBox12
  1288. '
  1289. Me.TextBox12.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  1290. Me.TextBox12.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1291. Me.TextBox12.Location = New System.Drawing.Point(718, 945)
  1292. Me.TextBox12.Name = "TextBox12"
  1293. Me.TextBox12.Size = New System.Drawing.Size(116, 23)
  1294. Me.TextBox12.TabIndex = 1235
  1295. Me.TextBox12.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  1296. '
  1297. 'TextBox11
  1298. '
  1299. Me.TextBox11.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  1300. Me.TextBox11.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1301. Me.TextBox11.Location = New System.Drawing.Point(718, 820)
  1302. Me.TextBox11.Name = "TextBox11"
  1303. Me.TextBox11.Size = New System.Drawing.Size(116, 23)
  1304. Me.TextBox11.TabIndex = 1234
  1305. Me.TextBox11.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  1306. '
  1307. 'TextBox10
  1308. '
  1309. Me.TextBox10.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  1310. Me.TextBox10.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1311. Me.TextBox10.Location = New System.Drawing.Point(718, 795)
  1312. Me.TextBox10.Name = "TextBox10"
  1313. Me.TextBox10.Size = New System.Drawing.Size(116, 23)
  1314. Me.TextBox10.TabIndex = 1233
  1315. Me.TextBox10.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  1316. '
  1317. 'TextBox9
  1318. '
  1319. Me.TextBox9.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  1320. Me.TextBox9.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1321. Me.TextBox9.Location = New System.Drawing.Point(718, 770)
  1322. Me.TextBox9.Name = "TextBox9"
  1323. Me.TextBox9.Size = New System.Drawing.Size(116, 23)
  1324. Me.TextBox9.TabIndex = 1232
  1325. Me.TextBox9.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  1326. '
  1327. 'TextBox8
  1328. '
  1329. Me.TextBox8.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  1330. Me.TextBox8.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1331. Me.TextBox8.Location = New System.Drawing.Point(600, 945)
  1332. Me.TextBox8.Name = "TextBox8"
  1333. Me.TextBox8.Size = New System.Drawing.Size(116, 23)
  1334. Me.TextBox8.TabIndex = 1231
  1335. Me.TextBox8.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  1336. '
  1337. 'TextBox7
  1338. '
  1339. Me.TextBox7.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  1340. Me.TextBox7.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1341. Me.TextBox7.Location = New System.Drawing.Point(600, 820)
  1342. Me.TextBox7.Name = "TextBox7"
  1343. Me.TextBox7.Size = New System.Drawing.Size(116, 23)
  1344. Me.TextBox7.TabIndex = 1230
  1345. Me.TextBox7.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  1346. '
  1347. 'TextBox6
  1348. '
  1349. Me.TextBox6.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  1350. Me.TextBox6.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1351. Me.TextBox6.Location = New System.Drawing.Point(600, 795)
  1352. Me.TextBox6.Name = "TextBox6"
  1353. Me.TextBox6.Size = New System.Drawing.Size(116, 23)
  1354. Me.TextBox6.TabIndex = 1229
  1355. Me.TextBox6.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  1356. '
  1357. 'TextBox5
  1358. '
  1359. Me.TextBox5.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  1360. Me.TextBox5.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1361. Me.TextBox5.Location = New System.Drawing.Point(600, 770)
  1362. Me.TextBox5.Name = "TextBox5"
  1363. Me.TextBox5.Size = New System.Drawing.Size(116, 23)
  1364. Me.TextBox5.TabIndex = 1228
  1365. Me.TextBox5.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  1366. '
  1367. 'TextBox4
  1368. '
  1369. Me.TextBox4.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  1370. Me.TextBox4.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1371. Me.TextBox4.Location = New System.Drawing.Point(482, 945)
  1372. Me.TextBox4.Name = "TextBox4"
  1373. Me.TextBox4.Size = New System.Drawing.Size(116, 23)
  1374. Me.TextBox4.TabIndex = 1227
  1375. Me.TextBox4.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  1376. '
  1377. 'Label17
  1378. '
  1379. Me.Label17.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  1380. Me.Label17.AutoSize = True
  1381. Me.Label17.Location = New System.Drawing.Point(176, 848)
  1382. Me.Label17.Name = "Label17"
  1383. Me.Label17.Size = New System.Drawing.Size(27, 16)
  1384. Me.Label17.TabIndex = 1226
  1385. Me.Label17.Text = "4、"
  1386. '
  1387. 'TextBox3
  1388. '
  1389. Me.TextBox3.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  1390. Me.TextBox3.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1391. Me.TextBox3.Location = New System.Drawing.Point(482, 820)
  1392. Me.TextBox3.Name = "TextBox3"
  1393. Me.TextBox3.Size = New System.Drawing.Size(116, 23)
  1394. Me.TextBox3.TabIndex = 1225
  1395. Me.TextBox3.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  1396. '
  1397. 'Label16
  1398. '
  1399. Me.Label16.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  1400. Me.Label16.AutoSize = True
  1401. Me.Label16.Location = New System.Drawing.Point(176, 823)
  1402. Me.Label16.Name = "Label16"
  1403. Me.Label16.Size = New System.Drawing.Size(27, 16)
  1404. Me.Label16.TabIndex = 1224
  1405. Me.Label16.Text = "3、"
  1406. '
  1407. 'TextBox2
  1408. '
  1409. Me.TextBox2.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  1410. Me.TextBox2.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1411. Me.TextBox2.Location = New System.Drawing.Point(482, 795)
  1412. Me.TextBox2.Name = "TextBox2"
  1413. Me.TextBox2.Size = New System.Drawing.Size(116, 23)
  1414. Me.TextBox2.TabIndex = 1223
  1415. Me.TextBox2.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  1416. '
  1417. 'Label15
  1418. '
  1419. Me.Label15.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  1420. Me.Label15.AutoSize = True
  1421. Me.Label15.Location = New System.Drawing.Point(176, 798)
  1422. Me.Label15.Name = "Label15"
  1423. Me.Label15.Size = New System.Drawing.Size(27, 16)
  1424. Me.Label15.TabIndex = 1222
  1425. Me.Label15.Text = "2、"
  1426. '
  1427. 'TextBox1
  1428. '
  1429. Me.TextBox1.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  1430. Me.TextBox1.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1431. Me.TextBox1.Location = New System.Drawing.Point(482, 770)
  1432. Me.TextBox1.Name = "TextBox1"
  1433. Me.TextBox1.Size = New System.Drawing.Size(116, 23)
  1434. Me.TextBox1.TabIndex = 1221
  1435. Me.TextBox1.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  1436. '
  1437. 'Label14
  1438. '
  1439. Me.Label14.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  1440. Me.Label14.AutoSize = True
  1441. Me.Label14.Location = New System.Drawing.Point(176, 773)
  1442. Me.Label14.Name = "Label14"
  1443. Me.Label14.Size = New System.Drawing.Size(27, 16)
  1444. Me.Label14.TabIndex = 1220
  1445. Me.Label14.Text = "1、"
  1446. '
  1447. 'ComboBox2
  1448. '
  1449. Me.ComboBox2.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  1450. Me.ComboBox2.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
  1451. Me.ComboBox2.FormattingEnabled = True
  1452. Me.ComboBox2.Items.AddRange(New Object() {"2019"})
  1453. Me.ComboBox2.Location = New System.Drawing.Point(205, 770)
  1454. Me.ComboBox2.Name = "ComboBox2"
  1455. Me.ComboBox2.Size = New System.Drawing.Size(128, 24)
  1456. Me.ComboBox2.TabIndex = 1302
  1457. '
  1458. 'ComboBox3
  1459. '
  1460. Me.ComboBox3.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  1461. Me.ComboBox3.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
  1462. Me.ComboBox3.FormattingEnabled = True
  1463. Me.ComboBox3.Items.AddRange(New Object() {"2019"})
  1464. Me.ComboBox3.Location = New System.Drawing.Point(205, 795)
  1465. Me.ComboBox3.Name = "ComboBox3"
  1466. Me.ComboBox3.Size = New System.Drawing.Size(128, 24)
  1467. Me.ComboBox3.TabIndex = 1303
  1468. '
  1469. 'ComboBox4
  1470. '
  1471. Me.ComboBox4.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  1472. Me.ComboBox4.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
  1473. Me.ComboBox4.FormattingEnabled = True
  1474. Me.ComboBox4.Items.AddRange(New Object() {"2019"})
  1475. Me.ComboBox4.Location = New System.Drawing.Point(205, 820)
  1476. Me.ComboBox4.Name = "ComboBox4"
  1477. Me.ComboBox4.Size = New System.Drawing.Size(128, 24)
  1478. Me.ComboBox4.TabIndex = 1304
  1479. '
  1480. 'ComboBox5
  1481. '
  1482. Me.ComboBox5.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  1483. Me.ComboBox5.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
  1484. Me.ComboBox5.FormattingEnabled = True
  1485. Me.ComboBox5.Items.AddRange(New Object() {"2019"})
  1486. Me.ComboBox5.Location = New System.Drawing.Point(205, 845)
  1487. Me.ComboBox5.Name = "ComboBox5"
  1488. Me.ComboBox5.Size = New System.Drawing.Size(128, 24)
  1489. Me.ComboBox5.TabIndex = 1305
  1490. '
  1491. 'TextBox77
  1492. '
  1493. Me.TextBox77.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  1494. Me.TextBox77.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1495. Me.TextBox77.Location = New System.Drawing.Point(339, 845)
  1496. Me.TextBox77.Name = "TextBox77"
  1497. Me.TextBox77.Size = New System.Drawing.Size(116, 23)
  1498. Me.TextBox77.TabIndex = 1306
  1499. Me.TextBox77.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  1500. '
  1501. 'ComboBox6
  1502. '
  1503. Me.ComboBox6.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  1504. Me.ComboBox6.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
  1505. Me.ComboBox6.FormattingEnabled = True
  1506. Me.ComboBox6.Items.AddRange(New Object() {"2019"})
  1507. Me.ComboBox6.Location = New System.Drawing.Point(205, 870)
  1508. Me.ComboBox6.Name = "ComboBox6"
  1509. Me.ComboBox6.Size = New System.Drawing.Size(128, 24)
  1510. Me.ComboBox6.TabIndex = 1307
  1511. '
  1512. 'TextBox78
  1513. '
  1514. Me.TextBox78.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  1515. Me.TextBox78.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1516. Me.TextBox78.Location = New System.Drawing.Point(339, 870)
  1517. Me.TextBox78.Name = "TextBox78"
  1518. Me.TextBox78.Size = New System.Drawing.Size(116, 23)
  1519. Me.TextBox78.TabIndex = 1320
  1520. Me.TextBox78.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  1521. '
  1522. 'TextBox79
  1523. '
  1524. Me.TextBox79.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  1525. Me.TextBox79.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1526. Me.TextBox79.Location = New System.Drawing.Point(1780, 870)
  1527. Me.TextBox79.Name = "TextBox79"
  1528. Me.TextBox79.Size = New System.Drawing.Size(116, 23)
  1529. Me.TextBox79.TabIndex = 1319
  1530. Me.TextBox79.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  1531. '
  1532. 'TextBox80
  1533. '
  1534. Me.TextBox80.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  1535. Me.TextBox80.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1536. Me.TextBox80.Location = New System.Drawing.Point(1662, 870)
  1537. Me.TextBox80.Name = "TextBox80"
  1538. Me.TextBox80.Size = New System.Drawing.Size(116, 23)
  1539. Me.TextBox80.TabIndex = 1318
  1540. Me.TextBox80.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  1541. '
  1542. 'TextBox81
  1543. '
  1544. Me.TextBox81.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  1545. Me.TextBox81.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1546. Me.TextBox81.Location = New System.Drawing.Point(1544, 870)
  1547. Me.TextBox81.Name = "TextBox81"
  1548. Me.TextBox81.Size = New System.Drawing.Size(116, 23)
  1549. Me.TextBox81.TabIndex = 1317
  1550. Me.TextBox81.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  1551. '
  1552. 'TextBox82
  1553. '
  1554. Me.TextBox82.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  1555. Me.TextBox82.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1556. Me.TextBox82.Location = New System.Drawing.Point(1426, 870)
  1557. Me.TextBox82.Name = "TextBox82"
  1558. Me.TextBox82.Size = New System.Drawing.Size(116, 23)
  1559. Me.TextBox82.TabIndex = 1316
  1560. Me.TextBox82.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  1561. '
  1562. 'TextBox83
  1563. '
  1564. Me.TextBox83.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  1565. Me.TextBox83.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1566. Me.TextBox83.Location = New System.Drawing.Point(1308, 870)
  1567. Me.TextBox83.Name = "TextBox83"
  1568. Me.TextBox83.Size = New System.Drawing.Size(116, 23)
  1569. Me.TextBox83.TabIndex = 1315
  1570. Me.TextBox83.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  1571. '
  1572. 'TextBox84
  1573. '
  1574. Me.TextBox84.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  1575. Me.TextBox84.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1576. Me.TextBox84.Location = New System.Drawing.Point(1190, 870)
  1577. Me.TextBox84.Name = "TextBox84"
  1578. Me.TextBox84.Size = New System.Drawing.Size(116, 23)
  1579. Me.TextBox84.TabIndex = 1314
  1580. Me.TextBox84.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  1581. '
  1582. 'TextBox85
  1583. '
  1584. Me.TextBox85.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  1585. Me.TextBox85.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1586. Me.TextBox85.Location = New System.Drawing.Point(1072, 870)
  1587. Me.TextBox85.Name = "TextBox85"
  1588. Me.TextBox85.Size = New System.Drawing.Size(116, 23)
  1589. Me.TextBox85.TabIndex = 1313
  1590. Me.TextBox85.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  1591. '
  1592. 'TextBox86
  1593. '
  1594. Me.TextBox86.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  1595. Me.TextBox86.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1596. Me.TextBox86.Location = New System.Drawing.Point(954, 870)
  1597. Me.TextBox86.Name = "TextBox86"
  1598. Me.TextBox86.Size = New System.Drawing.Size(116, 23)
  1599. Me.TextBox86.TabIndex = 1312
  1600. Me.TextBox86.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  1601. '
  1602. 'TextBox87
  1603. '
  1604. Me.TextBox87.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  1605. Me.TextBox87.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1606. Me.TextBox87.Location = New System.Drawing.Point(836, 870)
  1607. Me.TextBox87.Name = "TextBox87"
  1608. Me.TextBox87.Size = New System.Drawing.Size(116, 23)
  1609. Me.TextBox87.TabIndex = 1311
  1610. Me.TextBox87.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  1611. '
  1612. 'TextBox88
  1613. '
  1614. Me.TextBox88.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  1615. Me.TextBox88.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1616. Me.TextBox88.Location = New System.Drawing.Point(718, 870)
  1617. Me.TextBox88.Name = "TextBox88"
  1618. Me.TextBox88.Size = New System.Drawing.Size(116, 23)
  1619. Me.TextBox88.TabIndex = 1310
  1620. Me.TextBox88.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  1621. '
  1622. 'TextBox89
  1623. '
  1624. Me.TextBox89.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  1625. Me.TextBox89.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1626. Me.TextBox89.Location = New System.Drawing.Point(600, 870)
  1627. Me.TextBox89.Name = "TextBox89"
  1628. Me.TextBox89.Size = New System.Drawing.Size(116, 23)
  1629. Me.TextBox89.TabIndex = 1309
  1630. Me.TextBox89.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  1631. '
  1632. 'TextBox90
  1633. '
  1634. Me.TextBox90.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  1635. Me.TextBox90.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1636. Me.TextBox90.Location = New System.Drawing.Point(482, 870)
  1637. Me.TextBox90.Name = "TextBox90"
  1638. Me.TextBox90.Size = New System.Drawing.Size(116, 23)
  1639. Me.TextBox90.TabIndex = 1308
  1640. Me.TextBox90.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  1641. '
  1642. 'TextBox91
  1643. '
  1644. Me.TextBox91.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  1645. Me.TextBox91.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1646. Me.TextBox91.Location = New System.Drawing.Point(339, 895)
  1647. Me.TextBox91.Name = "TextBox91"
  1648. Me.TextBox91.Size = New System.Drawing.Size(116, 23)
  1649. Me.TextBox91.TabIndex = 1323
  1650. Me.TextBox91.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  1651. '
  1652. 'ComboBox7
  1653. '
  1654. Me.ComboBox7.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  1655. Me.ComboBox7.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
  1656. Me.ComboBox7.FormattingEnabled = True
  1657. Me.ComboBox7.Items.AddRange(New Object() {"2019"})
  1658. Me.ComboBox7.Location = New System.Drawing.Point(205, 895)
  1659. Me.ComboBox7.Name = "ComboBox7"
  1660. Me.ComboBox7.Size = New System.Drawing.Size(128, 24)
  1661. Me.ComboBox7.TabIndex = 1322
  1662. '
  1663. 'Label20
  1664. '
  1665. Me.Label20.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  1666. Me.Label20.AutoSize = True
  1667. Me.Label20.Location = New System.Drawing.Point(176, 898)
  1668. Me.Label20.Name = "Label20"
  1669. Me.Label20.Size = New System.Drawing.Size(27, 16)
  1670. Me.Label20.TabIndex = 1321
  1671. Me.Label20.Text = "6、"
  1672. '
  1673. 'TextBox92
  1674. '
  1675. Me.TextBox92.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  1676. Me.TextBox92.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1677. Me.TextBox92.Location = New System.Drawing.Point(1780, 895)
  1678. Me.TextBox92.Name = "TextBox92"
  1679. Me.TextBox92.Size = New System.Drawing.Size(116, 23)
  1680. Me.TextBox92.TabIndex = 1335
  1681. Me.TextBox92.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  1682. '
  1683. 'TextBox93
  1684. '
  1685. Me.TextBox93.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  1686. Me.TextBox93.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1687. Me.TextBox93.Location = New System.Drawing.Point(1662, 895)
  1688. Me.TextBox93.Name = "TextBox93"
  1689. Me.TextBox93.Size = New System.Drawing.Size(116, 23)
  1690. Me.TextBox93.TabIndex = 1334
  1691. Me.TextBox93.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  1692. '
  1693. 'TextBox94
  1694. '
  1695. Me.TextBox94.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  1696. Me.TextBox94.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1697. Me.TextBox94.Location = New System.Drawing.Point(1544, 895)
  1698. Me.TextBox94.Name = "TextBox94"
  1699. Me.TextBox94.Size = New System.Drawing.Size(116, 23)
  1700. Me.TextBox94.TabIndex = 1333
  1701. Me.TextBox94.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  1702. '
  1703. 'TextBox95
  1704. '
  1705. Me.TextBox95.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  1706. Me.TextBox95.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1707. Me.TextBox95.Location = New System.Drawing.Point(1426, 895)
  1708. Me.TextBox95.Name = "TextBox95"
  1709. Me.TextBox95.Size = New System.Drawing.Size(116, 23)
  1710. Me.TextBox95.TabIndex = 1332
  1711. Me.TextBox95.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  1712. '
  1713. 'TextBox96
  1714. '
  1715. Me.TextBox96.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  1716. Me.TextBox96.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1717. Me.TextBox96.Location = New System.Drawing.Point(1308, 895)
  1718. Me.TextBox96.Name = "TextBox96"
  1719. Me.TextBox96.Size = New System.Drawing.Size(116, 23)
  1720. Me.TextBox96.TabIndex = 1331
  1721. Me.TextBox96.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  1722. '
  1723. 'TextBox97
  1724. '
  1725. Me.TextBox97.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  1726. Me.TextBox97.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1727. Me.TextBox97.Location = New System.Drawing.Point(1190, 895)
  1728. Me.TextBox97.Name = "TextBox97"
  1729. Me.TextBox97.Size = New System.Drawing.Size(116, 23)
  1730. Me.TextBox97.TabIndex = 1330
  1731. Me.TextBox97.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  1732. '
  1733. 'TextBox98
  1734. '
  1735. Me.TextBox98.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  1736. Me.TextBox98.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1737. Me.TextBox98.Location = New System.Drawing.Point(1072, 895)
  1738. Me.TextBox98.Name = "TextBox98"
  1739. Me.TextBox98.Size = New System.Drawing.Size(116, 23)
  1740. Me.TextBox98.TabIndex = 1329
  1741. Me.TextBox98.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  1742. '
  1743. 'TextBox99
  1744. '
  1745. Me.TextBox99.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  1746. Me.TextBox99.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1747. Me.TextBox99.Location = New System.Drawing.Point(954, 895)
  1748. Me.TextBox99.Name = "TextBox99"
  1749. Me.TextBox99.Size = New System.Drawing.Size(116, 23)
  1750. Me.TextBox99.TabIndex = 1328
  1751. Me.TextBox99.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  1752. '
  1753. 'TextBox100
  1754. '
  1755. Me.TextBox100.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  1756. Me.TextBox100.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1757. Me.TextBox100.Location = New System.Drawing.Point(836, 895)
  1758. Me.TextBox100.Name = "TextBox100"
  1759. Me.TextBox100.Size = New System.Drawing.Size(116, 23)
  1760. Me.TextBox100.TabIndex = 1327
  1761. Me.TextBox100.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  1762. '
  1763. 'TextBox101
  1764. '
  1765. Me.TextBox101.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  1766. Me.TextBox101.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1767. Me.TextBox101.Location = New System.Drawing.Point(718, 895)
  1768. Me.TextBox101.Name = "TextBox101"
  1769. Me.TextBox101.Size = New System.Drawing.Size(116, 23)
  1770. Me.TextBox101.TabIndex = 1326
  1771. Me.TextBox101.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  1772. '
  1773. 'TextBox102
  1774. '
  1775. Me.TextBox102.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  1776. Me.TextBox102.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1777. Me.TextBox102.Location = New System.Drawing.Point(600, 895)
  1778. Me.TextBox102.Name = "TextBox102"
  1779. Me.TextBox102.Size = New System.Drawing.Size(116, 23)
  1780. Me.TextBox102.TabIndex = 1325
  1781. Me.TextBox102.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  1782. '
  1783. 'TextBox103
  1784. '
  1785. Me.TextBox103.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  1786. Me.TextBox103.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1787. Me.TextBox103.Location = New System.Drawing.Point(482, 895)
  1788. Me.TextBox103.Name = "TextBox103"
  1789. Me.TextBox103.Size = New System.Drawing.Size(116, 23)
  1790. Me.TextBox103.TabIndex = 1324
  1791. Me.TextBox103.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  1792. '
  1793. 'TextBox104
  1794. '
  1795. Me.TextBox104.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  1796. Me.TextBox104.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1797. Me.TextBox104.Location = New System.Drawing.Point(339, 920)
  1798. Me.TextBox104.Name = "TextBox104"
  1799. Me.TextBox104.Size = New System.Drawing.Size(116, 23)
  1800. Me.TextBox104.TabIndex = 1338
  1801. Me.TextBox104.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
  1802. '
  1803. 'ComboBox8
  1804. '
  1805. Me.ComboBox8.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  1806. Me.ComboBox8.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
  1807. Me.ComboBox8.FormattingEnabled = True
  1808. Me.ComboBox8.Items.AddRange(New Object() {"2019"})
  1809. Me.ComboBox8.Location = New System.Drawing.Point(205, 920)
  1810. Me.ComboBox8.Name = "ComboBox8"
  1811. Me.ComboBox8.Size = New System.Drawing.Size(128, 24)
  1812. Me.ComboBox8.TabIndex = 1337
  1813. '
  1814. 'Label21
  1815. '
  1816. Me.Label21.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  1817. Me.Label21.AutoSize = True
  1818. Me.Label21.Location = New System.Drawing.Point(176, 923)
  1819. Me.Label21.Name = "Label21"
  1820. Me.Label21.Size = New System.Drawing.Size(27, 16)
  1821. Me.Label21.TabIndex = 1336
  1822. Me.Label21.Text = "7、"
  1823. '
  1824. 'Label22
  1825. '
  1826. Me.Label22.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  1827. Me.Label22.AutoSize = True
  1828. Me.Label22.Location = New System.Drawing.Point(176, 948)
  1829. Me.Label22.Name = "Label22"
  1830. Me.Label22.Size = New System.Drawing.Size(27, 16)
  1831. Me.Label22.TabIndex = 1339
  1832. Me.Label22.Text = "8、"
  1833. '
  1834. 'CheckBox1
  1835. '
  1836. Me.CheckBox1.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  1837. Me.CheckBox1.AutoSize = True
  1838. Me.CheckBox1.Location = New System.Drawing.Point(7, 772)
  1839. Me.CheckBox1.Name = "CheckBox1"
  1840. Me.CheckBox1.Size = New System.Drawing.Size(87, 20)
  1841. Me.CheckBox1.TabIndex = 1340
  1842. Me.CheckBox1.Text = "需年度加總"
  1843. Me.CheckBox1.UseVisualStyleBackColor = True
  1844. '
  1845. 'CheckBox2
  1846. '
  1847. Me.CheckBox2.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  1848. Me.CheckBox2.AutoSize = True
  1849. Me.CheckBox2.Location = New System.Drawing.Point(7, 797)
  1850. Me.CheckBox2.Name = "CheckBox2"
  1851. Me.CheckBox2.Size = New System.Drawing.Size(87, 20)
  1852. Me.CheckBox2.TabIndex = 1341
  1853. Me.CheckBox2.Text = "需年度加總"
  1854. Me.CheckBox2.UseVisualStyleBackColor = True
  1855. '
  1856. 'CheckBox3
  1857. '
  1858. Me.CheckBox3.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  1859. Me.CheckBox3.AutoSize = True
  1860. Me.CheckBox3.Location = New System.Drawing.Point(7, 822)
  1861. Me.CheckBox3.Name = "CheckBox3"
  1862. Me.CheckBox3.Size = New System.Drawing.Size(87, 20)
  1863. Me.CheckBox3.TabIndex = 1342
  1864. Me.CheckBox3.Text = "需年度加總"
  1865. Me.CheckBox3.UseVisualStyleBackColor = True
  1866. '
  1867. 'CheckBox4
  1868. '
  1869. Me.CheckBox4.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  1870. Me.CheckBox4.AutoSize = True
  1871. Me.CheckBox4.Location = New System.Drawing.Point(7, 847)
  1872. Me.CheckBox4.Name = "CheckBox4"
  1873. Me.CheckBox4.Size = New System.Drawing.Size(87, 20)
  1874. Me.CheckBox4.TabIndex = 1343
  1875. Me.CheckBox4.Text = "需年度加總"
  1876. Me.CheckBox4.UseVisualStyleBackColor = True
  1877. '
  1878. 'CheckBox5
  1879. '
  1880. Me.CheckBox5.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  1881. Me.CheckBox5.AutoSize = True
  1882. Me.CheckBox5.Location = New System.Drawing.Point(7, 872)
  1883. Me.CheckBox5.Name = "CheckBox5"
  1884. Me.CheckBox5.Size = New System.Drawing.Size(87, 20)
  1885. Me.CheckBox5.TabIndex = 1344
  1886. Me.CheckBox5.Text = "需年度加總"
  1887. Me.CheckBox5.UseVisualStyleBackColor = True
  1888. '
  1889. 'CheckBox6
  1890. '
  1891. Me.CheckBox6.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  1892. Me.CheckBox6.AutoSize = True
  1893. Me.CheckBox6.Location = New System.Drawing.Point(7, 897)
  1894. Me.CheckBox6.Name = "CheckBox6"
  1895. Me.CheckBox6.Size = New System.Drawing.Size(87, 20)
  1896. Me.CheckBox6.TabIndex = 1345
  1897. Me.CheckBox6.Text = "需年度加總"
  1898. Me.CheckBox6.UseVisualStyleBackColor = True
  1899. '
  1900. 'CheckBox7
  1901. '
  1902. Me.CheckBox7.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  1903. Me.CheckBox7.AutoSize = True
  1904. Me.CheckBox7.Location = New System.Drawing.Point(7, 922)
  1905. Me.CheckBox7.Name = "CheckBox7"
  1906. Me.CheckBox7.Size = New System.Drawing.Size(87, 20)
  1907. Me.CheckBox7.TabIndex = 1346
  1908. Me.CheckBox7.Text = "需年度加總"
  1909. Me.CheckBox7.UseVisualStyleBackColor = True
  1910. '
  1911. 'DataGridView14
  1912. '
  1913. Me.DataGridView14.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill
  1914. Me.DataGridView14.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize
  1915. Me.DataGridView14.Location = New System.Drawing.Point(37, 583)
  1916. Me.DataGridView14.Name = "DataGridView14"
  1917. Me.DataGridView14.RowHeadersWidth = 5
  1918. DataGridViewCellStyle14.Font = New System.Drawing.Font("微軟正黑體", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1919. DataGridViewCellStyle14.WrapMode = System.Windows.Forms.DataGridViewTriState.[True]
  1920. Me.DataGridView14.RowsDefaultCellStyle = DataGridViewCellStyle14
  1921. Me.DataGridView14.RowTemplate.Height = 24
  1922. Me.DataGridView14.ScrollBars = System.Windows.Forms.ScrollBars.None
  1923. Me.DataGridView14.Size = New System.Drawing.Size(253, 162)
  1924. Me.DataGridView14.TabIndex = 1347
  1925. '
  1926. 'Button3
  1927. '
  1928. Me.Button3.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  1929. Me.Button3.Location = New System.Drawing.Point(7, 944)
  1930. Me.Button3.Name = "Button3"
  1931. Me.Button3.Size = New System.Drawing.Size(101, 25)
  1932. Me.Button3.TabIndex = 1348
  1933. Me.Button3.Text = "預設合計存檔"
  1934. Me.Button3.UseVisualStyleBackColor = True
  1935. '
  1936. 'Button4
  1937. '
  1938. Me.Button4.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  1939. Me.Button4.Location = New System.Drawing.Point(111, 944)
  1940. Me.Button4.Name = "Button4"
  1941. Me.Button4.Size = New System.Drawing.Size(52, 25)
  1942. Me.Button4.TabIndex = 1349
  1943. Me.Button4.Text = "清空"
  1944. Me.Button4.UseVisualStyleBackColor = True
  1945. '
  1946. 'TextBox105
  1947. '
  1948. Me.TextBox105.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  1949. Me.TextBox105.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1950. Me.TextBox105.Location = New System.Drawing.Point(113, 920)
  1951. Me.TextBox105.Name = "TextBox105"
  1952. Me.TextBox105.Size = New System.Drawing.Size(48, 23)
  1953. Me.TextBox105.TabIndex = 1356
  1954. Me.TextBox105.TextAlign = System.Windows.Forms.HorizontalAlignment.Center
  1955. '
  1956. 'TextBox106
  1957. '
  1958. Me.TextBox106.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  1959. Me.TextBox106.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1960. Me.TextBox106.Location = New System.Drawing.Point(113, 895)
  1961. Me.TextBox106.Name = "TextBox106"
  1962. Me.TextBox106.Size = New System.Drawing.Size(48, 23)
  1963. Me.TextBox106.TabIndex = 1355
  1964. Me.TextBox106.TextAlign = System.Windows.Forms.HorizontalAlignment.Center
  1965. '
  1966. 'TextBox107
  1967. '
  1968. Me.TextBox107.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  1969. Me.TextBox107.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1970. Me.TextBox107.Location = New System.Drawing.Point(113, 870)
  1971. Me.TextBox107.Name = "TextBox107"
  1972. Me.TextBox107.Size = New System.Drawing.Size(48, 23)
  1973. Me.TextBox107.TabIndex = 1354
  1974. Me.TextBox107.TextAlign = System.Windows.Forms.HorizontalAlignment.Center
  1975. '
  1976. 'TextBox108
  1977. '
  1978. Me.TextBox108.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  1979. Me.TextBox108.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1980. Me.TextBox108.Location = New System.Drawing.Point(113, 845)
  1981. Me.TextBox108.Name = "TextBox108"
  1982. Me.TextBox108.Size = New System.Drawing.Size(48, 23)
  1983. Me.TextBox108.TabIndex = 1353
  1984. Me.TextBox108.TextAlign = System.Windows.Forms.HorizontalAlignment.Center
  1985. '
  1986. 'TextBox109
  1987. '
  1988. Me.TextBox109.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  1989. Me.TextBox109.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1990. Me.TextBox109.Location = New System.Drawing.Point(113, 820)
  1991. Me.TextBox109.Name = "TextBox109"
  1992. Me.TextBox109.Size = New System.Drawing.Size(48, 23)
  1993. Me.TextBox109.TabIndex = 1352
  1994. Me.TextBox109.TextAlign = System.Windows.Forms.HorizontalAlignment.Center
  1995. '
  1996. 'TextBox110
  1997. '
  1998. Me.TextBox110.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  1999. Me.TextBox110.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2000. Me.TextBox110.Location = New System.Drawing.Point(113, 795)
  2001. Me.TextBox110.Name = "TextBox110"
  2002. Me.TextBox110.Size = New System.Drawing.Size(48, 23)
  2003. Me.TextBox110.TabIndex = 1351
  2004. Me.TextBox110.TextAlign = System.Windows.Forms.HorizontalAlignment.Center
  2005. '
  2006. 'TextBox111
  2007. '
  2008. Me.TextBox111.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
  2009. Me.TextBox111.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2010. Me.TextBox111.Location = New System.Drawing.Point(113, 770)
  2011. Me.TextBox111.Name = "TextBox111"
  2012. Me.TextBox111.Size = New System.Drawing.Size(48, 23)
  2013. Me.TextBox111.TabIndex = 1350
  2014. Me.TextBox111.TextAlign = System.Windows.Forms.HorizontalAlignment.Center
  2015. '
  2016. '營運成本收支_決算表
  2017. '
  2018. Me.AutoScaleDimensions = New System.Drawing.SizeF(7.0!, 16.0!)
  2019. Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font
  2020. Me.ClientSize = New System.Drawing.Size(1914, 981)
  2021. Me.ContextMenuStrip = Me.ContextMenuStrip1
  2022. Me.Controls.Add(Me.TextBox105)
  2023. Me.Controls.Add(Me.TextBox106)
  2024. Me.Controls.Add(Me.TextBox107)
  2025. Me.Controls.Add(Me.TextBox108)
  2026. Me.Controls.Add(Me.TextBox109)
  2027. Me.Controls.Add(Me.TextBox110)
  2028. Me.Controls.Add(Me.TextBox111)
  2029. Me.Controls.Add(Me.Button4)
  2030. Me.Controls.Add(Me.Button3)
  2031. Me.Controls.Add(Me.DataGridView14)
  2032. Me.Controls.Add(Me.CheckBox7)
  2033. Me.Controls.Add(Me.CheckBox6)
  2034. Me.Controls.Add(Me.CheckBox5)
  2035. Me.Controls.Add(Me.CheckBox4)
  2036. Me.Controls.Add(Me.CheckBox3)
  2037. Me.Controls.Add(Me.CheckBox2)
  2038. Me.Controls.Add(Me.CheckBox1)
  2039. Me.Controls.Add(Me.Label22)
  2040. Me.Controls.Add(Me.TextBox104)
  2041. Me.Controls.Add(Me.ComboBox8)
  2042. Me.Controls.Add(Me.Label21)
  2043. Me.Controls.Add(Me.TextBox92)
  2044. Me.Controls.Add(Me.TextBox93)
  2045. Me.Controls.Add(Me.TextBox94)
  2046. Me.Controls.Add(Me.TextBox95)
  2047. Me.Controls.Add(Me.TextBox96)
  2048. Me.Controls.Add(Me.TextBox97)
  2049. Me.Controls.Add(Me.TextBox98)
  2050. Me.Controls.Add(Me.TextBox99)
  2051. Me.Controls.Add(Me.TextBox100)
  2052. Me.Controls.Add(Me.TextBox101)
  2053. Me.Controls.Add(Me.TextBox102)
  2054. Me.Controls.Add(Me.TextBox103)
  2055. Me.Controls.Add(Me.TextBox91)
  2056. Me.Controls.Add(Me.ComboBox7)
  2057. Me.Controls.Add(Me.Label20)
  2058. Me.Controls.Add(Me.TextBox78)
  2059. Me.Controls.Add(Me.TextBox79)
  2060. Me.Controls.Add(Me.TextBox80)
  2061. Me.Controls.Add(Me.TextBox81)
  2062. Me.Controls.Add(Me.TextBox82)
  2063. Me.Controls.Add(Me.TextBox83)
  2064. Me.Controls.Add(Me.TextBox84)
  2065. Me.Controls.Add(Me.TextBox85)
  2066. Me.Controls.Add(Me.TextBox86)
  2067. Me.Controls.Add(Me.TextBox87)
  2068. Me.Controls.Add(Me.TextBox88)
  2069. Me.Controls.Add(Me.TextBox89)
  2070. Me.Controls.Add(Me.TextBox90)
  2071. Me.Controls.Add(Me.ComboBox6)
  2072. Me.Controls.Add(Me.TextBox77)
  2073. Me.Controls.Add(Me.ComboBox5)
  2074. Me.Controls.Add(Me.ComboBox4)
  2075. Me.Controls.Add(Me.ComboBox3)
  2076. Me.Controls.Add(Me.ComboBox2)
  2077. Me.Controls.Add(Me.Label19)
  2078. Me.Controls.Add(Me.TextBox64)
  2079. Me.Controls.Add(Me.TextBox65)
  2080. Me.Controls.Add(Me.TextBox66)
  2081. Me.Controls.Add(Me.TextBox67)
  2082. Me.Controls.Add(Me.TextBox68)
  2083. Me.Controls.Add(Me.TextBox69)
  2084. Me.Controls.Add(Me.TextBox70)
  2085. Me.Controls.Add(Me.TextBox71)
  2086. Me.Controls.Add(Me.TextBox72)
  2087. Me.Controls.Add(Me.TextBox73)
  2088. Me.Controls.Add(Me.TextBox74)
  2089. Me.Controls.Add(Me.TextBox75)
  2090. Me.Controls.Add(Me.TextBox76)
  2091. Me.Controls.Add(Me.TextBox63)
  2092. Me.Controls.Add(Me.TextBox62)
  2093. Me.Controls.Add(Me.TextBox61)
  2094. Me.Controls.Add(Me.TextBox56)
  2095. Me.Controls.Add(Me.TextBox57)
  2096. Me.Controls.Add(Me.TextBox58)
  2097. Me.Controls.Add(Me.TextBox59)
  2098. Me.Controls.Add(Me.TextBox60)
  2099. Me.Controls.Add(Me.TextBox51)
  2100. Me.Controls.Add(Me.TextBox52)
  2101. Me.Controls.Add(Me.TextBox53)
  2102. Me.Controls.Add(Me.TextBox54)
  2103. Me.Controls.Add(Me.TextBox55)
  2104. Me.Controls.Add(Me.TextBox46)
  2105. Me.Controls.Add(Me.TextBox47)
  2106. Me.Controls.Add(Me.TextBox48)
  2107. Me.Controls.Add(Me.TextBox49)
  2108. Me.Controls.Add(Me.TextBox50)
  2109. Me.Controls.Add(Me.TextBox41)
  2110. Me.Controls.Add(Me.TextBox42)
  2111. Me.Controls.Add(Me.TextBox43)
  2112. Me.Controls.Add(Me.TextBox44)
  2113. Me.Controls.Add(Me.TextBox45)
  2114. Me.Controls.Add(Me.TextBox36)
  2115. Me.Controls.Add(Me.TextBox37)
  2116. Me.Controls.Add(Me.TextBox38)
  2117. Me.Controls.Add(Me.TextBox39)
  2118. Me.Controls.Add(Me.TextBox40)
  2119. Me.Controls.Add(Me.TextBox31)
  2120. Me.Controls.Add(Me.TextBox32)
  2121. Me.Controls.Add(Me.TextBox33)
  2122. Me.Controls.Add(Me.TextBox34)
  2123. Me.Controls.Add(Me.TextBox35)
  2124. Me.Controls.Add(Me.Label18)
  2125. Me.Controls.Add(Me.TextBox25)
  2126. Me.Controls.Add(Me.TextBox26)
  2127. Me.Controls.Add(Me.TextBox27)
  2128. Me.Controls.Add(Me.TextBox28)
  2129. Me.Controls.Add(Me.TextBox29)
  2130. Me.Controls.Add(Me.TextBox30)
  2131. Me.Controls.Add(Me.TextBox24)
  2132. Me.Controls.Add(Me.TextBox23)
  2133. Me.Controls.Add(Me.TextBox22)
  2134. Me.Controls.Add(Me.TextBox21)
  2135. Me.Controls.Add(Me.TextBox20)
  2136. Me.Controls.Add(Me.TextBox19)
  2137. Me.Controls.Add(Me.TextBox18)
  2138. Me.Controls.Add(Me.TextBox17)
  2139. Me.Controls.Add(Me.TextBox16)
  2140. Me.Controls.Add(Me.TextBox15)
  2141. Me.Controls.Add(Me.TextBox14)
  2142. Me.Controls.Add(Me.TextBox13)
  2143. Me.Controls.Add(Me.TextBox12)
  2144. Me.Controls.Add(Me.TextBox11)
  2145. Me.Controls.Add(Me.TextBox10)
  2146. Me.Controls.Add(Me.TextBox9)
  2147. Me.Controls.Add(Me.TextBox8)
  2148. Me.Controls.Add(Me.TextBox7)
  2149. Me.Controls.Add(Me.TextBox6)
  2150. Me.Controls.Add(Me.TextBox5)
  2151. Me.Controls.Add(Me.TextBox4)
  2152. Me.Controls.Add(Me.Label17)
  2153. Me.Controls.Add(Me.TextBox3)
  2154. Me.Controls.Add(Me.Label16)
  2155. Me.Controls.Add(Me.TextBox2)
  2156. Me.Controls.Add(Me.Label15)
  2157. Me.Controls.Add(Me.TextBox1)
  2158. Me.Controls.Add(Me.Label14)
  2159. Me.Controls.Add(Me.Button2)
  2160. Me.Controls.Add(Me.Button1)
  2161. Me.Controls.Add(Me.Label13)
  2162. Me.Controls.Add(Me.Label12)
  2163. Me.Controls.Add(Me.Label11)
  2164. Me.Controls.Add(Me.Label10)
  2165. Me.Controls.Add(Me.Label9)
  2166. Me.Controls.Add(Me.Label8)
  2167. Me.Controls.Add(Me.Label7)
  2168. Me.Controls.Add(Me.Label6)
  2169. Me.Controls.Add(Me.Label5)
  2170. Me.Controls.Add(Me.Label4)
  2171. Me.Controls.Add(Me.Label3)
  2172. Me.Controls.Add(Me.Label2)
  2173. Me.Controls.Add(Me.DataGridView13)
  2174. Me.Controls.Add(Me.DataGridView12)
  2175. Me.Controls.Add(Me.DataGridView11)
  2176. Me.Controls.Add(Me.DataGridView10)
  2177. Me.Controls.Add(Me.DataGridView9)
  2178. Me.Controls.Add(Me.DataGridView8)
  2179. Me.Controls.Add(Me.DataGridView7)
  2180. Me.Controls.Add(Me.DataGridView6)
  2181. Me.Controls.Add(Me.DataGridView5)
  2182. Me.Controls.Add(Me.DataGridView4)
  2183. Me.Controls.Add(Me.DataGridView3)
  2184. Me.Controls.Add(Me.DataGridView1)
  2185. Me.Controls.Add(Me.ComboBox1)
  2186. Me.Controls.Add(Me.Label1)
  2187. Me.Controls.Add(Me.DataGridView2)
  2188. Me.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2189. Me.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4)
  2190. Me.Name = "營運成本收支_決算表"
  2191. Me.Text = "營運成本收支_決算表"
  2192. Me.ContextMenuStrip1.ResumeLayout(False)
  2193. CType(Me.DataGridView13, System.ComponentModel.ISupportInitialize).EndInit()
  2194. CType(Me.DataGridView12, System.ComponentModel.ISupportInitialize).EndInit()
  2195. CType(Me.DataGridView11, System.ComponentModel.ISupportInitialize).EndInit()
  2196. CType(Me.DataGridView10, System.ComponentModel.ISupportInitialize).EndInit()
  2197. CType(Me.DataGridView9, System.ComponentModel.ISupportInitialize).EndInit()
  2198. CType(Me.DataGridView8, System.ComponentModel.ISupportInitialize).EndInit()
  2199. CType(Me.DataGridView7, System.ComponentModel.ISupportInitialize).EndInit()
  2200. CType(Me.DataGridView6, System.ComponentModel.ISupportInitialize).EndInit()
  2201. CType(Me.DataGridView5, System.ComponentModel.ISupportInitialize).EndInit()
  2202. CType(Me.DataGridView4, System.ComponentModel.ISupportInitialize).EndInit()
  2203. CType(Me.DataGridView3, System.ComponentModel.ISupportInitialize).EndInit()
  2204. CType(Me.DataGridView1, System.ComponentModel.ISupportInitialize).EndInit()
  2205. CType(Me.DataGridView2, System.ComponentModel.ISupportInitialize).EndInit()
  2206. CType(Me.DataGridView14, System.ComponentModel.ISupportInitialize).EndInit()
  2207. Me.ResumeLayout(False)
  2208. Me.PerformLayout()
  2209. End Sub
  2210. Friend WithEvents ContextMenuStrip1 As ContextMenuStrip
  2211. Friend WithEvents 重新整理ToolStripMenuItem As ToolStripMenuItem
  2212. Friend WithEvents Button2 As Button
  2213. Friend WithEvents Button1 As Button
  2214. Friend WithEvents Label13 As Label
  2215. Friend WithEvents Label12 As Label
  2216. Friend WithEvents Label11 As Label
  2217. Friend WithEvents Label10 As Label
  2218. Friend WithEvents Label9 As Label
  2219. Friend WithEvents Label8 As Label
  2220. Friend WithEvents Label7 As Label
  2221. Friend WithEvents Label6 As Label
  2222. Friend WithEvents Label5 As Label
  2223. Friend WithEvents Label4 As Label
  2224. Friend WithEvents Label3 As Label
  2225. Friend WithEvents Label2 As Label
  2226. Friend WithEvents DataGridView13 As DataGridView
  2227. Friend WithEvents DataGridView12 As DataGridView
  2228. Friend WithEvents DataGridView11 As DataGridView
  2229. Friend WithEvents DataGridView10 As DataGridView
  2230. Friend WithEvents DataGridView9 As DataGridView
  2231. Friend WithEvents DataGridView8 As DataGridView
  2232. Friend WithEvents DataGridView7 As DataGridView
  2233. Friend WithEvents DataGridView6 As DataGridView
  2234. Friend WithEvents DataGridView5 As DataGridView
  2235. Friend WithEvents DataGridView4 As DataGridView
  2236. Friend WithEvents DataGridView3 As DataGridView
  2237. Friend WithEvents DataGridView1 As DataGridView
  2238. Friend WithEvents ComboBox1 As ComboBox
  2239. Friend WithEvents Label1 As Label
  2240. Friend WithEvents DataGridView2 As DataGridView
  2241. Friend WithEvents Label19 As Label
  2242. Friend WithEvents TextBox64 As TextBox
  2243. Friend WithEvents TextBox65 As TextBox
  2244. Friend WithEvents TextBox66 As TextBox
  2245. Friend WithEvents TextBox67 As TextBox
  2246. Friend WithEvents TextBox68 As TextBox
  2247. Friend WithEvents TextBox69 As TextBox
  2248. Friend WithEvents TextBox70 As TextBox
  2249. Friend WithEvents TextBox71 As TextBox
  2250. Friend WithEvents TextBox72 As TextBox
  2251. Friend WithEvents TextBox73 As TextBox
  2252. Friend WithEvents TextBox74 As TextBox
  2253. Friend WithEvents TextBox75 As TextBox
  2254. Friend WithEvents TextBox76 As TextBox
  2255. Friend WithEvents TextBox63 As TextBox
  2256. Friend WithEvents TextBox62 As TextBox
  2257. Friend WithEvents TextBox61 As TextBox
  2258. Friend WithEvents TextBox56 As TextBox
  2259. Friend WithEvents TextBox57 As TextBox
  2260. Friend WithEvents TextBox58 As TextBox
  2261. Friend WithEvents TextBox59 As TextBox
  2262. Friend WithEvents TextBox60 As TextBox
  2263. Friend WithEvents TextBox51 As TextBox
  2264. Friend WithEvents TextBox52 As TextBox
  2265. Friend WithEvents TextBox53 As TextBox
  2266. Friend WithEvents TextBox54 As TextBox
  2267. Friend WithEvents TextBox55 As TextBox
  2268. Friend WithEvents TextBox46 As TextBox
  2269. Friend WithEvents TextBox47 As TextBox
  2270. Friend WithEvents TextBox48 As TextBox
  2271. Friend WithEvents TextBox49 As TextBox
  2272. Friend WithEvents TextBox50 As TextBox
  2273. Friend WithEvents TextBox41 As TextBox
  2274. Friend WithEvents TextBox42 As TextBox
  2275. Friend WithEvents TextBox43 As TextBox
  2276. Friend WithEvents TextBox44 As TextBox
  2277. Friend WithEvents TextBox45 As TextBox
  2278. Friend WithEvents TextBox36 As TextBox
  2279. Friend WithEvents TextBox37 As TextBox
  2280. Friend WithEvents TextBox38 As TextBox
  2281. Friend WithEvents TextBox39 As TextBox
  2282. Friend WithEvents TextBox40 As TextBox
  2283. Friend WithEvents TextBox31 As TextBox
  2284. Friend WithEvents TextBox32 As TextBox
  2285. Friend WithEvents TextBox33 As TextBox
  2286. Friend WithEvents TextBox34 As TextBox
  2287. Friend WithEvents TextBox35 As TextBox
  2288. Friend WithEvents Label18 As Label
  2289. Friend WithEvents TextBox25 As TextBox
  2290. Friend WithEvents TextBox26 As TextBox
  2291. Friend WithEvents TextBox27 As TextBox
  2292. Friend WithEvents TextBox28 As TextBox
  2293. Friend WithEvents TextBox29 As TextBox
  2294. Friend WithEvents TextBox30 As TextBox
  2295. Friend WithEvents TextBox24 As TextBox
  2296. Friend WithEvents TextBox23 As TextBox
  2297. Friend WithEvents TextBox22 As TextBox
  2298. Friend WithEvents TextBox21 As TextBox
  2299. Friend WithEvents TextBox20 As TextBox
  2300. Friend WithEvents TextBox19 As TextBox
  2301. Friend WithEvents TextBox18 As TextBox
  2302. Friend WithEvents TextBox17 As TextBox
  2303. Friend WithEvents TextBox16 As TextBox
  2304. Friend WithEvents TextBox15 As TextBox
  2305. Friend WithEvents TextBox14 As TextBox
  2306. Friend WithEvents TextBox13 As TextBox
  2307. Friend WithEvents TextBox12 As TextBox
  2308. Friend WithEvents TextBox11 As TextBox
  2309. Friend WithEvents TextBox10 As TextBox
  2310. Friend WithEvents TextBox9 As TextBox
  2311. Friend WithEvents TextBox8 As TextBox
  2312. Friend WithEvents TextBox7 As TextBox
  2313. Friend WithEvents TextBox6 As TextBox
  2314. Friend WithEvents TextBox5 As TextBox
  2315. Friend WithEvents TextBox4 As TextBox
  2316. Friend WithEvents Label17 As Label
  2317. Friend WithEvents TextBox3 As TextBox
  2318. Friend WithEvents Label16 As Label
  2319. Friend WithEvents TextBox2 As TextBox
  2320. Friend WithEvents Label15 As Label
  2321. Friend WithEvents TextBox1 As TextBox
  2322. Friend WithEvents Label14 As Label
  2323. Friend WithEvents ComboBox2 As ComboBox
  2324. Friend WithEvents ComboBox3 As ComboBox
  2325. Friend WithEvents ComboBox4 As ComboBox
  2326. Friend WithEvents ComboBox5 As ComboBox
  2327. Friend WithEvents TextBox77 As TextBox
  2328. Friend WithEvents ComboBox6 As ComboBox
  2329. Friend WithEvents TextBox78 As TextBox
  2330. Friend WithEvents TextBox79 As TextBox
  2331. Friend WithEvents TextBox80 As TextBox
  2332. Friend WithEvents TextBox81 As TextBox
  2333. Friend WithEvents TextBox82 As TextBox
  2334. Friend WithEvents TextBox83 As TextBox
  2335. Friend WithEvents TextBox84 As TextBox
  2336. Friend WithEvents TextBox85 As TextBox
  2337. Friend WithEvents TextBox86 As TextBox
  2338. Friend WithEvents TextBox87 As TextBox
  2339. Friend WithEvents TextBox88 As TextBox
  2340. Friend WithEvents TextBox89 As TextBox
  2341. Friend WithEvents TextBox90 As TextBox
  2342. Friend WithEvents TextBox91 As TextBox
  2343. Friend WithEvents ComboBox7 As ComboBox
  2344. Friend WithEvents Label20 As Label
  2345. Friend WithEvents TextBox92 As TextBox
  2346. Friend WithEvents TextBox93 As TextBox
  2347. Friend WithEvents TextBox94 As TextBox
  2348. Friend WithEvents TextBox95 As TextBox
  2349. Friend WithEvents TextBox96 As TextBox
  2350. Friend WithEvents TextBox97 As TextBox
  2351. Friend WithEvents TextBox98 As TextBox
  2352. Friend WithEvents TextBox99 As TextBox
  2353. Friend WithEvents TextBox100 As TextBox
  2354. Friend WithEvents TextBox101 As TextBox
  2355. Friend WithEvents TextBox102 As TextBox
  2356. Friend WithEvents TextBox103 As TextBox
  2357. Friend WithEvents TextBox104 As TextBox
  2358. Friend WithEvents ComboBox8 As ComboBox
  2359. Friend WithEvents Label21 As Label
  2360. Friend WithEvents Label22 As Label
  2361. Friend WithEvents CheckBox1 As CheckBox
  2362. Friend WithEvents CheckBox2 As CheckBox
  2363. Friend WithEvents CheckBox3 As CheckBox
  2364. Friend WithEvents CheckBox4 As CheckBox
  2365. Friend WithEvents CheckBox5 As CheckBox
  2366. Friend WithEvents CheckBox6 As CheckBox
  2367. Friend WithEvents CheckBox7 As CheckBox
  2368. Friend WithEvents DataGridView14 As DataGridView
  2369. Friend WithEvents Button3 As Button
  2370. Friend WithEvents Button4 As Button
  2371. Friend WithEvents TextBox105 As TextBox
  2372. Friend WithEvents TextBox106 As TextBox
  2373. Friend WithEvents TextBox107 As TextBox
  2374. Friend WithEvents TextBox108 As TextBox
  2375. Friend WithEvents TextBox109 As TextBox
  2376. Friend WithEvents TextBox110 As TextBox
  2377. Friend WithEvents TextBox111 As TextBox
  2378. End Class