Geen omschrijving
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.

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

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