Aucune description
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

營運報表.Designer.vb 108KB

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