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

財務報表4.Designer.vb 120KB

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