Нема описа
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.

財務_決算表_ICS.Designer.vb 120KB

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