Нет описания
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

月份查詢.Designer.vb 137KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727
  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. Me.GroupBox3 = New System.Windows.Forms.GroupBox()
  23. Me.GroupBox6 = New System.Windows.Forms.GroupBox()
  24. Me.Label47 = New System.Windows.Forms.Label()
  25. Me.TextBox38 = New System.Windows.Forms.TextBox()
  26. Me.GroupBox5 = New System.Windows.Forms.GroupBox()
  27. Me.Label46 = New System.Windows.Forms.Label()
  28. Me.TextBox54 = New System.Windows.Forms.TextBox()
  29. Me.Label45 = New System.Windows.Forms.Label()
  30. Me.TextBox53 = New System.Windows.Forms.TextBox()
  31. Me.Label44 = New System.Windows.Forms.Label()
  32. Me.TextBox52 = New System.Windows.Forms.TextBox()
  33. Me.Label43 = New System.Windows.Forms.Label()
  34. Me.TextBox51 = New System.Windows.Forms.TextBox()
  35. Me.Label42 = New System.Windows.Forms.Label()
  36. Me.TextBox50 = New System.Windows.Forms.TextBox()
  37. Me.Label41 = New System.Windows.Forms.Label()
  38. Me.TextBox49 = New System.Windows.Forms.TextBox()
  39. Me.Label40 = New System.Windows.Forms.Label()
  40. Me.TextBox48 = New System.Windows.Forms.TextBox()
  41. Me.Label39 = New System.Windows.Forms.Label()
  42. Me.TextBox47 = New System.Windows.Forms.TextBox()
  43. Me.Label38 = New System.Windows.Forms.Label()
  44. Me.TextBox46 = New System.Windows.Forms.TextBox()
  45. Me.Label37 = New System.Windows.Forms.Label()
  46. Me.TextBox45 = New System.Windows.Forms.TextBox()
  47. Me.Label30 = New System.Windows.Forms.Label()
  48. Me.TextBox39 = New System.Windows.Forms.TextBox()
  49. Me.Label31 = New System.Windows.Forms.Label()
  50. Me.TextBox41 = New System.Windows.Forms.TextBox()
  51. Me.TextBox29 = New System.Windows.Forms.TextBox()
  52. Me.Label23 = New System.Windows.Forms.Label()
  53. Me.Label22 = New System.Windows.Forms.Label()
  54. Me.TextBox37 = New System.Windows.Forms.TextBox()
  55. Me.Label21 = New System.Windows.Forms.Label()
  56. Me.TextBox36 = New System.Windows.Forms.TextBox()
  57. Me.Label26 = New System.Windows.Forms.Label()
  58. Me.TextBox35 = New System.Windows.Forms.TextBox()
  59. Me.Label25 = New System.Windows.Forms.Label()
  60. Me.TextBox34 = New System.Windows.Forms.TextBox()
  61. Me.Label24 = New System.Windows.Forms.Label()
  62. Me.TextBox33 = New System.Windows.Forms.TextBox()
  63. Me.Label29 = New System.Windows.Forms.Label()
  64. Me.TextBox32 = New System.Windows.Forms.TextBox()
  65. Me.Label28 = New System.Windows.Forms.Label()
  66. Me.TextBox31 = New System.Windows.Forms.TextBox()
  67. Me.Label27 = New System.Windows.Forms.Label()
  68. Me.TextBox30 = New System.Windows.Forms.TextBox()
  69. Me.GroupBox4 = New System.Windows.Forms.GroupBox()
  70. Me.Label36 = New System.Windows.Forms.Label()
  71. Me.TextBox44 = New System.Windows.Forms.TextBox()
  72. Me.Label35 = New System.Windows.Forms.Label()
  73. Me.TextBox43 = New System.Windows.Forms.TextBox()
  74. Me.Label34 = New System.Windows.Forms.Label()
  75. Me.TextBox42 = New System.Windows.Forms.TextBox()
  76. Me.Label33 = New System.Windows.Forms.Label()
  77. Me.Label18 = New System.Windows.Forms.Label()
  78. Me.TextBox40 = New System.Windows.Forms.TextBox()
  79. Me.Label19 = New System.Windows.Forms.Label()
  80. Me.Label20 = New System.Windows.Forms.Label()
  81. Me.TextBox26 = New System.Windows.Forms.TextBox()
  82. Me.TextBox27 = New System.Windows.Forms.TextBox()
  83. Me.TextBox28 = New System.Windows.Forms.TextBox()
  84. Me.GroupBox9 = New System.Windows.Forms.GroupBox()
  85. Me.Button1 = New System.Windows.Forms.Button()
  86. Me.Button2 = New System.Windows.Forms.Button()
  87. Me.Label59 = New System.Windows.Forms.Label()
  88. Me.DateTimePicker2 = New System.Windows.Forms.DateTimePicker()
  89. Me.DateTimePicker1 = New System.Windows.Forms.DateTimePicker()
  90. Me.TextBox59 = New System.Windows.Forms.TextBox()
  91. Me.GroupBox10 = New System.Windows.Forms.GroupBox()
  92. Me.Label60 = New System.Windows.Forms.Label()
  93. Me.GroupBox1 = New System.Windows.Forms.GroupBox()
  94. Me.GroupBox2 = New System.Windows.Forms.GroupBox()
  95. Me.Label1 = New System.Windows.Forms.Label()
  96. Me.TextBox1 = New System.Windows.Forms.TextBox()
  97. Me.GroupBox7 = New System.Windows.Forms.GroupBox()
  98. Me.Label2 = New System.Windows.Forms.Label()
  99. Me.TextBox2 = New System.Windows.Forms.TextBox()
  100. Me.Label3 = New System.Windows.Forms.Label()
  101. Me.TextBox3 = New System.Windows.Forms.TextBox()
  102. Me.Label4 = New System.Windows.Forms.Label()
  103. Me.TextBox4 = New System.Windows.Forms.TextBox()
  104. Me.Label5 = New System.Windows.Forms.Label()
  105. Me.TextBox5 = New System.Windows.Forms.TextBox()
  106. Me.Label6 = New System.Windows.Forms.Label()
  107. Me.TextBox6 = New System.Windows.Forms.TextBox()
  108. Me.Label7 = New System.Windows.Forms.Label()
  109. Me.TextBox7 = New System.Windows.Forms.TextBox()
  110. Me.Label8 = New System.Windows.Forms.Label()
  111. Me.TextBox8 = New System.Windows.Forms.TextBox()
  112. Me.Label9 = New System.Windows.Forms.Label()
  113. Me.TextBox9 = New System.Windows.Forms.TextBox()
  114. Me.Label10 = New System.Windows.Forms.Label()
  115. Me.TextBox10 = New System.Windows.Forms.TextBox()
  116. Me.Label11 = New System.Windows.Forms.Label()
  117. Me.TextBox11 = New System.Windows.Forms.TextBox()
  118. Me.Label12 = New System.Windows.Forms.Label()
  119. Me.TextBox12 = New System.Windows.Forms.TextBox()
  120. Me.Label13 = New System.Windows.Forms.Label()
  121. Me.TextBox13 = New System.Windows.Forms.TextBox()
  122. Me.TextBox14 = New System.Windows.Forms.TextBox()
  123. Me.Label14 = New System.Windows.Forms.Label()
  124. Me.Label15 = New System.Windows.Forms.Label()
  125. Me.TextBox15 = New System.Windows.Forms.TextBox()
  126. Me.Label16 = New System.Windows.Forms.Label()
  127. Me.TextBox16 = New System.Windows.Forms.TextBox()
  128. Me.Label17 = New System.Windows.Forms.Label()
  129. Me.TextBox17 = New System.Windows.Forms.TextBox()
  130. Me.Label32 = New System.Windows.Forms.Label()
  131. Me.TextBox18 = New System.Windows.Forms.TextBox()
  132. Me.Label48 = New System.Windows.Forms.Label()
  133. Me.TextBox19 = New System.Windows.Forms.TextBox()
  134. Me.Label49 = New System.Windows.Forms.Label()
  135. Me.TextBox20 = New System.Windows.Forms.TextBox()
  136. Me.Label50 = New System.Windows.Forms.Label()
  137. Me.TextBox21 = New System.Windows.Forms.TextBox()
  138. Me.Label51 = New System.Windows.Forms.Label()
  139. Me.TextBox22 = New System.Windows.Forms.TextBox()
  140. Me.GroupBox8 = New System.Windows.Forms.GroupBox()
  141. Me.Label52 = New System.Windows.Forms.Label()
  142. Me.TextBox23 = New System.Windows.Forms.TextBox()
  143. Me.Label53 = New System.Windows.Forms.Label()
  144. Me.TextBox24 = New System.Windows.Forms.TextBox()
  145. Me.Label54 = New System.Windows.Forms.Label()
  146. Me.TextBox25 = New System.Windows.Forms.TextBox()
  147. Me.Label55 = New System.Windows.Forms.Label()
  148. Me.Label56 = New System.Windows.Forms.Label()
  149. Me.TextBox55 = New System.Windows.Forms.TextBox()
  150. Me.Label57 = New System.Windows.Forms.Label()
  151. Me.Label58 = New System.Windows.Forms.Label()
  152. Me.TextBox56 = New System.Windows.Forms.TextBox()
  153. Me.TextBox57 = New System.Windows.Forms.TextBox()
  154. Me.TextBox58 = New System.Windows.Forms.TextBox()
  155. Me.GroupBox11 = New System.Windows.Forms.GroupBox()
  156. Me.GroupBox12 = New System.Windows.Forms.GroupBox()
  157. Me.Label61 = New System.Windows.Forms.Label()
  158. Me.TextBox60 = New System.Windows.Forms.TextBox()
  159. Me.GroupBox13 = New System.Windows.Forms.GroupBox()
  160. Me.Label62 = New System.Windows.Forms.Label()
  161. Me.TextBox61 = New System.Windows.Forms.TextBox()
  162. Me.Label63 = New System.Windows.Forms.Label()
  163. Me.TextBox62 = New System.Windows.Forms.TextBox()
  164. Me.Label64 = New System.Windows.Forms.Label()
  165. Me.TextBox63 = New System.Windows.Forms.TextBox()
  166. Me.Label65 = New System.Windows.Forms.Label()
  167. Me.TextBox64 = New System.Windows.Forms.TextBox()
  168. Me.Label66 = New System.Windows.Forms.Label()
  169. Me.TextBox65 = New System.Windows.Forms.TextBox()
  170. Me.Label67 = New System.Windows.Forms.Label()
  171. Me.TextBox66 = New System.Windows.Forms.TextBox()
  172. Me.Label68 = New System.Windows.Forms.Label()
  173. Me.TextBox67 = New System.Windows.Forms.TextBox()
  174. Me.Label69 = New System.Windows.Forms.Label()
  175. Me.TextBox68 = New System.Windows.Forms.TextBox()
  176. Me.Label70 = New System.Windows.Forms.Label()
  177. Me.TextBox69 = New System.Windows.Forms.TextBox()
  178. Me.Label71 = New System.Windows.Forms.Label()
  179. Me.TextBox70 = New System.Windows.Forms.TextBox()
  180. Me.Label72 = New System.Windows.Forms.Label()
  181. Me.TextBox71 = New System.Windows.Forms.TextBox()
  182. Me.Label73 = New System.Windows.Forms.Label()
  183. Me.TextBox72 = New System.Windows.Forms.TextBox()
  184. Me.TextBox73 = New System.Windows.Forms.TextBox()
  185. Me.Label74 = New System.Windows.Forms.Label()
  186. Me.Label75 = New System.Windows.Forms.Label()
  187. Me.TextBox74 = New System.Windows.Forms.TextBox()
  188. Me.Label76 = New System.Windows.Forms.Label()
  189. Me.TextBox75 = New System.Windows.Forms.TextBox()
  190. Me.Label77 = New System.Windows.Forms.Label()
  191. Me.TextBox76 = New System.Windows.Forms.TextBox()
  192. Me.Label78 = New System.Windows.Forms.Label()
  193. Me.TextBox77 = New System.Windows.Forms.TextBox()
  194. Me.Label79 = New System.Windows.Forms.Label()
  195. Me.TextBox78 = New System.Windows.Forms.TextBox()
  196. Me.Label80 = New System.Windows.Forms.Label()
  197. Me.TextBox79 = New System.Windows.Forms.TextBox()
  198. Me.Label81 = New System.Windows.Forms.Label()
  199. Me.TextBox80 = New System.Windows.Forms.TextBox()
  200. Me.Label82 = New System.Windows.Forms.Label()
  201. Me.TextBox81 = New System.Windows.Forms.TextBox()
  202. Me.GroupBox14 = New System.Windows.Forms.GroupBox()
  203. Me.Label83 = New System.Windows.Forms.Label()
  204. Me.TextBox82 = New System.Windows.Forms.TextBox()
  205. Me.Label84 = New System.Windows.Forms.Label()
  206. Me.TextBox83 = New System.Windows.Forms.TextBox()
  207. Me.Label85 = New System.Windows.Forms.Label()
  208. Me.TextBox84 = New System.Windows.Forms.TextBox()
  209. Me.Label86 = New System.Windows.Forms.Label()
  210. Me.Label87 = New System.Windows.Forms.Label()
  211. Me.TextBox85 = New System.Windows.Forms.TextBox()
  212. Me.Label88 = New System.Windows.Forms.Label()
  213. Me.Label89 = New System.Windows.Forms.Label()
  214. Me.TextBox86 = New System.Windows.Forms.TextBox()
  215. Me.TextBox87 = New System.Windows.Forms.TextBox()
  216. Me.TextBox88 = New System.Windows.Forms.TextBox()
  217. Me.GroupBox3.SuspendLayout()
  218. Me.GroupBox6.SuspendLayout()
  219. Me.GroupBox5.SuspendLayout()
  220. Me.GroupBox4.SuspendLayout()
  221. Me.GroupBox9.SuspendLayout()
  222. Me.GroupBox10.SuspendLayout()
  223. Me.GroupBox1.SuspendLayout()
  224. Me.GroupBox2.SuspendLayout()
  225. Me.GroupBox7.SuspendLayout()
  226. Me.GroupBox8.SuspendLayout()
  227. Me.GroupBox11.SuspendLayout()
  228. Me.GroupBox12.SuspendLayout()
  229. Me.GroupBox13.SuspendLayout()
  230. Me.GroupBox14.SuspendLayout()
  231. Me.SuspendLayout()
  232. '
  233. 'GroupBox3
  234. '
  235. Me.GroupBox3.Controls.Add(Me.GroupBox6)
  236. Me.GroupBox3.Controls.Add(Me.GroupBox5)
  237. Me.GroupBox3.Controls.Add(Me.GroupBox4)
  238. Me.GroupBox3.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  239. Me.GroupBox3.Location = New System.Drawing.Point(16, 83)
  240. Me.GroupBox3.Margin = New System.Windows.Forms.Padding(4, 4, 4, 4)
  241. Me.GroupBox3.Name = "GroupBox3"
  242. Me.GroupBox3.Padding = New System.Windows.Forms.Padding(4, 4, 4, 4)
  243. Me.GroupBox3.Size = New System.Drawing.Size(352, 674)
  244. Me.GroupBox3.TabIndex = 51
  245. Me.GroupBox3.TabStop = False
  246. Me.GroupBox3.Text = "台幣統計"
  247. '
  248. 'GroupBox6
  249. '
  250. Me.GroupBox6.Controls.Add(Me.Label47)
  251. Me.GroupBox6.Controls.Add(Me.TextBox38)
  252. Me.GroupBox6.Location = New System.Drawing.Point(8, 610)
  253. Me.GroupBox6.Margin = New System.Windows.Forms.Padding(4, 4, 4, 4)
  254. Me.GroupBox6.Name = "GroupBox6"
  255. Me.GroupBox6.Padding = New System.Windows.Forms.Padding(4, 4, 4, 4)
  256. Me.GroupBox6.Size = New System.Drawing.Size(335, 55)
  257. Me.GroupBox6.TabIndex = 52
  258. Me.GroupBox6.TabStop = False
  259. Me.GroupBox6.Text = "資產"
  260. '
  261. 'Label47
  262. '
  263. Me.Label47.AutoSize = True
  264. Me.Label47.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  265. Me.Label47.Location = New System.Drawing.Point(8, 24)
  266. Me.Label47.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
  267. Me.Label47.Name = "Label47"
  268. Me.Label47.Size = New System.Drawing.Size(69, 19)
  269. Me.Label47.TabIndex = 54
  270. Me.Label47.Text = "目前餘額"
  271. '
  272. 'TextBox38
  273. '
  274. Me.TextBox38.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  275. Me.TextBox38.ForeColor = System.Drawing.Color.Green
  276. Me.TextBox38.Location = New System.Drawing.Point(86, 21)
  277. Me.TextBox38.Margin = New System.Windows.Forms.Padding(4, 4, 4, 4)
  278. Me.TextBox38.Name = "TextBox38"
  279. Me.TextBox38.Size = New System.Drawing.Size(220, 27)
  280. Me.TextBox38.TabIndex = 36
  281. '
  282. 'GroupBox5
  283. '
  284. Me.GroupBox5.Controls.Add(Me.Label46)
  285. Me.GroupBox5.Controls.Add(Me.TextBox54)
  286. Me.GroupBox5.Controls.Add(Me.Label45)
  287. Me.GroupBox5.Controls.Add(Me.TextBox53)
  288. Me.GroupBox5.Controls.Add(Me.Label44)
  289. Me.GroupBox5.Controls.Add(Me.TextBox52)
  290. Me.GroupBox5.Controls.Add(Me.Label43)
  291. Me.GroupBox5.Controls.Add(Me.TextBox51)
  292. Me.GroupBox5.Controls.Add(Me.Label42)
  293. Me.GroupBox5.Controls.Add(Me.TextBox50)
  294. Me.GroupBox5.Controls.Add(Me.Label41)
  295. Me.GroupBox5.Controls.Add(Me.TextBox49)
  296. Me.GroupBox5.Controls.Add(Me.Label40)
  297. Me.GroupBox5.Controls.Add(Me.TextBox48)
  298. Me.GroupBox5.Controls.Add(Me.Label39)
  299. Me.GroupBox5.Controls.Add(Me.TextBox47)
  300. Me.GroupBox5.Controls.Add(Me.Label38)
  301. Me.GroupBox5.Controls.Add(Me.TextBox46)
  302. Me.GroupBox5.Controls.Add(Me.Label37)
  303. Me.GroupBox5.Controls.Add(Me.TextBox45)
  304. Me.GroupBox5.Controls.Add(Me.Label30)
  305. Me.GroupBox5.Controls.Add(Me.TextBox39)
  306. Me.GroupBox5.Controls.Add(Me.Label31)
  307. Me.GroupBox5.Controls.Add(Me.TextBox41)
  308. Me.GroupBox5.Controls.Add(Me.TextBox29)
  309. Me.GroupBox5.Controls.Add(Me.Label23)
  310. Me.GroupBox5.Controls.Add(Me.Label22)
  311. Me.GroupBox5.Controls.Add(Me.TextBox37)
  312. Me.GroupBox5.Controls.Add(Me.Label21)
  313. Me.GroupBox5.Controls.Add(Me.TextBox36)
  314. Me.GroupBox5.Controls.Add(Me.Label26)
  315. Me.GroupBox5.Controls.Add(Me.TextBox35)
  316. Me.GroupBox5.Controls.Add(Me.Label25)
  317. Me.GroupBox5.Controls.Add(Me.TextBox34)
  318. Me.GroupBox5.Controls.Add(Me.Label24)
  319. Me.GroupBox5.Controls.Add(Me.TextBox33)
  320. Me.GroupBox5.Controls.Add(Me.Label29)
  321. Me.GroupBox5.Controls.Add(Me.TextBox32)
  322. Me.GroupBox5.Controls.Add(Me.Label28)
  323. Me.GroupBox5.Controls.Add(Me.TextBox31)
  324. Me.GroupBox5.Controls.Add(Me.Label27)
  325. Me.GroupBox5.Controls.Add(Me.TextBox30)
  326. Me.GroupBox5.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  327. Me.GroupBox5.Location = New System.Drawing.Point(8, 198)
  328. Me.GroupBox5.Margin = New System.Windows.Forms.Padding(4, 4, 4, 4)
  329. Me.GroupBox5.Name = "GroupBox5"
  330. Me.GroupBox5.Padding = New System.Windows.Forms.Padding(4, 4, 4, 4)
  331. Me.GroupBox5.Size = New System.Drawing.Size(335, 404)
  332. Me.GroupBox5.TabIndex = 51
  333. Me.GroupBox5.TabStop = False
  334. Me.GroupBox5.Text = "支出"
  335. '
  336. 'Label46
  337. '
  338. Me.Label46.AutoSize = True
  339. Me.Label46.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  340. Me.Label46.Location = New System.Drawing.Point(307, 338)
  341. Me.Label46.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
  342. Me.Label46.Name = "Label46"
  343. Me.Label46.Size = New System.Drawing.Size(22, 19)
  344. Me.Label46.TabIndex = 61
  345. Me.Label46.Text = "%"
  346. '
  347. 'TextBox54
  348. '
  349. Me.TextBox54.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  350. Me.TextBox54.ForeColor = System.Drawing.Color.Red
  351. Me.TextBox54.Location = New System.Drawing.Point(202, 335)
  352. Me.TextBox54.Margin = New System.Windows.Forms.Padding(4, 4, 4, 4)
  353. Me.TextBox54.Name = "TextBox54"
  354. Me.TextBox54.Size = New System.Drawing.Size(100, 27)
  355. Me.TextBox54.TabIndex = 60
  356. '
  357. 'Label45
  358. '
  359. Me.Label45.AutoSize = True
  360. Me.Label45.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  361. Me.Label45.Location = New System.Drawing.Point(307, 303)
  362. Me.Label45.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
  363. Me.Label45.Name = "Label45"
  364. Me.Label45.Size = New System.Drawing.Size(22, 19)
  365. Me.Label45.TabIndex = 59
  366. Me.Label45.Text = "%"
  367. '
  368. 'TextBox53
  369. '
  370. Me.TextBox53.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  371. Me.TextBox53.ForeColor = System.Drawing.Color.Red
  372. Me.TextBox53.Location = New System.Drawing.Point(202, 300)
  373. Me.TextBox53.Margin = New System.Windows.Forms.Padding(4, 4, 4, 4)
  374. Me.TextBox53.Name = "TextBox53"
  375. Me.TextBox53.Size = New System.Drawing.Size(100, 27)
  376. Me.TextBox53.TabIndex = 58
  377. '
  378. 'Label44
  379. '
  380. Me.Label44.AutoSize = True
  381. Me.Label44.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  382. Me.Label44.Location = New System.Drawing.Point(307, 268)
  383. Me.Label44.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
  384. Me.Label44.Name = "Label44"
  385. Me.Label44.Size = New System.Drawing.Size(22, 19)
  386. Me.Label44.TabIndex = 57
  387. Me.Label44.Text = "%"
  388. '
  389. 'TextBox52
  390. '
  391. Me.TextBox52.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  392. Me.TextBox52.ForeColor = System.Drawing.Color.Red
  393. Me.TextBox52.Location = New System.Drawing.Point(202, 265)
  394. Me.TextBox52.Margin = New System.Windows.Forms.Padding(4, 4, 4, 4)
  395. Me.TextBox52.Name = "TextBox52"
  396. Me.TextBox52.Size = New System.Drawing.Size(100, 27)
  397. Me.TextBox52.TabIndex = 56
  398. '
  399. 'Label43
  400. '
  401. Me.Label43.AutoSize = True
  402. Me.Label43.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  403. Me.Label43.Location = New System.Drawing.Point(307, 233)
  404. Me.Label43.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
  405. Me.Label43.Name = "Label43"
  406. Me.Label43.Size = New System.Drawing.Size(22, 19)
  407. Me.Label43.TabIndex = 55
  408. Me.Label43.Text = "%"
  409. '
  410. 'TextBox51
  411. '
  412. Me.TextBox51.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  413. Me.TextBox51.ForeColor = System.Drawing.Color.Red
  414. Me.TextBox51.Location = New System.Drawing.Point(202, 230)
  415. Me.TextBox51.Margin = New System.Windows.Forms.Padding(4, 4, 4, 4)
  416. Me.TextBox51.Name = "TextBox51"
  417. Me.TextBox51.Size = New System.Drawing.Size(100, 27)
  418. Me.TextBox51.TabIndex = 54
  419. '
  420. 'Label42
  421. '
  422. Me.Label42.AutoSize = True
  423. Me.Label42.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  424. Me.Label42.Location = New System.Drawing.Point(307, 199)
  425. Me.Label42.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
  426. Me.Label42.Name = "Label42"
  427. Me.Label42.Size = New System.Drawing.Size(22, 19)
  428. Me.Label42.TabIndex = 53
  429. Me.Label42.Text = "%"
  430. '
  431. 'TextBox50
  432. '
  433. Me.TextBox50.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  434. Me.TextBox50.ForeColor = System.Drawing.Color.Red
  435. Me.TextBox50.Location = New System.Drawing.Point(202, 195)
  436. Me.TextBox50.Margin = New System.Windows.Forms.Padding(4, 4, 4, 4)
  437. Me.TextBox50.Name = "TextBox50"
  438. Me.TextBox50.Size = New System.Drawing.Size(100, 27)
  439. Me.TextBox50.TabIndex = 52
  440. '
  441. 'Label41
  442. '
  443. Me.Label41.AutoSize = True
  444. Me.Label41.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  445. Me.Label41.Location = New System.Drawing.Point(307, 163)
  446. Me.Label41.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
  447. Me.Label41.Name = "Label41"
  448. Me.Label41.Size = New System.Drawing.Size(22, 19)
  449. Me.Label41.TabIndex = 51
  450. Me.Label41.Text = "%"
  451. '
  452. 'TextBox49
  453. '
  454. Me.TextBox49.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  455. Me.TextBox49.ForeColor = System.Drawing.Color.Red
  456. Me.TextBox49.Location = New System.Drawing.Point(202, 160)
  457. Me.TextBox49.Margin = New System.Windows.Forms.Padding(4, 4, 4, 4)
  458. Me.TextBox49.Name = "TextBox49"
  459. Me.TextBox49.Size = New System.Drawing.Size(100, 27)
  460. Me.TextBox49.TabIndex = 50
  461. '
  462. 'Label40
  463. '
  464. Me.Label40.AutoSize = True
  465. Me.Label40.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  466. Me.Label40.Location = New System.Drawing.Point(307, 128)
  467. Me.Label40.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
  468. Me.Label40.Name = "Label40"
  469. Me.Label40.Size = New System.Drawing.Size(22, 19)
  470. Me.Label40.TabIndex = 49
  471. Me.Label40.Text = "%"
  472. '
  473. 'TextBox48
  474. '
  475. Me.TextBox48.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  476. Me.TextBox48.ForeColor = System.Drawing.Color.Red
  477. Me.TextBox48.Location = New System.Drawing.Point(202, 125)
  478. Me.TextBox48.Margin = New System.Windows.Forms.Padding(4, 4, 4, 4)
  479. Me.TextBox48.Name = "TextBox48"
  480. Me.TextBox48.Size = New System.Drawing.Size(100, 27)
  481. Me.TextBox48.TabIndex = 48
  482. '
  483. 'Label39
  484. '
  485. Me.Label39.AutoSize = True
  486. Me.Label39.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  487. Me.Label39.Location = New System.Drawing.Point(307, 93)
  488. Me.Label39.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
  489. Me.Label39.Name = "Label39"
  490. Me.Label39.Size = New System.Drawing.Size(22, 19)
  491. Me.Label39.TabIndex = 47
  492. Me.Label39.Text = "%"
  493. '
  494. 'TextBox47
  495. '
  496. Me.TextBox47.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  497. Me.TextBox47.ForeColor = System.Drawing.Color.Red
  498. Me.TextBox47.Location = New System.Drawing.Point(202, 90)
  499. Me.TextBox47.Margin = New System.Windows.Forms.Padding(4, 4, 4, 4)
  500. Me.TextBox47.Name = "TextBox47"
  501. Me.TextBox47.Size = New System.Drawing.Size(100, 27)
  502. Me.TextBox47.TabIndex = 46
  503. '
  504. 'Label38
  505. '
  506. Me.Label38.AutoSize = True
  507. Me.Label38.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  508. Me.Label38.Location = New System.Drawing.Point(307, 57)
  509. Me.Label38.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
  510. Me.Label38.Name = "Label38"
  511. Me.Label38.Size = New System.Drawing.Size(22, 19)
  512. Me.Label38.TabIndex = 45
  513. Me.Label38.Text = "%"
  514. '
  515. 'TextBox46
  516. '
  517. Me.TextBox46.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  518. Me.TextBox46.ForeColor = System.Drawing.Color.Red
  519. Me.TextBox46.Location = New System.Drawing.Point(201, 55)
  520. Me.TextBox46.Margin = New System.Windows.Forms.Padding(4, 4, 4, 4)
  521. Me.TextBox46.Name = "TextBox46"
  522. Me.TextBox46.Size = New System.Drawing.Size(100, 27)
  523. Me.TextBox46.TabIndex = 44
  524. '
  525. 'Label37
  526. '
  527. Me.Label37.AutoSize = True
  528. Me.Label37.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  529. Me.Label37.Location = New System.Drawing.Point(307, 23)
  530. Me.Label37.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
  531. Me.Label37.Name = "Label37"
  532. Me.Label37.Size = New System.Drawing.Size(22, 19)
  533. Me.Label37.TabIndex = 43
  534. Me.Label37.Text = "%"
  535. '
  536. 'TextBox45
  537. '
  538. Me.TextBox45.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  539. Me.TextBox45.ForeColor = System.Drawing.Color.Red
  540. Me.TextBox45.Location = New System.Drawing.Point(201, 20)
  541. Me.TextBox45.Margin = New System.Windows.Forms.Padding(4, 4, 4, 4)
  542. Me.TextBox45.Name = "TextBox45"
  543. Me.TextBox45.Size = New System.Drawing.Size(100, 27)
  544. Me.TextBox45.TabIndex = 42
  545. '
  546. 'Label30
  547. '
  548. Me.Label30.AutoSize = True
  549. Me.Label30.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  550. Me.Label30.Location = New System.Drawing.Point(23, 373)
  551. Me.Label30.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
  552. Me.Label30.Name = "Label30"
  553. Me.Label30.Size = New System.Drawing.Size(54, 19)
  554. Me.Label30.TabIndex = 37
  555. Me.Label30.Text = "總支出"
  556. '
  557. 'TextBox39
  558. '
  559. Me.TextBox39.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  560. Me.TextBox39.ForeColor = System.Drawing.Color.Red
  561. Me.TextBox39.Location = New System.Drawing.Point(86, 335)
  562. Me.TextBox39.Margin = New System.Windows.Forms.Padding(4, 4, 4, 4)
  563. Me.TextBox39.Name = "TextBox39"
  564. Me.TextBox39.Size = New System.Drawing.Size(108, 27)
  565. Me.TextBox39.TabIndex = 37
  566. '
  567. 'Label31
  568. '
  569. Me.Label31.AutoSize = True
  570. Me.Label31.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  571. Me.Label31.Location = New System.Drawing.Point(23, 338)
  572. Me.Label31.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
  573. Me.Label31.Name = "Label31"
  574. Me.Label31.Size = New System.Drawing.Size(54, 19)
  575. Me.Label31.TabIndex = 22
  576. Me.Label31.Text = "手續費"
  577. '
  578. 'TextBox41
  579. '
  580. Me.TextBox41.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  581. Me.TextBox41.ForeColor = System.Drawing.Color.Red
  582. Me.TextBox41.Location = New System.Drawing.Point(86, 370)
  583. Me.TextBox41.Margin = New System.Windows.Forms.Padding(4, 4, 4, 4)
  584. Me.TextBox41.Name = "TextBox41"
  585. Me.TextBox41.Size = New System.Drawing.Size(108, 27)
  586. Me.TextBox41.TabIndex = 36
  587. '
  588. 'TextBox29
  589. '
  590. Me.TextBox29.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  591. Me.TextBox29.ForeColor = System.Drawing.Color.Red
  592. Me.TextBox29.Location = New System.Drawing.Point(85, 20)
  593. Me.TextBox29.Margin = New System.Windows.Forms.Padding(4, 4, 4, 4)
  594. Me.TextBox29.Name = "TextBox29"
  595. Me.TextBox29.Size = New System.Drawing.Size(108, 27)
  596. Me.TextBox29.TabIndex = 27
  597. '
  598. 'Label23
  599. '
  600. Me.Label23.AutoSize = True
  601. Me.Label23.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  602. Me.Label23.Location = New System.Drawing.Point(23, 24)
  603. Me.Label23.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
  604. Me.Label23.Name = "Label23"
  605. Me.Label23.Size = New System.Drawing.Size(54, 19)
  606. Me.Label23.TabIndex = 12
  607. Me.Label23.Text = "交通費"
  608. '
  609. 'Label22
  610. '
  611. Me.Label22.AutoSize = True
  612. Me.Label22.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  613. Me.Label22.Location = New System.Drawing.Point(23, 93)
  614. Me.Label22.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
  615. Me.Label22.Name = "Label22"
  616. Me.Label22.Size = New System.Drawing.Size(54, 19)
  617. Me.Label22.TabIndex = 13
  618. Me.Label22.Text = "伙食費"
  619. '
  620. 'TextBox37
  621. '
  622. Me.TextBox37.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  623. Me.TextBox37.ForeColor = System.Drawing.Color.Red
  624. Me.TextBox37.Location = New System.Drawing.Point(86, 300)
  625. Me.TextBox37.Margin = New System.Windows.Forms.Padding(4, 4, 4, 4)
  626. Me.TextBox37.Name = "TextBox37"
  627. Me.TextBox37.Size = New System.Drawing.Size(108, 27)
  628. Me.TextBox37.TabIndex = 35
  629. '
  630. 'Label21
  631. '
  632. Me.Label21.AutoSize = True
  633. Me.Label21.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  634. Me.Label21.Location = New System.Drawing.Point(23, 58)
  635. Me.Label21.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
  636. Me.Label21.Name = "Label21"
  637. Me.Label21.Size = New System.Drawing.Size(54, 19)
  638. Me.Label21.TabIndex = 14
  639. Me.Label21.Text = "住宿費"
  640. '
  641. 'TextBox36
  642. '
  643. Me.TextBox36.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  644. Me.TextBox36.ForeColor = System.Drawing.Color.Red
  645. Me.TextBox36.Location = New System.Drawing.Point(86, 265)
  646. Me.TextBox36.Margin = New System.Windows.Forms.Padding(4, 4, 4, 4)
  647. Me.TextBox36.Name = "TextBox36"
  648. Me.TextBox36.Size = New System.Drawing.Size(108, 27)
  649. Me.TextBox36.TabIndex = 34
  650. '
  651. 'Label26
  652. '
  653. Me.Label26.AutoSize = True
  654. Me.Label26.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  655. Me.Label26.Location = New System.Drawing.Point(23, 128)
  656. Me.Label26.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
  657. Me.Label26.Name = "Label26"
  658. Me.Label26.Size = New System.Drawing.Size(54, 19)
  659. Me.Label26.TabIndex = 15
  660. Me.Label26.Text = "娛樂費"
  661. '
  662. 'TextBox35
  663. '
  664. Me.TextBox35.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  665. Me.TextBox35.ForeColor = System.Drawing.Color.Red
  666. Me.TextBox35.Location = New System.Drawing.Point(86, 230)
  667. Me.TextBox35.Margin = New System.Windows.Forms.Padding(4, 4, 4, 4)
  668. Me.TextBox35.Name = "TextBox35"
  669. Me.TextBox35.Size = New System.Drawing.Size(108, 27)
  670. Me.TextBox35.TabIndex = 33
  671. '
  672. 'Label25
  673. '
  674. Me.Label25.AutoSize = True
  675. Me.Label25.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  676. Me.Label25.Location = New System.Drawing.Point(23, 163)
  677. Me.Label25.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
  678. Me.Label25.Name = "Label25"
  679. Me.Label25.Size = New System.Drawing.Size(54, 19)
  680. Me.Label25.TabIndex = 16
  681. Me.Label25.Text = "家用費"
  682. '
  683. 'TextBox34
  684. '
  685. Me.TextBox34.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  686. Me.TextBox34.ForeColor = System.Drawing.Color.Red
  687. Me.TextBox34.Location = New System.Drawing.Point(86, 195)
  688. Me.TextBox34.Margin = New System.Windows.Forms.Padding(4, 4, 4, 4)
  689. Me.TextBox34.Name = "TextBox34"
  690. Me.TextBox34.Size = New System.Drawing.Size(108, 27)
  691. Me.TextBox34.TabIndex = 32
  692. '
  693. 'Label24
  694. '
  695. Me.Label24.AutoSize = True
  696. Me.Label24.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  697. Me.Label24.Location = New System.Drawing.Point(23, 199)
  698. Me.Label24.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
  699. Me.Label24.Name = "Label24"
  700. Me.Label24.Size = New System.Drawing.Size(54, 19)
  701. Me.Label24.TabIndex = 17
  702. Me.Label24.Text = "醫療費"
  703. '
  704. 'TextBox33
  705. '
  706. Me.TextBox33.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  707. Me.TextBox33.ForeColor = System.Drawing.Color.Red
  708. Me.TextBox33.Location = New System.Drawing.Point(86, 160)
  709. Me.TextBox33.Margin = New System.Windows.Forms.Padding(4, 4, 4, 4)
  710. Me.TextBox33.Name = "TextBox33"
  711. Me.TextBox33.Size = New System.Drawing.Size(108, 27)
  712. Me.TextBox33.TabIndex = 31
  713. '
  714. 'Label29
  715. '
  716. Me.Label29.AutoSize = True
  717. Me.Label29.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  718. Me.Label29.Location = New System.Drawing.Point(23, 233)
  719. Me.Label29.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
  720. Me.Label29.Name = "Label29"
  721. Me.Label29.Size = New System.Drawing.Size(54, 19)
  722. Me.Label29.TabIndex = 18
  723. Me.Label29.Text = "務公費"
  724. '
  725. 'TextBox32
  726. '
  727. Me.TextBox32.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  728. Me.TextBox32.ForeColor = System.Drawing.Color.Red
  729. Me.TextBox32.Location = New System.Drawing.Point(86, 125)
  730. Me.TextBox32.Margin = New System.Windows.Forms.Padding(4, 4, 4, 4)
  731. Me.TextBox32.Name = "TextBox32"
  732. Me.TextBox32.Size = New System.Drawing.Size(108, 27)
  733. Me.TextBox32.TabIndex = 30
  734. '
  735. 'Label28
  736. '
  737. Me.Label28.AutoSize = True
  738. Me.Label28.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  739. Me.Label28.Location = New System.Drawing.Point(23, 268)
  740. Me.Label28.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
  741. Me.Label28.Name = "Label28"
  742. Me.Label28.Size = New System.Drawing.Size(54, 19)
  743. Me.Label28.TabIndex = 19
  744. Me.Label28.Text = "交際費"
  745. '
  746. 'TextBox31
  747. '
  748. Me.TextBox31.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  749. Me.TextBox31.ForeColor = System.Drawing.Color.Red
  750. Me.TextBox31.Location = New System.Drawing.Point(86, 90)
  751. Me.TextBox31.Margin = New System.Windows.Forms.Padding(4, 4, 4, 4)
  752. Me.TextBox31.Name = "TextBox31"
  753. Me.TextBox31.Size = New System.Drawing.Size(108, 27)
  754. Me.TextBox31.TabIndex = 29
  755. '
  756. 'Label27
  757. '
  758. Me.Label27.AutoSize = True
  759. Me.Label27.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  760. Me.Label27.Location = New System.Drawing.Point(8, 303)
  761. Me.Label27.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
  762. Me.Label27.Name = "Label27"
  763. Me.Label27.Size = New System.Drawing.Size(69, 19)
  764. Me.Label27.TabIndex = 20
  765. Me.Label27.Text = "其他支出"
  766. '
  767. 'TextBox30
  768. '
  769. Me.TextBox30.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  770. Me.TextBox30.ForeColor = System.Drawing.Color.Red
  771. Me.TextBox30.Location = New System.Drawing.Point(85, 55)
  772. Me.TextBox30.Margin = New System.Windows.Forms.Padding(4, 4, 4, 4)
  773. Me.TextBox30.Name = "TextBox30"
  774. Me.TextBox30.Size = New System.Drawing.Size(108, 27)
  775. Me.TextBox30.TabIndex = 28
  776. '
  777. 'GroupBox4
  778. '
  779. Me.GroupBox4.Controls.Add(Me.Label36)
  780. Me.GroupBox4.Controls.Add(Me.TextBox44)
  781. Me.GroupBox4.Controls.Add(Me.Label35)
  782. Me.GroupBox4.Controls.Add(Me.TextBox43)
  783. Me.GroupBox4.Controls.Add(Me.Label34)
  784. Me.GroupBox4.Controls.Add(Me.TextBox42)
  785. Me.GroupBox4.Controls.Add(Me.Label33)
  786. Me.GroupBox4.Controls.Add(Me.Label18)
  787. Me.GroupBox4.Controls.Add(Me.TextBox40)
  788. Me.GroupBox4.Controls.Add(Me.Label19)
  789. Me.GroupBox4.Controls.Add(Me.Label20)
  790. Me.GroupBox4.Controls.Add(Me.TextBox26)
  791. Me.GroupBox4.Controls.Add(Me.TextBox27)
  792. Me.GroupBox4.Controls.Add(Me.TextBox28)
  793. Me.GroupBox4.Location = New System.Drawing.Point(8, 28)
  794. Me.GroupBox4.Margin = New System.Windows.Forms.Padding(4, 4, 4, 4)
  795. Me.GroupBox4.Name = "GroupBox4"
  796. Me.GroupBox4.Padding = New System.Windows.Forms.Padding(4, 4, 4, 4)
  797. Me.GroupBox4.Size = New System.Drawing.Size(335, 162)
  798. Me.GroupBox4.TabIndex = 39
  799. Me.GroupBox4.TabStop = False
  800. Me.GroupBox4.Text = "收入"
  801. '
  802. 'Label36
  803. '
  804. Me.Label36.AutoSize = True
  805. Me.Label36.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  806. Me.Label36.Location = New System.Drawing.Point(307, 94)
  807. Me.Label36.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
  808. Me.Label36.Name = "Label36"
  809. Me.Label36.Size = New System.Drawing.Size(22, 19)
  810. Me.Label36.TabIndex = 45
  811. Me.Label36.Text = "%"
  812. '
  813. 'TextBox44
  814. '
  815. Me.TextBox44.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  816. Me.TextBox44.ForeColor = System.Drawing.Color.Blue
  817. Me.TextBox44.Location = New System.Drawing.Point(199, 91)
  818. Me.TextBox44.Margin = New System.Windows.Forms.Padding(4, 4, 4, 4)
  819. Me.TextBox44.Name = "TextBox44"
  820. Me.TextBox44.Size = New System.Drawing.Size(100, 27)
  821. Me.TextBox44.TabIndex = 44
  822. '
  823. 'Label35
  824. '
  825. Me.Label35.AutoSize = True
  826. Me.Label35.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  827. Me.Label35.Location = New System.Drawing.Point(307, 59)
  828. Me.Label35.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
  829. Me.Label35.Name = "Label35"
  830. Me.Label35.Size = New System.Drawing.Size(22, 19)
  831. Me.Label35.TabIndex = 43
  832. Me.Label35.Text = "%"
  833. '
  834. 'TextBox43
  835. '
  836. Me.TextBox43.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  837. Me.TextBox43.ForeColor = System.Drawing.Color.Blue
  838. Me.TextBox43.Location = New System.Drawing.Point(199, 56)
  839. Me.TextBox43.Margin = New System.Windows.Forms.Padding(4, 4, 4, 4)
  840. Me.TextBox43.Name = "TextBox43"
  841. Me.TextBox43.Size = New System.Drawing.Size(100, 27)
  842. Me.TextBox43.TabIndex = 42
  843. '
  844. 'Label34
  845. '
  846. Me.Label34.AutoSize = True
  847. Me.Label34.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  848. Me.Label34.Location = New System.Drawing.Point(307, 24)
  849. Me.Label34.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
  850. Me.Label34.Name = "Label34"
  851. Me.Label34.Size = New System.Drawing.Size(22, 19)
  852. Me.Label34.TabIndex = 41
  853. Me.Label34.Text = "%"
  854. '
  855. 'TextBox42
  856. '
  857. Me.TextBox42.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  858. Me.TextBox42.ForeColor = System.Drawing.Color.Blue
  859. Me.TextBox42.Location = New System.Drawing.Point(199, 21)
  860. Me.TextBox42.Margin = New System.Windows.Forms.Padding(4, 4, 4, 4)
  861. Me.TextBox42.Name = "TextBox42"
  862. Me.TextBox42.Size = New System.Drawing.Size(100, 27)
  863. Me.TextBox42.TabIndex = 40
  864. '
  865. 'Label33
  866. '
  867. Me.Label33.AutoSize = True
  868. Me.Label33.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  869. Me.Label33.Location = New System.Drawing.Point(23, 129)
  870. Me.Label33.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
  871. Me.Label33.Name = "Label33"
  872. Me.Label33.Size = New System.Drawing.Size(54, 19)
  873. Me.Label33.TabIndex = 39
  874. Me.Label33.Text = "總收入"
  875. '
  876. 'Label18
  877. '
  878. Me.Label18.AutoSize = True
  879. Me.Label18.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  880. Me.Label18.Location = New System.Drawing.Point(8, 24)
  881. Me.Label18.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
  882. Me.Label18.Name = "Label18"
  883. Me.Label18.Size = New System.Drawing.Size(69, 19)
  884. Me.Label18.TabIndex = 9
  885. Me.Label18.Text = "薪資收入"
  886. '
  887. 'TextBox40
  888. '
  889. Me.TextBox40.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  890. Me.TextBox40.ForeColor = System.Drawing.Color.Blue
  891. Me.TextBox40.Location = New System.Drawing.Point(86, 126)
  892. Me.TextBox40.Margin = New System.Windows.Forms.Padding(4, 4, 4, 4)
  893. Me.TextBox40.Name = "TextBox40"
  894. Me.TextBox40.Size = New System.Drawing.Size(105, 27)
  895. Me.TextBox40.TabIndex = 38
  896. '
  897. 'Label19
  898. '
  899. Me.Label19.AutoSize = True
  900. Me.Label19.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  901. Me.Label19.Location = New System.Drawing.Point(8, 59)
  902. Me.Label19.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
  903. Me.Label19.Name = "Label19"
  904. Me.Label19.Size = New System.Drawing.Size(69, 19)
  905. Me.Label19.TabIndex = 10
  906. Me.Label19.Text = "其他收入"
  907. '
  908. 'Label20
  909. '
  910. Me.Label20.AutoSize = True
  911. Me.Label20.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  912. Me.Label20.Location = New System.Drawing.Point(38, 94)
  913. Me.Label20.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
  914. Me.Label20.Name = "Label20"
  915. Me.Label20.Size = New System.Drawing.Size(39, 19)
  916. Me.Label20.TabIndex = 11
  917. Me.Label20.Text = "利息"
  918. '
  919. 'TextBox26
  920. '
  921. Me.TextBox26.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  922. Me.TextBox26.ForeColor = System.Drawing.Color.Blue
  923. Me.TextBox26.Location = New System.Drawing.Point(85, 21)
  924. Me.TextBox26.Margin = New System.Windows.Forms.Padding(4, 4, 4, 4)
  925. Me.TextBox26.Name = "TextBox26"
  926. Me.TextBox26.Size = New System.Drawing.Size(105, 27)
  927. Me.TextBox26.TabIndex = 24
  928. '
  929. 'TextBox27
  930. '
  931. Me.TextBox27.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  932. Me.TextBox27.ForeColor = System.Drawing.Color.Blue
  933. Me.TextBox27.Location = New System.Drawing.Point(86, 56)
  934. Me.TextBox27.Margin = New System.Windows.Forms.Padding(4, 4, 4, 4)
  935. Me.TextBox27.Name = "TextBox27"
  936. Me.TextBox27.Size = New System.Drawing.Size(105, 27)
  937. Me.TextBox27.TabIndex = 25
  938. '
  939. 'TextBox28
  940. '
  941. Me.TextBox28.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  942. Me.TextBox28.ForeColor = System.Drawing.Color.Blue
  943. Me.TextBox28.Location = New System.Drawing.Point(86, 91)
  944. Me.TextBox28.Margin = New System.Windows.Forms.Padding(4, 4, 4, 4)
  945. Me.TextBox28.Name = "TextBox28"
  946. Me.TextBox28.Size = New System.Drawing.Size(105, 27)
  947. Me.TextBox28.TabIndex = 26
  948. '
  949. 'GroupBox9
  950. '
  951. Me.GroupBox9.Controls.Add(Me.Button1)
  952. Me.GroupBox9.Controls.Add(Me.Button2)
  953. Me.GroupBox9.Controls.Add(Me.Label59)
  954. Me.GroupBox9.Controls.Add(Me.DateTimePicker2)
  955. Me.GroupBox9.Controls.Add(Me.DateTimePicker1)
  956. Me.GroupBox9.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  957. Me.GroupBox9.Location = New System.Drawing.Point(16, 15)
  958. Me.GroupBox9.Margin = New System.Windows.Forms.Padding(4, 4, 4, 4)
  959. Me.GroupBox9.Name = "GroupBox9"
  960. Me.GroupBox9.Padding = New System.Windows.Forms.Padding(4, 4, 4, 4)
  961. Me.GroupBox9.Size = New System.Drawing.Size(586, 60)
  962. Me.GroupBox9.TabIndex = 53
  963. Me.GroupBox9.TabStop = False
  964. Me.GroupBox9.Text = "控制項"
  965. '
  966. 'Button1
  967. '
  968. Me.Button1.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  969. Me.Button1.ForeColor = System.Drawing.Color.Blue
  970. Me.Button1.Location = New System.Drawing.Point(347, 25)
  971. Me.Button1.Margin = New System.Windows.Forms.Padding(4, 4, 4, 4)
  972. Me.Button1.Name = "Button1"
  973. Me.Button1.Size = New System.Drawing.Size(111, 28)
  974. Me.Button1.TabIndex = 54
  975. Me.Button1.Text = "查詢"
  976. Me.Button1.UseVisualStyleBackColor = True
  977. '
  978. 'Button2
  979. '
  980. Me.Button2.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  981. Me.Button2.ForeColor = System.Drawing.Color.Red
  982. Me.Button2.Location = New System.Drawing.Point(466, 25)
  983. Me.Button2.Margin = New System.Windows.Forms.Padding(4, 4, 4, 4)
  984. Me.Button2.Name = "Button2"
  985. Me.Button2.Size = New System.Drawing.Size(111, 28)
  986. Me.Button2.TabIndex = 55
  987. Me.Button2.Text = "清空"
  988. Me.Button2.UseVisualStyleBackColor = True
  989. '
  990. 'Label59
  991. '
  992. Me.Label59.AutoSize = True
  993. Me.Label59.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  994. Me.Label59.Location = New System.Drawing.Point(162, 30)
  995. Me.Label59.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
  996. Me.Label59.Name = "Label59"
  997. Me.Label59.Size = New System.Drawing.Size(24, 19)
  998. Me.Label59.TabIndex = 19
  999. Me.Label59.Text = "至"
  1000. '
  1001. 'DateTimePicker2
  1002. '
  1003. Me.DateTimePicker2.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1004. Me.DateTimePicker2.Format = System.Windows.Forms.DateTimePickerFormat.[Short]
  1005. Me.DateTimePicker2.Location = New System.Drawing.Point(194, 26)
  1006. Me.DateTimePicker2.Margin = New System.Windows.Forms.Padding(4, 4, 4, 4)
  1007. Me.DateTimePicker2.Name = "DateTimePicker2"
  1008. Me.DateTimePicker2.Size = New System.Drawing.Size(145, 27)
  1009. Me.DateTimePicker2.TabIndex = 18
  1010. '
  1011. 'DateTimePicker1
  1012. '
  1013. Me.DateTimePicker1.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1014. Me.DateTimePicker1.Format = System.Windows.Forms.DateTimePickerFormat.[Short]
  1015. Me.DateTimePicker1.Location = New System.Drawing.Point(9, 26)
  1016. Me.DateTimePicker1.Margin = New System.Windows.Forms.Padding(4, 4, 4, 4)
  1017. Me.DateTimePicker1.Name = "DateTimePicker1"
  1018. Me.DateTimePicker1.Size = New System.Drawing.Size(145, 27)
  1019. Me.DateTimePicker1.TabIndex = 17
  1020. '
  1021. 'TextBox59
  1022. '
  1023. Me.TextBox59.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1024. Me.TextBox59.ForeColor = System.Drawing.Color.Blue
  1025. Me.TextBox59.Location = New System.Drawing.Point(55, 26)
  1026. Me.TextBox59.Margin = New System.Windows.Forms.Padding(4, 4, 4, 4)
  1027. Me.TextBox59.Name = "TextBox59"
  1028. Me.TextBox59.Size = New System.Drawing.Size(140, 27)
  1029. Me.TextBox59.TabIndex = 54
  1030. '
  1031. 'GroupBox10
  1032. '
  1033. Me.GroupBox10.Controls.Add(Me.Label60)
  1034. Me.GroupBox10.Controls.Add(Me.TextBox59)
  1035. Me.GroupBox10.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1036. Me.GroupBox10.Location = New System.Drawing.Point(635, 15)
  1037. Me.GroupBox10.Margin = New System.Windows.Forms.Padding(4, 4, 4, 4)
  1038. Me.GroupBox10.Name = "GroupBox10"
  1039. Me.GroupBox10.Padding = New System.Windows.Forms.Padding(4, 4, 4, 4)
  1040. Me.GroupBox10.Size = New System.Drawing.Size(207, 60)
  1041. Me.GroupBox10.TabIndex = 55
  1042. Me.GroupBox10.TabStop = False
  1043. Me.GroupBox10.Text = "人民幣兌台幣"
  1044. '
  1045. 'Label60
  1046. '
  1047. Me.Label60.AutoSize = True
  1048. Me.Label60.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1049. Me.Label60.Location = New System.Drawing.Point(8, 31)
  1050. Me.Label60.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
  1051. Me.Label60.Name = "Label60"
  1052. Me.Label60.Size = New System.Drawing.Size(39, 19)
  1053. Me.Label60.TabIndex = 12
  1054. Me.Label60.Text = "匯率"
  1055. '
  1056. 'GroupBox1
  1057. '
  1058. Me.GroupBox1.Controls.Add(Me.GroupBox2)
  1059. Me.GroupBox1.Controls.Add(Me.GroupBox7)
  1060. Me.GroupBox1.Controls.Add(Me.GroupBox8)
  1061. Me.GroupBox1.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1062. Me.GroupBox1.Location = New System.Drawing.Point(376, 83)
  1063. Me.GroupBox1.Margin = New System.Windows.Forms.Padding(4, 4, 4, 4)
  1064. Me.GroupBox1.Name = "GroupBox1"
  1065. Me.GroupBox1.Padding = New System.Windows.Forms.Padding(4, 4, 4, 4)
  1066. Me.GroupBox1.Size = New System.Drawing.Size(352, 674)
  1067. Me.GroupBox1.TabIndex = 56
  1068. Me.GroupBox1.TabStop = False
  1069. Me.GroupBox1.Text = "人民幣統計"
  1070. '
  1071. 'GroupBox2
  1072. '
  1073. Me.GroupBox2.Controls.Add(Me.Label1)
  1074. Me.GroupBox2.Controls.Add(Me.TextBox1)
  1075. Me.GroupBox2.Location = New System.Drawing.Point(8, 610)
  1076. Me.GroupBox2.Margin = New System.Windows.Forms.Padding(4, 4, 4, 4)
  1077. Me.GroupBox2.Name = "GroupBox2"
  1078. Me.GroupBox2.Padding = New System.Windows.Forms.Padding(4, 4, 4, 4)
  1079. Me.GroupBox2.Size = New System.Drawing.Size(335, 55)
  1080. Me.GroupBox2.TabIndex = 52
  1081. Me.GroupBox2.TabStop = False
  1082. Me.GroupBox2.Text = "資產"
  1083. '
  1084. 'Label1
  1085. '
  1086. Me.Label1.AutoSize = True
  1087. Me.Label1.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1088. Me.Label1.Location = New System.Drawing.Point(9, 24)
  1089. Me.Label1.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
  1090. Me.Label1.Name = "Label1"
  1091. Me.Label1.Size = New System.Drawing.Size(69, 19)
  1092. Me.Label1.TabIndex = 54
  1093. Me.Label1.Text = "目前餘額"
  1094. '
  1095. 'TextBox1
  1096. '
  1097. Me.TextBox1.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1098. Me.TextBox1.ForeColor = System.Drawing.Color.Green
  1099. Me.TextBox1.Location = New System.Drawing.Point(86, 21)
  1100. Me.TextBox1.Margin = New System.Windows.Forms.Padding(4, 4, 4, 4)
  1101. Me.TextBox1.Name = "TextBox1"
  1102. Me.TextBox1.Size = New System.Drawing.Size(220, 27)
  1103. Me.TextBox1.TabIndex = 36
  1104. '
  1105. 'GroupBox7
  1106. '
  1107. Me.GroupBox7.Controls.Add(Me.Label2)
  1108. Me.GroupBox7.Controls.Add(Me.TextBox2)
  1109. Me.GroupBox7.Controls.Add(Me.Label3)
  1110. Me.GroupBox7.Controls.Add(Me.TextBox3)
  1111. Me.GroupBox7.Controls.Add(Me.Label4)
  1112. Me.GroupBox7.Controls.Add(Me.TextBox4)
  1113. Me.GroupBox7.Controls.Add(Me.Label5)
  1114. Me.GroupBox7.Controls.Add(Me.TextBox5)
  1115. Me.GroupBox7.Controls.Add(Me.Label6)
  1116. Me.GroupBox7.Controls.Add(Me.TextBox6)
  1117. Me.GroupBox7.Controls.Add(Me.Label7)
  1118. Me.GroupBox7.Controls.Add(Me.TextBox7)
  1119. Me.GroupBox7.Controls.Add(Me.Label8)
  1120. Me.GroupBox7.Controls.Add(Me.TextBox8)
  1121. Me.GroupBox7.Controls.Add(Me.Label9)
  1122. Me.GroupBox7.Controls.Add(Me.TextBox9)
  1123. Me.GroupBox7.Controls.Add(Me.Label10)
  1124. Me.GroupBox7.Controls.Add(Me.TextBox10)
  1125. Me.GroupBox7.Controls.Add(Me.Label11)
  1126. Me.GroupBox7.Controls.Add(Me.TextBox11)
  1127. Me.GroupBox7.Controls.Add(Me.Label12)
  1128. Me.GroupBox7.Controls.Add(Me.TextBox12)
  1129. Me.GroupBox7.Controls.Add(Me.Label13)
  1130. Me.GroupBox7.Controls.Add(Me.TextBox13)
  1131. Me.GroupBox7.Controls.Add(Me.TextBox14)
  1132. Me.GroupBox7.Controls.Add(Me.Label14)
  1133. Me.GroupBox7.Controls.Add(Me.Label15)
  1134. Me.GroupBox7.Controls.Add(Me.TextBox15)
  1135. Me.GroupBox7.Controls.Add(Me.Label16)
  1136. Me.GroupBox7.Controls.Add(Me.TextBox16)
  1137. Me.GroupBox7.Controls.Add(Me.Label17)
  1138. Me.GroupBox7.Controls.Add(Me.TextBox17)
  1139. Me.GroupBox7.Controls.Add(Me.Label32)
  1140. Me.GroupBox7.Controls.Add(Me.TextBox18)
  1141. Me.GroupBox7.Controls.Add(Me.Label48)
  1142. Me.GroupBox7.Controls.Add(Me.TextBox19)
  1143. Me.GroupBox7.Controls.Add(Me.Label49)
  1144. Me.GroupBox7.Controls.Add(Me.TextBox20)
  1145. Me.GroupBox7.Controls.Add(Me.Label50)
  1146. Me.GroupBox7.Controls.Add(Me.TextBox21)
  1147. Me.GroupBox7.Controls.Add(Me.Label51)
  1148. Me.GroupBox7.Controls.Add(Me.TextBox22)
  1149. Me.GroupBox7.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1150. Me.GroupBox7.Location = New System.Drawing.Point(9, 198)
  1151. Me.GroupBox7.Margin = New System.Windows.Forms.Padding(4, 4, 4, 4)
  1152. Me.GroupBox7.Name = "GroupBox7"
  1153. Me.GroupBox7.Padding = New System.Windows.Forms.Padding(4, 4, 4, 4)
  1154. Me.GroupBox7.Size = New System.Drawing.Size(335, 404)
  1155. Me.GroupBox7.TabIndex = 51
  1156. Me.GroupBox7.TabStop = False
  1157. Me.GroupBox7.Text = "支出"
  1158. '
  1159. 'Label2
  1160. '
  1161. Me.Label2.AutoSize = True
  1162. Me.Label2.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1163. Me.Label2.Location = New System.Drawing.Point(308, 339)
  1164. Me.Label2.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
  1165. Me.Label2.Name = "Label2"
  1166. Me.Label2.Size = New System.Drawing.Size(22, 19)
  1167. Me.Label2.TabIndex = 61
  1168. Me.Label2.Text = "%"
  1169. '
  1170. 'TextBox2
  1171. '
  1172. Me.TextBox2.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1173. Me.TextBox2.ForeColor = System.Drawing.Color.Red
  1174. Me.TextBox2.Location = New System.Drawing.Point(201, 335)
  1175. Me.TextBox2.Margin = New System.Windows.Forms.Padding(4, 4, 4, 4)
  1176. Me.TextBox2.Name = "TextBox2"
  1177. Me.TextBox2.Size = New System.Drawing.Size(100, 27)
  1178. Me.TextBox2.TabIndex = 60
  1179. '
  1180. 'Label3
  1181. '
  1182. Me.Label3.AutoSize = True
  1183. Me.Label3.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1184. Me.Label3.Location = New System.Drawing.Point(308, 305)
  1185. Me.Label3.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
  1186. Me.Label3.Name = "Label3"
  1187. Me.Label3.Size = New System.Drawing.Size(22, 19)
  1188. Me.Label3.TabIndex = 59
  1189. Me.Label3.Text = "%"
  1190. '
  1191. 'TextBox3
  1192. '
  1193. Me.TextBox3.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1194. Me.TextBox3.ForeColor = System.Drawing.Color.Red
  1195. Me.TextBox3.Location = New System.Drawing.Point(201, 300)
  1196. Me.TextBox3.Margin = New System.Windows.Forms.Padding(4, 4, 4, 4)
  1197. Me.TextBox3.Name = "TextBox3"
  1198. Me.TextBox3.Size = New System.Drawing.Size(100, 27)
  1199. Me.TextBox3.TabIndex = 58
  1200. '
  1201. 'Label4
  1202. '
  1203. Me.Label4.AutoSize = True
  1204. Me.Label4.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1205. Me.Label4.Location = New System.Drawing.Point(308, 269)
  1206. Me.Label4.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
  1207. Me.Label4.Name = "Label4"
  1208. Me.Label4.Size = New System.Drawing.Size(22, 19)
  1209. Me.Label4.TabIndex = 57
  1210. Me.Label4.Text = "%"
  1211. '
  1212. 'TextBox4
  1213. '
  1214. Me.TextBox4.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1215. Me.TextBox4.ForeColor = System.Drawing.Color.Red
  1216. Me.TextBox4.Location = New System.Drawing.Point(201, 264)
  1217. Me.TextBox4.Margin = New System.Windows.Forms.Padding(4, 4, 4, 4)
  1218. Me.TextBox4.Name = "TextBox4"
  1219. Me.TextBox4.Size = New System.Drawing.Size(100, 27)
  1220. Me.TextBox4.TabIndex = 56
  1221. '
  1222. 'Label5
  1223. '
  1224. Me.Label5.AutoSize = True
  1225. Me.Label5.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1226. Me.Label5.Location = New System.Drawing.Point(307, 233)
  1227. Me.Label5.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
  1228. Me.Label5.Name = "Label5"
  1229. Me.Label5.Size = New System.Drawing.Size(22, 19)
  1230. Me.Label5.TabIndex = 55
  1231. Me.Label5.Text = "%"
  1232. '
  1233. 'TextBox5
  1234. '
  1235. Me.TextBox5.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1236. Me.TextBox5.ForeColor = System.Drawing.Color.Red
  1237. Me.TextBox5.Location = New System.Drawing.Point(201, 230)
  1238. Me.TextBox5.Margin = New System.Windows.Forms.Padding(4, 4, 4, 4)
  1239. Me.TextBox5.Name = "TextBox5"
  1240. Me.TextBox5.Size = New System.Drawing.Size(100, 27)
  1241. Me.TextBox5.TabIndex = 54
  1242. '
  1243. 'Label6
  1244. '
  1245. Me.Label6.AutoSize = True
  1246. Me.Label6.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1247. Me.Label6.Location = New System.Drawing.Point(306, 200)
  1248. Me.Label6.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
  1249. Me.Label6.Name = "Label6"
  1250. Me.Label6.Size = New System.Drawing.Size(22, 19)
  1251. Me.Label6.TabIndex = 53
  1252. Me.Label6.Text = "%"
  1253. '
  1254. 'TextBox6
  1255. '
  1256. Me.TextBox6.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1257. Me.TextBox6.ForeColor = System.Drawing.Color.Red
  1258. Me.TextBox6.Location = New System.Drawing.Point(201, 195)
  1259. Me.TextBox6.Margin = New System.Windows.Forms.Padding(4, 4, 4, 4)
  1260. Me.TextBox6.Name = "TextBox6"
  1261. Me.TextBox6.Size = New System.Drawing.Size(100, 27)
  1262. Me.TextBox6.TabIndex = 52
  1263. '
  1264. 'Label7
  1265. '
  1266. Me.Label7.AutoSize = True
  1267. Me.Label7.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1268. Me.Label7.Location = New System.Drawing.Point(306, 165)
  1269. Me.Label7.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
  1270. Me.Label7.Name = "Label7"
  1271. Me.Label7.Size = New System.Drawing.Size(22, 19)
  1272. Me.Label7.TabIndex = 51
  1273. Me.Label7.Text = "%"
  1274. '
  1275. 'TextBox7
  1276. '
  1277. Me.TextBox7.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1278. Me.TextBox7.ForeColor = System.Drawing.Color.Red
  1279. Me.TextBox7.Location = New System.Drawing.Point(201, 160)
  1280. Me.TextBox7.Margin = New System.Windows.Forms.Padding(4, 4, 4, 4)
  1281. Me.TextBox7.Name = "TextBox7"
  1282. Me.TextBox7.Size = New System.Drawing.Size(100, 27)
  1283. Me.TextBox7.TabIndex = 50
  1284. '
  1285. 'Label8
  1286. '
  1287. Me.Label8.AutoSize = True
  1288. Me.Label8.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1289. Me.Label8.Location = New System.Drawing.Point(306, 130)
  1290. Me.Label8.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
  1291. Me.Label8.Name = "Label8"
  1292. Me.Label8.Size = New System.Drawing.Size(22, 19)
  1293. Me.Label8.TabIndex = 49
  1294. Me.Label8.Text = "%"
  1295. '
  1296. 'TextBox8
  1297. '
  1298. Me.TextBox8.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1299. Me.TextBox8.ForeColor = System.Drawing.Color.Red
  1300. Me.TextBox8.Location = New System.Drawing.Point(201, 125)
  1301. Me.TextBox8.Margin = New System.Windows.Forms.Padding(4, 4, 4, 4)
  1302. Me.TextBox8.Name = "TextBox8"
  1303. Me.TextBox8.Size = New System.Drawing.Size(100, 27)
  1304. Me.TextBox8.TabIndex = 48
  1305. '
  1306. 'Label9
  1307. '
  1308. Me.Label9.AutoSize = True
  1309. Me.Label9.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1310. Me.Label9.Location = New System.Drawing.Point(309, 94)
  1311. Me.Label9.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
  1312. Me.Label9.Name = "Label9"
  1313. Me.Label9.Size = New System.Drawing.Size(22, 19)
  1314. Me.Label9.TabIndex = 47
  1315. Me.Label9.Text = "%"
  1316. '
  1317. 'TextBox9
  1318. '
  1319. Me.TextBox9.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1320. Me.TextBox9.ForeColor = System.Drawing.Color.Red
  1321. Me.TextBox9.Location = New System.Drawing.Point(201, 90)
  1322. Me.TextBox9.Margin = New System.Windows.Forms.Padding(4, 4, 4, 4)
  1323. Me.TextBox9.Name = "TextBox9"
  1324. Me.TextBox9.Size = New System.Drawing.Size(100, 27)
  1325. Me.TextBox9.TabIndex = 46
  1326. '
  1327. 'Label10
  1328. '
  1329. Me.Label10.AutoSize = True
  1330. Me.Label10.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1331. Me.Label10.Location = New System.Drawing.Point(309, 59)
  1332. Me.Label10.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
  1333. Me.Label10.Name = "Label10"
  1334. Me.Label10.Size = New System.Drawing.Size(22, 19)
  1335. Me.Label10.TabIndex = 45
  1336. Me.Label10.Text = "%"
  1337. '
  1338. 'TextBox10
  1339. '
  1340. Me.TextBox10.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1341. Me.TextBox10.ForeColor = System.Drawing.Color.Red
  1342. Me.TextBox10.Location = New System.Drawing.Point(201, 55)
  1343. Me.TextBox10.Margin = New System.Windows.Forms.Padding(4, 4, 4, 4)
  1344. Me.TextBox10.Name = "TextBox10"
  1345. Me.TextBox10.Size = New System.Drawing.Size(100, 27)
  1346. Me.TextBox10.TabIndex = 44
  1347. '
  1348. 'Label11
  1349. '
  1350. Me.Label11.AutoSize = True
  1351. Me.Label11.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1352. Me.Label11.Location = New System.Drawing.Point(306, 24)
  1353. Me.Label11.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
  1354. Me.Label11.Name = "Label11"
  1355. Me.Label11.Size = New System.Drawing.Size(22, 19)
  1356. Me.Label11.TabIndex = 43
  1357. Me.Label11.Text = "%"
  1358. '
  1359. 'TextBox11
  1360. '
  1361. Me.TextBox11.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1362. Me.TextBox11.ForeColor = System.Drawing.Color.Red
  1363. Me.TextBox11.Location = New System.Drawing.Point(201, 21)
  1364. Me.TextBox11.Margin = New System.Windows.Forms.Padding(4, 4, 4, 4)
  1365. Me.TextBox11.Name = "TextBox11"
  1366. Me.TextBox11.Size = New System.Drawing.Size(100, 27)
  1367. Me.TextBox11.TabIndex = 42
  1368. '
  1369. 'Label12
  1370. '
  1371. Me.Label12.AutoSize = True
  1372. Me.Label12.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1373. Me.Label12.Location = New System.Drawing.Point(23, 373)
  1374. Me.Label12.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
  1375. Me.Label12.Name = "Label12"
  1376. Me.Label12.Size = New System.Drawing.Size(54, 19)
  1377. Me.Label12.TabIndex = 37
  1378. Me.Label12.Text = "總支出"
  1379. '
  1380. 'TextBox12
  1381. '
  1382. Me.TextBox12.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1383. Me.TextBox12.ForeColor = System.Drawing.Color.Red
  1384. Me.TextBox12.Location = New System.Drawing.Point(85, 335)
  1385. Me.TextBox12.Margin = New System.Windows.Forms.Padding(4, 4, 4, 4)
  1386. Me.TextBox12.Name = "TextBox12"
  1387. Me.TextBox12.Size = New System.Drawing.Size(108, 27)
  1388. Me.TextBox12.TabIndex = 37
  1389. '
  1390. 'Label13
  1391. '
  1392. Me.Label13.AutoSize = True
  1393. Me.Label13.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1394. Me.Label13.Location = New System.Drawing.Point(23, 339)
  1395. Me.Label13.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
  1396. Me.Label13.Name = "Label13"
  1397. Me.Label13.Size = New System.Drawing.Size(54, 19)
  1398. Me.Label13.TabIndex = 22
  1399. Me.Label13.Text = "手續費"
  1400. '
  1401. 'TextBox13
  1402. '
  1403. Me.TextBox13.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1404. Me.TextBox13.ForeColor = System.Drawing.Color.Red
  1405. Me.TextBox13.Location = New System.Drawing.Point(85, 370)
  1406. Me.TextBox13.Margin = New System.Windows.Forms.Padding(4, 4, 4, 4)
  1407. Me.TextBox13.Name = "TextBox13"
  1408. Me.TextBox13.Size = New System.Drawing.Size(108, 27)
  1409. Me.TextBox13.TabIndex = 36
  1410. '
  1411. 'TextBox14
  1412. '
  1413. Me.TextBox14.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1414. Me.TextBox14.ForeColor = System.Drawing.Color.Red
  1415. Me.TextBox14.Location = New System.Drawing.Point(85, 20)
  1416. Me.TextBox14.Margin = New System.Windows.Forms.Padding(4, 4, 4, 4)
  1417. Me.TextBox14.Name = "TextBox14"
  1418. Me.TextBox14.Size = New System.Drawing.Size(108, 27)
  1419. Me.TextBox14.TabIndex = 27
  1420. '
  1421. 'Label14
  1422. '
  1423. Me.Label14.AutoSize = True
  1424. Me.Label14.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1425. Me.Label14.Location = New System.Drawing.Point(23, 24)
  1426. Me.Label14.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
  1427. Me.Label14.Name = "Label14"
  1428. Me.Label14.Size = New System.Drawing.Size(54, 19)
  1429. Me.Label14.TabIndex = 12
  1430. Me.Label14.Text = "交通費"
  1431. '
  1432. 'Label15
  1433. '
  1434. Me.Label15.AutoSize = True
  1435. Me.Label15.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1436. Me.Label15.Location = New System.Drawing.Point(23, 93)
  1437. Me.Label15.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
  1438. Me.Label15.Name = "Label15"
  1439. Me.Label15.Size = New System.Drawing.Size(54, 19)
  1440. Me.Label15.TabIndex = 13
  1441. Me.Label15.Text = "伙食費"
  1442. '
  1443. 'TextBox15
  1444. '
  1445. Me.TextBox15.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1446. Me.TextBox15.ForeColor = System.Drawing.Color.Red
  1447. Me.TextBox15.Location = New System.Drawing.Point(85, 300)
  1448. Me.TextBox15.Margin = New System.Windows.Forms.Padding(4, 4, 4, 4)
  1449. Me.TextBox15.Name = "TextBox15"
  1450. Me.TextBox15.Size = New System.Drawing.Size(108, 27)
  1451. Me.TextBox15.TabIndex = 35
  1452. '
  1453. 'Label16
  1454. '
  1455. Me.Label16.AutoSize = True
  1456. Me.Label16.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1457. Me.Label16.Location = New System.Drawing.Point(23, 59)
  1458. Me.Label16.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
  1459. Me.Label16.Name = "Label16"
  1460. Me.Label16.Size = New System.Drawing.Size(54, 19)
  1461. Me.Label16.TabIndex = 14
  1462. Me.Label16.Text = "住宿費"
  1463. '
  1464. 'TextBox16
  1465. '
  1466. Me.TextBox16.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1467. Me.TextBox16.ForeColor = System.Drawing.Color.Red
  1468. Me.TextBox16.Location = New System.Drawing.Point(85, 265)
  1469. Me.TextBox16.Margin = New System.Windows.Forms.Padding(4, 4, 4, 4)
  1470. Me.TextBox16.Name = "TextBox16"
  1471. Me.TextBox16.Size = New System.Drawing.Size(108, 27)
  1472. Me.TextBox16.TabIndex = 34
  1473. '
  1474. 'Label17
  1475. '
  1476. Me.Label17.AutoSize = True
  1477. Me.Label17.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1478. Me.Label17.Location = New System.Drawing.Point(23, 129)
  1479. Me.Label17.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
  1480. Me.Label17.Name = "Label17"
  1481. Me.Label17.Size = New System.Drawing.Size(54, 19)
  1482. Me.Label17.TabIndex = 15
  1483. Me.Label17.Text = "娛樂費"
  1484. '
  1485. 'TextBox17
  1486. '
  1487. Me.TextBox17.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1488. Me.TextBox17.ForeColor = System.Drawing.Color.Red
  1489. Me.TextBox17.Location = New System.Drawing.Point(85, 230)
  1490. Me.TextBox17.Margin = New System.Windows.Forms.Padding(4, 4, 4, 4)
  1491. Me.TextBox17.Name = "TextBox17"
  1492. Me.TextBox17.Size = New System.Drawing.Size(108, 27)
  1493. Me.TextBox17.TabIndex = 33
  1494. '
  1495. 'Label32
  1496. '
  1497. Me.Label32.AutoSize = True
  1498. Me.Label32.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1499. Me.Label32.Location = New System.Drawing.Point(23, 163)
  1500. Me.Label32.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
  1501. Me.Label32.Name = "Label32"
  1502. Me.Label32.Size = New System.Drawing.Size(54, 19)
  1503. Me.Label32.TabIndex = 16
  1504. Me.Label32.Text = "家用費"
  1505. '
  1506. 'TextBox18
  1507. '
  1508. Me.TextBox18.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1509. Me.TextBox18.ForeColor = System.Drawing.Color.Red
  1510. Me.TextBox18.Location = New System.Drawing.Point(85, 195)
  1511. Me.TextBox18.Margin = New System.Windows.Forms.Padding(4, 4, 4, 4)
  1512. Me.TextBox18.Name = "TextBox18"
  1513. Me.TextBox18.Size = New System.Drawing.Size(108, 27)
  1514. Me.TextBox18.TabIndex = 32
  1515. '
  1516. 'Label48
  1517. '
  1518. Me.Label48.AutoSize = True
  1519. Me.Label48.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1520. Me.Label48.Location = New System.Drawing.Point(23, 199)
  1521. Me.Label48.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
  1522. Me.Label48.Name = "Label48"
  1523. Me.Label48.Size = New System.Drawing.Size(54, 19)
  1524. Me.Label48.TabIndex = 17
  1525. Me.Label48.Text = "醫療費"
  1526. '
  1527. 'TextBox19
  1528. '
  1529. Me.TextBox19.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1530. Me.TextBox19.ForeColor = System.Drawing.Color.Red
  1531. Me.TextBox19.Location = New System.Drawing.Point(85, 160)
  1532. Me.TextBox19.Margin = New System.Windows.Forms.Padding(4, 4, 4, 4)
  1533. Me.TextBox19.Name = "TextBox19"
  1534. Me.TextBox19.Size = New System.Drawing.Size(108, 27)
  1535. Me.TextBox19.TabIndex = 31
  1536. '
  1537. 'Label49
  1538. '
  1539. Me.Label49.AutoSize = True
  1540. Me.Label49.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1541. Me.Label49.Location = New System.Drawing.Point(23, 233)
  1542. Me.Label49.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
  1543. Me.Label49.Name = "Label49"
  1544. Me.Label49.Size = New System.Drawing.Size(54, 19)
  1545. Me.Label49.TabIndex = 18
  1546. Me.Label49.Text = "務公費"
  1547. '
  1548. 'TextBox20
  1549. '
  1550. Me.TextBox20.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1551. Me.TextBox20.ForeColor = System.Drawing.Color.Red
  1552. Me.TextBox20.Location = New System.Drawing.Point(85, 125)
  1553. Me.TextBox20.Margin = New System.Windows.Forms.Padding(4, 4, 4, 4)
  1554. Me.TextBox20.Name = "TextBox20"
  1555. Me.TextBox20.Size = New System.Drawing.Size(108, 27)
  1556. Me.TextBox20.TabIndex = 30
  1557. '
  1558. 'Label50
  1559. '
  1560. Me.Label50.AutoSize = True
  1561. Me.Label50.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1562. Me.Label50.Location = New System.Drawing.Point(23, 269)
  1563. Me.Label50.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
  1564. Me.Label50.Name = "Label50"
  1565. Me.Label50.Size = New System.Drawing.Size(54, 19)
  1566. Me.Label50.TabIndex = 19
  1567. Me.Label50.Text = "交際費"
  1568. '
  1569. 'TextBox21
  1570. '
  1571. Me.TextBox21.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1572. Me.TextBox21.ForeColor = System.Drawing.Color.Red
  1573. Me.TextBox21.Location = New System.Drawing.Point(85, 90)
  1574. Me.TextBox21.Margin = New System.Windows.Forms.Padding(4, 4, 4, 4)
  1575. Me.TextBox21.Name = "TextBox21"
  1576. Me.TextBox21.Size = New System.Drawing.Size(108, 27)
  1577. Me.TextBox21.TabIndex = 29
  1578. '
  1579. 'Label51
  1580. '
  1581. Me.Label51.AutoSize = True
  1582. Me.Label51.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1583. Me.Label51.Location = New System.Drawing.Point(8, 303)
  1584. Me.Label51.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
  1585. Me.Label51.Name = "Label51"
  1586. Me.Label51.Size = New System.Drawing.Size(69, 19)
  1587. Me.Label51.TabIndex = 20
  1588. Me.Label51.Text = "其他支出"
  1589. '
  1590. 'TextBox22
  1591. '
  1592. Me.TextBox22.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1593. Me.TextBox22.ForeColor = System.Drawing.Color.Red
  1594. Me.TextBox22.Location = New System.Drawing.Point(85, 55)
  1595. Me.TextBox22.Margin = New System.Windows.Forms.Padding(4, 4, 4, 4)
  1596. Me.TextBox22.Name = "TextBox22"
  1597. Me.TextBox22.Size = New System.Drawing.Size(108, 27)
  1598. Me.TextBox22.TabIndex = 28
  1599. '
  1600. 'GroupBox8
  1601. '
  1602. Me.GroupBox8.Controls.Add(Me.Label52)
  1603. Me.GroupBox8.Controls.Add(Me.TextBox23)
  1604. Me.GroupBox8.Controls.Add(Me.Label53)
  1605. Me.GroupBox8.Controls.Add(Me.TextBox24)
  1606. Me.GroupBox8.Controls.Add(Me.Label54)
  1607. Me.GroupBox8.Controls.Add(Me.TextBox25)
  1608. Me.GroupBox8.Controls.Add(Me.Label55)
  1609. Me.GroupBox8.Controls.Add(Me.Label56)
  1610. Me.GroupBox8.Controls.Add(Me.TextBox55)
  1611. Me.GroupBox8.Controls.Add(Me.Label57)
  1612. Me.GroupBox8.Controls.Add(Me.Label58)
  1613. Me.GroupBox8.Controls.Add(Me.TextBox56)
  1614. Me.GroupBox8.Controls.Add(Me.TextBox57)
  1615. Me.GroupBox8.Controls.Add(Me.TextBox58)
  1616. Me.GroupBox8.Location = New System.Drawing.Point(9, 28)
  1617. Me.GroupBox8.Margin = New System.Windows.Forms.Padding(4, 4, 4, 4)
  1618. Me.GroupBox8.Name = "GroupBox8"
  1619. Me.GroupBox8.Padding = New System.Windows.Forms.Padding(4, 4, 4, 4)
  1620. Me.GroupBox8.Size = New System.Drawing.Size(335, 162)
  1621. Me.GroupBox8.TabIndex = 39
  1622. Me.GroupBox8.TabStop = False
  1623. Me.GroupBox8.Text = "收入"
  1624. '
  1625. 'Label52
  1626. '
  1627. Me.Label52.AutoSize = True
  1628. Me.Label52.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1629. Me.Label52.Location = New System.Drawing.Point(306, 94)
  1630. Me.Label52.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
  1631. Me.Label52.Name = "Label52"
  1632. Me.Label52.Size = New System.Drawing.Size(22, 19)
  1633. Me.Label52.TabIndex = 45
  1634. Me.Label52.Text = "%"
  1635. '
  1636. 'TextBox23
  1637. '
  1638. Me.TextBox23.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1639. Me.TextBox23.ForeColor = System.Drawing.Color.Blue
  1640. Me.TextBox23.Location = New System.Drawing.Point(198, 91)
  1641. Me.TextBox23.Margin = New System.Windows.Forms.Padding(4, 4, 4, 4)
  1642. Me.TextBox23.Name = "TextBox23"
  1643. Me.TextBox23.Size = New System.Drawing.Size(100, 27)
  1644. Me.TextBox23.TabIndex = 44
  1645. '
  1646. 'Label53
  1647. '
  1648. Me.Label53.AutoSize = True
  1649. Me.Label53.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1650. Me.Label53.Location = New System.Drawing.Point(306, 59)
  1651. Me.Label53.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
  1652. Me.Label53.Name = "Label53"
  1653. Me.Label53.Size = New System.Drawing.Size(22, 19)
  1654. Me.Label53.TabIndex = 43
  1655. Me.Label53.Text = "%"
  1656. '
  1657. 'TextBox24
  1658. '
  1659. Me.TextBox24.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1660. Me.TextBox24.ForeColor = System.Drawing.Color.Blue
  1661. Me.TextBox24.Location = New System.Drawing.Point(198, 56)
  1662. Me.TextBox24.Margin = New System.Windows.Forms.Padding(4, 4, 4, 4)
  1663. Me.TextBox24.Name = "TextBox24"
  1664. Me.TextBox24.Size = New System.Drawing.Size(100, 27)
  1665. Me.TextBox24.TabIndex = 42
  1666. '
  1667. 'Label54
  1668. '
  1669. Me.Label54.AutoSize = True
  1670. Me.Label54.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1671. Me.Label54.Location = New System.Drawing.Point(306, 24)
  1672. Me.Label54.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
  1673. Me.Label54.Name = "Label54"
  1674. Me.Label54.Size = New System.Drawing.Size(22, 19)
  1675. Me.Label54.TabIndex = 41
  1676. Me.Label54.Text = "%"
  1677. '
  1678. 'TextBox25
  1679. '
  1680. Me.TextBox25.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1681. Me.TextBox25.ForeColor = System.Drawing.Color.Blue
  1682. Me.TextBox25.Location = New System.Drawing.Point(198, 21)
  1683. Me.TextBox25.Margin = New System.Windows.Forms.Padding(4, 4, 4, 4)
  1684. Me.TextBox25.Name = "TextBox25"
  1685. Me.TextBox25.Size = New System.Drawing.Size(100, 27)
  1686. Me.TextBox25.TabIndex = 40
  1687. '
  1688. 'Label55
  1689. '
  1690. Me.Label55.AutoSize = True
  1691. Me.Label55.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1692. Me.Label55.Location = New System.Drawing.Point(23, 129)
  1693. Me.Label55.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
  1694. Me.Label55.Name = "Label55"
  1695. Me.Label55.Size = New System.Drawing.Size(54, 19)
  1696. Me.Label55.TabIndex = 39
  1697. Me.Label55.Text = "總收入"
  1698. '
  1699. 'Label56
  1700. '
  1701. Me.Label56.AutoSize = True
  1702. Me.Label56.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1703. Me.Label56.Location = New System.Drawing.Point(8, 24)
  1704. Me.Label56.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
  1705. Me.Label56.Name = "Label56"
  1706. Me.Label56.Size = New System.Drawing.Size(69, 19)
  1707. Me.Label56.TabIndex = 9
  1708. Me.Label56.Text = "薪資收入"
  1709. '
  1710. 'TextBox55
  1711. '
  1712. Me.TextBox55.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1713. Me.TextBox55.ForeColor = System.Drawing.Color.Blue
  1714. Me.TextBox55.Location = New System.Drawing.Point(85, 126)
  1715. Me.TextBox55.Margin = New System.Windows.Forms.Padding(4, 4, 4, 4)
  1716. Me.TextBox55.Name = "TextBox55"
  1717. Me.TextBox55.Size = New System.Drawing.Size(105, 27)
  1718. Me.TextBox55.TabIndex = 38
  1719. '
  1720. 'Label57
  1721. '
  1722. Me.Label57.AutoSize = True
  1723. Me.Label57.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1724. Me.Label57.Location = New System.Drawing.Point(8, 59)
  1725. Me.Label57.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
  1726. Me.Label57.Name = "Label57"
  1727. Me.Label57.Size = New System.Drawing.Size(69, 19)
  1728. Me.Label57.TabIndex = 10
  1729. Me.Label57.Text = "其他收入"
  1730. '
  1731. 'Label58
  1732. '
  1733. Me.Label58.AutoSize = True
  1734. Me.Label58.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1735. Me.Label58.Location = New System.Drawing.Point(38, 94)
  1736. Me.Label58.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
  1737. Me.Label58.Name = "Label58"
  1738. Me.Label58.Size = New System.Drawing.Size(39, 19)
  1739. Me.Label58.TabIndex = 11
  1740. Me.Label58.Text = "利息"
  1741. '
  1742. 'TextBox56
  1743. '
  1744. Me.TextBox56.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1745. Me.TextBox56.ForeColor = System.Drawing.Color.Blue
  1746. Me.TextBox56.Location = New System.Drawing.Point(85, 21)
  1747. Me.TextBox56.Margin = New System.Windows.Forms.Padding(4, 4, 4, 4)
  1748. Me.TextBox56.Name = "TextBox56"
  1749. Me.TextBox56.Size = New System.Drawing.Size(105, 27)
  1750. Me.TextBox56.TabIndex = 24
  1751. '
  1752. 'TextBox57
  1753. '
  1754. Me.TextBox57.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1755. Me.TextBox57.ForeColor = System.Drawing.Color.Blue
  1756. Me.TextBox57.Location = New System.Drawing.Point(85, 56)
  1757. Me.TextBox57.Margin = New System.Windows.Forms.Padding(4, 4, 4, 4)
  1758. Me.TextBox57.Name = "TextBox57"
  1759. Me.TextBox57.Size = New System.Drawing.Size(105, 27)
  1760. Me.TextBox57.TabIndex = 25
  1761. '
  1762. 'TextBox58
  1763. '
  1764. Me.TextBox58.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1765. Me.TextBox58.ForeColor = System.Drawing.Color.Blue
  1766. Me.TextBox58.Location = New System.Drawing.Point(85, 91)
  1767. Me.TextBox58.Margin = New System.Windows.Forms.Padding(4, 4, 4, 4)
  1768. Me.TextBox58.Name = "TextBox58"
  1769. Me.TextBox58.Size = New System.Drawing.Size(105, 27)
  1770. Me.TextBox58.TabIndex = 26
  1771. '
  1772. 'GroupBox11
  1773. '
  1774. Me.GroupBox11.Controls.Add(Me.GroupBox12)
  1775. Me.GroupBox11.Controls.Add(Me.GroupBox13)
  1776. Me.GroupBox11.Controls.Add(Me.GroupBox14)
  1777. Me.GroupBox11.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1778. Me.GroupBox11.Location = New System.Drawing.Point(736, 83)
  1779. Me.GroupBox11.Margin = New System.Windows.Forms.Padding(4, 4, 4, 4)
  1780. Me.GroupBox11.Name = "GroupBox11"
  1781. Me.GroupBox11.Padding = New System.Windows.Forms.Padding(4, 4, 4, 4)
  1782. Me.GroupBox11.Size = New System.Drawing.Size(399, 674)
  1783. Me.GroupBox11.TabIndex = 57
  1784. Me.GroupBox11.TabStop = False
  1785. Me.GroupBox11.Text = "總和統計"
  1786. '
  1787. 'GroupBox12
  1788. '
  1789. Me.GroupBox12.Controls.Add(Me.Label61)
  1790. Me.GroupBox12.Controls.Add(Me.TextBox60)
  1791. Me.GroupBox12.Location = New System.Drawing.Point(9, 610)
  1792. Me.GroupBox12.Margin = New System.Windows.Forms.Padding(4, 4, 4, 4)
  1793. Me.GroupBox12.Name = "GroupBox12"
  1794. Me.GroupBox12.Padding = New System.Windows.Forms.Padding(4, 4, 4, 4)
  1795. Me.GroupBox12.Size = New System.Drawing.Size(381, 55)
  1796. Me.GroupBox12.TabIndex = 52
  1797. Me.GroupBox12.TabStop = False
  1798. Me.GroupBox12.Text = "資產"
  1799. '
  1800. 'Label61
  1801. '
  1802. Me.Label61.AutoSize = True
  1803. Me.Label61.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1804. Me.Label61.Location = New System.Drawing.Point(8, 24)
  1805. Me.Label61.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
  1806. Me.Label61.Name = "Label61"
  1807. Me.Label61.Size = New System.Drawing.Size(69, 19)
  1808. Me.Label61.TabIndex = 54
  1809. Me.Label61.Text = "目前餘額"
  1810. '
  1811. 'TextBox60
  1812. '
  1813. Me.TextBox60.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1814. Me.TextBox60.ForeColor = System.Drawing.Color.Green
  1815. Me.TextBox60.Location = New System.Drawing.Point(86, 21)
  1816. Me.TextBox60.Margin = New System.Windows.Forms.Padding(4, 4, 4, 4)
  1817. Me.TextBox60.Name = "TextBox60"
  1818. Me.TextBox60.Size = New System.Drawing.Size(257, 27)
  1819. Me.TextBox60.TabIndex = 36
  1820. '
  1821. 'GroupBox13
  1822. '
  1823. Me.GroupBox13.Controls.Add(Me.Label62)
  1824. Me.GroupBox13.Controls.Add(Me.TextBox61)
  1825. Me.GroupBox13.Controls.Add(Me.Label63)
  1826. Me.GroupBox13.Controls.Add(Me.TextBox62)
  1827. Me.GroupBox13.Controls.Add(Me.Label64)
  1828. Me.GroupBox13.Controls.Add(Me.TextBox63)
  1829. Me.GroupBox13.Controls.Add(Me.Label65)
  1830. Me.GroupBox13.Controls.Add(Me.TextBox64)
  1831. Me.GroupBox13.Controls.Add(Me.Label66)
  1832. Me.GroupBox13.Controls.Add(Me.TextBox65)
  1833. Me.GroupBox13.Controls.Add(Me.Label67)
  1834. Me.GroupBox13.Controls.Add(Me.TextBox66)
  1835. Me.GroupBox13.Controls.Add(Me.Label68)
  1836. Me.GroupBox13.Controls.Add(Me.TextBox67)
  1837. Me.GroupBox13.Controls.Add(Me.Label69)
  1838. Me.GroupBox13.Controls.Add(Me.TextBox68)
  1839. Me.GroupBox13.Controls.Add(Me.Label70)
  1840. Me.GroupBox13.Controls.Add(Me.TextBox69)
  1841. Me.GroupBox13.Controls.Add(Me.Label71)
  1842. Me.GroupBox13.Controls.Add(Me.TextBox70)
  1843. Me.GroupBox13.Controls.Add(Me.Label72)
  1844. Me.GroupBox13.Controls.Add(Me.TextBox71)
  1845. Me.GroupBox13.Controls.Add(Me.Label73)
  1846. Me.GroupBox13.Controls.Add(Me.TextBox72)
  1847. Me.GroupBox13.Controls.Add(Me.TextBox73)
  1848. Me.GroupBox13.Controls.Add(Me.Label74)
  1849. Me.GroupBox13.Controls.Add(Me.Label75)
  1850. Me.GroupBox13.Controls.Add(Me.TextBox74)
  1851. Me.GroupBox13.Controls.Add(Me.Label76)
  1852. Me.GroupBox13.Controls.Add(Me.TextBox75)
  1853. Me.GroupBox13.Controls.Add(Me.Label77)
  1854. Me.GroupBox13.Controls.Add(Me.TextBox76)
  1855. Me.GroupBox13.Controls.Add(Me.Label78)
  1856. Me.GroupBox13.Controls.Add(Me.TextBox77)
  1857. Me.GroupBox13.Controls.Add(Me.Label79)
  1858. Me.GroupBox13.Controls.Add(Me.TextBox78)
  1859. Me.GroupBox13.Controls.Add(Me.Label80)
  1860. Me.GroupBox13.Controls.Add(Me.TextBox79)
  1861. Me.GroupBox13.Controls.Add(Me.Label81)
  1862. Me.GroupBox13.Controls.Add(Me.TextBox80)
  1863. Me.GroupBox13.Controls.Add(Me.Label82)
  1864. Me.GroupBox13.Controls.Add(Me.TextBox81)
  1865. Me.GroupBox13.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1866. Me.GroupBox13.Location = New System.Drawing.Point(9, 198)
  1867. Me.GroupBox13.Margin = New System.Windows.Forms.Padding(4, 4, 4, 4)
  1868. Me.GroupBox13.Name = "GroupBox13"
  1869. Me.GroupBox13.Padding = New System.Windows.Forms.Padding(4, 4, 4, 4)
  1870. Me.GroupBox13.Size = New System.Drawing.Size(381, 404)
  1871. Me.GroupBox13.TabIndex = 51
  1872. Me.GroupBox13.TabStop = False
  1873. Me.GroupBox13.Text = "支出"
  1874. '
  1875. 'Label62
  1876. '
  1877. Me.Label62.AutoSize = True
  1878. Me.Label62.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1879. Me.Label62.Location = New System.Drawing.Point(348, 341)
  1880. Me.Label62.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
  1881. Me.Label62.Name = "Label62"
  1882. Me.Label62.Size = New System.Drawing.Size(22, 19)
  1883. Me.Label62.TabIndex = 61
  1884. Me.Label62.Text = "%"
  1885. '
  1886. 'TextBox61
  1887. '
  1888. Me.TextBox61.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1889. Me.TextBox61.ForeColor = System.Drawing.Color.Red
  1890. Me.TextBox61.Location = New System.Drawing.Point(241, 335)
  1891. Me.TextBox61.Margin = New System.Windows.Forms.Padding(4, 4, 4, 4)
  1892. Me.TextBox61.Name = "TextBox61"
  1893. Me.TextBox61.Size = New System.Drawing.Size(100, 27)
  1894. Me.TextBox61.TabIndex = 60
  1895. '
  1896. 'Label63
  1897. '
  1898. Me.Label63.AutoSize = True
  1899. Me.Label63.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1900. Me.Label63.Location = New System.Drawing.Point(348, 305)
  1901. Me.Label63.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
  1902. Me.Label63.Name = "Label63"
  1903. Me.Label63.Size = New System.Drawing.Size(22, 19)
  1904. Me.Label63.TabIndex = 59
  1905. Me.Label63.Text = "%"
  1906. '
  1907. 'TextBox62
  1908. '
  1909. Me.TextBox62.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1910. Me.TextBox62.ForeColor = System.Drawing.Color.Red
  1911. Me.TextBox62.Location = New System.Drawing.Point(243, 300)
  1912. Me.TextBox62.Margin = New System.Windows.Forms.Padding(4, 4, 4, 4)
  1913. Me.TextBox62.Name = "TextBox62"
  1914. Me.TextBox62.Size = New System.Drawing.Size(100, 27)
  1915. Me.TextBox62.TabIndex = 58
  1916. '
  1917. 'Label64
  1918. '
  1919. Me.Label64.AutoSize = True
  1920. Me.Label64.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1921. Me.Label64.Location = New System.Drawing.Point(348, 270)
  1922. Me.Label64.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
  1923. Me.Label64.Name = "Label64"
  1924. Me.Label64.Size = New System.Drawing.Size(22, 19)
  1925. Me.Label64.TabIndex = 57
  1926. Me.Label64.Text = "%"
  1927. '
  1928. 'TextBox63
  1929. '
  1930. Me.TextBox63.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1931. Me.TextBox63.ForeColor = System.Drawing.Color.Red
  1932. Me.TextBox63.Location = New System.Drawing.Point(243, 265)
  1933. Me.TextBox63.Margin = New System.Windows.Forms.Padding(4, 4, 4, 4)
  1934. Me.TextBox63.Name = "TextBox63"
  1935. Me.TextBox63.Size = New System.Drawing.Size(100, 27)
  1936. Me.TextBox63.TabIndex = 56
  1937. '
  1938. 'Label65
  1939. '
  1940. Me.Label65.AutoSize = True
  1941. Me.Label65.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1942. Me.Label65.Location = New System.Drawing.Point(348, 235)
  1943. Me.Label65.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
  1944. Me.Label65.Name = "Label65"
  1945. Me.Label65.Size = New System.Drawing.Size(22, 19)
  1946. Me.Label65.TabIndex = 55
  1947. Me.Label65.Text = "%"
  1948. '
  1949. 'TextBox64
  1950. '
  1951. Me.TextBox64.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1952. Me.TextBox64.ForeColor = System.Drawing.Color.Red
  1953. Me.TextBox64.Location = New System.Drawing.Point(243, 229)
  1954. Me.TextBox64.Margin = New System.Windows.Forms.Padding(4, 4, 4, 4)
  1955. Me.TextBox64.Name = "TextBox64"
  1956. Me.TextBox64.Size = New System.Drawing.Size(100, 27)
  1957. Me.TextBox64.TabIndex = 54
  1958. '
  1959. 'Label66
  1960. '
  1961. Me.Label66.AutoSize = True
  1962. Me.Label66.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1963. Me.Label66.Location = New System.Drawing.Point(347, 197)
  1964. Me.Label66.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
  1965. Me.Label66.Name = "Label66"
  1966. Me.Label66.Size = New System.Drawing.Size(22, 19)
  1967. Me.Label66.TabIndex = 53
  1968. Me.Label66.Text = "%"
  1969. '
  1970. 'TextBox65
  1971. '
  1972. Me.TextBox65.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1973. Me.TextBox65.ForeColor = System.Drawing.Color.Red
  1974. Me.TextBox65.Location = New System.Drawing.Point(241, 194)
  1975. Me.TextBox65.Margin = New System.Windows.Forms.Padding(4, 4, 4, 4)
  1976. Me.TextBox65.Name = "TextBox65"
  1977. Me.TextBox65.Size = New System.Drawing.Size(100, 27)
  1978. Me.TextBox65.TabIndex = 52
  1979. '
  1980. 'Label67
  1981. '
  1982. Me.Label67.AutoSize = True
  1983. Me.Label67.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1984. Me.Label67.Location = New System.Drawing.Point(347, 160)
  1985. Me.Label67.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
  1986. Me.Label67.Name = "Label67"
  1987. Me.Label67.Size = New System.Drawing.Size(22, 19)
  1988. Me.Label67.TabIndex = 51
  1989. Me.Label67.Text = "%"
  1990. '
  1991. 'TextBox66
  1992. '
  1993. Me.TextBox66.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  1994. Me.TextBox66.ForeColor = System.Drawing.Color.Red
  1995. Me.TextBox66.Location = New System.Drawing.Point(243, 159)
  1996. Me.TextBox66.Margin = New System.Windows.Forms.Padding(4, 4, 4, 4)
  1997. Me.TextBox66.Name = "TextBox66"
  1998. Me.TextBox66.Size = New System.Drawing.Size(100, 27)
  1999. Me.TextBox66.TabIndex = 50
  2000. '
  2001. 'Label68
  2002. '
  2003. Me.Label68.AutoSize = True
  2004. Me.Label68.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2005. Me.Label68.Location = New System.Drawing.Point(347, 129)
  2006. Me.Label68.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
  2007. Me.Label68.Name = "Label68"
  2008. Me.Label68.Size = New System.Drawing.Size(22, 19)
  2009. Me.Label68.TabIndex = 49
  2010. Me.Label68.Text = "%"
  2011. '
  2012. 'TextBox67
  2013. '
  2014. Me.TextBox67.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2015. Me.TextBox67.ForeColor = System.Drawing.Color.Red
  2016. Me.TextBox67.Location = New System.Drawing.Point(242, 124)
  2017. Me.TextBox67.Margin = New System.Windows.Forms.Padding(4, 4, 4, 4)
  2018. Me.TextBox67.Name = "TextBox67"
  2019. Me.TextBox67.Size = New System.Drawing.Size(100, 27)
  2020. Me.TextBox67.TabIndex = 48
  2021. '
  2022. 'Label69
  2023. '
  2024. Me.Label69.AutoSize = True
  2025. Me.Label69.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2026. Me.Label69.Location = New System.Drawing.Point(350, 93)
  2027. Me.Label69.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
  2028. Me.Label69.Name = "Label69"
  2029. Me.Label69.Size = New System.Drawing.Size(22, 19)
  2030. Me.Label69.TabIndex = 47
  2031. Me.Label69.Text = "%"
  2032. '
  2033. 'TextBox68
  2034. '
  2035. Me.TextBox68.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2036. Me.TextBox68.ForeColor = System.Drawing.Color.Red
  2037. Me.TextBox68.Location = New System.Drawing.Point(242, 89)
  2038. Me.TextBox68.Margin = New System.Windows.Forms.Padding(4, 4, 4, 4)
  2039. Me.TextBox68.Name = "TextBox68"
  2040. Me.TextBox68.Size = New System.Drawing.Size(100, 27)
  2041. Me.TextBox68.TabIndex = 46
  2042. '
  2043. 'Label70
  2044. '
  2045. Me.Label70.AutoSize = True
  2046. Me.Label70.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2047. Me.Label70.Location = New System.Drawing.Point(349, 59)
  2048. Me.Label70.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
  2049. Me.Label70.Name = "Label70"
  2050. Me.Label70.Size = New System.Drawing.Size(22, 19)
  2051. Me.Label70.TabIndex = 45
  2052. Me.Label70.Text = "%"
  2053. '
  2054. 'TextBox69
  2055. '
  2056. Me.TextBox69.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2057. Me.TextBox69.ForeColor = System.Drawing.Color.Red
  2058. Me.TextBox69.Location = New System.Drawing.Point(242, 54)
  2059. Me.TextBox69.Margin = New System.Windows.Forms.Padding(4, 4, 4, 4)
  2060. Me.TextBox69.Name = "TextBox69"
  2061. Me.TextBox69.Size = New System.Drawing.Size(100, 27)
  2062. Me.TextBox69.TabIndex = 44
  2063. '
  2064. 'Label71
  2065. '
  2066. Me.Label71.AutoSize = True
  2067. Me.Label71.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2068. Me.Label71.Location = New System.Drawing.Point(347, 23)
  2069. Me.Label71.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
  2070. Me.Label71.Name = "Label71"
  2071. Me.Label71.Size = New System.Drawing.Size(22, 19)
  2072. Me.Label71.TabIndex = 43
  2073. Me.Label71.Text = "%"
  2074. '
  2075. 'TextBox70
  2076. '
  2077. Me.TextBox70.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2078. Me.TextBox70.ForeColor = System.Drawing.Color.Red
  2079. Me.TextBox70.Location = New System.Drawing.Point(243, 20)
  2080. Me.TextBox70.Margin = New System.Windows.Forms.Padding(4, 4, 4, 4)
  2081. Me.TextBox70.Name = "TextBox70"
  2082. Me.TextBox70.Size = New System.Drawing.Size(100, 27)
  2083. Me.TextBox70.TabIndex = 42
  2084. '
  2085. 'Label72
  2086. '
  2087. Me.Label72.AutoSize = True
  2088. Me.Label72.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2089. Me.Label72.Location = New System.Drawing.Point(23, 372)
  2090. Me.Label72.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
  2091. Me.Label72.Name = "Label72"
  2092. Me.Label72.Size = New System.Drawing.Size(54, 19)
  2093. Me.Label72.TabIndex = 37
  2094. Me.Label72.Text = "總支出"
  2095. '
  2096. 'TextBox71
  2097. '
  2098. Me.TextBox71.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2099. Me.TextBox71.ForeColor = System.Drawing.Color.Red
  2100. Me.TextBox71.Location = New System.Drawing.Point(85, 334)
  2101. Me.TextBox71.Margin = New System.Windows.Forms.Padding(4, 4, 4, 4)
  2102. Me.TextBox71.Name = "TextBox71"
  2103. Me.TextBox71.Size = New System.Drawing.Size(148, 27)
  2104. Me.TextBox71.TabIndex = 37
  2105. '
  2106. 'Label73
  2107. '
  2108. Me.Label73.AutoSize = True
  2109. Me.Label73.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2110. Me.Label73.Location = New System.Drawing.Point(24, 337)
  2111. Me.Label73.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
  2112. Me.Label73.Name = "Label73"
  2113. Me.Label73.Size = New System.Drawing.Size(54, 19)
  2114. Me.Label73.TabIndex = 22
  2115. Me.Label73.Text = "手續費"
  2116. '
  2117. 'TextBox72
  2118. '
  2119. Me.TextBox72.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2120. Me.TextBox72.ForeColor = System.Drawing.Color.Red
  2121. Me.TextBox72.Location = New System.Drawing.Point(85, 369)
  2122. Me.TextBox72.Margin = New System.Windows.Forms.Padding(4, 4, 4, 4)
  2123. Me.TextBox72.Name = "TextBox72"
  2124. Me.TextBox72.Size = New System.Drawing.Size(148, 27)
  2125. Me.TextBox72.TabIndex = 36
  2126. '
  2127. 'TextBox73
  2128. '
  2129. Me.TextBox73.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2130. Me.TextBox73.ForeColor = System.Drawing.Color.Red
  2131. Me.TextBox73.Location = New System.Drawing.Point(86, 20)
  2132. Me.TextBox73.Margin = New System.Windows.Forms.Padding(4, 4, 4, 4)
  2133. Me.TextBox73.Name = "TextBox73"
  2134. Me.TextBox73.Size = New System.Drawing.Size(148, 27)
  2135. Me.TextBox73.TabIndex = 27
  2136. '
  2137. 'Label74
  2138. '
  2139. Me.Label74.AutoSize = True
  2140. Me.Label74.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2141. Me.Label74.Location = New System.Drawing.Point(23, 23)
  2142. Me.Label74.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
  2143. Me.Label74.Name = "Label74"
  2144. Me.Label74.Size = New System.Drawing.Size(54, 19)
  2145. Me.Label74.TabIndex = 12
  2146. Me.Label74.Text = "交通費"
  2147. '
  2148. 'Label75
  2149. '
  2150. Me.Label75.AutoSize = True
  2151. Me.Label75.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2152. Me.Label75.Location = New System.Drawing.Point(23, 94)
  2153. Me.Label75.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
  2154. Me.Label75.Name = "Label75"
  2155. Me.Label75.Size = New System.Drawing.Size(54, 19)
  2156. Me.Label75.TabIndex = 13
  2157. Me.Label75.Text = "伙食費"
  2158. '
  2159. 'TextBox74
  2160. '
  2161. Me.TextBox74.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2162. Me.TextBox74.ForeColor = System.Drawing.Color.Red
  2163. Me.TextBox74.Location = New System.Drawing.Point(85, 299)
  2164. Me.TextBox74.Margin = New System.Windows.Forms.Padding(4, 4, 4, 4)
  2165. Me.TextBox74.Name = "TextBox74"
  2166. Me.TextBox74.Size = New System.Drawing.Size(148, 27)
  2167. Me.TextBox74.TabIndex = 35
  2168. '
  2169. 'Label76
  2170. '
  2171. Me.Label76.AutoSize = True
  2172. Me.Label76.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2173. Me.Label76.Location = New System.Drawing.Point(23, 58)
  2174. Me.Label76.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
  2175. Me.Label76.Name = "Label76"
  2176. Me.Label76.Size = New System.Drawing.Size(54, 19)
  2177. Me.Label76.TabIndex = 14
  2178. Me.Label76.Text = "住宿費"
  2179. '
  2180. 'TextBox75
  2181. '
  2182. Me.TextBox75.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2183. Me.TextBox75.ForeColor = System.Drawing.Color.Red
  2184. Me.TextBox75.Location = New System.Drawing.Point(85, 264)
  2185. Me.TextBox75.Margin = New System.Windows.Forms.Padding(4, 4, 4, 4)
  2186. Me.TextBox75.Name = "TextBox75"
  2187. Me.TextBox75.Size = New System.Drawing.Size(148, 27)
  2188. Me.TextBox75.TabIndex = 34
  2189. '
  2190. 'Label77
  2191. '
  2192. Me.Label77.AutoSize = True
  2193. Me.Label77.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2194. Me.Label77.Location = New System.Drawing.Point(23, 127)
  2195. Me.Label77.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
  2196. Me.Label77.Name = "Label77"
  2197. Me.Label77.Size = New System.Drawing.Size(54, 19)
  2198. Me.Label77.TabIndex = 15
  2199. Me.Label77.Text = "娛樂費"
  2200. '
  2201. 'TextBox76
  2202. '
  2203. Me.TextBox76.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2204. Me.TextBox76.ForeColor = System.Drawing.Color.Red
  2205. Me.TextBox76.Location = New System.Drawing.Point(85, 229)
  2206. Me.TextBox76.Margin = New System.Windows.Forms.Padding(4, 4, 4, 4)
  2207. Me.TextBox76.Name = "TextBox76"
  2208. Me.TextBox76.Size = New System.Drawing.Size(148, 27)
  2209. Me.TextBox76.TabIndex = 33
  2210. '
  2211. 'Label78
  2212. '
  2213. Me.Label78.AutoSize = True
  2214. Me.Label78.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2215. Me.Label78.Location = New System.Drawing.Point(23, 163)
  2216. Me.Label78.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
  2217. Me.Label78.Name = "Label78"
  2218. Me.Label78.Size = New System.Drawing.Size(54, 19)
  2219. Me.Label78.TabIndex = 16
  2220. Me.Label78.Text = "家用費"
  2221. '
  2222. 'TextBox77
  2223. '
  2224. Me.TextBox77.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2225. Me.TextBox77.ForeColor = System.Drawing.Color.Red
  2226. Me.TextBox77.Location = New System.Drawing.Point(86, 194)
  2227. Me.TextBox77.Margin = New System.Windows.Forms.Padding(4, 4, 4, 4)
  2228. Me.TextBox77.Name = "TextBox77"
  2229. Me.TextBox77.Size = New System.Drawing.Size(148, 27)
  2230. Me.TextBox77.TabIndex = 32
  2231. '
  2232. 'Label79
  2233. '
  2234. Me.Label79.AutoSize = True
  2235. Me.Label79.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2236. Me.Label79.Location = New System.Drawing.Point(24, 199)
  2237. Me.Label79.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
  2238. Me.Label79.Name = "Label79"
  2239. Me.Label79.Size = New System.Drawing.Size(54, 19)
  2240. Me.Label79.TabIndex = 17
  2241. Me.Label79.Text = "醫療費"
  2242. '
  2243. 'TextBox78
  2244. '
  2245. Me.TextBox78.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2246. Me.TextBox78.ForeColor = System.Drawing.Color.Red
  2247. Me.TextBox78.Location = New System.Drawing.Point(85, 159)
  2248. Me.TextBox78.Margin = New System.Windows.Forms.Padding(4, 4, 4, 4)
  2249. Me.TextBox78.Name = "TextBox78"
  2250. Me.TextBox78.Size = New System.Drawing.Size(148, 27)
  2251. Me.TextBox78.TabIndex = 31
  2252. '
  2253. 'Label80
  2254. '
  2255. Me.Label80.AutoSize = True
  2256. Me.Label80.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2257. Me.Label80.Location = New System.Drawing.Point(23, 232)
  2258. Me.Label80.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
  2259. Me.Label80.Name = "Label80"
  2260. Me.Label80.Size = New System.Drawing.Size(54, 19)
  2261. Me.Label80.TabIndex = 18
  2262. Me.Label80.Text = "務公費"
  2263. '
  2264. 'TextBox79
  2265. '
  2266. Me.TextBox79.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2267. Me.TextBox79.ForeColor = System.Drawing.Color.Red
  2268. Me.TextBox79.Location = New System.Drawing.Point(86, 124)
  2269. Me.TextBox79.Margin = New System.Windows.Forms.Padding(4, 4, 4, 4)
  2270. Me.TextBox79.Name = "TextBox79"
  2271. Me.TextBox79.Size = New System.Drawing.Size(148, 27)
  2272. Me.TextBox79.TabIndex = 30
  2273. '
  2274. 'Label81
  2275. '
  2276. Me.Label81.AutoSize = True
  2277. Me.Label81.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2278. Me.Label81.Location = New System.Drawing.Point(23, 266)
  2279. Me.Label81.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
  2280. Me.Label81.Name = "Label81"
  2281. Me.Label81.Size = New System.Drawing.Size(54, 19)
  2282. Me.Label81.TabIndex = 19
  2283. Me.Label81.Text = "交際費"
  2284. '
  2285. 'TextBox80
  2286. '
  2287. Me.TextBox80.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2288. Me.TextBox80.ForeColor = System.Drawing.Color.Red
  2289. Me.TextBox80.Location = New System.Drawing.Point(86, 89)
  2290. Me.TextBox80.Margin = New System.Windows.Forms.Padding(4, 4, 4, 4)
  2291. Me.TextBox80.Name = "TextBox80"
  2292. Me.TextBox80.Size = New System.Drawing.Size(148, 27)
  2293. Me.TextBox80.TabIndex = 29
  2294. '
  2295. 'Label82
  2296. '
  2297. Me.Label82.AutoSize = True
  2298. Me.Label82.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2299. Me.Label82.Location = New System.Drawing.Point(9, 302)
  2300. Me.Label82.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
  2301. Me.Label82.Name = "Label82"
  2302. Me.Label82.Size = New System.Drawing.Size(69, 19)
  2303. Me.Label82.TabIndex = 20
  2304. Me.Label82.Text = "其他支出"
  2305. '
  2306. 'TextBox81
  2307. '
  2308. Me.TextBox81.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2309. Me.TextBox81.ForeColor = System.Drawing.Color.Red
  2310. Me.TextBox81.Location = New System.Drawing.Point(86, 54)
  2311. Me.TextBox81.Margin = New System.Windows.Forms.Padding(4, 4, 4, 4)
  2312. Me.TextBox81.Name = "TextBox81"
  2313. Me.TextBox81.Size = New System.Drawing.Size(148, 27)
  2314. Me.TextBox81.TabIndex = 28
  2315. '
  2316. 'GroupBox14
  2317. '
  2318. Me.GroupBox14.Controls.Add(Me.Label83)
  2319. Me.GroupBox14.Controls.Add(Me.TextBox82)
  2320. Me.GroupBox14.Controls.Add(Me.Label84)
  2321. Me.GroupBox14.Controls.Add(Me.TextBox83)
  2322. Me.GroupBox14.Controls.Add(Me.Label85)
  2323. Me.GroupBox14.Controls.Add(Me.TextBox84)
  2324. Me.GroupBox14.Controls.Add(Me.Label86)
  2325. Me.GroupBox14.Controls.Add(Me.Label87)
  2326. Me.GroupBox14.Controls.Add(Me.TextBox85)
  2327. Me.GroupBox14.Controls.Add(Me.Label88)
  2328. Me.GroupBox14.Controls.Add(Me.Label89)
  2329. Me.GroupBox14.Controls.Add(Me.TextBox86)
  2330. Me.GroupBox14.Controls.Add(Me.TextBox87)
  2331. Me.GroupBox14.Controls.Add(Me.TextBox88)
  2332. Me.GroupBox14.Location = New System.Drawing.Point(9, 28)
  2333. Me.GroupBox14.Margin = New System.Windows.Forms.Padding(4, 4, 4, 4)
  2334. Me.GroupBox14.Name = "GroupBox14"
  2335. Me.GroupBox14.Padding = New System.Windows.Forms.Padding(4, 4, 4, 4)
  2336. Me.GroupBox14.Size = New System.Drawing.Size(381, 162)
  2337. Me.GroupBox14.TabIndex = 39
  2338. Me.GroupBox14.TabStop = False
  2339. Me.GroupBox14.Text = "收入"
  2340. '
  2341. 'Label83
  2342. '
  2343. Me.Label83.AutoSize = True
  2344. Me.Label83.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2345. Me.Label83.Location = New System.Drawing.Point(347, 94)
  2346. Me.Label83.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
  2347. Me.Label83.Name = "Label83"
  2348. Me.Label83.Size = New System.Drawing.Size(22, 19)
  2349. Me.Label83.TabIndex = 45
  2350. Me.Label83.Text = "%"
  2351. '
  2352. 'TextBox82
  2353. '
  2354. Me.TextBox82.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2355. Me.TextBox82.ForeColor = System.Drawing.Color.Blue
  2356. Me.TextBox82.Location = New System.Drawing.Point(241, 91)
  2357. Me.TextBox82.Margin = New System.Windows.Forms.Padding(4, 4, 4, 4)
  2358. Me.TextBox82.Name = "TextBox82"
  2359. Me.TextBox82.Size = New System.Drawing.Size(100, 27)
  2360. Me.TextBox82.TabIndex = 44
  2361. '
  2362. 'Label84
  2363. '
  2364. Me.Label84.AutoSize = True
  2365. Me.Label84.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2366. Me.Label84.Location = New System.Drawing.Point(347, 59)
  2367. Me.Label84.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
  2368. Me.Label84.Name = "Label84"
  2369. Me.Label84.Size = New System.Drawing.Size(22, 19)
  2370. Me.Label84.TabIndex = 43
  2371. Me.Label84.Text = "%"
  2372. '
  2373. 'TextBox83
  2374. '
  2375. Me.TextBox83.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2376. Me.TextBox83.ForeColor = System.Drawing.Color.Blue
  2377. Me.TextBox83.Location = New System.Drawing.Point(241, 56)
  2378. Me.TextBox83.Margin = New System.Windows.Forms.Padding(4, 4, 4, 4)
  2379. Me.TextBox83.Name = "TextBox83"
  2380. Me.TextBox83.Size = New System.Drawing.Size(100, 27)
  2381. Me.TextBox83.TabIndex = 42
  2382. '
  2383. 'Label85
  2384. '
  2385. Me.Label85.AutoSize = True
  2386. Me.Label85.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2387. Me.Label85.Location = New System.Drawing.Point(347, 24)
  2388. Me.Label85.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
  2389. Me.Label85.Name = "Label85"
  2390. Me.Label85.Size = New System.Drawing.Size(22, 19)
  2391. Me.Label85.TabIndex = 41
  2392. Me.Label85.Text = "%"
  2393. '
  2394. 'TextBox84
  2395. '
  2396. Me.TextBox84.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2397. Me.TextBox84.ForeColor = System.Drawing.Color.Blue
  2398. Me.TextBox84.Location = New System.Drawing.Point(239, 21)
  2399. Me.TextBox84.Margin = New System.Windows.Forms.Padding(4, 4, 4, 4)
  2400. Me.TextBox84.Name = "TextBox84"
  2401. Me.TextBox84.Size = New System.Drawing.Size(100, 27)
  2402. Me.TextBox84.TabIndex = 40
  2403. '
  2404. 'Label86
  2405. '
  2406. Me.Label86.AutoSize = True
  2407. Me.Label86.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2408. Me.Label86.Location = New System.Drawing.Point(23, 129)
  2409. Me.Label86.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
  2410. Me.Label86.Name = "Label86"
  2411. Me.Label86.Size = New System.Drawing.Size(54, 19)
  2412. Me.Label86.TabIndex = 39
  2413. Me.Label86.Text = "總收入"
  2414. '
  2415. 'Label87
  2416. '
  2417. Me.Label87.AutoSize = True
  2418. Me.Label87.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2419. Me.Label87.Location = New System.Drawing.Point(8, 24)
  2420. Me.Label87.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
  2421. Me.Label87.Name = "Label87"
  2422. Me.Label87.Size = New System.Drawing.Size(69, 19)
  2423. Me.Label87.TabIndex = 9
  2424. Me.Label87.Text = "薪資收入"
  2425. '
  2426. 'TextBox85
  2427. '
  2428. Me.TextBox85.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2429. Me.TextBox85.ForeColor = System.Drawing.Color.Blue
  2430. Me.TextBox85.Location = New System.Drawing.Point(86, 126)
  2431. Me.TextBox85.Margin = New System.Windows.Forms.Padding(4, 4, 4, 4)
  2432. Me.TextBox85.Name = "TextBox85"
  2433. Me.TextBox85.Size = New System.Drawing.Size(145, 27)
  2434. Me.TextBox85.TabIndex = 38
  2435. '
  2436. 'Label88
  2437. '
  2438. Me.Label88.AutoSize = True
  2439. Me.Label88.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2440. Me.Label88.Location = New System.Drawing.Point(8, 59)
  2441. Me.Label88.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
  2442. Me.Label88.Name = "Label88"
  2443. Me.Label88.Size = New System.Drawing.Size(69, 19)
  2444. Me.Label88.TabIndex = 10
  2445. Me.Label88.Text = "其他收入"
  2446. '
  2447. 'Label89
  2448. '
  2449. Me.Label89.AutoSize = True
  2450. Me.Label89.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2451. Me.Label89.Location = New System.Drawing.Point(38, 94)
  2452. Me.Label89.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
  2453. Me.Label89.Name = "Label89"
  2454. Me.Label89.Size = New System.Drawing.Size(39, 19)
  2455. Me.Label89.TabIndex = 11
  2456. Me.Label89.Text = "利息"
  2457. '
  2458. 'TextBox86
  2459. '
  2460. Me.TextBox86.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2461. Me.TextBox86.ForeColor = System.Drawing.Color.Blue
  2462. Me.TextBox86.Location = New System.Drawing.Point(85, 21)
  2463. Me.TextBox86.Margin = New System.Windows.Forms.Padding(4, 4, 4, 4)
  2464. Me.TextBox86.Name = "TextBox86"
  2465. Me.TextBox86.Size = New System.Drawing.Size(145, 27)
  2466. Me.TextBox86.TabIndex = 24
  2467. '
  2468. 'TextBox87
  2469. '
  2470. Me.TextBox87.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2471. Me.TextBox87.ForeColor = System.Drawing.Color.Blue
  2472. Me.TextBox87.Location = New System.Drawing.Point(86, 56)
  2473. Me.TextBox87.Margin = New System.Windows.Forms.Padding(4, 4, 4, 4)
  2474. Me.TextBox87.Name = "TextBox87"
  2475. Me.TextBox87.Size = New System.Drawing.Size(145, 27)
  2476. Me.TextBox87.TabIndex = 25
  2477. '
  2478. 'TextBox88
  2479. '
  2480. Me.TextBox88.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
  2481. Me.TextBox88.ForeColor = System.Drawing.Color.Blue
  2482. Me.TextBox88.Location = New System.Drawing.Point(86, 91)
  2483. Me.TextBox88.Margin = New System.Windows.Forms.Padding(4, 4, 4, 4)
  2484. Me.TextBox88.Name = "TextBox88"
  2485. Me.TextBox88.Size = New System.Drawing.Size(145, 27)
  2486. Me.TextBox88.TabIndex = 26
  2487. '
  2488. '月份查詢
  2489. '
  2490. Me.AutoScaleDimensions = New System.Drawing.SizeF(8.0!, 15.0!)
  2491. Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font
  2492. Me.ClientSize = New System.Drawing.Size(1146, 763)
  2493. Me.Controls.Add(Me.GroupBox11)
  2494. Me.Controls.Add(Me.GroupBox1)
  2495. Me.Controls.Add(Me.GroupBox10)
  2496. Me.Controls.Add(Me.GroupBox3)
  2497. Me.Controls.Add(Me.GroupBox9)
  2498. Me.Margin = New System.Windows.Forms.Padding(4, 4, 4, 4)
  2499. Me.Name = "月份查詢"
  2500. Me.Text = "月份查詢"
  2501. Me.GroupBox3.ResumeLayout(False)
  2502. Me.GroupBox6.ResumeLayout(False)
  2503. Me.GroupBox6.PerformLayout()
  2504. Me.GroupBox5.ResumeLayout(False)
  2505. Me.GroupBox5.PerformLayout()
  2506. Me.GroupBox4.ResumeLayout(False)
  2507. Me.GroupBox4.PerformLayout()
  2508. Me.GroupBox9.ResumeLayout(False)
  2509. Me.GroupBox9.PerformLayout()
  2510. Me.GroupBox10.ResumeLayout(False)
  2511. Me.GroupBox10.PerformLayout()
  2512. Me.GroupBox1.ResumeLayout(False)
  2513. Me.GroupBox2.ResumeLayout(False)
  2514. Me.GroupBox2.PerformLayout()
  2515. Me.GroupBox7.ResumeLayout(False)
  2516. Me.GroupBox7.PerformLayout()
  2517. Me.GroupBox8.ResumeLayout(False)
  2518. Me.GroupBox8.PerformLayout()
  2519. Me.GroupBox11.ResumeLayout(False)
  2520. Me.GroupBox12.ResumeLayout(False)
  2521. Me.GroupBox12.PerformLayout()
  2522. Me.GroupBox13.ResumeLayout(False)
  2523. Me.GroupBox13.PerformLayout()
  2524. Me.GroupBox14.ResumeLayout(False)
  2525. Me.GroupBox14.PerformLayout()
  2526. Me.ResumeLayout(False)
  2527. End Sub
  2528. Friend WithEvents GroupBox3 As System.Windows.Forms.GroupBox
  2529. Friend WithEvents GroupBox6 As System.Windows.Forms.GroupBox
  2530. Friend WithEvents Label47 As System.Windows.Forms.Label
  2531. Friend WithEvents TextBox38 As System.Windows.Forms.TextBox
  2532. Friend WithEvents GroupBox5 As System.Windows.Forms.GroupBox
  2533. Friend WithEvents Label46 As System.Windows.Forms.Label
  2534. Friend WithEvents TextBox54 As System.Windows.Forms.TextBox
  2535. Friend WithEvents Label45 As System.Windows.Forms.Label
  2536. Friend WithEvents TextBox53 As System.Windows.Forms.TextBox
  2537. Friend WithEvents Label44 As System.Windows.Forms.Label
  2538. Friend WithEvents TextBox52 As System.Windows.Forms.TextBox
  2539. Friend WithEvents Label43 As System.Windows.Forms.Label
  2540. Friend WithEvents TextBox51 As System.Windows.Forms.TextBox
  2541. Friend WithEvents Label42 As System.Windows.Forms.Label
  2542. Friend WithEvents TextBox50 As System.Windows.Forms.TextBox
  2543. Friend WithEvents Label41 As System.Windows.Forms.Label
  2544. Friend WithEvents TextBox49 As System.Windows.Forms.TextBox
  2545. Friend WithEvents Label40 As System.Windows.Forms.Label
  2546. Friend WithEvents TextBox48 As System.Windows.Forms.TextBox
  2547. Friend WithEvents Label39 As System.Windows.Forms.Label
  2548. Friend WithEvents TextBox47 As System.Windows.Forms.TextBox
  2549. Friend WithEvents Label38 As System.Windows.Forms.Label
  2550. Friend WithEvents TextBox46 As System.Windows.Forms.TextBox
  2551. Friend WithEvents Label37 As System.Windows.Forms.Label
  2552. Friend WithEvents TextBox45 As System.Windows.Forms.TextBox
  2553. Friend WithEvents Label30 As System.Windows.Forms.Label
  2554. Friend WithEvents TextBox39 As System.Windows.Forms.TextBox
  2555. Friend WithEvents Label31 As System.Windows.Forms.Label
  2556. Friend WithEvents TextBox41 As System.Windows.Forms.TextBox
  2557. Friend WithEvents TextBox29 As System.Windows.Forms.TextBox
  2558. Friend WithEvents Label23 As System.Windows.Forms.Label
  2559. Friend WithEvents Label22 As System.Windows.Forms.Label
  2560. Friend WithEvents TextBox37 As System.Windows.Forms.TextBox
  2561. Friend WithEvents Label21 As System.Windows.Forms.Label
  2562. Friend WithEvents TextBox36 As System.Windows.Forms.TextBox
  2563. Friend WithEvents Label26 As System.Windows.Forms.Label
  2564. Friend WithEvents TextBox35 As System.Windows.Forms.TextBox
  2565. Friend WithEvents Label25 As System.Windows.Forms.Label
  2566. Friend WithEvents TextBox34 As System.Windows.Forms.TextBox
  2567. Friend WithEvents Label24 As System.Windows.Forms.Label
  2568. Friend WithEvents TextBox33 As System.Windows.Forms.TextBox
  2569. Friend WithEvents Label29 As System.Windows.Forms.Label
  2570. Friend WithEvents TextBox32 As System.Windows.Forms.TextBox
  2571. Friend WithEvents Label28 As System.Windows.Forms.Label
  2572. Friend WithEvents TextBox31 As System.Windows.Forms.TextBox
  2573. Friend WithEvents Label27 As System.Windows.Forms.Label
  2574. Friend WithEvents TextBox30 As System.Windows.Forms.TextBox
  2575. Friend WithEvents GroupBox4 As System.Windows.Forms.GroupBox
  2576. Friend WithEvents Label36 As System.Windows.Forms.Label
  2577. Friend WithEvents TextBox44 As System.Windows.Forms.TextBox
  2578. Friend WithEvents Label35 As System.Windows.Forms.Label
  2579. Friend WithEvents TextBox43 As System.Windows.Forms.TextBox
  2580. Friend WithEvents Label34 As System.Windows.Forms.Label
  2581. Friend WithEvents TextBox42 As System.Windows.Forms.TextBox
  2582. Friend WithEvents Label33 As System.Windows.Forms.Label
  2583. Friend WithEvents Label18 As System.Windows.Forms.Label
  2584. Friend WithEvents TextBox40 As System.Windows.Forms.TextBox
  2585. Friend WithEvents Label19 As System.Windows.Forms.Label
  2586. Friend WithEvents Label20 As System.Windows.Forms.Label
  2587. Friend WithEvents TextBox26 As System.Windows.Forms.TextBox
  2588. Friend WithEvents TextBox27 As System.Windows.Forms.TextBox
  2589. Friend WithEvents TextBox28 As System.Windows.Forms.TextBox
  2590. Friend WithEvents GroupBox9 As System.Windows.Forms.GroupBox
  2591. Friend WithEvents Label59 As System.Windows.Forms.Label
  2592. Friend WithEvents DateTimePicker2 As System.Windows.Forms.DateTimePicker
  2593. Friend WithEvents DateTimePicker1 As System.Windows.Forms.DateTimePicker
  2594. Friend WithEvents Button1 As System.Windows.Forms.Button
  2595. Friend WithEvents Button2 As System.Windows.Forms.Button
  2596. Friend WithEvents TextBox59 As System.Windows.Forms.TextBox
  2597. Friend WithEvents GroupBox10 As System.Windows.Forms.GroupBox
  2598. Friend WithEvents Label60 As System.Windows.Forms.Label
  2599. Friend WithEvents GroupBox1 As System.Windows.Forms.GroupBox
  2600. Friend WithEvents GroupBox2 As System.Windows.Forms.GroupBox
  2601. Friend WithEvents Label1 As System.Windows.Forms.Label
  2602. Friend WithEvents TextBox1 As System.Windows.Forms.TextBox
  2603. Friend WithEvents GroupBox7 As System.Windows.Forms.GroupBox
  2604. Friend WithEvents Label2 As System.Windows.Forms.Label
  2605. Friend WithEvents TextBox2 As System.Windows.Forms.TextBox
  2606. Friend WithEvents Label3 As System.Windows.Forms.Label
  2607. Friend WithEvents TextBox3 As System.Windows.Forms.TextBox
  2608. Friend WithEvents Label4 As System.Windows.Forms.Label
  2609. Friend WithEvents TextBox4 As System.Windows.Forms.TextBox
  2610. Friend WithEvents Label5 As System.Windows.Forms.Label
  2611. Friend WithEvents TextBox5 As System.Windows.Forms.TextBox
  2612. Friend WithEvents Label6 As System.Windows.Forms.Label
  2613. Friend WithEvents TextBox6 As System.Windows.Forms.TextBox
  2614. Friend WithEvents Label7 As System.Windows.Forms.Label
  2615. Friend WithEvents TextBox7 As System.Windows.Forms.TextBox
  2616. Friend WithEvents Label8 As System.Windows.Forms.Label
  2617. Friend WithEvents TextBox8 As System.Windows.Forms.TextBox
  2618. Friend WithEvents Label9 As System.Windows.Forms.Label
  2619. Friend WithEvents TextBox9 As System.Windows.Forms.TextBox
  2620. Friend WithEvents Label10 As System.Windows.Forms.Label
  2621. Friend WithEvents TextBox10 As System.Windows.Forms.TextBox
  2622. Friend WithEvents Label11 As System.Windows.Forms.Label
  2623. Friend WithEvents TextBox11 As System.Windows.Forms.TextBox
  2624. Friend WithEvents Label12 As System.Windows.Forms.Label
  2625. Friend WithEvents TextBox12 As System.Windows.Forms.TextBox
  2626. Friend WithEvents Label13 As System.Windows.Forms.Label
  2627. Friend WithEvents TextBox13 As System.Windows.Forms.TextBox
  2628. Friend WithEvents TextBox14 As System.Windows.Forms.TextBox
  2629. Friend WithEvents Label14 As System.Windows.Forms.Label
  2630. Friend WithEvents Label15 As System.Windows.Forms.Label
  2631. Friend WithEvents TextBox15 As System.Windows.Forms.TextBox
  2632. Friend WithEvents Label16 As System.Windows.Forms.Label
  2633. Friend WithEvents TextBox16 As System.Windows.Forms.TextBox
  2634. Friend WithEvents Label17 As System.Windows.Forms.Label
  2635. Friend WithEvents TextBox17 As System.Windows.Forms.TextBox
  2636. Friend WithEvents Label32 As System.Windows.Forms.Label
  2637. Friend WithEvents TextBox18 As System.Windows.Forms.TextBox
  2638. Friend WithEvents Label48 As System.Windows.Forms.Label
  2639. Friend WithEvents TextBox19 As System.Windows.Forms.TextBox
  2640. Friend WithEvents Label49 As System.Windows.Forms.Label
  2641. Friend WithEvents TextBox20 As System.Windows.Forms.TextBox
  2642. Friend WithEvents Label50 As System.Windows.Forms.Label
  2643. Friend WithEvents TextBox21 As System.Windows.Forms.TextBox
  2644. Friend WithEvents Label51 As System.Windows.Forms.Label
  2645. Friend WithEvents TextBox22 As System.Windows.Forms.TextBox
  2646. Friend WithEvents GroupBox8 As System.Windows.Forms.GroupBox
  2647. Friend WithEvents Label52 As System.Windows.Forms.Label
  2648. Friend WithEvents TextBox23 As System.Windows.Forms.TextBox
  2649. Friend WithEvents Label53 As System.Windows.Forms.Label
  2650. Friend WithEvents TextBox24 As System.Windows.Forms.TextBox
  2651. Friend WithEvents Label54 As System.Windows.Forms.Label
  2652. Friend WithEvents TextBox25 As System.Windows.Forms.TextBox
  2653. Friend WithEvents Label55 As System.Windows.Forms.Label
  2654. Friend WithEvents Label56 As System.Windows.Forms.Label
  2655. Friend WithEvents TextBox55 As System.Windows.Forms.TextBox
  2656. Friend WithEvents Label57 As System.Windows.Forms.Label
  2657. Friend WithEvents Label58 As System.Windows.Forms.Label
  2658. Friend WithEvents TextBox56 As System.Windows.Forms.TextBox
  2659. Friend WithEvents TextBox57 As System.Windows.Forms.TextBox
  2660. Friend WithEvents TextBox58 As System.Windows.Forms.TextBox
  2661. Friend WithEvents GroupBox11 As System.Windows.Forms.GroupBox
  2662. Friend WithEvents GroupBox12 As System.Windows.Forms.GroupBox
  2663. Friend WithEvents Label61 As System.Windows.Forms.Label
  2664. Friend WithEvents TextBox60 As System.Windows.Forms.TextBox
  2665. Friend WithEvents GroupBox13 As System.Windows.Forms.GroupBox
  2666. Friend WithEvents Label62 As System.Windows.Forms.Label
  2667. Friend WithEvents TextBox61 As System.Windows.Forms.TextBox
  2668. Friend WithEvents Label63 As System.Windows.Forms.Label
  2669. Friend WithEvents TextBox62 As System.Windows.Forms.TextBox
  2670. Friend WithEvents Label64 As System.Windows.Forms.Label
  2671. Friend WithEvents TextBox63 As System.Windows.Forms.TextBox
  2672. Friend WithEvents Label65 As System.Windows.Forms.Label
  2673. Friend WithEvents TextBox64 As System.Windows.Forms.TextBox
  2674. Friend WithEvents Label66 As System.Windows.Forms.Label
  2675. Friend WithEvents TextBox65 As System.Windows.Forms.TextBox
  2676. Friend WithEvents Label67 As System.Windows.Forms.Label
  2677. Friend WithEvents TextBox66 As System.Windows.Forms.TextBox
  2678. Friend WithEvents Label68 As System.Windows.Forms.Label
  2679. Friend WithEvents TextBox67 As System.Windows.Forms.TextBox
  2680. Friend WithEvents Label69 As System.Windows.Forms.Label
  2681. Friend WithEvents TextBox68 As System.Windows.Forms.TextBox
  2682. Friend WithEvents Label70 As System.Windows.Forms.Label
  2683. Friend WithEvents TextBox69 As System.Windows.Forms.TextBox
  2684. Friend WithEvents Label71 As System.Windows.Forms.Label
  2685. Friend WithEvents TextBox70 As System.Windows.Forms.TextBox
  2686. Friend WithEvents Label72 As System.Windows.Forms.Label
  2687. Friend WithEvents TextBox71 As System.Windows.Forms.TextBox
  2688. Friend WithEvents Label73 As System.Windows.Forms.Label
  2689. Friend WithEvents TextBox72 As System.Windows.Forms.TextBox
  2690. Friend WithEvents TextBox73 As System.Windows.Forms.TextBox
  2691. Friend WithEvents Label74 As System.Windows.Forms.Label
  2692. Friend WithEvents Label75 As System.Windows.Forms.Label
  2693. Friend WithEvents TextBox74 As System.Windows.Forms.TextBox
  2694. Friend WithEvents Label76 As System.Windows.Forms.Label
  2695. Friend WithEvents TextBox75 As System.Windows.Forms.TextBox
  2696. Friend WithEvents Label77 As System.Windows.Forms.Label
  2697. Friend WithEvents TextBox76 As System.Windows.Forms.TextBox
  2698. Friend WithEvents Label78 As System.Windows.Forms.Label
  2699. Friend WithEvents TextBox77 As System.Windows.Forms.TextBox
  2700. Friend WithEvents Label79 As System.Windows.Forms.Label
  2701. Friend WithEvents TextBox78 As System.Windows.Forms.TextBox
  2702. Friend WithEvents Label80 As System.Windows.Forms.Label
  2703. Friend WithEvents TextBox79 As System.Windows.Forms.TextBox
  2704. Friend WithEvents Label81 As System.Windows.Forms.Label
  2705. Friend WithEvents TextBox80 As System.Windows.Forms.TextBox
  2706. Friend WithEvents Label82 As System.Windows.Forms.Label
  2707. Friend WithEvents TextBox81 As System.Windows.Forms.TextBox
  2708. Friend WithEvents GroupBox14 As System.Windows.Forms.GroupBox
  2709. Friend WithEvents Label83 As System.Windows.Forms.Label
  2710. Friend WithEvents TextBox82 As System.Windows.Forms.TextBox
  2711. Friend WithEvents Label84 As System.Windows.Forms.Label
  2712. Friend WithEvents TextBox83 As System.Windows.Forms.TextBox
  2713. Friend WithEvents Label85 As System.Windows.Forms.Label
  2714. Friend WithEvents TextBox84 As System.Windows.Forms.TextBox
  2715. Friend WithEvents Label86 As System.Windows.Forms.Label
  2716. Friend WithEvents Label87 As System.Windows.Forms.Label
  2717. Friend WithEvents TextBox85 As System.Windows.Forms.TextBox
  2718. Friend WithEvents Label88 As System.Windows.Forms.Label
  2719. Friend WithEvents Label89 As System.Windows.Forms.Label
  2720. Friend WithEvents TextBox86 As System.Windows.Forms.TextBox
  2721. Friend WithEvents TextBox87 As System.Windows.Forms.TextBox
  2722. Friend WithEvents TextBox88 As System.Windows.Forms.TextBox
  2723. End Class