暂无描述
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

財務流水帳系統.Designer.vb 85KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761
  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. Me.GroupBox4 = New System.Windows.Forms.GroupBox()
  28. Me.Label34 = New System.Windows.Forms.Label()
  29. Me.Label35 = New System.Windows.Forms.Label()
  30. Me.Label191 = New System.Windows.Forms.Label()
  31. Me.Label192 = New System.Windows.Forms.Label()
  32. Me.Label190 = New System.Windows.Forms.Label()
  33. Me.Label147 = New System.Windows.Forms.Label()
  34. Me.Label148 = New System.Windows.Forms.Label()
  35. Me.Label149 = New System.Windows.Forms.Label()
  36. Me.Label150 = New System.Windows.Forms.Label()
  37. Me.Label151 = New System.Windows.Forms.Label()
  38. Me.Label152 = New System.Windows.Forms.Label()
  39. Me.Label153 = New System.Windows.Forms.Label()
  40. Me.Label154 = New System.Windows.Forms.Label()
  41. Me.Label155 = New System.Windows.Forms.Label()
  42. Me.Label156 = New System.Windows.Forms.Label()
  43. Me.Label157 = New System.Windows.Forms.Label()
  44. Me.Label158 = New System.Windows.Forms.Label()
  45. Me.Label144 = New System.Windows.Forms.Label()
  46. Me.Label145 = New System.Windows.Forms.Label()
  47. Me.Label146 = New System.Windows.Forms.Label()
  48. Me.GroupBox5 = New System.Windows.Forms.GroupBox()
  49. Me.TextBox17 = New System.Windows.Forms.TextBox()
  50. Me.TextBox18 = New System.Windows.Forms.TextBox()
  51. Me.DateTimePicker4 = New System.Windows.Forms.DateTimePicker()
  52. Me.TextBox14 = New System.Windows.Forms.TextBox()
  53. Me.TextBox6 = New System.Windows.Forms.TextBox()
  54. Me.TextBox16 = New System.Windows.Forms.TextBox()
  55. Me.TextBox15 = New System.Windows.Forms.TextBox()
  56. Me.DataGridView1 = New System.Windows.Forms.DataGridView()
  57. Me.GroupBox6 = New System.Windows.Forms.GroupBox()
  58. Me.Label33 = New System.Windows.Forms.Label()
  59. Me.Label32 = New System.Windows.Forms.Label()
  60. Me.DateTimePicker3 = New System.Windows.Forms.DateTimePicker()
  61. Me.DateTimePicker2 = New System.Windows.Forms.DateTimePicker()
  62. Me.Label3 = New System.Windows.Forms.Label()
  63. Me.ComboBox3 = New System.Windows.Forms.ComboBox()
  64. Me.TextBox57 = New System.Windows.Forms.TextBox()
  65. Me.Button8 = New System.Windows.Forms.Button()
  66. Me.Button7 = New System.Windows.Forms.Button()
  67. Me.Button5 = New System.Windows.Forms.Button()
  68. Me.Button4 = New System.Windows.Forms.Button()
  69. Me.Label143 = New System.Windows.Forms.Label()
  70. Me.Button6 = New System.Windows.Forms.Button()
  71. Me.ComboBox2 = New System.Windows.Forms.ComboBox()
  72. Me.ComboBox1 = New System.Windows.Forms.ComboBox()
  73. Me.TextBox1 = New System.Windows.Forms.TextBox()
  74. Me.DateTimePicker1 = New System.Windows.Forms.DateTimePicker()
  75. Me.TextBox3 = New System.Windows.Forms.TextBox()
  76. Me.Label215 = New System.Windows.Forms.Label()
  77. Me.TextBox4 = New System.Windows.Forms.TextBox()
  78. Me.Label216 = New System.Windows.Forms.Label()
  79. Me.TextBox5 = New System.Windows.Forms.TextBox()
  80. Me.Label217 = New System.Windows.Forms.Label()
  81. Me.Label218 = New System.Windows.Forms.Label()
  82. Me.Label219 = New System.Windows.Forms.Label()
  83. Me.Label220 = New System.Windows.Forms.Label()
  84. Me.GroupBox7 = New System.Windows.Forms.GroupBox()
  85. Me.TextBox30 = New System.Windows.Forms.TextBox()
  86. Me.Button9 = New System.Windows.Forms.Button()
  87. Me.TextBox10 = New System.Windows.Forms.TextBox()
  88. Me.Label28 = New System.Windows.Forms.Label()
  89. Me.GroupBox2 = New System.Windows.Forms.GroupBox()
  90. Me.TextBox29 = New System.Windows.Forms.TextBox()
  91. Me.Label16 = New System.Windows.Forms.Label()
  92. Me.TextBox11 = New System.Windows.Forms.TextBox()
  93. Me.GroupBox3 = New System.Windows.Forms.GroupBox()
  94. Me.TextBox27 = New System.Windows.Forms.TextBox()
  95. Me.TextBox24 = New System.Windows.Forms.TextBox()
  96. Me.TextBox21 = New System.Windows.Forms.TextBox()
  97. Me.TextBox13 = New System.Windows.Forms.TextBox()
  98. Me.Label27 = New System.Windows.Forms.Label()
  99. Me.Label19 = New System.Windows.Forms.Label()
  100. Me.TextBox8 = New System.Windows.Forms.TextBox()
  101. Me.DataGridView5 = New System.Windows.Forms.DataGridView()
  102. Me.TextBox23 = New System.Windows.Forms.TextBox()
  103. Me.TextBox25 = New System.Windows.Forms.TextBox()
  104. Me.DataGridView3 = New System.Windows.Forms.DataGridView()
  105. Me.TextBox19 = New System.Windows.Forms.TextBox()
  106. Me.Label29 = New System.Windows.Forms.Label()
  107. Me.GroupBox8 = New System.Windows.Forms.GroupBox()
  108. Me.TextBox28 = New System.Windows.Forms.TextBox()
  109. Me.Label221 = New System.Windows.Forms.Label()
  110. Me.TextBox38 = New System.Windows.Forms.TextBox()
  111. Me.GroupBox9 = New System.Windows.Forms.GroupBox()
  112. Me.TextBox26 = New System.Windows.Forms.TextBox()
  113. Me.TextBox22 = New System.Windows.Forms.TextBox()
  114. Me.TextBox20 = New System.Windows.Forms.TextBox()
  115. Me.TextBox12 = New System.Windows.Forms.TextBox()
  116. Me.Label26 = New System.Windows.Forms.Label()
  117. Me.Label18 = New System.Windows.Forms.Label()
  118. Me.DataGridView4 = New System.Windows.Forms.DataGridView()
  119. Me.TextBox7 = New System.Windows.Forms.TextBox()
  120. Me.TextBox56 = New System.Windows.Forms.TextBox()
  121. Me.DataGridView2 = New System.Windows.Forms.DataGridView()
  122. Me.TextBox41 = New System.Windows.Forms.TextBox()
  123. Me.TextBox55 = New System.Windows.Forms.TextBox()
  124. Me.Label232 = New System.Windows.Forms.Label()
  125. Me.TextBox9 = New System.Windows.Forms.TextBox()
  126. Me.Label17 = New System.Windows.Forms.Label()
  127. Me.TextBox2 = New System.Windows.Forms.TextBox()
  128. Me.Button3 = New System.Windows.Forms.Button()
  129. Me.Button1 = New System.Windows.Forms.Button()
  130. Me.Button2 = New System.Windows.Forms.Button()
  131. Me.Label2 = New System.Windows.Forms.Label()
  132. Me.Label1 = New System.Windows.Forms.Label()
  133. Me.GroupBox1 = New System.Windows.Forms.GroupBox()
  134. Me.Label4 = New System.Windows.Forms.Label()
  135. Me.Label5 = New System.Windows.Forms.Label()
  136. Me.Label13 = New System.Windows.Forms.Label()
  137. Me.Label14 = New System.Windows.Forms.Label()
  138. Me.Label10 = New System.Windows.Forms.Label()
  139. Me.Label12 = New System.Windows.Forms.Label()
  140. Me.Label24 = New System.Windows.Forms.Label()
  141. Me.Label25 = New System.Windows.Forms.Label()
  142. Me.Label6 = New System.Windows.Forms.Label()
  143. Me.Label7 = New System.Windows.Forms.Label()
  144. Me.Label8 = New System.Windows.Forms.Label()
  145. Me.Label9 = New System.Windows.Forms.Label()
  146. Me.Label11 = New System.Windows.Forms.Label()
  147. Me.Label15 = New System.Windows.Forms.Label()
  148. Me.Label20 = New System.Windows.Forms.Label()
  149. Me.Label21 = New System.Windows.Forms.Label()
  150. Me.Label22 = New System.Windows.Forms.Label()
  151. Me.Label23 = New System.Windows.Forms.Label()
  152. Me.GroupBox4.SuspendLayout()
  153. Me.GroupBox5.SuspendLayout()
  154. CType(Me.DataGridView1, System.ComponentModel.ISupportInitialize).BeginInit()
  155. Me.GroupBox6.SuspendLayout()
  156. Me.GroupBox7.SuspendLayout()
  157. Me.GroupBox2.SuspendLayout()
  158. Me.GroupBox3.SuspendLayout()
  159. CType(Me.DataGridView5, System.ComponentModel.ISupportInitialize).BeginInit()
  160. CType(Me.DataGridView3, System.ComponentModel.ISupportInitialize).BeginInit()
  161. Me.GroupBox8.SuspendLayout()
  162. Me.GroupBox9.SuspendLayout()
  163. CType(Me.DataGridView4, System.ComponentModel.ISupportInitialize).BeginInit()
  164. CType(Me.DataGridView2, System.ComponentModel.ISupportInitialize).BeginInit()
  165. Me.GroupBox1.SuspendLayout()
  166. Me.SuspendLayout()
  167. '
  168. 'GroupBox4
  169. '
  170. Me.GroupBox4.Controls.Add(Me.Label34)
  171. Me.GroupBox4.Controls.Add(Me.Label35)
  172. Me.GroupBox4.Controls.Add(Me.Label191)
  173. Me.GroupBox4.Controls.Add(Me.Label192)
  174. Me.GroupBox4.Controls.Add(Me.Label190)
  175. Me.GroupBox4.Controls.Add(Me.Label147)
  176. Me.GroupBox4.Controls.Add(Me.Label148)
  177. Me.GroupBox4.Controls.Add(Me.Label149)
  178. Me.GroupBox4.Controls.Add(Me.Label150)
  179. Me.GroupBox4.Controls.Add(Me.Label151)
  180. Me.GroupBox4.Controls.Add(Me.Label152)
  181. Me.GroupBox4.Controls.Add(Me.Label153)
  182. Me.GroupBox4.Controls.Add(Me.Label154)
  183. Me.GroupBox4.Controls.Add(Me.Label155)
  184. Me.GroupBox4.Controls.Add(Me.Label156)
  185. Me.GroupBox4.Controls.Add(Me.Label157)
  186. Me.GroupBox4.Controls.Add(Me.Label158)
  187. Me.GroupBox4.Controls.Add(Me.Label144)
  188. Me.GroupBox4.Controls.Add(Me.Label145)
  189. Me.GroupBox4.Controls.Add(Me.Label146)
  190. Me.GroupBox4.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  191. Me.GroupBox4.ForeColor = System.Drawing.Color.Green
  192. Me.GroupBox4.Location = New System.Drawing.Point(14, 27)
  193. Me.GroupBox4.Margin = New System.Windows.Forms.Padding(2)
  194. Me.GroupBox4.Name = "GroupBox4"
  195. Me.GroupBox4.Padding = New System.Windows.Forms.Padding(2)
  196. Me.GroupBox4.Size = New System.Drawing.Size(506, 70)
  197. Me.GroupBox4.TabIndex = 33
  198. Me.GroupBox4.TabStop = False
  199. Me.GroupBox4.Text = "公司資金"
  200. '
  201. 'Label34
  202. '
  203. Me.Label34.AutoSize = True
  204. Me.Label34.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  205. Me.Label34.Location = New System.Drawing.Point(109, 49)
  206. Me.Label34.Margin = New System.Windows.Forms.Padding(2, 0, 2, 0)
  207. Me.Label34.Name = "Label34"
  208. Me.Label34.Size = New System.Drawing.Size(32, 16)
  209. Me.Label34.TabIndex = 103
  210. Me.Label34.Text = "活存"
  211. '
  212. 'Label35
  213. '
  214. Me.Label35.AutoSize = True
  215. Me.Label35.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  216. Me.Label35.Location = New System.Drawing.Point(76, 49)
  217. Me.Label35.Margin = New System.Windows.Forms.Padding(2, 0, 2, 0)
  218. Me.Label35.Name = "Label35"
  219. Me.Label35.Size = New System.Drawing.Size(32, 16)
  220. Me.Label35.TabIndex = 102
  221. Me.Label35.Text = "肇慶"
  222. '
  223. 'Label191
  224. '
  225. Me.Label191.AutoSize = True
  226. Me.Label191.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  227. Me.Label191.Location = New System.Drawing.Point(450, 49)
  228. Me.Label191.Margin = New System.Windows.Forms.Padding(2, 0, 2, 0)
  229. Me.Label191.Name = "Label191"
  230. Me.Label191.Size = New System.Drawing.Size(15, 16)
  231. Me.Label191.TabIndex = 101
  232. Me.Label191.Text = "0"
  233. '
  234. 'Label192
  235. '
  236. Me.Label192.AutoSize = True
  237. Me.Label192.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  238. Me.Label192.Location = New System.Drawing.Point(450, 34)
  239. Me.Label192.Margin = New System.Windows.Forms.Padding(2, 0, 2, 0)
  240. Me.Label192.Name = "Label192"
  241. Me.Label192.Size = New System.Drawing.Size(15, 16)
  242. Me.Label192.TabIndex = 100
  243. Me.Label192.Text = "0"
  244. '
  245. 'Label190
  246. '
  247. Me.Label190.AutoSize = True
  248. Me.Label190.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  249. Me.Label190.ForeColor = System.Drawing.Color.Black
  250. Me.Label190.Location = New System.Drawing.Point(450, 18)
  251. Me.Label190.Margin = New System.Windows.Forms.Padding(2, 0, 2, 0)
  252. Me.Label190.Name = "Label190"
  253. Me.Label190.Size = New System.Drawing.Size(44, 16)
  254. Me.Label190.TabIndex = 99
  255. Me.Label190.Text = "百分比"
  256. '
  257. 'Label147
  258. '
  259. Me.Label147.AutoSize = True
  260. Me.Label147.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  261. Me.Label147.Location = New System.Drawing.Point(159, 49)
  262. Me.Label147.Margin = New System.Windows.Forms.Padding(2, 0, 2, 0)
  263. Me.Label147.Name = "Label147"
  264. Me.Label147.Size = New System.Drawing.Size(15, 16)
  265. Me.Label147.TabIndex = 98
  266. Me.Label147.Text = "0"
  267. '
  268. 'Label148
  269. '
  270. Me.Label148.AutoSize = True
  271. Me.Label148.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  272. Me.Label148.Location = New System.Drawing.Point(159, 34)
  273. Me.Label148.Margin = New System.Windows.Forms.Padding(2, 0, 2, 0)
  274. Me.Label148.Name = "Label148"
  275. Me.Label148.Size = New System.Drawing.Size(15, 16)
  276. Me.Label148.TabIndex = 97
  277. Me.Label148.Text = "0"
  278. '
  279. 'Label149
  280. '
  281. Me.Label149.AutoSize = True
  282. Me.Label149.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  283. Me.Label149.Location = New System.Drawing.Point(257, 49)
  284. Me.Label149.Margin = New System.Windows.Forms.Padding(2, 0, 2, 0)
  285. Me.Label149.Name = "Label149"
  286. Me.Label149.Size = New System.Drawing.Size(15, 16)
  287. Me.Label149.TabIndex = 96
  288. Me.Label149.Text = "0"
  289. '
  290. 'Label150
  291. '
  292. Me.Label150.AutoSize = True
  293. Me.Label150.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  294. Me.Label150.Location = New System.Drawing.Point(257, 34)
  295. Me.Label150.Margin = New System.Windows.Forms.Padding(2, 0, 2, 0)
  296. Me.Label150.Name = "Label150"
  297. Me.Label150.Size = New System.Drawing.Size(15, 16)
  298. Me.Label150.TabIndex = 95
  299. Me.Label150.Text = "0"
  300. '
  301. 'Label151
  302. '
  303. Me.Label151.AutoSize = True
  304. Me.Label151.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  305. Me.Label151.Location = New System.Drawing.Point(94, 49)
  306. Me.Label151.Margin = New System.Windows.Forms.Padding(2, 0, 2, 0)
  307. Me.Label151.Name = "Label151"
  308. Me.Label151.Size = New System.Drawing.Size(0, 16)
  309. Me.Label151.TabIndex = 94
  310. '
  311. 'Label152
  312. '
  313. Me.Label152.AutoSize = True
  314. Me.Label152.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  315. Me.Label152.Location = New System.Drawing.Point(94, 34)
  316. Me.Label152.Margin = New System.Windows.Forms.Padding(2, 0, 2, 0)
  317. Me.Label152.Name = "Label152"
  318. Me.Label152.Size = New System.Drawing.Size(0, 16)
  319. Me.Label152.TabIndex = 93
  320. '
  321. 'Label153
  322. '
  323. Me.Label153.AutoSize = True
  324. Me.Label153.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  325. Me.Label153.Location = New System.Drawing.Point(4, 49)
  326. Me.Label153.Margin = New System.Windows.Forms.Padding(2, 0, 2, 0)
  327. Me.Label153.Name = "Label153"
  328. Me.Label153.Size = New System.Drawing.Size(68, 16)
  329. Me.Label153.TabIndex = 87
  330. Me.Label153.Text = "人民幣資金"
  331. '
  332. 'Label154
  333. '
  334. Me.Label154.AutoSize = True
  335. Me.Label154.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  336. Me.Label154.Location = New System.Drawing.Point(128, 49)
  337. Me.Label154.Margin = New System.Windows.Forms.Padding(2, 0, 2, 0)
  338. Me.Label154.Name = "Label154"
  339. Me.Label154.Size = New System.Drawing.Size(0, 16)
  340. Me.Label154.TabIndex = 92
  341. '
  342. 'Label155
  343. '
  344. Me.Label155.AutoSize = True
  345. Me.Label155.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  346. Me.Label155.Location = New System.Drawing.Point(128, 34)
  347. Me.Label155.Margin = New System.Windows.Forms.Padding(2, 0, 2, 0)
  348. Me.Label155.Name = "Label155"
  349. Me.Label155.Size = New System.Drawing.Size(0, 16)
  350. Me.Label155.TabIndex = 91
  351. '
  352. 'Label156
  353. '
  354. Me.Label156.AutoSize = True
  355. Me.Label156.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  356. Me.Label156.Location = New System.Drawing.Point(61, 49)
  357. Me.Label156.Margin = New System.Windows.Forms.Padding(2, 0, 2, 0)
  358. Me.Label156.Name = "Label156"
  359. Me.Label156.Size = New System.Drawing.Size(0, 16)
  360. Me.Label156.TabIndex = 88
  361. '
  362. 'Label157
  363. '
  364. Me.Label157.AutoSize = True
  365. Me.Label157.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  366. Me.Label157.Location = New System.Drawing.Point(61, 34)
  367. Me.Label157.Margin = New System.Windows.Forms.Padding(2, 0, 2, 0)
  368. Me.Label157.Name = "Label157"
  369. Me.Label157.Size = New System.Drawing.Size(0, 16)
  370. Me.Label157.TabIndex = 90
  371. '
  372. 'Label158
  373. '
  374. Me.Label158.AutoSize = True
  375. Me.Label158.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  376. Me.Label158.Location = New System.Drawing.Point(4, 34)
  377. Me.Label158.Margin = New System.Windows.Forms.Padding(2, 0, 2, 0)
  378. Me.Label158.Name = "Label158"
  379. Me.Label158.Size = New System.Drawing.Size(56, 16)
  380. Me.Label158.TabIndex = 89
  381. Me.Label158.Text = "台幣資金"
  382. '
  383. 'Label144
  384. '
  385. Me.Label144.AutoSize = True
  386. Me.Label144.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  387. Me.Label144.ForeColor = System.Drawing.Color.Black
  388. Me.Label144.Location = New System.Drawing.Point(274, 18)
  389. Me.Label144.Margin = New System.Windows.Forms.Padding(2, 0, 2, 0)
  390. Me.Label144.Name = "Label144"
  391. Me.Label144.Size = New System.Drawing.Size(32, 16)
  392. Me.Label144.TabIndex = 69
  393. Me.Label144.Text = "台幣"
  394. '
  395. 'Label145
  396. '
  397. Me.Label145.AutoSize = True
  398. Me.Label145.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  399. Me.Label145.ForeColor = System.Drawing.Color.Black
  400. Me.Label145.Location = New System.Drawing.Point(180, 18)
  401. Me.Label145.Margin = New System.Windows.Forms.Padding(2, 0, 2, 0)
  402. Me.Label145.Name = "Label145"
  403. Me.Label145.Size = New System.Drawing.Size(44, 16)
  404. Me.Label145.TabIndex = 68
  405. Me.Label145.Text = "人民幣"
  406. '
  407. 'Label146
  408. '
  409. Me.Label146.AutoSize = True
  410. Me.Label146.Location = New System.Drawing.Point(4, 18)
  411. Me.Label146.Margin = New System.Windows.Forms.Padding(2, 0, 2, 0)
  412. Me.Label146.Name = "Label146"
  413. Me.Label146.Size = New System.Drawing.Size(468, 16)
  414. Me.Label146.TabIndex = 67
  415. Me.Label146.Text = "_________________________________________________________________________________" &
  416. "___________"
  417. '
  418. 'GroupBox5
  419. '
  420. Me.GroupBox5.Controls.Add(Me.TextBox17)
  421. Me.GroupBox5.Controls.Add(Me.TextBox18)
  422. Me.GroupBox5.Controls.Add(Me.DateTimePicker4)
  423. Me.GroupBox5.Controls.Add(Me.TextBox14)
  424. Me.GroupBox5.Controls.Add(Me.TextBox6)
  425. Me.GroupBox5.Controls.Add(Me.TextBox16)
  426. Me.GroupBox5.Controls.Add(Me.TextBox15)
  427. Me.GroupBox5.Controls.Add(Me.DataGridView1)
  428. Me.GroupBox5.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  429. Me.GroupBox5.Location = New System.Drawing.Point(14, 216)
  430. Me.GroupBox5.Name = "GroupBox5"
  431. Me.GroupBox5.Size = New System.Drawing.Size(583, 290)
  432. Me.GroupBox5.TabIndex = 34
  433. Me.GroupBox5.TabStop = False
  434. Me.GroupBox5.Text = "帳本清單"
  435. '
  436. 'TextBox17
  437. '
  438. Me.TextBox17.Enabled = False
  439. Me.TextBox17.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  440. Me.TextBox17.Location = New System.Drawing.Point(226, 188)
  441. Me.TextBox17.Name = "TextBox17"
  442. Me.TextBox17.Size = New System.Drawing.Size(60, 23)
  443. Me.TextBox17.TabIndex = 94
  444. Me.TextBox17.Visible = False
  445. '
  446. 'TextBox18
  447. '
  448. Me.TextBox18.Enabled = False
  449. Me.TextBox18.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  450. Me.TextBox18.Location = New System.Drawing.Point(292, 188)
  451. Me.TextBox18.Name = "TextBox18"
  452. Me.TextBox18.Size = New System.Drawing.Size(60, 23)
  453. Me.TextBox18.TabIndex = 95
  454. Me.TextBox18.Visible = False
  455. '
  456. 'DateTimePicker4
  457. '
  458. Me.DateTimePicker4.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  459. Me.DateTimePicker4.Format = System.Windows.Forms.DateTimePickerFormat.[Short]
  460. Me.DateTimePicker4.Location = New System.Drawing.Point(226, 159)
  461. Me.DateTimePicker4.Name = "DateTimePicker4"
  462. Me.DateTimePicker4.Size = New System.Drawing.Size(120, 23)
  463. Me.DateTimePicker4.TabIndex = 62
  464. Me.DateTimePicker4.Visible = False
  465. '
  466. 'TextBox14
  467. '
  468. Me.TextBox14.Enabled = False
  469. Me.TextBox14.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  470. Me.TextBox14.Location = New System.Drawing.Point(226, 130)
  471. Me.TextBox14.Name = "TextBox14"
  472. Me.TextBox14.Size = New System.Drawing.Size(60, 23)
  473. Me.TextBox14.TabIndex = 92
  474. Me.TextBox14.Visible = False
  475. '
  476. 'TextBox6
  477. '
  478. Me.TextBox6.Enabled = False
  479. Me.TextBox6.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  480. Me.TextBox6.Location = New System.Drawing.Point(226, 101)
  481. Me.TextBox6.Name = "TextBox6"
  482. Me.TextBox6.Size = New System.Drawing.Size(60, 23)
  483. Me.TextBox6.TabIndex = 53
  484. Me.TextBox6.Visible = False
  485. '
  486. 'TextBox16
  487. '
  488. Me.TextBox16.Enabled = False
  489. Me.TextBox16.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  490. Me.TextBox16.Location = New System.Drawing.Point(292, 101)
  491. Me.TextBox16.Name = "TextBox16"
  492. Me.TextBox16.Size = New System.Drawing.Size(60, 23)
  493. Me.TextBox16.TabIndex = 82
  494. Me.TextBox16.Visible = False
  495. '
  496. 'TextBox15
  497. '
  498. Me.TextBox15.Enabled = False
  499. Me.TextBox15.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  500. Me.TextBox15.Location = New System.Drawing.Point(292, 130)
  501. Me.TextBox15.Name = "TextBox15"
  502. Me.TextBox15.Size = New System.Drawing.Size(60, 23)
  503. Me.TextBox15.TabIndex = 93
  504. Me.TextBox15.Visible = False
  505. '
  506. 'DataGridView1
  507. '
  508. DataGridViewCellStyle1.BackColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(255, Byte), Integer), CType(CType(255, Byte), Integer))
  509. Me.DataGridView1.AlternatingRowsDefaultCellStyle = DataGridViewCellStyle1
  510. Me.DataGridView1.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize
  511. Me.DataGridView1.Location = New System.Drawing.Point(6, 17)
  512. Me.DataGridView1.Name = "DataGridView1"
  513. Me.DataGridView1.RowHeadersWidth = 5
  514. Me.DataGridView1.RowTemplate.Height = 24
  515. Me.DataGridView1.RowTemplate.Resizable = System.Windows.Forms.DataGridViewTriState.[True]
  516. Me.DataGridView1.Size = New System.Drawing.Size(571, 267)
  517. Me.DataGridView1.TabIndex = 0
  518. '
  519. 'GroupBox6
  520. '
  521. Me.GroupBox6.Controls.Add(Me.Label33)
  522. Me.GroupBox6.Controls.Add(Me.Label32)
  523. Me.GroupBox6.Controls.Add(Me.DateTimePicker3)
  524. Me.GroupBox6.Controls.Add(Me.DateTimePicker2)
  525. Me.GroupBox6.Controls.Add(Me.Label3)
  526. Me.GroupBox6.Controls.Add(Me.ComboBox3)
  527. Me.GroupBox6.Controls.Add(Me.TextBox57)
  528. Me.GroupBox6.Controls.Add(Me.Button8)
  529. Me.GroupBox6.Controls.Add(Me.Button7)
  530. Me.GroupBox6.Controls.Add(Me.Button5)
  531. Me.GroupBox6.Controls.Add(Me.Button4)
  532. Me.GroupBox6.Controls.Add(Me.Label143)
  533. Me.GroupBox6.Controls.Add(Me.Button6)
  534. Me.GroupBox6.Controls.Add(Me.ComboBox2)
  535. Me.GroupBox6.Controls.Add(Me.ComboBox1)
  536. Me.GroupBox6.Controls.Add(Me.TextBox1)
  537. Me.GroupBox6.Controls.Add(Me.DateTimePicker1)
  538. Me.GroupBox6.Controls.Add(Me.TextBox3)
  539. Me.GroupBox6.Controls.Add(Me.Label215)
  540. Me.GroupBox6.Controls.Add(Me.TextBox4)
  541. Me.GroupBox6.Controls.Add(Me.Label216)
  542. Me.GroupBox6.Controls.Add(Me.TextBox5)
  543. Me.GroupBox6.Controls.Add(Me.Label217)
  544. Me.GroupBox6.Controls.Add(Me.Label218)
  545. Me.GroupBox6.Controls.Add(Me.Label219)
  546. Me.GroupBox6.Controls.Add(Me.Label220)
  547. Me.GroupBox6.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  548. Me.GroupBox6.Location = New System.Drawing.Point(14, 512)
  549. Me.GroupBox6.Name = "GroupBox6"
  550. Me.GroupBox6.Size = New System.Drawing.Size(583, 164)
  551. Me.GroupBox6.TabIndex = 35
  552. Me.GroupBox6.TabStop = False
  553. Me.GroupBox6.Text = "單筆資料"
  554. '
  555. 'Label33
  556. '
  557. Me.Label33.AutoSize = True
  558. Me.Label33.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  559. Me.Label33.Location = New System.Drawing.Point(172, 138)
  560. Me.Label33.Name = "Label33"
  561. Me.Label33.Size = New System.Drawing.Size(20, 16)
  562. Me.Label33.TabIndex = 61
  563. Me.Label33.Text = "至"
  564. '
  565. 'Label32
  566. '
  567. Me.Label32.AutoSize = True
  568. Me.Label32.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  569. Me.Label32.Location = New System.Drawing.Point(28, 138)
  570. Me.Label32.Name = "Label32"
  571. Me.Label32.Size = New System.Drawing.Size(20, 16)
  572. Me.Label32.TabIndex = 60
  573. Me.Label32.Text = "從"
  574. '
  575. 'DateTimePicker3
  576. '
  577. Me.DateTimePicker3.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  578. Me.DateTimePicker3.Format = System.Windows.Forms.DateTimePickerFormat.[Short]
  579. Me.DateTimePicker3.Location = New System.Drawing.Point(196, 133)
  580. Me.DateTimePicker3.Name = "DateTimePicker3"
  581. Me.DateTimePicker3.Size = New System.Drawing.Size(110, 23)
  582. Me.DateTimePicker3.TabIndex = 59
  583. '
  584. 'DateTimePicker2
  585. '
  586. Me.DateTimePicker2.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  587. Me.DateTimePicker2.Format = System.Windows.Forms.DateTimePickerFormat.[Short]
  588. Me.DateTimePicker2.Location = New System.Drawing.Point(52, 133)
  589. Me.DateTimePicker2.Name = "DateTimePicker2"
  590. Me.DateTimePicker2.Size = New System.Drawing.Size(110, 23)
  591. Me.DateTimePicker2.TabIndex = 58
  592. '
  593. 'Label3
  594. '
  595. Me.Label3.AutoSize = True
  596. Me.Label3.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  597. Me.Label3.Location = New System.Drawing.Point(178, 47)
  598. Me.Label3.Name = "Label3"
  599. Me.Label3.Size = New System.Drawing.Size(32, 16)
  600. Me.Label3.TabIndex = 53
  601. Me.Label3.Text = "人員"
  602. '
  603. 'ComboBox3
  604. '
  605. Me.ComboBox3.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  606. Me.ComboBox3.FormattingEnabled = True
  607. Me.ComboBox3.Items.AddRange(New Object() {"李玖瑽", "王昭懿", "李協叡", "李政弘", "楊國興"})
  608. Me.ComboBox3.Location = New System.Drawing.Point(216, 44)
  609. Me.ComboBox3.Name = "ComboBox3"
  610. Me.ComboBox3.Size = New System.Drawing.Size(120, 24)
  611. Me.ComboBox3.TabIndex = 52
  612. '
  613. 'TextBox57
  614. '
  615. Me.TextBox57.Enabled = False
  616. Me.TextBox57.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  617. Me.TextBox57.Location = New System.Drawing.Point(378, 15)
  618. Me.TextBox57.Name = "TextBox57"
  619. Me.TextBox57.Size = New System.Drawing.Size(120, 23)
  620. Me.TextBox57.TabIndex = 51
  621. '
  622. 'Button8
  623. '
  624. Me.Button8.Enabled = False
  625. Me.Button8.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  626. Me.Button8.ForeColor = System.Drawing.Color.Red
  627. Me.Button8.Location = New System.Drawing.Point(293, 103)
  628. Me.Button8.Name = "Button8"
  629. Me.Button8.Size = New System.Drawing.Size(136, 25)
  630. Me.Button8.TabIndex = 50
  631. Me.Button8.Text = "刪除確認"
  632. Me.Button8.UseVisualStyleBackColor = True
  633. '
  634. 'Button7
  635. '
  636. Me.Button7.Enabled = False
  637. Me.Button7.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  638. Me.Button7.ForeColor = System.Drawing.Color.Blue
  639. Me.Button7.Location = New System.Drawing.Point(9, 103)
  640. Me.Button7.Name = "Button7"
  641. Me.Button7.Size = New System.Drawing.Size(136, 25)
  642. Me.Button7.TabIndex = 50
  643. Me.Button7.Text = "新增確認"
  644. Me.Button7.UseVisualStyleBackColor = True
  645. '
  646. 'Button5
  647. '
  648. Me.Button5.Enabled = False
  649. Me.Button5.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  650. Me.Button5.ForeColor = System.Drawing.Color.Black
  651. Me.Button5.Location = New System.Drawing.Point(435, 103)
  652. Me.Button5.Name = "Button5"
  653. Me.Button5.Size = New System.Drawing.Size(136, 25)
  654. Me.Button5.TabIndex = 18
  655. Me.Button5.Text = "取消"
  656. Me.Button5.UseVisualStyleBackColor = True
  657. '
  658. 'Button4
  659. '
  660. Me.Button4.Enabled = False
  661. Me.Button4.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  662. Me.Button4.ForeColor = System.Drawing.Color.Green
  663. Me.Button4.Location = New System.Drawing.Point(151, 103)
  664. Me.Button4.Name = "Button4"
  665. Me.Button4.Size = New System.Drawing.Size(136, 25)
  666. Me.Button4.TabIndex = 3
  667. Me.Button4.Text = "儲存修改"
  668. Me.Button4.UseVisualStyleBackColor = True
  669. '
  670. 'Label143
  671. '
  672. Me.Label143.AutoSize = True
  673. Me.Label143.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  674. Me.Label143.Location = New System.Drawing.Point(6, 18)
  675. Me.Label143.Name = "Label143"
  676. Me.Label143.Size = New System.Drawing.Size(44, 16)
  677. Me.Label143.TabIndex = 8
  678. Me.Label143.Text = "流水號"
  679. '
  680. 'Button6
  681. '
  682. Me.Button6.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  683. Me.Button6.Location = New System.Drawing.Point(474, 134)
  684. Me.Button6.Name = "Button6"
  685. Me.Button6.Size = New System.Drawing.Size(97, 25)
  686. Me.Button6.TabIndex = 56
  687. Me.Button6.Text = "重新讀取"
  688. Me.Button6.UseVisualStyleBackColor = True
  689. '
  690. 'ComboBox2
  691. '
  692. Me.ComboBox2.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  693. Me.ComboBox2.FormattingEnabled = True
  694. Me.ComboBox2.Items.AddRange(New Object() {"台幣現金", "人民幣現金"})
  695. Me.ComboBox2.Location = New System.Drawing.Point(312, 133)
  696. Me.ComboBox2.Name = "ComboBox2"
  697. Me.ComboBox2.Size = New System.Drawing.Size(156, 24)
  698. Me.ComboBox2.TabIndex = 57
  699. '
  700. 'ComboBox1
  701. '
  702. Me.ComboBox1.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  703. Me.ComboBox1.FormattingEnabled = True
  704. Me.ComboBox1.Items.AddRange(New Object() {"互沖帳", "設備收入", "設計收入", "服務收入", "還款收入", "退款收入", "利息收入", "設備成本", "物料成本", "幹部薪資", "差旅費", "交通費", "郵電費", "交際費", "特支費", "什項購置", "一般運費", "圖紙軟體費", "借款支出", "台灣勞健保", "增值稅", "關稅", "勞務費", "稅捐"})
  705. Me.ComboBox1.Location = New System.Drawing.Point(52, 44)
  706. Me.ComboBox1.Name = "ComboBox1"
  707. Me.ComboBox1.Size = New System.Drawing.Size(120, 24)
  708. Me.ComboBox1.TabIndex = 17
  709. '
  710. 'TextBox1
  711. '
  712. Me.TextBox1.Enabled = False
  713. Me.TextBox1.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  714. Me.TextBox1.Location = New System.Drawing.Point(52, 15)
  715. Me.TextBox1.Name = "TextBox1"
  716. Me.TextBox1.Size = New System.Drawing.Size(120, 23)
  717. Me.TextBox1.TabIndex = 1
  718. '
  719. 'DateTimePicker1
  720. '
  721. Me.DateTimePicker1.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  722. Me.DateTimePicker1.Format = System.Windows.Forms.DateTimePickerFormat.[Short]
  723. Me.DateTimePicker1.Location = New System.Drawing.Point(216, 13)
  724. Me.DateTimePicker1.Name = "DateTimePicker1"
  725. Me.DateTimePicker1.Size = New System.Drawing.Size(120, 23)
  726. Me.DateTimePicker1.TabIndex = 16
  727. '
  728. 'TextBox3
  729. '
  730. Me.TextBox3.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  731. Me.TextBox3.Location = New System.Drawing.Point(378, 44)
  732. Me.TextBox3.Multiline = True
  733. Me.TextBox3.Name = "TextBox3"
  734. Me.TextBox3.Size = New System.Drawing.Size(193, 53)
  735. Me.TextBox3.TabIndex = 3
  736. '
  737. 'Label215
  738. '
  739. Me.Label215.AutoSize = True
  740. Me.Label215.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  741. Me.Label215.Location = New System.Drawing.Point(181, 77)
  742. Me.Label215.Name = "Label215"
  743. Me.Label215.Size = New System.Drawing.Size(32, 16)
  744. Me.Label215.TabIndex = 14
  745. Me.Label215.Text = "支出"
  746. '
  747. 'TextBox4
  748. '
  749. Me.TextBox4.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  750. Me.TextBox4.ForeColor = System.Drawing.Color.Red
  751. Me.TextBox4.Location = New System.Drawing.Point(52, 74)
  752. Me.TextBox4.Name = "TextBox4"
  753. Me.TextBox4.Size = New System.Drawing.Size(120, 23)
  754. Me.TextBox4.TabIndex = 4
  755. '
  756. 'Label216
  757. '
  758. Me.Label216.AutoSize = True
  759. Me.Label216.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  760. Me.Label216.Location = New System.Drawing.Point(17, 77)
  761. Me.Label216.Name = "Label216"
  762. Me.Label216.Size = New System.Drawing.Size(32, 16)
  763. Me.Label216.TabIndex = 13
  764. Me.Label216.Text = "收入"
  765. '
  766. 'TextBox5
  767. '
  768. Me.TextBox5.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  769. Me.TextBox5.ForeColor = System.Drawing.Color.Blue
  770. Me.TextBox5.Location = New System.Drawing.Point(216, 74)
  771. Me.TextBox5.Name = "TextBox5"
  772. Me.TextBox5.Size = New System.Drawing.Size(120, 23)
  773. Me.TextBox5.TabIndex = 5
  774. '
  775. 'Label217
  776. '
  777. Me.Label217.AutoSize = True
  778. Me.Label217.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  779. Me.Label217.Location = New System.Drawing.Point(343, 48)
  780. Me.Label217.Name = "Label217"
  781. Me.Label217.Size = New System.Drawing.Size(32, 16)
  782. Me.Label217.TabIndex = 12
  783. Me.Label217.Text = "明細"
  784. '
  785. 'Label218
  786. '
  787. Me.Label218.AutoSize = True
  788. Me.Label218.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  789. Me.Label218.Location = New System.Drawing.Point(342, 18)
  790. Me.Label218.Name = "Label218"
  791. Me.Label218.Size = New System.Drawing.Size(32, 16)
  792. Me.Label218.TabIndex = 9
  793. Me.Label218.Text = "帳本"
  794. '
  795. 'Label219
  796. '
  797. Me.Label219.AutoSize = True
  798. Me.Label219.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  799. Me.Label219.Location = New System.Drawing.Point(14, 47)
  800. Me.Label219.Name = "Label219"
  801. Me.Label219.Size = New System.Drawing.Size(32, 16)
  802. Me.Label219.TabIndex = 11
  803. Me.Label219.Text = "類別"
  804. '
  805. 'Label220
  806. '
  807. Me.Label220.AutoSize = True
  808. Me.Label220.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  809. Me.Label220.Location = New System.Drawing.Point(178, 18)
  810. Me.Label220.Name = "Label220"
  811. Me.Label220.Size = New System.Drawing.Size(32, 16)
  812. Me.Label220.TabIndex = 10
  813. Me.Label220.Text = "日期"
  814. '
  815. 'GroupBox7
  816. '
  817. Me.GroupBox7.Controls.Add(Me.TextBox30)
  818. Me.GroupBox7.Controls.Add(Me.Button9)
  819. Me.GroupBox7.Controls.Add(Me.TextBox10)
  820. Me.GroupBox7.Controls.Add(Me.Label28)
  821. Me.GroupBox7.Controls.Add(Me.GroupBox2)
  822. Me.GroupBox7.Controls.Add(Me.GroupBox3)
  823. Me.GroupBox7.Controls.Add(Me.GroupBox8)
  824. Me.GroupBox7.Controls.Add(Me.GroupBox9)
  825. Me.GroupBox7.Controls.Add(Me.TextBox9)
  826. Me.GroupBox7.Controls.Add(Me.Label17)
  827. Me.GroupBox7.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  828. Me.GroupBox7.Location = New System.Drawing.Point(628, 6)
  829. Me.GroupBox7.Name = "GroupBox7"
  830. Me.GroupBox7.Size = New System.Drawing.Size(720, 670)
  831. Me.GroupBox7.TabIndex = 52
  832. Me.GroupBox7.TabStop = False
  833. Me.GroupBox7.Text = "統計"
  834. '
  835. 'TextBox30
  836. '
  837. Me.TextBox30.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  838. Me.TextBox30.ForeColor = System.Drawing.Color.Green
  839. Me.TextBox30.Location = New System.Drawing.Point(249, 639)
  840. Me.TextBox30.Name = "TextBox30"
  841. Me.TextBox30.Size = New System.Drawing.Size(88, 23)
  842. Me.TextBox30.TabIndex = 95
  843. '
  844. 'Button9
  845. '
  846. Me.Button9.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  847. Me.Button9.Location = New System.Drawing.Point(617, 639)
  848. Me.Button9.Name = "Button9"
  849. Me.Button9.Size = New System.Drawing.Size(97, 25)
  850. Me.Button9.TabIndex = 57
  851. Me.Button9.Text = "結存"
  852. Me.Button9.UseVisualStyleBackColor = True
  853. '
  854. 'TextBox10
  855. '
  856. Me.TextBox10.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  857. Me.TextBox10.ForeColor = System.Drawing.Color.Green
  858. Me.TextBox10.Location = New System.Drawing.Point(343, 639)
  859. Me.TextBox10.Name = "TextBox10"
  860. Me.TextBox10.Size = New System.Drawing.Size(88, 23)
  861. Me.TextBox10.TabIndex = 56
  862. Me.TextBox10.Visible = False
  863. '
  864. 'Label28
  865. '
  866. Me.Label28.AutoSize = True
  867. Me.Label28.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  868. Me.Label28.Location = New System.Drawing.Point(12, 643)
  869. Me.Label28.Name = "Label28"
  870. Me.Label28.Size = New System.Drawing.Size(231, 16)
  871. Me.Label28.TabIndex = 55
  872. Me.Label28.Text = "系統結餘 = 台幣結餘 + (人民幣結餘*匯率)"
  873. '
  874. 'GroupBox2
  875. '
  876. Me.GroupBox2.Controls.Add(Me.TextBox29)
  877. Me.GroupBox2.Controls.Add(Me.Label16)
  878. Me.GroupBox2.Controls.Add(Me.TextBox11)
  879. Me.GroupBox2.Location = New System.Drawing.Point(364, 580)
  880. Me.GroupBox2.Name = "GroupBox2"
  881. Me.GroupBox2.Size = New System.Drawing.Size(349, 53)
  882. Me.GroupBox2.TabIndex = 54
  883. Me.GroupBox2.TabStop = False
  884. Me.GroupBox2.Text = "資產"
  885. '
  886. 'TextBox29
  887. '
  888. Me.TextBox29.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  889. Me.TextBox29.ForeColor = System.Drawing.Color.Green
  890. Me.TextBox29.Location = New System.Drawing.Point(61, 22)
  891. Me.TextBox29.Name = "TextBox29"
  892. Me.TextBox29.Size = New System.Drawing.Size(91, 23)
  893. Me.TextBox29.TabIndex = 55
  894. '
  895. 'Label16
  896. '
  897. Me.Label16.AutoSize = True
  898. Me.Label16.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  899. Me.Label16.Location = New System.Drawing.Point(6, 25)
  900. Me.Label16.Name = "Label16"
  901. Me.Label16.Size = New System.Drawing.Size(56, 16)
  902. Me.Label16.TabIndex = 54
  903. Me.Label16.Text = "目前餘額"
  904. '
  905. 'TextBox11
  906. '
  907. Me.TextBox11.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  908. Me.TextBox11.ForeColor = System.Drawing.Color.Green
  909. Me.TextBox11.Location = New System.Drawing.Point(158, 22)
  910. Me.TextBox11.Name = "TextBox11"
  911. Me.TextBox11.Size = New System.Drawing.Size(88, 23)
  912. Me.TextBox11.TabIndex = 36
  913. Me.TextBox11.Visible = False
  914. '
  915. 'GroupBox3
  916. '
  917. Me.GroupBox3.Controls.Add(Me.TextBox27)
  918. Me.GroupBox3.Controls.Add(Me.TextBox24)
  919. Me.GroupBox3.Controls.Add(Me.TextBox21)
  920. Me.GroupBox3.Controls.Add(Me.TextBox13)
  921. Me.GroupBox3.Controls.Add(Me.Label27)
  922. Me.GroupBox3.Controls.Add(Me.Label19)
  923. Me.GroupBox3.Controls.Add(Me.TextBox8)
  924. Me.GroupBox3.Controls.Add(Me.DataGridView5)
  925. Me.GroupBox3.Controls.Add(Me.TextBox23)
  926. Me.GroupBox3.Controls.Add(Me.TextBox25)
  927. Me.GroupBox3.Controls.Add(Me.DataGridView3)
  928. Me.GroupBox3.Controls.Add(Me.TextBox19)
  929. Me.GroupBox3.Controls.Add(Me.Label29)
  930. Me.GroupBox3.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  931. Me.GroupBox3.Location = New System.Drawing.Point(364, 22)
  932. Me.GroupBox3.Name = "GroupBox3"
  933. Me.GroupBox3.Size = New System.Drawing.Size(349, 557)
  934. Me.GroupBox3.TabIndex = 53
  935. Me.GroupBox3.TabStop = False
  936. Me.GroupBox3.Text = "人民幣"
  937. '
  938. 'TextBox27
  939. '
  940. Me.TextBox27.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  941. Me.TextBox27.ForeColor = System.Drawing.Color.Red
  942. Me.TextBox27.Location = New System.Drawing.Point(61, 529)
  943. Me.TextBox27.Name = "TextBox27"
  944. Me.TextBox27.Size = New System.Drawing.Size(91, 23)
  945. Me.TextBox27.TabIndex = 101
  946. '
  947. 'TextBox24
  948. '
  949. Me.TextBox24.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  950. Me.TextBox24.ForeColor = System.Drawing.Color.Blue
  951. Me.TextBox24.Location = New System.Drawing.Point(64, 186)
  952. Me.TextBox24.Name = "TextBox24"
  953. Me.TextBox24.Size = New System.Drawing.Size(88, 23)
  954. Me.TextBox24.TabIndex = 100
  955. '
  956. 'TextBox21
  957. '
  958. Me.TextBox21.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  959. Me.TextBox21.ForeColor = System.Drawing.Color.Blue
  960. Me.TextBox21.Location = New System.Drawing.Point(64, 16)
  961. Me.TextBox21.Name = "TextBox21"
  962. Me.TextBox21.Size = New System.Drawing.Size(88, 23)
  963. Me.TextBox21.TabIndex = 99
  964. '
  965. 'TextBox13
  966. '
  967. Me.TextBox13.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  968. Me.TextBox13.ForeColor = System.Drawing.Color.Blue
  969. Me.TextBox13.Location = New System.Drawing.Point(280, 185)
  970. Me.TextBox13.Name = "TextBox13"
  971. Me.TextBox13.Size = New System.Drawing.Size(60, 23)
  972. Me.TextBox13.TabIndex = 97
  973. Me.TextBox13.Visible = False
  974. '
  975. 'Label27
  976. '
  977. Me.Label27.AutoSize = True
  978. Me.Label27.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  979. Me.Label27.Location = New System.Drawing.Point(6, 19)
  980. Me.Label27.Name = "Label27"
  981. Me.Label27.Size = New System.Drawing.Size(56, 16)
  982. Me.Label27.TabIndex = 98
  983. Me.Label27.Text = "上月結存"
  984. '
  985. 'Label19
  986. '
  987. Me.Label19.AutoSize = True
  988. Me.Label19.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  989. Me.Label19.Location = New System.Drawing.Point(18, 188)
  990. Me.Label19.Name = "Label19"
  991. Me.Label19.Size = New System.Drawing.Size(44, 16)
  992. Me.Label19.TabIndex = 97
  993. Me.Label19.Text = "總收入"
  994. '
  995. 'TextBox8
  996. '
  997. Me.TextBox8.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  998. Me.TextBox8.ForeColor = System.Drawing.Color.Blue
  999. Me.TextBox8.Location = New System.Drawing.Point(158, 16)
  1000. Me.TextBox8.Name = "TextBox8"
  1001. Me.TextBox8.Size = New System.Drawing.Size(88, 23)
  1002. Me.TextBox8.TabIndex = 94
  1003. Me.TextBox8.Visible = False
  1004. '
  1005. 'DataGridView5
  1006. '
  1007. DataGridViewCellStyle2.BackColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(255, Byte), Integer), CType(CType(192, Byte), Integer))
  1008. Me.DataGridView5.AlternatingRowsDefaultCellStyle = DataGridViewCellStyle2
  1009. Me.DataGridView5.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize
  1010. Me.DataGridView5.Location = New System.Drawing.Point(9, 43)
  1011. Me.DataGridView5.Name = "DataGridView5"
  1012. Me.DataGridView5.RowHeadersWidth = 5
  1013. Me.DataGridView5.RowTemplate.Height = 24
  1014. Me.DataGridView5.RowTemplate.Resizable = System.Windows.Forms.DataGridViewTriState.[True]
  1015. Me.DataGridView5.Size = New System.Drawing.Size(331, 137)
  1016. Me.DataGridView5.TabIndex = 95
  1017. '
  1018. 'TextBox23
  1019. '
  1020. Me.TextBox23.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1021. Me.TextBox23.ForeColor = System.Drawing.Color.Blue
  1022. Me.TextBox23.Location = New System.Drawing.Point(280, 16)
  1023. Me.TextBox23.Name = "TextBox23"
  1024. Me.TextBox23.Size = New System.Drawing.Size(60, 23)
  1025. Me.TextBox23.TabIndex = 93
  1026. Me.TextBox23.Visible = False
  1027. '
  1028. 'TextBox25
  1029. '
  1030. Me.TextBox25.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1031. Me.TextBox25.ForeColor = System.Drawing.Color.Blue
  1032. Me.TextBox25.Location = New System.Drawing.Point(158, 186)
  1033. Me.TextBox25.Name = "TextBox25"
  1034. Me.TextBox25.Size = New System.Drawing.Size(88, 23)
  1035. Me.TextBox25.TabIndex = 92
  1036. Me.TextBox25.Visible = False
  1037. '
  1038. 'DataGridView3
  1039. '
  1040. DataGridViewCellStyle3.BackColor = System.Drawing.Color.FromArgb(CType(CType(255, Byte), Integer), CType(CType(192, Byte), Integer), CType(CType(192, Byte), Integer))
  1041. Me.DataGridView3.AlternatingRowsDefaultCellStyle = DataGridViewCellStyle3
  1042. Me.DataGridView3.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize
  1043. Me.DataGridView3.Location = New System.Drawing.Point(9, 214)
  1044. Me.DataGridView3.Name = "DataGridView3"
  1045. Me.DataGridView3.RowHeadersWidth = 5
  1046. Me.DataGridView3.RowTemplate.Height = 24
  1047. Me.DataGridView3.RowTemplate.Resizable = System.Windows.Forms.DataGridViewTriState.[True]
  1048. Me.DataGridView3.Size = New System.Drawing.Size(331, 309)
  1049. Me.DataGridView3.TabIndex = 92
  1050. '
  1051. 'TextBox19
  1052. '
  1053. Me.TextBox19.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1054. Me.TextBox19.ForeColor = System.Drawing.Color.Red
  1055. Me.TextBox19.Location = New System.Drawing.Point(158, 529)
  1056. Me.TextBox19.Name = "TextBox19"
  1057. Me.TextBox19.Size = New System.Drawing.Size(91, 23)
  1058. Me.TextBox19.TabIndex = 36
  1059. Me.TextBox19.Visible = False
  1060. '
  1061. 'Label29
  1062. '
  1063. Me.Label29.AutoSize = True
  1064. Me.Label29.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1065. Me.Label29.Location = New System.Drawing.Point(18, 532)
  1066. Me.Label29.Name = "Label29"
  1067. Me.Label29.Size = New System.Drawing.Size(44, 16)
  1068. Me.Label29.TabIndex = 37
  1069. Me.Label29.Text = "總支出"
  1070. '
  1071. 'GroupBox8
  1072. '
  1073. Me.GroupBox8.Controls.Add(Me.TextBox28)
  1074. Me.GroupBox8.Controls.Add(Me.Label221)
  1075. Me.GroupBox8.Controls.Add(Me.TextBox38)
  1076. Me.GroupBox8.Location = New System.Drawing.Point(9, 579)
  1077. Me.GroupBox8.Name = "GroupBox8"
  1078. Me.GroupBox8.Size = New System.Drawing.Size(349, 54)
  1079. Me.GroupBox8.TabIndex = 52
  1080. Me.GroupBox8.TabStop = False
  1081. Me.GroupBox8.Text = "資產"
  1082. '
  1083. 'TextBox28
  1084. '
  1085. Me.TextBox28.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1086. Me.TextBox28.ForeColor = System.Drawing.Color.Green
  1087. Me.TextBox28.Location = New System.Drawing.Point(61, 22)
  1088. Me.TextBox28.Name = "TextBox28"
  1089. Me.TextBox28.Size = New System.Drawing.Size(88, 23)
  1090. Me.TextBox28.TabIndex = 55
  1091. '
  1092. 'Label221
  1093. '
  1094. Me.Label221.AutoSize = True
  1095. Me.Label221.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1096. Me.Label221.Location = New System.Drawing.Point(6, 25)
  1097. Me.Label221.Name = "Label221"
  1098. Me.Label221.Size = New System.Drawing.Size(56, 16)
  1099. Me.Label221.TabIndex = 54
  1100. Me.Label221.Text = "目前餘額"
  1101. '
  1102. 'TextBox38
  1103. '
  1104. Me.TextBox38.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1105. Me.TextBox38.ForeColor = System.Drawing.Color.Green
  1106. Me.TextBox38.Location = New System.Drawing.Point(155, 22)
  1107. Me.TextBox38.Name = "TextBox38"
  1108. Me.TextBox38.Size = New System.Drawing.Size(88, 23)
  1109. Me.TextBox38.TabIndex = 36
  1110. Me.TextBox38.Visible = False
  1111. '
  1112. 'GroupBox9
  1113. '
  1114. Me.GroupBox9.Controls.Add(Me.TextBox26)
  1115. Me.GroupBox9.Controls.Add(Me.TextBox22)
  1116. Me.GroupBox9.Controls.Add(Me.TextBox20)
  1117. Me.GroupBox9.Controls.Add(Me.TextBox12)
  1118. Me.GroupBox9.Controls.Add(Me.Label26)
  1119. Me.GroupBox9.Controls.Add(Me.Label18)
  1120. Me.GroupBox9.Controls.Add(Me.DataGridView4)
  1121. Me.GroupBox9.Controls.Add(Me.TextBox7)
  1122. Me.GroupBox9.Controls.Add(Me.TextBox56)
  1123. Me.GroupBox9.Controls.Add(Me.DataGridView2)
  1124. Me.GroupBox9.Controls.Add(Me.TextBox41)
  1125. Me.GroupBox9.Controls.Add(Me.TextBox55)
  1126. Me.GroupBox9.Controls.Add(Me.Label232)
  1127. Me.GroupBox9.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1128. Me.GroupBox9.Location = New System.Drawing.Point(9, 22)
  1129. Me.GroupBox9.Name = "GroupBox9"
  1130. Me.GroupBox9.Size = New System.Drawing.Size(349, 557)
  1131. Me.GroupBox9.TabIndex = 51
  1132. Me.GroupBox9.TabStop = False
  1133. Me.GroupBox9.Text = "台幣"
  1134. '
  1135. 'TextBox26
  1136. '
  1137. Me.TextBox26.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1138. Me.TextBox26.ForeColor = System.Drawing.Color.Red
  1139. Me.TextBox26.Location = New System.Drawing.Point(61, 528)
  1140. Me.TextBox26.Name = "TextBox26"
  1141. Me.TextBox26.Size = New System.Drawing.Size(88, 23)
  1142. Me.TextBox26.TabIndex = 99
  1143. '
  1144. 'TextBox22
  1145. '
  1146. Me.TextBox22.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1147. Me.TextBox22.ForeColor = System.Drawing.Color.Blue
  1148. Me.TextBox22.Location = New System.Drawing.Point(61, 186)
  1149. Me.TextBox22.Name = "TextBox22"
  1150. Me.TextBox22.Size = New System.Drawing.Size(88, 23)
  1151. Me.TextBox22.TabIndex = 98
  1152. '
  1153. 'TextBox20
  1154. '
  1155. Me.TextBox20.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1156. Me.TextBox20.ForeColor = System.Drawing.Color.Blue
  1157. Me.TextBox20.Location = New System.Drawing.Point(61, 16)
  1158. Me.TextBox20.Name = "TextBox20"
  1159. Me.TextBox20.Size = New System.Drawing.Size(88, 23)
  1160. Me.TextBox20.TabIndex = 97
  1161. '
  1162. 'TextBox12
  1163. '
  1164. Me.TextBox12.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1165. Me.TextBox12.ForeColor = System.Drawing.Color.Blue
  1166. Me.TextBox12.Location = New System.Drawing.Point(280, 185)
  1167. Me.TextBox12.Name = "TextBox12"
  1168. Me.TextBox12.Size = New System.Drawing.Size(60, 23)
  1169. Me.TextBox12.TabIndex = 96
  1170. Me.TextBox12.Visible = False
  1171. '
  1172. 'Label26
  1173. '
  1174. Me.Label26.AutoSize = True
  1175. Me.Label26.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1176. Me.Label26.Location = New System.Drawing.Point(6, 19)
  1177. Me.Label26.Name = "Label26"
  1178. Me.Label26.Size = New System.Drawing.Size(56, 16)
  1179. Me.Label26.TabIndex = 84
  1180. Me.Label26.Text = "上月結存"
  1181. '
  1182. 'Label18
  1183. '
  1184. Me.Label18.AutoSize = True
  1185. Me.Label18.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1186. Me.Label18.Location = New System.Drawing.Point(14, 188)
  1187. Me.Label18.Name = "Label18"
  1188. Me.Label18.Size = New System.Drawing.Size(44, 16)
  1189. Me.Label18.TabIndex = 40
  1190. Me.Label18.Text = "總收入"
  1191. '
  1192. 'DataGridView4
  1193. '
  1194. DataGridViewCellStyle4.BackColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(255, Byte), Integer), CType(CType(192, Byte), Integer))
  1195. Me.DataGridView4.AlternatingRowsDefaultCellStyle = DataGridViewCellStyle4
  1196. Me.DataGridView4.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize
  1197. Me.DataGridView4.Location = New System.Drawing.Point(9, 43)
  1198. Me.DataGridView4.Name = "DataGridView4"
  1199. Me.DataGridView4.RowHeadersWidth = 5
  1200. Me.DataGridView4.RowTemplate.Height = 24
  1201. Me.DataGridView4.RowTemplate.Resizable = System.Windows.Forms.DataGridViewTriState.[True]
  1202. Me.DataGridView4.Size = New System.Drawing.Size(331, 137)
  1203. Me.DataGridView4.TabIndex = 38
  1204. '
  1205. 'TextBox7
  1206. '
  1207. Me.TextBox7.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1208. Me.TextBox7.ForeColor = System.Drawing.Color.Blue
  1209. Me.TextBox7.Location = New System.Drawing.Point(280, 16)
  1210. Me.TextBox7.Name = "TextBox7"
  1211. Me.TextBox7.Size = New System.Drawing.Size(60, 23)
  1212. Me.TextBox7.TabIndex = 95
  1213. Me.TextBox7.Visible = False
  1214. '
  1215. 'TextBox56
  1216. '
  1217. Me.TextBox56.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1218. Me.TextBox56.ForeColor = System.Drawing.Color.Blue
  1219. Me.TextBox56.Location = New System.Drawing.Point(155, 16)
  1220. Me.TextBox56.Name = "TextBox56"
  1221. Me.TextBox56.Size = New System.Drawing.Size(88, 23)
  1222. Me.TextBox56.TabIndex = 84
  1223. Me.TextBox56.Visible = False
  1224. '
  1225. 'DataGridView2
  1226. '
  1227. DataGridViewCellStyle5.BackColor = System.Drawing.Color.FromArgb(CType(CType(255, Byte), Integer), CType(CType(192, Byte), Integer), CType(CType(192, Byte), Integer))
  1228. Me.DataGridView2.AlternatingRowsDefaultCellStyle = DataGridViewCellStyle5
  1229. Me.DataGridView2.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize
  1230. Me.DataGridView2.Location = New System.Drawing.Point(9, 214)
  1231. Me.DataGridView2.Name = "DataGridView2"
  1232. Me.DataGridView2.RowHeadersWidth = 5
  1233. Me.DataGridView2.RowTemplate.Height = 24
  1234. Me.DataGridView2.RowTemplate.Resizable = System.Windows.Forms.DataGridViewTriState.[True]
  1235. Me.DataGridView2.Size = New System.Drawing.Size(331, 308)
  1236. Me.DataGridView2.TabIndex = 1
  1237. '
  1238. 'TextBox41
  1239. '
  1240. Me.TextBox41.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1241. Me.TextBox41.ForeColor = System.Drawing.Color.Red
  1242. Me.TextBox41.Location = New System.Drawing.Point(155, 528)
  1243. Me.TextBox41.Name = "TextBox41"
  1244. Me.TextBox41.Size = New System.Drawing.Size(91, 23)
  1245. Me.TextBox41.TabIndex = 36
  1246. Me.TextBox41.Visible = False
  1247. '
  1248. 'TextBox55
  1249. '
  1250. Me.TextBox55.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1251. Me.TextBox55.ForeColor = System.Drawing.Color.Blue
  1252. Me.TextBox55.Location = New System.Drawing.Point(155, 186)
  1253. Me.TextBox55.Name = "TextBox55"
  1254. Me.TextBox55.Size = New System.Drawing.Size(88, 23)
  1255. Me.TextBox55.TabIndex = 83
  1256. Me.TextBox55.Visible = False
  1257. '
  1258. 'Label232
  1259. '
  1260. Me.Label232.AutoSize = True
  1261. Me.Label232.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1262. Me.Label232.Location = New System.Drawing.Point(14, 531)
  1263. Me.Label232.Name = "Label232"
  1264. Me.Label232.Size = New System.Drawing.Size(44, 16)
  1265. Me.Label232.TabIndex = 37
  1266. Me.Label232.Text = "總支出"
  1267. '
  1268. 'TextBox9
  1269. '
  1270. Me.TextBox9.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1271. Me.TextBox9.ForeColor = System.Drawing.Color.Red
  1272. Me.TextBox9.Location = New System.Drawing.Point(520, 640)
  1273. Me.TextBox9.Name = "TextBox9"
  1274. Me.TextBox9.Size = New System.Drawing.Size(91, 23)
  1275. Me.TextBox9.TabIndex = 93
  1276. Me.TextBox9.Text = "0"
  1277. '
  1278. 'Label17
  1279. '
  1280. Me.Label17.AutoSize = True
  1281. Me.Label17.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1282. Me.Label17.Location = New System.Drawing.Point(473, 642)
  1283. Me.Label17.Name = "Label17"
  1284. Me.Label17.Size = New System.Drawing.Size(44, 16)
  1285. Me.Label17.TabIndex = 94
  1286. Me.Label17.Text = "借出款"
  1287. '
  1288. 'TextBox2
  1289. '
  1290. Me.TextBox2.Enabled = False
  1291. Me.TextBox2.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1292. Me.TextBox2.Location = New System.Drawing.Point(525, 7)
  1293. Me.TextBox2.Name = "TextBox2"
  1294. Me.TextBox2.Size = New System.Drawing.Size(72, 23)
  1295. Me.TextBox2.TabIndex = 2
  1296. Me.TextBox2.Visible = False
  1297. '
  1298. 'Button3
  1299. '
  1300. Me.Button3.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1301. Me.Button3.ForeColor = System.Drawing.Color.Red
  1302. Me.Button3.Location = New System.Drawing.Point(526, 140)
  1303. Me.Button3.Name = "Button3"
  1304. Me.Button3.Size = New System.Drawing.Size(71, 44)
  1305. Me.Button3.TabIndex = 55
  1306. Me.Button3.Text = "刪除"
  1307. Me.Button3.UseVisualStyleBackColor = True
  1308. '
  1309. 'Button1
  1310. '
  1311. Me.Button1.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1312. Me.Button1.ForeColor = System.Drawing.Color.Blue
  1313. Me.Button1.Location = New System.Drawing.Point(525, 36)
  1314. Me.Button1.Name = "Button1"
  1315. Me.Button1.Size = New System.Drawing.Size(71, 44)
  1316. Me.Button1.TabIndex = 53
  1317. Me.Button1.Text = "新增"
  1318. Me.Button1.UseVisualStyleBackColor = True
  1319. '
  1320. 'Button2
  1321. '
  1322. Me.Button2.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1323. Me.Button2.ForeColor = System.Drawing.Color.DarkGreen
  1324. Me.Button2.Location = New System.Drawing.Point(526, 88)
  1325. Me.Button2.Name = "Button2"
  1326. Me.Button2.Size = New System.Drawing.Size(71, 44)
  1327. Me.Button2.TabIndex = 54
  1328. Me.Button2.Text = "修改"
  1329. Me.Button2.UseVisualStyleBackColor = True
  1330. '
  1331. 'Label2
  1332. '
  1333. Me.Label2.AutoSize = True
  1334. Me.Label2.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1335. Me.Label2.Location = New System.Drawing.Point(45, 9)
  1336. Me.Label2.Margin = New System.Windows.Forms.Padding(2, 0, 2, 0)
  1337. Me.Label2.Name = "Label2"
  1338. Me.Label2.Size = New System.Drawing.Size(15, 16)
  1339. Me.Label2.TabIndex = 88
  1340. Me.Label2.Text = "0"
  1341. '
  1342. 'Label1
  1343. '
  1344. Me.Label1.AutoSize = True
  1345. Me.Label1.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1346. Me.Label1.Location = New System.Drawing.Point(11, 9)
  1347. Me.Label1.Margin = New System.Windows.Forms.Padding(2, 0, 2, 0)
  1348. Me.Label1.Name = "Label1"
  1349. Me.Label1.Size = New System.Drawing.Size(32, 16)
  1350. Me.Label1.TabIndex = 87
  1351. Me.Label1.Text = "匯率"
  1352. '
  1353. 'GroupBox1
  1354. '
  1355. Me.GroupBox1.Controls.Add(Me.Label4)
  1356. Me.GroupBox1.Controls.Add(Me.Label5)
  1357. Me.GroupBox1.Controls.Add(Me.Label13)
  1358. Me.GroupBox1.Controls.Add(Me.Label14)
  1359. Me.GroupBox1.Controls.Add(Me.Label10)
  1360. Me.GroupBox1.Controls.Add(Me.Label12)
  1361. Me.GroupBox1.Controls.Add(Me.Label24)
  1362. Me.GroupBox1.Controls.Add(Me.Label25)
  1363. Me.GroupBox1.Controls.Add(Me.Label6)
  1364. Me.GroupBox1.Controls.Add(Me.Label7)
  1365. Me.GroupBox1.Controls.Add(Me.Label8)
  1366. Me.GroupBox1.Controls.Add(Me.Label9)
  1367. Me.GroupBox1.Controls.Add(Me.Label11)
  1368. Me.GroupBox1.Controls.Add(Me.Label15)
  1369. Me.GroupBox1.Controls.Add(Me.Label20)
  1370. Me.GroupBox1.Controls.Add(Me.Label21)
  1371. Me.GroupBox1.Controls.Add(Me.Label22)
  1372. Me.GroupBox1.Controls.Add(Me.Label23)
  1373. Me.GroupBox1.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1374. Me.GroupBox1.ForeColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(64, Byte), Integer), CType(CType(0, Byte), Integer))
  1375. Me.GroupBox1.Location = New System.Drawing.Point(14, 102)
  1376. Me.GroupBox1.Margin = New System.Windows.Forms.Padding(2)
  1377. Me.GroupBox1.Name = "GroupBox1"
  1378. Me.GroupBox1.Padding = New System.Windows.Forms.Padding(2)
  1379. Me.GroupBox1.Size = New System.Drawing.Size(506, 109)
  1380. Me.GroupBox1.TabIndex = 91
  1381. Me.GroupBox1.TabStop = False
  1382. Me.GroupBox1.Text = "合夥人資本核算"
  1383. '
  1384. 'Label4
  1385. '
  1386. Me.Label4.AutoSize = True
  1387. Me.Label4.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1388. Me.Label4.Location = New System.Drawing.Point(450, 63)
  1389. Me.Label4.Margin = New System.Windows.Forms.Padding(2, 0, 2, 0)
  1390. Me.Label4.Name = "Label4"
  1391. Me.Label4.Size = New System.Drawing.Size(15, 16)
  1392. Me.Label4.TabIndex = 109
  1393. Me.Label4.Text = "0"
  1394. '
  1395. 'Label5
  1396. '
  1397. Me.Label5.AutoSize = True
  1398. Me.Label5.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1399. Me.Label5.Location = New System.Drawing.Point(159, 63)
  1400. Me.Label5.Margin = New System.Windows.Forms.Padding(2, 0, 2, 0)
  1401. Me.Label5.Name = "Label5"
  1402. Me.Label5.Size = New System.Drawing.Size(15, 16)
  1403. Me.Label5.TabIndex = 108
  1404. Me.Label5.Text = "0"
  1405. '
  1406. 'Label13
  1407. '
  1408. Me.Label13.AutoSize = True
  1409. Me.Label13.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1410. Me.Label13.Location = New System.Drawing.Point(257, 63)
  1411. Me.Label13.Margin = New System.Windows.Forms.Padding(2, 0, 2, 0)
  1412. Me.Label13.Name = "Label13"
  1413. Me.Label13.Size = New System.Drawing.Size(15, 16)
  1414. Me.Label13.TabIndex = 107
  1415. Me.Label13.Text = "0"
  1416. '
  1417. 'Label14
  1418. '
  1419. Me.Label14.AutoSize = True
  1420. Me.Label14.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1421. Me.Label14.Location = New System.Drawing.Point(4, 63)
  1422. Me.Label14.Margin = New System.Windows.Forms.Padding(2, 0, 2, 0)
  1423. Me.Label14.Name = "Label14"
  1424. Me.Label14.Size = New System.Drawing.Size(44, 16)
  1425. Me.Label14.TabIndex = 106
  1426. Me.Label14.Text = "楊國興"
  1427. '
  1428. 'Label10
  1429. '
  1430. Me.Label10.AutoSize = True
  1431. Me.Label10.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1432. Me.Label10.Location = New System.Drawing.Point(159, 34)
  1433. Me.Label10.Margin = New System.Windows.Forms.Padding(2, 0, 2, 0)
  1434. Me.Label10.Name = "Label10"
  1435. Me.Label10.Size = New System.Drawing.Size(15, 16)
  1436. Me.Label10.TabIndex = 105
  1437. Me.Label10.Text = "0"
  1438. '
  1439. 'Label12
  1440. '
  1441. Me.Label12.AutoSize = True
  1442. Me.Label12.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1443. Me.Label12.Location = New System.Drawing.Point(257, 34)
  1444. Me.Label12.Margin = New System.Windows.Forms.Padding(2, 0, 2, 0)
  1445. Me.Label12.Name = "Label12"
  1446. Me.Label12.Size = New System.Drawing.Size(15, 16)
  1447. Me.Label12.TabIndex = 104
  1448. Me.Label12.Text = "0"
  1449. '
  1450. 'Label24
  1451. '
  1452. Me.Label24.AutoSize = True
  1453. Me.Label24.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1454. Me.Label24.Location = New System.Drawing.Point(159, 86)
  1455. Me.Label24.Margin = New System.Windows.Forms.Padding(2, 0, 2, 0)
  1456. Me.Label24.Name = "Label24"
  1457. Me.Label24.Size = New System.Drawing.Size(15, 16)
  1458. Me.Label24.TabIndex = 103
  1459. Me.Label24.Text = "0"
  1460. '
  1461. 'Label25
  1462. '
  1463. Me.Label25.AutoSize = True
  1464. Me.Label25.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1465. Me.Label25.Location = New System.Drawing.Point(257, 86)
  1466. Me.Label25.Margin = New System.Windows.Forms.Padding(2, 0, 2, 0)
  1467. Me.Label25.Name = "Label25"
  1468. Me.Label25.Size = New System.Drawing.Size(15, 16)
  1469. Me.Label25.TabIndex = 102
  1470. Me.Label25.Text = "0"
  1471. '
  1472. 'Label6
  1473. '
  1474. Me.Label6.AutoSize = True
  1475. Me.Label6.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1476. Me.Label6.Location = New System.Drawing.Point(450, 49)
  1477. Me.Label6.Margin = New System.Windows.Forms.Padding(2, 0, 2, 0)
  1478. Me.Label6.Name = "Label6"
  1479. Me.Label6.Size = New System.Drawing.Size(15, 16)
  1480. Me.Label6.TabIndex = 101
  1481. Me.Label6.Text = "0"
  1482. '
  1483. 'Label7
  1484. '
  1485. Me.Label7.AutoSize = True
  1486. Me.Label7.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1487. Me.Label7.Location = New System.Drawing.Point(450, 34)
  1488. Me.Label7.Margin = New System.Windows.Forms.Padding(2, 0, 2, 0)
  1489. Me.Label7.Name = "Label7"
  1490. Me.Label7.Size = New System.Drawing.Size(15, 16)
  1491. Me.Label7.TabIndex = 100
  1492. Me.Label7.Text = "0"
  1493. '
  1494. 'Label8
  1495. '
  1496. Me.Label8.AutoSize = True
  1497. Me.Label8.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1498. Me.Label8.ForeColor = System.Drawing.Color.Black
  1499. Me.Label8.Location = New System.Drawing.Point(450, 18)
  1500. Me.Label8.Margin = New System.Windows.Forms.Padding(2, 0, 2, 0)
  1501. Me.Label8.Name = "Label8"
  1502. Me.Label8.Size = New System.Drawing.Size(44, 16)
  1503. Me.Label8.TabIndex = 99
  1504. Me.Label8.Text = "百分比"
  1505. '
  1506. 'Label9
  1507. '
  1508. Me.Label9.AutoSize = True
  1509. Me.Label9.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1510. Me.Label9.Location = New System.Drawing.Point(159, 49)
  1511. Me.Label9.Margin = New System.Windows.Forms.Padding(2, 0, 2, 0)
  1512. Me.Label9.Name = "Label9"
  1513. Me.Label9.Size = New System.Drawing.Size(15, 16)
  1514. Me.Label9.TabIndex = 98
  1515. Me.Label9.Text = "0"
  1516. '
  1517. 'Label11
  1518. '
  1519. Me.Label11.AutoSize = True
  1520. Me.Label11.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1521. Me.Label11.Location = New System.Drawing.Point(257, 49)
  1522. Me.Label11.Margin = New System.Windows.Forms.Padding(2, 0, 2, 0)
  1523. Me.Label11.Name = "Label11"
  1524. Me.Label11.Size = New System.Drawing.Size(15, 16)
  1525. Me.Label11.TabIndex = 96
  1526. Me.Label11.Text = "0"
  1527. '
  1528. 'Label15
  1529. '
  1530. Me.Label15.AutoSize = True
  1531. Me.Label15.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1532. Me.Label15.Location = New System.Drawing.Point(4, 49)
  1533. Me.Label15.Margin = New System.Windows.Forms.Padding(2, 0, 2, 0)
  1534. Me.Label15.Name = "Label15"
  1535. Me.Label15.Size = New System.Drawing.Size(44, 16)
  1536. Me.Label15.TabIndex = 87
  1537. Me.Label15.Text = "李協叡"
  1538. '
  1539. 'Label20
  1540. '
  1541. Me.Label20.AutoSize = True
  1542. Me.Label20.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1543. Me.Label20.Location = New System.Drawing.Point(4, 34)
  1544. Me.Label20.Margin = New System.Windows.Forms.Padding(2, 0, 2, 0)
  1545. Me.Label20.Name = "Label20"
  1546. Me.Label20.Size = New System.Drawing.Size(44, 16)
  1547. Me.Label20.TabIndex = 89
  1548. Me.Label20.Text = "李玖瑽"
  1549. '
  1550. 'Label21
  1551. '
  1552. Me.Label21.AutoSize = True
  1553. Me.Label21.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1554. Me.Label21.ForeColor = System.Drawing.Color.Black
  1555. Me.Label21.Location = New System.Drawing.Point(274, 18)
  1556. Me.Label21.Margin = New System.Windows.Forms.Padding(2, 0, 2, 0)
  1557. Me.Label21.Name = "Label21"
  1558. Me.Label21.Size = New System.Drawing.Size(32, 16)
  1559. Me.Label21.TabIndex = 69
  1560. Me.Label21.Text = "台幣"
  1561. '
  1562. 'Label22
  1563. '
  1564. Me.Label22.AutoSize = True
  1565. Me.Label22.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1566. Me.Label22.ForeColor = System.Drawing.Color.Black
  1567. Me.Label22.Location = New System.Drawing.Point(180, 18)
  1568. Me.Label22.Margin = New System.Windows.Forms.Padding(2, 0, 2, 0)
  1569. Me.Label22.Name = "Label22"
  1570. Me.Label22.Size = New System.Drawing.Size(44, 16)
  1571. Me.Label22.TabIndex = 68
  1572. Me.Label22.Text = "人民幣"
  1573. '
  1574. 'Label23
  1575. '
  1576. Me.Label23.AutoSize = True
  1577. Me.Label23.Location = New System.Drawing.Point(4, 18)
  1578. Me.Label23.Margin = New System.Windows.Forms.Padding(2, 0, 2, 0)
  1579. Me.Label23.Name = "Label23"
  1580. Me.Label23.Size = New System.Drawing.Size(468, 16)
  1581. Me.Label23.TabIndex = 67
  1582. Me.Label23.Text = "_________________________________________________________________________________" &
  1583. "___________"
  1584. '
  1585. '財務流水帳系統
  1586. '
  1587. Me.AutoScaleDimensions = New System.Drawing.SizeF(6.0!, 12.0!)
  1588. Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font
  1589. Me.AutoScroll = True
  1590. Me.ClientSize = New System.Drawing.Size(1360, 681)
  1591. Me.Controls.Add(Me.GroupBox1)
  1592. Me.Controls.Add(Me.Label2)
  1593. Me.Controls.Add(Me.Label1)
  1594. Me.Controls.Add(Me.TextBox2)
  1595. Me.Controls.Add(Me.Button3)
  1596. Me.Controls.Add(Me.Button1)
  1597. Me.Controls.Add(Me.Button2)
  1598. Me.Controls.Add(Me.GroupBox7)
  1599. Me.Controls.Add(Me.GroupBox6)
  1600. Me.Controls.Add(Me.GroupBox5)
  1601. Me.Controls.Add(Me.GroupBox4)
  1602. Me.Margin = New System.Windows.Forms.Padding(2)
  1603. Me.Name = "財務流水帳系統"
  1604. Me.Text = "財務流水帳系統"
  1605. Me.GroupBox4.ResumeLayout(False)
  1606. Me.GroupBox4.PerformLayout()
  1607. Me.GroupBox5.ResumeLayout(False)
  1608. Me.GroupBox5.PerformLayout()
  1609. CType(Me.DataGridView1, System.ComponentModel.ISupportInitialize).EndInit()
  1610. Me.GroupBox6.ResumeLayout(False)
  1611. Me.GroupBox6.PerformLayout()
  1612. Me.GroupBox7.ResumeLayout(False)
  1613. Me.GroupBox7.PerformLayout()
  1614. Me.GroupBox2.ResumeLayout(False)
  1615. Me.GroupBox2.PerformLayout()
  1616. Me.GroupBox3.ResumeLayout(False)
  1617. Me.GroupBox3.PerformLayout()
  1618. CType(Me.DataGridView5, System.ComponentModel.ISupportInitialize).EndInit()
  1619. CType(Me.DataGridView3, System.ComponentModel.ISupportInitialize).EndInit()
  1620. Me.GroupBox8.ResumeLayout(False)
  1621. Me.GroupBox8.PerformLayout()
  1622. Me.GroupBox9.ResumeLayout(False)
  1623. Me.GroupBox9.PerformLayout()
  1624. CType(Me.DataGridView4, System.ComponentModel.ISupportInitialize).EndInit()
  1625. CType(Me.DataGridView2, System.ComponentModel.ISupportInitialize).EndInit()
  1626. Me.GroupBox1.ResumeLayout(False)
  1627. Me.GroupBox1.PerformLayout()
  1628. Me.ResumeLayout(False)
  1629. Me.PerformLayout()
  1630. End Sub
  1631. Friend WithEvents GroupBox4 As GroupBox
  1632. Friend WithEvents Label190 As Label
  1633. Friend WithEvents Label147 As Label
  1634. Friend WithEvents Label148 As Label
  1635. Friend WithEvents Label149 As Label
  1636. Friend WithEvents Label150 As Label
  1637. Friend WithEvents Label151 As Label
  1638. Friend WithEvents Label152 As Label
  1639. Friend WithEvents Label153 As Label
  1640. Friend WithEvents Label154 As Label
  1641. Friend WithEvents Label155 As Label
  1642. Friend WithEvents Label156 As Label
  1643. Friend WithEvents Label157 As Label
  1644. Friend WithEvents Label158 As Label
  1645. Friend WithEvents Label144 As Label
  1646. Friend WithEvents Label145 As Label
  1647. Friend WithEvents Label146 As Label
  1648. Friend WithEvents GroupBox5 As GroupBox
  1649. Friend WithEvents DataGridView1 As DataGridView
  1650. Friend WithEvents GroupBox6 As GroupBox
  1651. Friend WithEvents TextBox57 As TextBox
  1652. Friend WithEvents Button8 As Button
  1653. Friend WithEvents Button7 As Button
  1654. Friend WithEvents Button5 As Button
  1655. Friend WithEvents Button4 As Button
  1656. Friend WithEvents Label143 As Label
  1657. Friend WithEvents ComboBox1 As ComboBox
  1658. Friend WithEvents TextBox1 As TextBox
  1659. Friend WithEvents DateTimePicker1 As DateTimePicker
  1660. Friend WithEvents TextBox3 As TextBox
  1661. Friend WithEvents Label215 As Label
  1662. Friend WithEvents TextBox4 As TextBox
  1663. Friend WithEvents Label216 As Label
  1664. Friend WithEvents TextBox5 As TextBox
  1665. Friend WithEvents Label217 As Label
  1666. Friend WithEvents Label218 As Label
  1667. Friend WithEvents Label219 As Label
  1668. Friend WithEvents Label220 As Label
  1669. Friend WithEvents GroupBox7 As GroupBox
  1670. Friend WithEvents GroupBox8 As GroupBox
  1671. Friend WithEvents Label221 As Label
  1672. Friend WithEvents TextBox38 As TextBox
  1673. Friend WithEvents GroupBox9 As GroupBox
  1674. Friend WithEvents Label232 As Label
  1675. Friend WithEvents TextBox41 As TextBox
  1676. Friend WithEvents ComboBox2 As ComboBox
  1677. Friend WithEvents Button6 As Button
  1678. Friend WithEvents Button3 As Button
  1679. Friend WithEvents Button1 As Button
  1680. Friend WithEvents Button2 As Button
  1681. Friend WithEvents TextBox6 As TextBox
  1682. Friend WithEvents TextBox56 As TextBox
  1683. Friend WithEvents TextBox55 As TextBox
  1684. Friend WithEvents TextBox2 As TextBox
  1685. Friend WithEvents TextBox16 As TextBox
  1686. Friend WithEvents Label2 As Label
  1687. Friend WithEvents Label1 As Label
  1688. Friend WithEvents Label191 As Label
  1689. Friend WithEvents Label192 As Label
  1690. Friend WithEvents Label3 As Label
  1691. Friend WithEvents ComboBox3 As ComboBox
  1692. Friend WithEvents GroupBox1 As GroupBox
  1693. Friend WithEvents Label24 As Label
  1694. Friend WithEvents Label25 As Label
  1695. Friend WithEvents Label6 As Label
  1696. Friend WithEvents Label7 As Label
  1697. Friend WithEvents Label8 As Label
  1698. Friend WithEvents Label9 As Label
  1699. Friend WithEvents Label11 As Label
  1700. Friend WithEvents Label15 As Label
  1701. Friend WithEvents Label20 As Label
  1702. Friend WithEvents Label21 As Label
  1703. Friend WithEvents Label22 As Label
  1704. Friend WithEvents Label23 As Label
  1705. Friend WithEvents Label10 As Label
  1706. Friend WithEvents Label12 As Label
  1707. Friend WithEvents Label33 As Label
  1708. Friend WithEvents Label32 As Label
  1709. Friend WithEvents DateTimePicker3 As DateTimePicker
  1710. Friend WithEvents DateTimePicker2 As DateTimePicker
  1711. Friend WithEvents GroupBox2 As GroupBox
  1712. Friend WithEvents Label16 As Label
  1713. Friend WithEvents TextBox11 As TextBox
  1714. Friend WithEvents GroupBox3 As GroupBox
  1715. Friend WithEvents Label29 As Label
  1716. Friend WithEvents TextBox19 As TextBox
  1717. Friend WithEvents TextBox23 As TextBox
  1718. Friend WithEvents TextBox25 As TextBox
  1719. Friend WithEvents Label34 As Label
  1720. Friend WithEvents Label35 As Label
  1721. Friend WithEvents DataGridView2 As DataGridView
  1722. Friend WithEvents DataGridView3 As DataGridView
  1723. Friend WithEvents TextBox7 As TextBox
  1724. Friend WithEvents TextBox8 As TextBox
  1725. Friend WithEvents Label4 As Label
  1726. Friend WithEvents Label5 As Label
  1727. Friend WithEvents Label13 As Label
  1728. Friend WithEvents Label14 As Label
  1729. Friend WithEvents TextBox9 As TextBox
  1730. Friend WithEvents Label17 As Label
  1731. Friend WithEvents DataGridView5 As DataGridView
  1732. Friend WithEvents DataGridView4 As DataGridView
  1733. Friend WithEvents Label19 As Label
  1734. Friend WithEvents Label18 As Label
  1735. Friend WithEvents Label27 As Label
  1736. Friend WithEvents Label26 As Label
  1737. Friend WithEvents Button9 As Button
  1738. Friend WithEvents TextBox10 As TextBox
  1739. Friend WithEvents Label28 As Label
  1740. Friend WithEvents TextBox13 As TextBox
  1741. Friend WithEvents TextBox12 As TextBox
  1742. Friend WithEvents TextBox14 As TextBox
  1743. Friend WithEvents TextBox15 As TextBox
  1744. Friend WithEvents DateTimePicker4 As DateTimePicker
  1745. Friend WithEvents TextBox17 As TextBox
  1746. Friend WithEvents TextBox18 As TextBox
  1747. Friend WithEvents TextBox20 As TextBox
  1748. Friend WithEvents TextBox21 As TextBox
  1749. Friend WithEvents TextBox22 As TextBox
  1750. Friend WithEvents TextBox24 As TextBox
  1751. Friend WithEvents TextBox26 As TextBox
  1752. Friend WithEvents TextBox27 As TextBox
  1753. Friend WithEvents TextBox28 As TextBox
  1754. Friend WithEvents TextBox29 As TextBox
  1755. Friend WithEvents TextBox30 As TextBox
  1756. End Class