123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727 |
- <Global.Microsoft.VisualBasic.CompilerServices.DesignerGenerated()> _
- Partial Class 月份查詢
- Inherits System.Windows.Forms.Form
-
- 'Form 覆寫 Dispose 以清除元件清單。
- <System.Diagnostics.DebuggerNonUserCode()> _
- Protected Overrides Sub Dispose(ByVal disposing As Boolean)
- Try
- If disposing AndAlso components IsNot Nothing Then
- components.Dispose()
- End If
- Finally
- MyBase.Dispose(disposing)
- End Try
- End Sub
-
- '為 Windows Form 設計工具的必要項
- Private components As System.ComponentModel.IContainer
-
- '注意: 以下為 Windows Form 設計工具所需的程序
- '可以使用 Windows Form 設計工具進行修改。
- '請不要使用程式碼編輯器進行修改。
- <System.Diagnostics.DebuggerStepThrough()> _
- Private Sub InitializeComponent()
- Me.GroupBox3 = New System.Windows.Forms.GroupBox()
- Me.GroupBox6 = New System.Windows.Forms.GroupBox()
- Me.Label47 = New System.Windows.Forms.Label()
- Me.TextBox38 = New System.Windows.Forms.TextBox()
- Me.GroupBox5 = New System.Windows.Forms.GroupBox()
- Me.Label46 = New System.Windows.Forms.Label()
- Me.TextBox54 = New System.Windows.Forms.TextBox()
- Me.Label45 = New System.Windows.Forms.Label()
- Me.TextBox53 = New System.Windows.Forms.TextBox()
- Me.Label44 = New System.Windows.Forms.Label()
- Me.TextBox52 = New System.Windows.Forms.TextBox()
- Me.Label43 = New System.Windows.Forms.Label()
- Me.TextBox51 = New System.Windows.Forms.TextBox()
- Me.Label42 = New System.Windows.Forms.Label()
- Me.TextBox50 = New System.Windows.Forms.TextBox()
- Me.Label41 = New System.Windows.Forms.Label()
- Me.TextBox49 = New System.Windows.Forms.TextBox()
- Me.Label40 = New System.Windows.Forms.Label()
- Me.TextBox48 = New System.Windows.Forms.TextBox()
- Me.Label39 = New System.Windows.Forms.Label()
- Me.TextBox47 = New System.Windows.Forms.TextBox()
- Me.Label38 = New System.Windows.Forms.Label()
- Me.TextBox46 = New System.Windows.Forms.TextBox()
- Me.Label37 = New System.Windows.Forms.Label()
- Me.TextBox45 = New System.Windows.Forms.TextBox()
- Me.Label30 = New System.Windows.Forms.Label()
- Me.TextBox39 = New System.Windows.Forms.TextBox()
- Me.Label31 = New System.Windows.Forms.Label()
- Me.TextBox41 = New System.Windows.Forms.TextBox()
- Me.TextBox29 = New System.Windows.Forms.TextBox()
- Me.Label23 = New System.Windows.Forms.Label()
- Me.Label22 = New System.Windows.Forms.Label()
- Me.TextBox37 = New System.Windows.Forms.TextBox()
- Me.Label21 = New System.Windows.Forms.Label()
- Me.TextBox36 = New System.Windows.Forms.TextBox()
- Me.Label26 = New System.Windows.Forms.Label()
- Me.TextBox35 = New System.Windows.Forms.TextBox()
- Me.Label25 = New System.Windows.Forms.Label()
- Me.TextBox34 = New System.Windows.Forms.TextBox()
- Me.Label24 = New System.Windows.Forms.Label()
- Me.TextBox33 = New System.Windows.Forms.TextBox()
- Me.Label29 = New System.Windows.Forms.Label()
- Me.TextBox32 = New System.Windows.Forms.TextBox()
- Me.Label28 = New System.Windows.Forms.Label()
- Me.TextBox31 = New System.Windows.Forms.TextBox()
- Me.Label27 = New System.Windows.Forms.Label()
- Me.TextBox30 = New System.Windows.Forms.TextBox()
- Me.GroupBox4 = New System.Windows.Forms.GroupBox()
- Me.Label36 = New System.Windows.Forms.Label()
- Me.TextBox44 = New System.Windows.Forms.TextBox()
- Me.Label35 = New System.Windows.Forms.Label()
- Me.TextBox43 = New System.Windows.Forms.TextBox()
- Me.Label34 = New System.Windows.Forms.Label()
- Me.TextBox42 = New System.Windows.Forms.TextBox()
- Me.Label33 = New System.Windows.Forms.Label()
- Me.Label18 = New System.Windows.Forms.Label()
- Me.TextBox40 = New System.Windows.Forms.TextBox()
- Me.Label19 = New System.Windows.Forms.Label()
- Me.Label20 = New System.Windows.Forms.Label()
- Me.TextBox26 = New System.Windows.Forms.TextBox()
- Me.TextBox27 = New System.Windows.Forms.TextBox()
- Me.TextBox28 = New System.Windows.Forms.TextBox()
- Me.GroupBox9 = New System.Windows.Forms.GroupBox()
- Me.Button1 = New System.Windows.Forms.Button()
- Me.Button2 = New System.Windows.Forms.Button()
- Me.Label59 = New System.Windows.Forms.Label()
- Me.DateTimePicker2 = New System.Windows.Forms.DateTimePicker()
- Me.DateTimePicker1 = New System.Windows.Forms.DateTimePicker()
- Me.TextBox59 = New System.Windows.Forms.TextBox()
- Me.GroupBox10 = New System.Windows.Forms.GroupBox()
- Me.Label60 = New System.Windows.Forms.Label()
- Me.GroupBox1 = New System.Windows.Forms.GroupBox()
- Me.GroupBox2 = New System.Windows.Forms.GroupBox()
- Me.Label1 = New System.Windows.Forms.Label()
- Me.TextBox1 = New System.Windows.Forms.TextBox()
- Me.GroupBox7 = New System.Windows.Forms.GroupBox()
- Me.Label2 = New System.Windows.Forms.Label()
- Me.TextBox2 = New System.Windows.Forms.TextBox()
- Me.Label3 = New System.Windows.Forms.Label()
- Me.TextBox3 = New System.Windows.Forms.TextBox()
- Me.Label4 = New System.Windows.Forms.Label()
- Me.TextBox4 = New System.Windows.Forms.TextBox()
- Me.Label5 = New System.Windows.Forms.Label()
- Me.TextBox5 = New System.Windows.Forms.TextBox()
- Me.Label6 = New System.Windows.Forms.Label()
- Me.TextBox6 = New System.Windows.Forms.TextBox()
- Me.Label7 = New System.Windows.Forms.Label()
- Me.TextBox7 = New System.Windows.Forms.TextBox()
- Me.Label8 = New System.Windows.Forms.Label()
- Me.TextBox8 = New System.Windows.Forms.TextBox()
- Me.Label9 = New System.Windows.Forms.Label()
- Me.TextBox9 = New System.Windows.Forms.TextBox()
- Me.Label10 = New System.Windows.Forms.Label()
- Me.TextBox10 = New System.Windows.Forms.TextBox()
- Me.Label11 = New System.Windows.Forms.Label()
- Me.TextBox11 = New System.Windows.Forms.TextBox()
- Me.Label12 = New System.Windows.Forms.Label()
- Me.TextBox12 = New System.Windows.Forms.TextBox()
- Me.Label13 = New System.Windows.Forms.Label()
- Me.TextBox13 = New System.Windows.Forms.TextBox()
- Me.TextBox14 = New System.Windows.Forms.TextBox()
- Me.Label14 = New System.Windows.Forms.Label()
- Me.Label15 = New System.Windows.Forms.Label()
- Me.TextBox15 = New System.Windows.Forms.TextBox()
- Me.Label16 = New System.Windows.Forms.Label()
- Me.TextBox16 = New System.Windows.Forms.TextBox()
- Me.Label17 = New System.Windows.Forms.Label()
- Me.TextBox17 = New System.Windows.Forms.TextBox()
- Me.Label32 = New System.Windows.Forms.Label()
- Me.TextBox18 = New System.Windows.Forms.TextBox()
- Me.Label48 = New System.Windows.Forms.Label()
- Me.TextBox19 = New System.Windows.Forms.TextBox()
- Me.Label49 = New System.Windows.Forms.Label()
- Me.TextBox20 = New System.Windows.Forms.TextBox()
- Me.Label50 = New System.Windows.Forms.Label()
- Me.TextBox21 = New System.Windows.Forms.TextBox()
- Me.Label51 = New System.Windows.Forms.Label()
- Me.TextBox22 = New System.Windows.Forms.TextBox()
- Me.GroupBox8 = New System.Windows.Forms.GroupBox()
- Me.Label52 = New System.Windows.Forms.Label()
- Me.TextBox23 = New System.Windows.Forms.TextBox()
- Me.Label53 = New System.Windows.Forms.Label()
- Me.TextBox24 = New System.Windows.Forms.TextBox()
- Me.Label54 = New System.Windows.Forms.Label()
- Me.TextBox25 = New System.Windows.Forms.TextBox()
- Me.Label55 = New System.Windows.Forms.Label()
- Me.Label56 = New System.Windows.Forms.Label()
- Me.TextBox55 = New System.Windows.Forms.TextBox()
- Me.Label57 = New System.Windows.Forms.Label()
- Me.Label58 = New System.Windows.Forms.Label()
- Me.TextBox56 = New System.Windows.Forms.TextBox()
- Me.TextBox57 = New System.Windows.Forms.TextBox()
- Me.TextBox58 = New System.Windows.Forms.TextBox()
- Me.GroupBox11 = New System.Windows.Forms.GroupBox()
- Me.GroupBox12 = New System.Windows.Forms.GroupBox()
- Me.Label61 = New System.Windows.Forms.Label()
- Me.TextBox60 = New System.Windows.Forms.TextBox()
- Me.GroupBox13 = New System.Windows.Forms.GroupBox()
- Me.Label62 = New System.Windows.Forms.Label()
- Me.TextBox61 = New System.Windows.Forms.TextBox()
- Me.Label63 = New System.Windows.Forms.Label()
- Me.TextBox62 = New System.Windows.Forms.TextBox()
- Me.Label64 = New System.Windows.Forms.Label()
- Me.TextBox63 = New System.Windows.Forms.TextBox()
- Me.Label65 = New System.Windows.Forms.Label()
- Me.TextBox64 = New System.Windows.Forms.TextBox()
- Me.Label66 = New System.Windows.Forms.Label()
- Me.TextBox65 = New System.Windows.Forms.TextBox()
- Me.Label67 = New System.Windows.Forms.Label()
- Me.TextBox66 = New System.Windows.Forms.TextBox()
- Me.Label68 = New System.Windows.Forms.Label()
- Me.TextBox67 = New System.Windows.Forms.TextBox()
- Me.Label69 = New System.Windows.Forms.Label()
- Me.TextBox68 = New System.Windows.Forms.TextBox()
- Me.Label70 = New System.Windows.Forms.Label()
- Me.TextBox69 = New System.Windows.Forms.TextBox()
- Me.Label71 = New System.Windows.Forms.Label()
- Me.TextBox70 = New System.Windows.Forms.TextBox()
- Me.Label72 = New System.Windows.Forms.Label()
- Me.TextBox71 = New System.Windows.Forms.TextBox()
- Me.Label73 = New System.Windows.Forms.Label()
- Me.TextBox72 = New System.Windows.Forms.TextBox()
- Me.TextBox73 = New System.Windows.Forms.TextBox()
- Me.Label74 = New System.Windows.Forms.Label()
- Me.Label75 = New System.Windows.Forms.Label()
- Me.TextBox74 = New System.Windows.Forms.TextBox()
- Me.Label76 = New System.Windows.Forms.Label()
- Me.TextBox75 = New System.Windows.Forms.TextBox()
- Me.Label77 = New System.Windows.Forms.Label()
- Me.TextBox76 = New System.Windows.Forms.TextBox()
- Me.Label78 = New System.Windows.Forms.Label()
- Me.TextBox77 = New System.Windows.Forms.TextBox()
- Me.Label79 = New System.Windows.Forms.Label()
- Me.TextBox78 = New System.Windows.Forms.TextBox()
- Me.Label80 = New System.Windows.Forms.Label()
- Me.TextBox79 = New System.Windows.Forms.TextBox()
- Me.Label81 = New System.Windows.Forms.Label()
- Me.TextBox80 = New System.Windows.Forms.TextBox()
- Me.Label82 = New System.Windows.Forms.Label()
- Me.TextBox81 = New System.Windows.Forms.TextBox()
- Me.GroupBox14 = New System.Windows.Forms.GroupBox()
- Me.Label83 = New System.Windows.Forms.Label()
- Me.TextBox82 = New System.Windows.Forms.TextBox()
- Me.Label84 = New System.Windows.Forms.Label()
- Me.TextBox83 = New System.Windows.Forms.TextBox()
- Me.Label85 = New System.Windows.Forms.Label()
- Me.TextBox84 = New System.Windows.Forms.TextBox()
- Me.Label86 = New System.Windows.Forms.Label()
- Me.Label87 = New System.Windows.Forms.Label()
- Me.TextBox85 = New System.Windows.Forms.TextBox()
- Me.Label88 = New System.Windows.Forms.Label()
- Me.Label89 = New System.Windows.Forms.Label()
- Me.TextBox86 = New System.Windows.Forms.TextBox()
- Me.TextBox87 = New System.Windows.Forms.TextBox()
- Me.TextBox88 = New System.Windows.Forms.TextBox()
- Me.GroupBox3.SuspendLayout()
- Me.GroupBox6.SuspendLayout()
- Me.GroupBox5.SuspendLayout()
- Me.GroupBox4.SuspendLayout()
- Me.GroupBox9.SuspendLayout()
- Me.GroupBox10.SuspendLayout()
- Me.GroupBox1.SuspendLayout()
- Me.GroupBox2.SuspendLayout()
- Me.GroupBox7.SuspendLayout()
- Me.GroupBox8.SuspendLayout()
- Me.GroupBox11.SuspendLayout()
- Me.GroupBox12.SuspendLayout()
- Me.GroupBox13.SuspendLayout()
- Me.GroupBox14.SuspendLayout()
- Me.SuspendLayout()
- '
- 'GroupBox3
- '
- Me.GroupBox3.Controls.Add(Me.GroupBox6)
- Me.GroupBox3.Controls.Add(Me.GroupBox5)
- Me.GroupBox3.Controls.Add(Me.GroupBox4)
- Me.GroupBox3.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.GroupBox3.Location = New System.Drawing.Point(16, 83)
- Me.GroupBox3.Margin = New System.Windows.Forms.Padding(4, 4, 4, 4)
- Me.GroupBox3.Name = "GroupBox3"
- Me.GroupBox3.Padding = New System.Windows.Forms.Padding(4, 4, 4, 4)
- Me.GroupBox3.Size = New System.Drawing.Size(352, 674)
- Me.GroupBox3.TabIndex = 51
- Me.GroupBox3.TabStop = False
- Me.GroupBox3.Text = "台幣統計"
- '
- 'GroupBox6
- '
- Me.GroupBox6.Controls.Add(Me.Label47)
- Me.GroupBox6.Controls.Add(Me.TextBox38)
- Me.GroupBox6.Location = New System.Drawing.Point(8, 610)
- Me.GroupBox6.Margin = New System.Windows.Forms.Padding(4, 4, 4, 4)
- Me.GroupBox6.Name = "GroupBox6"
- Me.GroupBox6.Padding = New System.Windows.Forms.Padding(4, 4, 4, 4)
- Me.GroupBox6.Size = New System.Drawing.Size(335, 55)
- Me.GroupBox6.TabIndex = 52
- Me.GroupBox6.TabStop = False
- Me.GroupBox6.Text = "資產"
- '
- 'Label47
- '
- Me.Label47.AutoSize = True
- Me.Label47.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.Label47.Location = New System.Drawing.Point(8, 24)
- Me.Label47.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
- Me.Label47.Name = "Label47"
- Me.Label47.Size = New System.Drawing.Size(69, 19)
- Me.Label47.TabIndex = 54
- Me.Label47.Text = "目前餘額"
- '
- 'TextBox38
- '
- Me.TextBox38.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.TextBox38.ForeColor = System.Drawing.Color.Green
- Me.TextBox38.Location = New System.Drawing.Point(86, 21)
- Me.TextBox38.Margin = New System.Windows.Forms.Padding(4, 4, 4, 4)
- Me.TextBox38.Name = "TextBox38"
- Me.TextBox38.Size = New System.Drawing.Size(220, 27)
- Me.TextBox38.TabIndex = 36
- '
- 'GroupBox5
- '
- Me.GroupBox5.Controls.Add(Me.Label46)
- Me.GroupBox5.Controls.Add(Me.TextBox54)
- Me.GroupBox5.Controls.Add(Me.Label45)
- Me.GroupBox5.Controls.Add(Me.TextBox53)
- Me.GroupBox5.Controls.Add(Me.Label44)
- Me.GroupBox5.Controls.Add(Me.TextBox52)
- Me.GroupBox5.Controls.Add(Me.Label43)
- Me.GroupBox5.Controls.Add(Me.TextBox51)
- Me.GroupBox5.Controls.Add(Me.Label42)
- Me.GroupBox5.Controls.Add(Me.TextBox50)
- Me.GroupBox5.Controls.Add(Me.Label41)
- Me.GroupBox5.Controls.Add(Me.TextBox49)
- Me.GroupBox5.Controls.Add(Me.Label40)
- Me.GroupBox5.Controls.Add(Me.TextBox48)
- Me.GroupBox5.Controls.Add(Me.Label39)
- Me.GroupBox5.Controls.Add(Me.TextBox47)
- Me.GroupBox5.Controls.Add(Me.Label38)
- Me.GroupBox5.Controls.Add(Me.TextBox46)
- Me.GroupBox5.Controls.Add(Me.Label37)
- Me.GroupBox5.Controls.Add(Me.TextBox45)
- Me.GroupBox5.Controls.Add(Me.Label30)
- Me.GroupBox5.Controls.Add(Me.TextBox39)
- Me.GroupBox5.Controls.Add(Me.Label31)
- Me.GroupBox5.Controls.Add(Me.TextBox41)
- Me.GroupBox5.Controls.Add(Me.TextBox29)
- Me.GroupBox5.Controls.Add(Me.Label23)
- Me.GroupBox5.Controls.Add(Me.Label22)
- Me.GroupBox5.Controls.Add(Me.TextBox37)
- Me.GroupBox5.Controls.Add(Me.Label21)
- Me.GroupBox5.Controls.Add(Me.TextBox36)
- Me.GroupBox5.Controls.Add(Me.Label26)
- Me.GroupBox5.Controls.Add(Me.TextBox35)
- Me.GroupBox5.Controls.Add(Me.Label25)
- Me.GroupBox5.Controls.Add(Me.TextBox34)
- Me.GroupBox5.Controls.Add(Me.Label24)
- Me.GroupBox5.Controls.Add(Me.TextBox33)
- Me.GroupBox5.Controls.Add(Me.Label29)
- Me.GroupBox5.Controls.Add(Me.TextBox32)
- Me.GroupBox5.Controls.Add(Me.Label28)
- Me.GroupBox5.Controls.Add(Me.TextBox31)
- Me.GroupBox5.Controls.Add(Me.Label27)
- Me.GroupBox5.Controls.Add(Me.TextBox30)
- Me.GroupBox5.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.GroupBox5.Location = New System.Drawing.Point(8, 198)
- Me.GroupBox5.Margin = New System.Windows.Forms.Padding(4, 4, 4, 4)
- Me.GroupBox5.Name = "GroupBox5"
- Me.GroupBox5.Padding = New System.Windows.Forms.Padding(4, 4, 4, 4)
- Me.GroupBox5.Size = New System.Drawing.Size(335, 404)
- Me.GroupBox5.TabIndex = 51
- Me.GroupBox5.TabStop = False
- Me.GroupBox5.Text = "支出"
- '
- 'Label46
- '
- Me.Label46.AutoSize = True
- Me.Label46.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.Label46.Location = New System.Drawing.Point(307, 338)
- Me.Label46.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
- Me.Label46.Name = "Label46"
- Me.Label46.Size = New System.Drawing.Size(22, 19)
- Me.Label46.TabIndex = 61
- Me.Label46.Text = "%"
- '
- 'TextBox54
- '
- Me.TextBox54.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.TextBox54.ForeColor = System.Drawing.Color.Red
- Me.TextBox54.Location = New System.Drawing.Point(202, 335)
- Me.TextBox54.Margin = New System.Windows.Forms.Padding(4, 4, 4, 4)
- Me.TextBox54.Name = "TextBox54"
- Me.TextBox54.Size = New System.Drawing.Size(100, 27)
- Me.TextBox54.TabIndex = 60
- '
- 'Label45
- '
- Me.Label45.AutoSize = True
- Me.Label45.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.Label45.Location = New System.Drawing.Point(307, 303)
- Me.Label45.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
- Me.Label45.Name = "Label45"
- Me.Label45.Size = New System.Drawing.Size(22, 19)
- Me.Label45.TabIndex = 59
- Me.Label45.Text = "%"
- '
- 'TextBox53
- '
- Me.TextBox53.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.TextBox53.ForeColor = System.Drawing.Color.Red
- Me.TextBox53.Location = New System.Drawing.Point(202, 300)
- Me.TextBox53.Margin = New System.Windows.Forms.Padding(4, 4, 4, 4)
- Me.TextBox53.Name = "TextBox53"
- Me.TextBox53.Size = New System.Drawing.Size(100, 27)
- Me.TextBox53.TabIndex = 58
- '
- 'Label44
- '
- Me.Label44.AutoSize = True
- Me.Label44.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.Label44.Location = New System.Drawing.Point(307, 268)
- Me.Label44.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
- Me.Label44.Name = "Label44"
- Me.Label44.Size = New System.Drawing.Size(22, 19)
- Me.Label44.TabIndex = 57
- Me.Label44.Text = "%"
- '
- 'TextBox52
- '
- Me.TextBox52.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.TextBox52.ForeColor = System.Drawing.Color.Red
- Me.TextBox52.Location = New System.Drawing.Point(202, 265)
- Me.TextBox52.Margin = New System.Windows.Forms.Padding(4, 4, 4, 4)
- Me.TextBox52.Name = "TextBox52"
- Me.TextBox52.Size = New System.Drawing.Size(100, 27)
- Me.TextBox52.TabIndex = 56
- '
- 'Label43
- '
- Me.Label43.AutoSize = True
- Me.Label43.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.Label43.Location = New System.Drawing.Point(307, 233)
- Me.Label43.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
- Me.Label43.Name = "Label43"
- Me.Label43.Size = New System.Drawing.Size(22, 19)
- Me.Label43.TabIndex = 55
- Me.Label43.Text = "%"
- '
- 'TextBox51
- '
- Me.TextBox51.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.TextBox51.ForeColor = System.Drawing.Color.Red
- Me.TextBox51.Location = New System.Drawing.Point(202, 230)
- Me.TextBox51.Margin = New System.Windows.Forms.Padding(4, 4, 4, 4)
- Me.TextBox51.Name = "TextBox51"
- Me.TextBox51.Size = New System.Drawing.Size(100, 27)
- Me.TextBox51.TabIndex = 54
- '
- 'Label42
- '
- Me.Label42.AutoSize = True
- Me.Label42.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.Label42.Location = New System.Drawing.Point(307, 199)
- Me.Label42.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
- Me.Label42.Name = "Label42"
- Me.Label42.Size = New System.Drawing.Size(22, 19)
- Me.Label42.TabIndex = 53
- Me.Label42.Text = "%"
- '
- 'TextBox50
- '
- Me.TextBox50.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.TextBox50.ForeColor = System.Drawing.Color.Red
- Me.TextBox50.Location = New System.Drawing.Point(202, 195)
- Me.TextBox50.Margin = New System.Windows.Forms.Padding(4, 4, 4, 4)
- Me.TextBox50.Name = "TextBox50"
- Me.TextBox50.Size = New System.Drawing.Size(100, 27)
- Me.TextBox50.TabIndex = 52
- '
- 'Label41
- '
- Me.Label41.AutoSize = True
- Me.Label41.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.Label41.Location = New System.Drawing.Point(307, 163)
- Me.Label41.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
- Me.Label41.Name = "Label41"
- Me.Label41.Size = New System.Drawing.Size(22, 19)
- Me.Label41.TabIndex = 51
- Me.Label41.Text = "%"
- '
- 'TextBox49
- '
- Me.TextBox49.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.TextBox49.ForeColor = System.Drawing.Color.Red
- Me.TextBox49.Location = New System.Drawing.Point(202, 160)
- Me.TextBox49.Margin = New System.Windows.Forms.Padding(4, 4, 4, 4)
- Me.TextBox49.Name = "TextBox49"
- Me.TextBox49.Size = New System.Drawing.Size(100, 27)
- Me.TextBox49.TabIndex = 50
- '
- 'Label40
- '
- Me.Label40.AutoSize = True
- Me.Label40.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.Label40.Location = New System.Drawing.Point(307, 128)
- Me.Label40.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
- Me.Label40.Name = "Label40"
- Me.Label40.Size = New System.Drawing.Size(22, 19)
- Me.Label40.TabIndex = 49
- Me.Label40.Text = "%"
- '
- 'TextBox48
- '
- Me.TextBox48.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.TextBox48.ForeColor = System.Drawing.Color.Red
- Me.TextBox48.Location = New System.Drawing.Point(202, 125)
- Me.TextBox48.Margin = New System.Windows.Forms.Padding(4, 4, 4, 4)
- Me.TextBox48.Name = "TextBox48"
- Me.TextBox48.Size = New System.Drawing.Size(100, 27)
- Me.TextBox48.TabIndex = 48
- '
- 'Label39
- '
- Me.Label39.AutoSize = True
- Me.Label39.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.Label39.Location = New System.Drawing.Point(307, 93)
- Me.Label39.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
- Me.Label39.Name = "Label39"
- Me.Label39.Size = New System.Drawing.Size(22, 19)
- Me.Label39.TabIndex = 47
- Me.Label39.Text = "%"
- '
- 'TextBox47
- '
- Me.TextBox47.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.TextBox47.ForeColor = System.Drawing.Color.Red
- Me.TextBox47.Location = New System.Drawing.Point(202, 90)
- Me.TextBox47.Margin = New System.Windows.Forms.Padding(4, 4, 4, 4)
- Me.TextBox47.Name = "TextBox47"
- Me.TextBox47.Size = New System.Drawing.Size(100, 27)
- Me.TextBox47.TabIndex = 46
- '
- 'Label38
- '
- Me.Label38.AutoSize = True
- Me.Label38.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.Label38.Location = New System.Drawing.Point(307, 57)
- Me.Label38.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
- Me.Label38.Name = "Label38"
- Me.Label38.Size = New System.Drawing.Size(22, 19)
- Me.Label38.TabIndex = 45
- Me.Label38.Text = "%"
- '
- 'TextBox46
- '
- Me.TextBox46.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.TextBox46.ForeColor = System.Drawing.Color.Red
- Me.TextBox46.Location = New System.Drawing.Point(201, 55)
- Me.TextBox46.Margin = New System.Windows.Forms.Padding(4, 4, 4, 4)
- Me.TextBox46.Name = "TextBox46"
- Me.TextBox46.Size = New System.Drawing.Size(100, 27)
- Me.TextBox46.TabIndex = 44
- '
- 'Label37
- '
- Me.Label37.AutoSize = True
- Me.Label37.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.Label37.Location = New System.Drawing.Point(307, 23)
- Me.Label37.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
- Me.Label37.Name = "Label37"
- Me.Label37.Size = New System.Drawing.Size(22, 19)
- Me.Label37.TabIndex = 43
- Me.Label37.Text = "%"
- '
- 'TextBox45
- '
- Me.TextBox45.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.TextBox45.ForeColor = System.Drawing.Color.Red
- Me.TextBox45.Location = New System.Drawing.Point(201, 20)
- Me.TextBox45.Margin = New System.Windows.Forms.Padding(4, 4, 4, 4)
- Me.TextBox45.Name = "TextBox45"
- Me.TextBox45.Size = New System.Drawing.Size(100, 27)
- Me.TextBox45.TabIndex = 42
- '
- 'Label30
- '
- Me.Label30.AutoSize = True
- Me.Label30.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.Label30.Location = New System.Drawing.Point(23, 373)
- Me.Label30.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
- Me.Label30.Name = "Label30"
- Me.Label30.Size = New System.Drawing.Size(54, 19)
- Me.Label30.TabIndex = 37
- Me.Label30.Text = "總支出"
- '
- 'TextBox39
- '
- Me.TextBox39.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.TextBox39.ForeColor = System.Drawing.Color.Red
- Me.TextBox39.Location = New System.Drawing.Point(86, 335)
- Me.TextBox39.Margin = New System.Windows.Forms.Padding(4, 4, 4, 4)
- Me.TextBox39.Name = "TextBox39"
- Me.TextBox39.Size = New System.Drawing.Size(108, 27)
- Me.TextBox39.TabIndex = 37
- '
- 'Label31
- '
- Me.Label31.AutoSize = True
- Me.Label31.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.Label31.Location = New System.Drawing.Point(23, 338)
- Me.Label31.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
- Me.Label31.Name = "Label31"
- Me.Label31.Size = New System.Drawing.Size(54, 19)
- Me.Label31.TabIndex = 22
- Me.Label31.Text = "手續費"
- '
- 'TextBox41
- '
- Me.TextBox41.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.TextBox41.ForeColor = System.Drawing.Color.Red
- Me.TextBox41.Location = New System.Drawing.Point(86, 370)
- Me.TextBox41.Margin = New System.Windows.Forms.Padding(4, 4, 4, 4)
- Me.TextBox41.Name = "TextBox41"
- Me.TextBox41.Size = New System.Drawing.Size(108, 27)
- Me.TextBox41.TabIndex = 36
- '
- 'TextBox29
- '
- Me.TextBox29.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.TextBox29.ForeColor = System.Drawing.Color.Red
- Me.TextBox29.Location = New System.Drawing.Point(85, 20)
- Me.TextBox29.Margin = New System.Windows.Forms.Padding(4, 4, 4, 4)
- Me.TextBox29.Name = "TextBox29"
- Me.TextBox29.Size = New System.Drawing.Size(108, 27)
- Me.TextBox29.TabIndex = 27
- '
- 'Label23
- '
- Me.Label23.AutoSize = True
- Me.Label23.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.Label23.Location = New System.Drawing.Point(23, 24)
- Me.Label23.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
- Me.Label23.Name = "Label23"
- Me.Label23.Size = New System.Drawing.Size(54, 19)
- Me.Label23.TabIndex = 12
- Me.Label23.Text = "交通費"
- '
- 'Label22
- '
- Me.Label22.AutoSize = True
- Me.Label22.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.Label22.Location = New System.Drawing.Point(23, 93)
- Me.Label22.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
- Me.Label22.Name = "Label22"
- Me.Label22.Size = New System.Drawing.Size(54, 19)
- Me.Label22.TabIndex = 13
- Me.Label22.Text = "伙食費"
- '
- 'TextBox37
- '
- Me.TextBox37.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.TextBox37.ForeColor = System.Drawing.Color.Red
- Me.TextBox37.Location = New System.Drawing.Point(86, 300)
- Me.TextBox37.Margin = New System.Windows.Forms.Padding(4, 4, 4, 4)
- Me.TextBox37.Name = "TextBox37"
- Me.TextBox37.Size = New System.Drawing.Size(108, 27)
- Me.TextBox37.TabIndex = 35
- '
- 'Label21
- '
- Me.Label21.AutoSize = True
- Me.Label21.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.Label21.Location = New System.Drawing.Point(23, 58)
- Me.Label21.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
- Me.Label21.Name = "Label21"
- Me.Label21.Size = New System.Drawing.Size(54, 19)
- Me.Label21.TabIndex = 14
- Me.Label21.Text = "住宿費"
- '
- 'TextBox36
- '
- Me.TextBox36.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.TextBox36.ForeColor = System.Drawing.Color.Red
- Me.TextBox36.Location = New System.Drawing.Point(86, 265)
- Me.TextBox36.Margin = New System.Windows.Forms.Padding(4, 4, 4, 4)
- Me.TextBox36.Name = "TextBox36"
- Me.TextBox36.Size = New System.Drawing.Size(108, 27)
- Me.TextBox36.TabIndex = 34
- '
- 'Label26
- '
- Me.Label26.AutoSize = True
- Me.Label26.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.Label26.Location = New System.Drawing.Point(23, 128)
- Me.Label26.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
- Me.Label26.Name = "Label26"
- Me.Label26.Size = New System.Drawing.Size(54, 19)
- Me.Label26.TabIndex = 15
- Me.Label26.Text = "娛樂費"
- '
- 'TextBox35
- '
- Me.TextBox35.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.TextBox35.ForeColor = System.Drawing.Color.Red
- Me.TextBox35.Location = New System.Drawing.Point(86, 230)
- Me.TextBox35.Margin = New System.Windows.Forms.Padding(4, 4, 4, 4)
- Me.TextBox35.Name = "TextBox35"
- Me.TextBox35.Size = New System.Drawing.Size(108, 27)
- Me.TextBox35.TabIndex = 33
- '
- 'Label25
- '
- Me.Label25.AutoSize = True
- Me.Label25.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.Label25.Location = New System.Drawing.Point(23, 163)
- Me.Label25.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
- Me.Label25.Name = "Label25"
- Me.Label25.Size = New System.Drawing.Size(54, 19)
- Me.Label25.TabIndex = 16
- Me.Label25.Text = "家用費"
- '
- 'TextBox34
- '
- Me.TextBox34.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.TextBox34.ForeColor = System.Drawing.Color.Red
- Me.TextBox34.Location = New System.Drawing.Point(86, 195)
- Me.TextBox34.Margin = New System.Windows.Forms.Padding(4, 4, 4, 4)
- Me.TextBox34.Name = "TextBox34"
- Me.TextBox34.Size = New System.Drawing.Size(108, 27)
- Me.TextBox34.TabIndex = 32
- '
- 'Label24
- '
- Me.Label24.AutoSize = True
- Me.Label24.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.Label24.Location = New System.Drawing.Point(23, 199)
- Me.Label24.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
- Me.Label24.Name = "Label24"
- Me.Label24.Size = New System.Drawing.Size(54, 19)
- Me.Label24.TabIndex = 17
- Me.Label24.Text = "醫療費"
- '
- 'TextBox33
- '
- Me.TextBox33.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.TextBox33.ForeColor = System.Drawing.Color.Red
- Me.TextBox33.Location = New System.Drawing.Point(86, 160)
- Me.TextBox33.Margin = New System.Windows.Forms.Padding(4, 4, 4, 4)
- Me.TextBox33.Name = "TextBox33"
- Me.TextBox33.Size = New System.Drawing.Size(108, 27)
- Me.TextBox33.TabIndex = 31
- '
- 'Label29
- '
- Me.Label29.AutoSize = True
- Me.Label29.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.Label29.Location = New System.Drawing.Point(23, 233)
- Me.Label29.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
- Me.Label29.Name = "Label29"
- Me.Label29.Size = New System.Drawing.Size(54, 19)
- Me.Label29.TabIndex = 18
- Me.Label29.Text = "務公費"
- '
- 'TextBox32
- '
- Me.TextBox32.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.TextBox32.ForeColor = System.Drawing.Color.Red
- Me.TextBox32.Location = New System.Drawing.Point(86, 125)
- Me.TextBox32.Margin = New System.Windows.Forms.Padding(4, 4, 4, 4)
- Me.TextBox32.Name = "TextBox32"
- Me.TextBox32.Size = New System.Drawing.Size(108, 27)
- Me.TextBox32.TabIndex = 30
- '
- 'Label28
- '
- Me.Label28.AutoSize = True
- Me.Label28.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.Label28.Location = New System.Drawing.Point(23, 268)
- Me.Label28.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
- Me.Label28.Name = "Label28"
- Me.Label28.Size = New System.Drawing.Size(54, 19)
- Me.Label28.TabIndex = 19
- Me.Label28.Text = "交際費"
- '
- 'TextBox31
- '
- Me.TextBox31.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.TextBox31.ForeColor = System.Drawing.Color.Red
- Me.TextBox31.Location = New System.Drawing.Point(86, 90)
- Me.TextBox31.Margin = New System.Windows.Forms.Padding(4, 4, 4, 4)
- Me.TextBox31.Name = "TextBox31"
- Me.TextBox31.Size = New System.Drawing.Size(108, 27)
- Me.TextBox31.TabIndex = 29
- '
- 'Label27
- '
- Me.Label27.AutoSize = True
- Me.Label27.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.Label27.Location = New System.Drawing.Point(8, 303)
- Me.Label27.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
- Me.Label27.Name = "Label27"
- Me.Label27.Size = New System.Drawing.Size(69, 19)
- Me.Label27.TabIndex = 20
- Me.Label27.Text = "其他支出"
- '
- 'TextBox30
- '
- Me.TextBox30.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.TextBox30.ForeColor = System.Drawing.Color.Red
- Me.TextBox30.Location = New System.Drawing.Point(85, 55)
- Me.TextBox30.Margin = New System.Windows.Forms.Padding(4, 4, 4, 4)
- Me.TextBox30.Name = "TextBox30"
- Me.TextBox30.Size = New System.Drawing.Size(108, 27)
- Me.TextBox30.TabIndex = 28
- '
- 'GroupBox4
- '
- Me.GroupBox4.Controls.Add(Me.Label36)
- Me.GroupBox4.Controls.Add(Me.TextBox44)
- Me.GroupBox4.Controls.Add(Me.Label35)
- Me.GroupBox4.Controls.Add(Me.TextBox43)
- Me.GroupBox4.Controls.Add(Me.Label34)
- Me.GroupBox4.Controls.Add(Me.TextBox42)
- Me.GroupBox4.Controls.Add(Me.Label33)
- Me.GroupBox4.Controls.Add(Me.Label18)
- Me.GroupBox4.Controls.Add(Me.TextBox40)
- Me.GroupBox4.Controls.Add(Me.Label19)
- Me.GroupBox4.Controls.Add(Me.Label20)
- Me.GroupBox4.Controls.Add(Me.TextBox26)
- Me.GroupBox4.Controls.Add(Me.TextBox27)
- Me.GroupBox4.Controls.Add(Me.TextBox28)
- Me.GroupBox4.Location = New System.Drawing.Point(8, 28)
- Me.GroupBox4.Margin = New System.Windows.Forms.Padding(4, 4, 4, 4)
- Me.GroupBox4.Name = "GroupBox4"
- Me.GroupBox4.Padding = New System.Windows.Forms.Padding(4, 4, 4, 4)
- Me.GroupBox4.Size = New System.Drawing.Size(335, 162)
- Me.GroupBox4.TabIndex = 39
- Me.GroupBox4.TabStop = False
- Me.GroupBox4.Text = "收入"
- '
- 'Label36
- '
- Me.Label36.AutoSize = True
- Me.Label36.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.Label36.Location = New System.Drawing.Point(307, 94)
- Me.Label36.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
- Me.Label36.Name = "Label36"
- Me.Label36.Size = New System.Drawing.Size(22, 19)
- Me.Label36.TabIndex = 45
- Me.Label36.Text = "%"
- '
- 'TextBox44
- '
- Me.TextBox44.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.TextBox44.ForeColor = System.Drawing.Color.Blue
- Me.TextBox44.Location = New System.Drawing.Point(199, 91)
- Me.TextBox44.Margin = New System.Windows.Forms.Padding(4, 4, 4, 4)
- Me.TextBox44.Name = "TextBox44"
- Me.TextBox44.Size = New System.Drawing.Size(100, 27)
- Me.TextBox44.TabIndex = 44
- '
- 'Label35
- '
- Me.Label35.AutoSize = True
- Me.Label35.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.Label35.Location = New System.Drawing.Point(307, 59)
- Me.Label35.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
- Me.Label35.Name = "Label35"
- Me.Label35.Size = New System.Drawing.Size(22, 19)
- Me.Label35.TabIndex = 43
- Me.Label35.Text = "%"
- '
- 'TextBox43
- '
- Me.TextBox43.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.TextBox43.ForeColor = System.Drawing.Color.Blue
- Me.TextBox43.Location = New System.Drawing.Point(199, 56)
- Me.TextBox43.Margin = New System.Windows.Forms.Padding(4, 4, 4, 4)
- Me.TextBox43.Name = "TextBox43"
- Me.TextBox43.Size = New System.Drawing.Size(100, 27)
- Me.TextBox43.TabIndex = 42
- '
- 'Label34
- '
- Me.Label34.AutoSize = True
- Me.Label34.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.Label34.Location = New System.Drawing.Point(307, 24)
- Me.Label34.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
- Me.Label34.Name = "Label34"
- Me.Label34.Size = New System.Drawing.Size(22, 19)
- Me.Label34.TabIndex = 41
- Me.Label34.Text = "%"
- '
- 'TextBox42
- '
- Me.TextBox42.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.TextBox42.ForeColor = System.Drawing.Color.Blue
- Me.TextBox42.Location = New System.Drawing.Point(199, 21)
- Me.TextBox42.Margin = New System.Windows.Forms.Padding(4, 4, 4, 4)
- Me.TextBox42.Name = "TextBox42"
- Me.TextBox42.Size = New System.Drawing.Size(100, 27)
- Me.TextBox42.TabIndex = 40
- '
- 'Label33
- '
- Me.Label33.AutoSize = True
- Me.Label33.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.Label33.Location = New System.Drawing.Point(23, 129)
- Me.Label33.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
- Me.Label33.Name = "Label33"
- Me.Label33.Size = New System.Drawing.Size(54, 19)
- Me.Label33.TabIndex = 39
- Me.Label33.Text = "總收入"
- '
- 'Label18
- '
- Me.Label18.AutoSize = True
- Me.Label18.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.Label18.Location = New System.Drawing.Point(8, 24)
- Me.Label18.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
- Me.Label18.Name = "Label18"
- Me.Label18.Size = New System.Drawing.Size(69, 19)
- Me.Label18.TabIndex = 9
- Me.Label18.Text = "薪資收入"
- '
- 'TextBox40
- '
- Me.TextBox40.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.TextBox40.ForeColor = System.Drawing.Color.Blue
- Me.TextBox40.Location = New System.Drawing.Point(86, 126)
- Me.TextBox40.Margin = New System.Windows.Forms.Padding(4, 4, 4, 4)
- Me.TextBox40.Name = "TextBox40"
- Me.TextBox40.Size = New System.Drawing.Size(105, 27)
- Me.TextBox40.TabIndex = 38
- '
- 'Label19
- '
- Me.Label19.AutoSize = True
- Me.Label19.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.Label19.Location = New System.Drawing.Point(8, 59)
- Me.Label19.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
- Me.Label19.Name = "Label19"
- Me.Label19.Size = New System.Drawing.Size(69, 19)
- Me.Label19.TabIndex = 10
- Me.Label19.Text = "其他收入"
- '
- 'Label20
- '
- Me.Label20.AutoSize = True
- Me.Label20.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.Label20.Location = New System.Drawing.Point(38, 94)
- Me.Label20.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
- Me.Label20.Name = "Label20"
- Me.Label20.Size = New System.Drawing.Size(39, 19)
- Me.Label20.TabIndex = 11
- Me.Label20.Text = "利息"
- '
- 'TextBox26
- '
- Me.TextBox26.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.TextBox26.ForeColor = System.Drawing.Color.Blue
- Me.TextBox26.Location = New System.Drawing.Point(85, 21)
- Me.TextBox26.Margin = New System.Windows.Forms.Padding(4, 4, 4, 4)
- Me.TextBox26.Name = "TextBox26"
- Me.TextBox26.Size = New System.Drawing.Size(105, 27)
- Me.TextBox26.TabIndex = 24
- '
- 'TextBox27
- '
- Me.TextBox27.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.TextBox27.ForeColor = System.Drawing.Color.Blue
- Me.TextBox27.Location = New System.Drawing.Point(86, 56)
- Me.TextBox27.Margin = New System.Windows.Forms.Padding(4, 4, 4, 4)
- Me.TextBox27.Name = "TextBox27"
- Me.TextBox27.Size = New System.Drawing.Size(105, 27)
- Me.TextBox27.TabIndex = 25
- '
- 'TextBox28
- '
- Me.TextBox28.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.TextBox28.ForeColor = System.Drawing.Color.Blue
- Me.TextBox28.Location = New System.Drawing.Point(86, 91)
- Me.TextBox28.Margin = New System.Windows.Forms.Padding(4, 4, 4, 4)
- Me.TextBox28.Name = "TextBox28"
- Me.TextBox28.Size = New System.Drawing.Size(105, 27)
- Me.TextBox28.TabIndex = 26
- '
- 'GroupBox9
- '
- Me.GroupBox9.Controls.Add(Me.Button1)
- Me.GroupBox9.Controls.Add(Me.Button2)
- Me.GroupBox9.Controls.Add(Me.Label59)
- Me.GroupBox9.Controls.Add(Me.DateTimePicker2)
- Me.GroupBox9.Controls.Add(Me.DateTimePicker1)
- Me.GroupBox9.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.GroupBox9.Location = New System.Drawing.Point(16, 15)
- Me.GroupBox9.Margin = New System.Windows.Forms.Padding(4, 4, 4, 4)
- Me.GroupBox9.Name = "GroupBox9"
- Me.GroupBox9.Padding = New System.Windows.Forms.Padding(4, 4, 4, 4)
- Me.GroupBox9.Size = New System.Drawing.Size(586, 60)
- Me.GroupBox9.TabIndex = 53
- Me.GroupBox9.TabStop = False
- Me.GroupBox9.Text = "控制項"
- '
- 'Button1
- '
- Me.Button1.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.Button1.ForeColor = System.Drawing.Color.Blue
- Me.Button1.Location = New System.Drawing.Point(347, 25)
- Me.Button1.Margin = New System.Windows.Forms.Padding(4, 4, 4, 4)
- Me.Button1.Name = "Button1"
- Me.Button1.Size = New System.Drawing.Size(111, 28)
- Me.Button1.TabIndex = 54
- Me.Button1.Text = "查詢"
- Me.Button1.UseVisualStyleBackColor = True
- '
- 'Button2
- '
- Me.Button2.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.Button2.ForeColor = System.Drawing.Color.Red
- Me.Button2.Location = New System.Drawing.Point(466, 25)
- Me.Button2.Margin = New System.Windows.Forms.Padding(4, 4, 4, 4)
- Me.Button2.Name = "Button2"
- Me.Button2.Size = New System.Drawing.Size(111, 28)
- Me.Button2.TabIndex = 55
- Me.Button2.Text = "清空"
- Me.Button2.UseVisualStyleBackColor = True
- '
- 'Label59
- '
- Me.Label59.AutoSize = True
- Me.Label59.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.Label59.Location = New System.Drawing.Point(162, 30)
- Me.Label59.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
- Me.Label59.Name = "Label59"
- Me.Label59.Size = New System.Drawing.Size(24, 19)
- Me.Label59.TabIndex = 19
- Me.Label59.Text = "至"
- '
- 'DateTimePicker2
- '
- Me.DateTimePicker2.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.DateTimePicker2.Format = System.Windows.Forms.DateTimePickerFormat.[Short]
- Me.DateTimePicker2.Location = New System.Drawing.Point(194, 26)
- Me.DateTimePicker2.Margin = New System.Windows.Forms.Padding(4, 4, 4, 4)
- Me.DateTimePicker2.Name = "DateTimePicker2"
- Me.DateTimePicker2.Size = New System.Drawing.Size(145, 27)
- Me.DateTimePicker2.TabIndex = 18
- '
- 'DateTimePicker1
- '
- Me.DateTimePicker1.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.DateTimePicker1.Format = System.Windows.Forms.DateTimePickerFormat.[Short]
- Me.DateTimePicker1.Location = New System.Drawing.Point(9, 26)
- Me.DateTimePicker1.Margin = New System.Windows.Forms.Padding(4, 4, 4, 4)
- Me.DateTimePicker1.Name = "DateTimePicker1"
- Me.DateTimePicker1.Size = New System.Drawing.Size(145, 27)
- Me.DateTimePicker1.TabIndex = 17
- '
- 'TextBox59
- '
- Me.TextBox59.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.TextBox59.ForeColor = System.Drawing.Color.Blue
- Me.TextBox59.Location = New System.Drawing.Point(55, 26)
- Me.TextBox59.Margin = New System.Windows.Forms.Padding(4, 4, 4, 4)
- Me.TextBox59.Name = "TextBox59"
- Me.TextBox59.Size = New System.Drawing.Size(140, 27)
- Me.TextBox59.TabIndex = 54
- '
- 'GroupBox10
- '
- Me.GroupBox10.Controls.Add(Me.Label60)
- Me.GroupBox10.Controls.Add(Me.TextBox59)
- Me.GroupBox10.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.GroupBox10.Location = New System.Drawing.Point(635, 15)
- Me.GroupBox10.Margin = New System.Windows.Forms.Padding(4, 4, 4, 4)
- Me.GroupBox10.Name = "GroupBox10"
- Me.GroupBox10.Padding = New System.Windows.Forms.Padding(4, 4, 4, 4)
- Me.GroupBox10.Size = New System.Drawing.Size(207, 60)
- Me.GroupBox10.TabIndex = 55
- Me.GroupBox10.TabStop = False
- Me.GroupBox10.Text = "人民幣兌台幣"
- '
- 'Label60
- '
- Me.Label60.AutoSize = True
- Me.Label60.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.Label60.Location = New System.Drawing.Point(8, 31)
- Me.Label60.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
- Me.Label60.Name = "Label60"
- Me.Label60.Size = New System.Drawing.Size(39, 19)
- Me.Label60.TabIndex = 12
- Me.Label60.Text = "匯率"
- '
- 'GroupBox1
- '
- Me.GroupBox1.Controls.Add(Me.GroupBox2)
- Me.GroupBox1.Controls.Add(Me.GroupBox7)
- Me.GroupBox1.Controls.Add(Me.GroupBox8)
- Me.GroupBox1.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.GroupBox1.Location = New System.Drawing.Point(376, 83)
- Me.GroupBox1.Margin = New System.Windows.Forms.Padding(4, 4, 4, 4)
- Me.GroupBox1.Name = "GroupBox1"
- Me.GroupBox1.Padding = New System.Windows.Forms.Padding(4, 4, 4, 4)
- Me.GroupBox1.Size = New System.Drawing.Size(352, 674)
- Me.GroupBox1.TabIndex = 56
- Me.GroupBox1.TabStop = False
- Me.GroupBox1.Text = "人民幣統計"
- '
- 'GroupBox2
- '
- Me.GroupBox2.Controls.Add(Me.Label1)
- Me.GroupBox2.Controls.Add(Me.TextBox1)
- Me.GroupBox2.Location = New System.Drawing.Point(8, 610)
- Me.GroupBox2.Margin = New System.Windows.Forms.Padding(4, 4, 4, 4)
- Me.GroupBox2.Name = "GroupBox2"
- Me.GroupBox2.Padding = New System.Windows.Forms.Padding(4, 4, 4, 4)
- Me.GroupBox2.Size = New System.Drawing.Size(335, 55)
- Me.GroupBox2.TabIndex = 52
- Me.GroupBox2.TabStop = False
- Me.GroupBox2.Text = "資產"
- '
- 'Label1
- '
- Me.Label1.AutoSize = True
- Me.Label1.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.Label1.Location = New System.Drawing.Point(9, 24)
- Me.Label1.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
- Me.Label1.Name = "Label1"
- Me.Label1.Size = New System.Drawing.Size(69, 19)
- Me.Label1.TabIndex = 54
- Me.Label1.Text = "目前餘額"
- '
- 'TextBox1
- '
- Me.TextBox1.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.TextBox1.ForeColor = System.Drawing.Color.Green
- Me.TextBox1.Location = New System.Drawing.Point(86, 21)
- Me.TextBox1.Margin = New System.Windows.Forms.Padding(4, 4, 4, 4)
- Me.TextBox1.Name = "TextBox1"
- Me.TextBox1.Size = New System.Drawing.Size(220, 27)
- Me.TextBox1.TabIndex = 36
- '
- 'GroupBox7
- '
- Me.GroupBox7.Controls.Add(Me.Label2)
- Me.GroupBox7.Controls.Add(Me.TextBox2)
- Me.GroupBox7.Controls.Add(Me.Label3)
- Me.GroupBox7.Controls.Add(Me.TextBox3)
- Me.GroupBox7.Controls.Add(Me.Label4)
- Me.GroupBox7.Controls.Add(Me.TextBox4)
- Me.GroupBox7.Controls.Add(Me.Label5)
- Me.GroupBox7.Controls.Add(Me.TextBox5)
- Me.GroupBox7.Controls.Add(Me.Label6)
- Me.GroupBox7.Controls.Add(Me.TextBox6)
- Me.GroupBox7.Controls.Add(Me.Label7)
- Me.GroupBox7.Controls.Add(Me.TextBox7)
- Me.GroupBox7.Controls.Add(Me.Label8)
- Me.GroupBox7.Controls.Add(Me.TextBox8)
- Me.GroupBox7.Controls.Add(Me.Label9)
- Me.GroupBox7.Controls.Add(Me.TextBox9)
- Me.GroupBox7.Controls.Add(Me.Label10)
- Me.GroupBox7.Controls.Add(Me.TextBox10)
- Me.GroupBox7.Controls.Add(Me.Label11)
- Me.GroupBox7.Controls.Add(Me.TextBox11)
- Me.GroupBox7.Controls.Add(Me.Label12)
- Me.GroupBox7.Controls.Add(Me.TextBox12)
- Me.GroupBox7.Controls.Add(Me.Label13)
- Me.GroupBox7.Controls.Add(Me.TextBox13)
- Me.GroupBox7.Controls.Add(Me.TextBox14)
- Me.GroupBox7.Controls.Add(Me.Label14)
- Me.GroupBox7.Controls.Add(Me.Label15)
- Me.GroupBox7.Controls.Add(Me.TextBox15)
- Me.GroupBox7.Controls.Add(Me.Label16)
- Me.GroupBox7.Controls.Add(Me.TextBox16)
- Me.GroupBox7.Controls.Add(Me.Label17)
- Me.GroupBox7.Controls.Add(Me.TextBox17)
- Me.GroupBox7.Controls.Add(Me.Label32)
- Me.GroupBox7.Controls.Add(Me.TextBox18)
- Me.GroupBox7.Controls.Add(Me.Label48)
- Me.GroupBox7.Controls.Add(Me.TextBox19)
- Me.GroupBox7.Controls.Add(Me.Label49)
- Me.GroupBox7.Controls.Add(Me.TextBox20)
- Me.GroupBox7.Controls.Add(Me.Label50)
- Me.GroupBox7.Controls.Add(Me.TextBox21)
- Me.GroupBox7.Controls.Add(Me.Label51)
- Me.GroupBox7.Controls.Add(Me.TextBox22)
- Me.GroupBox7.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.GroupBox7.Location = New System.Drawing.Point(9, 198)
- Me.GroupBox7.Margin = New System.Windows.Forms.Padding(4, 4, 4, 4)
- Me.GroupBox7.Name = "GroupBox7"
- Me.GroupBox7.Padding = New System.Windows.Forms.Padding(4, 4, 4, 4)
- Me.GroupBox7.Size = New System.Drawing.Size(335, 404)
- Me.GroupBox7.TabIndex = 51
- Me.GroupBox7.TabStop = False
- Me.GroupBox7.Text = "支出"
- '
- 'Label2
- '
- Me.Label2.AutoSize = True
- Me.Label2.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.Label2.Location = New System.Drawing.Point(308, 339)
- Me.Label2.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
- Me.Label2.Name = "Label2"
- Me.Label2.Size = New System.Drawing.Size(22, 19)
- Me.Label2.TabIndex = 61
- Me.Label2.Text = "%"
- '
- 'TextBox2
- '
- Me.TextBox2.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.TextBox2.ForeColor = System.Drawing.Color.Red
- Me.TextBox2.Location = New System.Drawing.Point(201, 335)
- Me.TextBox2.Margin = New System.Windows.Forms.Padding(4, 4, 4, 4)
- Me.TextBox2.Name = "TextBox2"
- Me.TextBox2.Size = New System.Drawing.Size(100, 27)
- Me.TextBox2.TabIndex = 60
- '
- 'Label3
- '
- Me.Label3.AutoSize = True
- Me.Label3.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.Label3.Location = New System.Drawing.Point(308, 305)
- Me.Label3.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
- Me.Label3.Name = "Label3"
- Me.Label3.Size = New System.Drawing.Size(22, 19)
- Me.Label3.TabIndex = 59
- Me.Label3.Text = "%"
- '
- 'TextBox3
- '
- Me.TextBox3.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.TextBox3.ForeColor = System.Drawing.Color.Red
- Me.TextBox3.Location = New System.Drawing.Point(201, 300)
- Me.TextBox3.Margin = New System.Windows.Forms.Padding(4, 4, 4, 4)
- Me.TextBox3.Name = "TextBox3"
- Me.TextBox3.Size = New System.Drawing.Size(100, 27)
- Me.TextBox3.TabIndex = 58
- '
- 'Label4
- '
- Me.Label4.AutoSize = True
- Me.Label4.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.Label4.Location = New System.Drawing.Point(308, 269)
- Me.Label4.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
- Me.Label4.Name = "Label4"
- Me.Label4.Size = New System.Drawing.Size(22, 19)
- Me.Label4.TabIndex = 57
- Me.Label4.Text = "%"
- '
- 'TextBox4
- '
- Me.TextBox4.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.TextBox4.ForeColor = System.Drawing.Color.Red
- Me.TextBox4.Location = New System.Drawing.Point(201, 264)
- Me.TextBox4.Margin = New System.Windows.Forms.Padding(4, 4, 4, 4)
- Me.TextBox4.Name = "TextBox4"
- Me.TextBox4.Size = New System.Drawing.Size(100, 27)
- Me.TextBox4.TabIndex = 56
- '
- 'Label5
- '
- Me.Label5.AutoSize = True
- Me.Label5.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.Label5.Location = New System.Drawing.Point(307, 233)
- Me.Label5.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
- Me.Label5.Name = "Label5"
- Me.Label5.Size = New System.Drawing.Size(22, 19)
- Me.Label5.TabIndex = 55
- Me.Label5.Text = "%"
- '
- 'TextBox5
- '
- Me.TextBox5.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.TextBox5.ForeColor = System.Drawing.Color.Red
- Me.TextBox5.Location = New System.Drawing.Point(201, 230)
- Me.TextBox5.Margin = New System.Windows.Forms.Padding(4, 4, 4, 4)
- Me.TextBox5.Name = "TextBox5"
- Me.TextBox5.Size = New System.Drawing.Size(100, 27)
- Me.TextBox5.TabIndex = 54
- '
- 'Label6
- '
- Me.Label6.AutoSize = True
- Me.Label6.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.Label6.Location = New System.Drawing.Point(306, 200)
- Me.Label6.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
- Me.Label6.Name = "Label6"
- Me.Label6.Size = New System.Drawing.Size(22, 19)
- Me.Label6.TabIndex = 53
- Me.Label6.Text = "%"
- '
- 'TextBox6
- '
- Me.TextBox6.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.TextBox6.ForeColor = System.Drawing.Color.Red
- Me.TextBox6.Location = New System.Drawing.Point(201, 195)
- Me.TextBox6.Margin = New System.Windows.Forms.Padding(4, 4, 4, 4)
- Me.TextBox6.Name = "TextBox6"
- Me.TextBox6.Size = New System.Drawing.Size(100, 27)
- Me.TextBox6.TabIndex = 52
- '
- 'Label7
- '
- Me.Label7.AutoSize = True
- Me.Label7.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.Label7.Location = New System.Drawing.Point(306, 165)
- Me.Label7.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
- Me.Label7.Name = "Label7"
- Me.Label7.Size = New System.Drawing.Size(22, 19)
- Me.Label7.TabIndex = 51
- Me.Label7.Text = "%"
- '
- 'TextBox7
- '
- Me.TextBox7.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.TextBox7.ForeColor = System.Drawing.Color.Red
- Me.TextBox7.Location = New System.Drawing.Point(201, 160)
- Me.TextBox7.Margin = New System.Windows.Forms.Padding(4, 4, 4, 4)
- Me.TextBox7.Name = "TextBox7"
- Me.TextBox7.Size = New System.Drawing.Size(100, 27)
- Me.TextBox7.TabIndex = 50
- '
- 'Label8
- '
- Me.Label8.AutoSize = True
- Me.Label8.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.Label8.Location = New System.Drawing.Point(306, 130)
- Me.Label8.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
- Me.Label8.Name = "Label8"
- Me.Label8.Size = New System.Drawing.Size(22, 19)
- Me.Label8.TabIndex = 49
- Me.Label8.Text = "%"
- '
- 'TextBox8
- '
- Me.TextBox8.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.TextBox8.ForeColor = System.Drawing.Color.Red
- Me.TextBox8.Location = New System.Drawing.Point(201, 125)
- Me.TextBox8.Margin = New System.Windows.Forms.Padding(4, 4, 4, 4)
- Me.TextBox8.Name = "TextBox8"
- Me.TextBox8.Size = New System.Drawing.Size(100, 27)
- Me.TextBox8.TabIndex = 48
- '
- 'Label9
- '
- Me.Label9.AutoSize = True
- Me.Label9.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.Label9.Location = New System.Drawing.Point(309, 94)
- Me.Label9.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
- Me.Label9.Name = "Label9"
- Me.Label9.Size = New System.Drawing.Size(22, 19)
- Me.Label9.TabIndex = 47
- Me.Label9.Text = "%"
- '
- 'TextBox9
- '
- Me.TextBox9.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.TextBox9.ForeColor = System.Drawing.Color.Red
- Me.TextBox9.Location = New System.Drawing.Point(201, 90)
- Me.TextBox9.Margin = New System.Windows.Forms.Padding(4, 4, 4, 4)
- Me.TextBox9.Name = "TextBox9"
- Me.TextBox9.Size = New System.Drawing.Size(100, 27)
- Me.TextBox9.TabIndex = 46
- '
- 'Label10
- '
- Me.Label10.AutoSize = True
- Me.Label10.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.Label10.Location = New System.Drawing.Point(309, 59)
- Me.Label10.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
- Me.Label10.Name = "Label10"
- Me.Label10.Size = New System.Drawing.Size(22, 19)
- Me.Label10.TabIndex = 45
- Me.Label10.Text = "%"
- '
- 'TextBox10
- '
- Me.TextBox10.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.TextBox10.ForeColor = System.Drawing.Color.Red
- Me.TextBox10.Location = New System.Drawing.Point(201, 55)
- Me.TextBox10.Margin = New System.Windows.Forms.Padding(4, 4, 4, 4)
- Me.TextBox10.Name = "TextBox10"
- Me.TextBox10.Size = New System.Drawing.Size(100, 27)
- Me.TextBox10.TabIndex = 44
- '
- 'Label11
- '
- Me.Label11.AutoSize = True
- Me.Label11.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.Label11.Location = New System.Drawing.Point(306, 24)
- Me.Label11.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
- Me.Label11.Name = "Label11"
- Me.Label11.Size = New System.Drawing.Size(22, 19)
- Me.Label11.TabIndex = 43
- Me.Label11.Text = "%"
- '
- 'TextBox11
- '
- Me.TextBox11.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.TextBox11.ForeColor = System.Drawing.Color.Red
- Me.TextBox11.Location = New System.Drawing.Point(201, 21)
- Me.TextBox11.Margin = New System.Windows.Forms.Padding(4, 4, 4, 4)
- Me.TextBox11.Name = "TextBox11"
- Me.TextBox11.Size = New System.Drawing.Size(100, 27)
- Me.TextBox11.TabIndex = 42
- '
- 'Label12
- '
- Me.Label12.AutoSize = True
- Me.Label12.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.Label12.Location = New System.Drawing.Point(23, 373)
- Me.Label12.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
- Me.Label12.Name = "Label12"
- Me.Label12.Size = New System.Drawing.Size(54, 19)
- Me.Label12.TabIndex = 37
- Me.Label12.Text = "總支出"
- '
- 'TextBox12
- '
- Me.TextBox12.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.TextBox12.ForeColor = System.Drawing.Color.Red
- Me.TextBox12.Location = New System.Drawing.Point(85, 335)
- Me.TextBox12.Margin = New System.Windows.Forms.Padding(4, 4, 4, 4)
- Me.TextBox12.Name = "TextBox12"
- Me.TextBox12.Size = New System.Drawing.Size(108, 27)
- Me.TextBox12.TabIndex = 37
- '
- 'Label13
- '
- Me.Label13.AutoSize = True
- Me.Label13.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.Label13.Location = New System.Drawing.Point(23, 339)
- Me.Label13.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
- Me.Label13.Name = "Label13"
- Me.Label13.Size = New System.Drawing.Size(54, 19)
- Me.Label13.TabIndex = 22
- Me.Label13.Text = "手續費"
- '
- 'TextBox13
- '
- Me.TextBox13.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.TextBox13.ForeColor = System.Drawing.Color.Red
- Me.TextBox13.Location = New System.Drawing.Point(85, 370)
- Me.TextBox13.Margin = New System.Windows.Forms.Padding(4, 4, 4, 4)
- Me.TextBox13.Name = "TextBox13"
- Me.TextBox13.Size = New System.Drawing.Size(108, 27)
- Me.TextBox13.TabIndex = 36
- '
- 'TextBox14
- '
- Me.TextBox14.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.TextBox14.ForeColor = System.Drawing.Color.Red
- Me.TextBox14.Location = New System.Drawing.Point(85, 20)
- Me.TextBox14.Margin = New System.Windows.Forms.Padding(4, 4, 4, 4)
- Me.TextBox14.Name = "TextBox14"
- Me.TextBox14.Size = New System.Drawing.Size(108, 27)
- Me.TextBox14.TabIndex = 27
- '
- 'Label14
- '
- Me.Label14.AutoSize = True
- Me.Label14.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.Label14.Location = New System.Drawing.Point(23, 24)
- Me.Label14.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
- Me.Label14.Name = "Label14"
- Me.Label14.Size = New System.Drawing.Size(54, 19)
- Me.Label14.TabIndex = 12
- Me.Label14.Text = "交通費"
- '
- 'Label15
- '
- Me.Label15.AutoSize = True
- Me.Label15.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.Label15.Location = New System.Drawing.Point(23, 93)
- Me.Label15.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
- Me.Label15.Name = "Label15"
- Me.Label15.Size = New System.Drawing.Size(54, 19)
- Me.Label15.TabIndex = 13
- Me.Label15.Text = "伙食費"
- '
- 'TextBox15
- '
- Me.TextBox15.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.TextBox15.ForeColor = System.Drawing.Color.Red
- Me.TextBox15.Location = New System.Drawing.Point(85, 300)
- Me.TextBox15.Margin = New System.Windows.Forms.Padding(4, 4, 4, 4)
- Me.TextBox15.Name = "TextBox15"
- Me.TextBox15.Size = New System.Drawing.Size(108, 27)
- Me.TextBox15.TabIndex = 35
- '
- 'Label16
- '
- Me.Label16.AutoSize = True
- Me.Label16.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.Label16.Location = New System.Drawing.Point(23, 59)
- Me.Label16.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
- Me.Label16.Name = "Label16"
- Me.Label16.Size = New System.Drawing.Size(54, 19)
- Me.Label16.TabIndex = 14
- Me.Label16.Text = "住宿費"
- '
- 'TextBox16
- '
- Me.TextBox16.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.TextBox16.ForeColor = System.Drawing.Color.Red
- Me.TextBox16.Location = New System.Drawing.Point(85, 265)
- Me.TextBox16.Margin = New System.Windows.Forms.Padding(4, 4, 4, 4)
- Me.TextBox16.Name = "TextBox16"
- Me.TextBox16.Size = New System.Drawing.Size(108, 27)
- Me.TextBox16.TabIndex = 34
- '
- 'Label17
- '
- Me.Label17.AutoSize = True
- Me.Label17.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.Label17.Location = New System.Drawing.Point(23, 129)
- Me.Label17.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
- Me.Label17.Name = "Label17"
- Me.Label17.Size = New System.Drawing.Size(54, 19)
- Me.Label17.TabIndex = 15
- Me.Label17.Text = "娛樂費"
- '
- 'TextBox17
- '
- Me.TextBox17.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.TextBox17.ForeColor = System.Drawing.Color.Red
- Me.TextBox17.Location = New System.Drawing.Point(85, 230)
- Me.TextBox17.Margin = New System.Windows.Forms.Padding(4, 4, 4, 4)
- Me.TextBox17.Name = "TextBox17"
- Me.TextBox17.Size = New System.Drawing.Size(108, 27)
- Me.TextBox17.TabIndex = 33
- '
- 'Label32
- '
- Me.Label32.AutoSize = True
- Me.Label32.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.Label32.Location = New System.Drawing.Point(23, 163)
- Me.Label32.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
- Me.Label32.Name = "Label32"
- Me.Label32.Size = New System.Drawing.Size(54, 19)
- Me.Label32.TabIndex = 16
- Me.Label32.Text = "家用費"
- '
- 'TextBox18
- '
- Me.TextBox18.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.TextBox18.ForeColor = System.Drawing.Color.Red
- Me.TextBox18.Location = New System.Drawing.Point(85, 195)
- Me.TextBox18.Margin = New System.Windows.Forms.Padding(4, 4, 4, 4)
- Me.TextBox18.Name = "TextBox18"
- Me.TextBox18.Size = New System.Drawing.Size(108, 27)
- Me.TextBox18.TabIndex = 32
- '
- 'Label48
- '
- Me.Label48.AutoSize = True
- Me.Label48.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.Label48.Location = New System.Drawing.Point(23, 199)
- Me.Label48.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
- Me.Label48.Name = "Label48"
- Me.Label48.Size = New System.Drawing.Size(54, 19)
- Me.Label48.TabIndex = 17
- Me.Label48.Text = "醫療費"
- '
- 'TextBox19
- '
- Me.TextBox19.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.TextBox19.ForeColor = System.Drawing.Color.Red
- Me.TextBox19.Location = New System.Drawing.Point(85, 160)
- Me.TextBox19.Margin = New System.Windows.Forms.Padding(4, 4, 4, 4)
- Me.TextBox19.Name = "TextBox19"
- Me.TextBox19.Size = New System.Drawing.Size(108, 27)
- Me.TextBox19.TabIndex = 31
- '
- 'Label49
- '
- Me.Label49.AutoSize = True
- Me.Label49.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.Label49.Location = New System.Drawing.Point(23, 233)
- Me.Label49.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
- Me.Label49.Name = "Label49"
- Me.Label49.Size = New System.Drawing.Size(54, 19)
- Me.Label49.TabIndex = 18
- Me.Label49.Text = "務公費"
- '
- 'TextBox20
- '
- Me.TextBox20.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.TextBox20.ForeColor = System.Drawing.Color.Red
- Me.TextBox20.Location = New System.Drawing.Point(85, 125)
- Me.TextBox20.Margin = New System.Windows.Forms.Padding(4, 4, 4, 4)
- Me.TextBox20.Name = "TextBox20"
- Me.TextBox20.Size = New System.Drawing.Size(108, 27)
- Me.TextBox20.TabIndex = 30
- '
- 'Label50
- '
- Me.Label50.AutoSize = True
- Me.Label50.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.Label50.Location = New System.Drawing.Point(23, 269)
- Me.Label50.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
- Me.Label50.Name = "Label50"
- Me.Label50.Size = New System.Drawing.Size(54, 19)
- Me.Label50.TabIndex = 19
- Me.Label50.Text = "交際費"
- '
- 'TextBox21
- '
- Me.TextBox21.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.TextBox21.ForeColor = System.Drawing.Color.Red
- Me.TextBox21.Location = New System.Drawing.Point(85, 90)
- Me.TextBox21.Margin = New System.Windows.Forms.Padding(4, 4, 4, 4)
- Me.TextBox21.Name = "TextBox21"
- Me.TextBox21.Size = New System.Drawing.Size(108, 27)
- Me.TextBox21.TabIndex = 29
- '
- 'Label51
- '
- Me.Label51.AutoSize = True
- Me.Label51.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.Label51.Location = New System.Drawing.Point(8, 303)
- Me.Label51.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
- Me.Label51.Name = "Label51"
- Me.Label51.Size = New System.Drawing.Size(69, 19)
- Me.Label51.TabIndex = 20
- Me.Label51.Text = "其他支出"
- '
- 'TextBox22
- '
- Me.TextBox22.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.TextBox22.ForeColor = System.Drawing.Color.Red
- Me.TextBox22.Location = New System.Drawing.Point(85, 55)
- Me.TextBox22.Margin = New System.Windows.Forms.Padding(4, 4, 4, 4)
- Me.TextBox22.Name = "TextBox22"
- Me.TextBox22.Size = New System.Drawing.Size(108, 27)
- Me.TextBox22.TabIndex = 28
- '
- 'GroupBox8
- '
- Me.GroupBox8.Controls.Add(Me.Label52)
- Me.GroupBox8.Controls.Add(Me.TextBox23)
- Me.GroupBox8.Controls.Add(Me.Label53)
- Me.GroupBox8.Controls.Add(Me.TextBox24)
- Me.GroupBox8.Controls.Add(Me.Label54)
- Me.GroupBox8.Controls.Add(Me.TextBox25)
- Me.GroupBox8.Controls.Add(Me.Label55)
- Me.GroupBox8.Controls.Add(Me.Label56)
- Me.GroupBox8.Controls.Add(Me.TextBox55)
- Me.GroupBox8.Controls.Add(Me.Label57)
- Me.GroupBox8.Controls.Add(Me.Label58)
- Me.GroupBox8.Controls.Add(Me.TextBox56)
- Me.GroupBox8.Controls.Add(Me.TextBox57)
- Me.GroupBox8.Controls.Add(Me.TextBox58)
- Me.GroupBox8.Location = New System.Drawing.Point(9, 28)
- Me.GroupBox8.Margin = New System.Windows.Forms.Padding(4, 4, 4, 4)
- Me.GroupBox8.Name = "GroupBox8"
- Me.GroupBox8.Padding = New System.Windows.Forms.Padding(4, 4, 4, 4)
- Me.GroupBox8.Size = New System.Drawing.Size(335, 162)
- Me.GroupBox8.TabIndex = 39
- Me.GroupBox8.TabStop = False
- Me.GroupBox8.Text = "收入"
- '
- 'Label52
- '
- Me.Label52.AutoSize = True
- Me.Label52.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.Label52.Location = New System.Drawing.Point(306, 94)
- Me.Label52.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
- Me.Label52.Name = "Label52"
- Me.Label52.Size = New System.Drawing.Size(22, 19)
- Me.Label52.TabIndex = 45
- Me.Label52.Text = "%"
- '
- 'TextBox23
- '
- Me.TextBox23.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.TextBox23.ForeColor = System.Drawing.Color.Blue
- Me.TextBox23.Location = New System.Drawing.Point(198, 91)
- Me.TextBox23.Margin = New System.Windows.Forms.Padding(4, 4, 4, 4)
- Me.TextBox23.Name = "TextBox23"
- Me.TextBox23.Size = New System.Drawing.Size(100, 27)
- Me.TextBox23.TabIndex = 44
- '
- 'Label53
- '
- Me.Label53.AutoSize = True
- Me.Label53.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.Label53.Location = New System.Drawing.Point(306, 59)
- Me.Label53.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
- Me.Label53.Name = "Label53"
- Me.Label53.Size = New System.Drawing.Size(22, 19)
- Me.Label53.TabIndex = 43
- Me.Label53.Text = "%"
- '
- 'TextBox24
- '
- Me.TextBox24.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.TextBox24.ForeColor = System.Drawing.Color.Blue
- Me.TextBox24.Location = New System.Drawing.Point(198, 56)
- Me.TextBox24.Margin = New System.Windows.Forms.Padding(4, 4, 4, 4)
- Me.TextBox24.Name = "TextBox24"
- Me.TextBox24.Size = New System.Drawing.Size(100, 27)
- Me.TextBox24.TabIndex = 42
- '
- 'Label54
- '
- Me.Label54.AutoSize = True
- Me.Label54.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.Label54.Location = New System.Drawing.Point(306, 24)
- Me.Label54.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
- Me.Label54.Name = "Label54"
- Me.Label54.Size = New System.Drawing.Size(22, 19)
- Me.Label54.TabIndex = 41
- Me.Label54.Text = "%"
- '
- 'TextBox25
- '
- Me.TextBox25.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.TextBox25.ForeColor = System.Drawing.Color.Blue
- Me.TextBox25.Location = New System.Drawing.Point(198, 21)
- Me.TextBox25.Margin = New System.Windows.Forms.Padding(4, 4, 4, 4)
- Me.TextBox25.Name = "TextBox25"
- Me.TextBox25.Size = New System.Drawing.Size(100, 27)
- Me.TextBox25.TabIndex = 40
- '
- 'Label55
- '
- Me.Label55.AutoSize = True
- Me.Label55.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.Label55.Location = New System.Drawing.Point(23, 129)
- Me.Label55.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
- Me.Label55.Name = "Label55"
- Me.Label55.Size = New System.Drawing.Size(54, 19)
- Me.Label55.TabIndex = 39
- Me.Label55.Text = "總收入"
- '
- 'Label56
- '
- Me.Label56.AutoSize = True
- Me.Label56.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.Label56.Location = New System.Drawing.Point(8, 24)
- Me.Label56.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
- Me.Label56.Name = "Label56"
- Me.Label56.Size = New System.Drawing.Size(69, 19)
- Me.Label56.TabIndex = 9
- Me.Label56.Text = "薪資收入"
- '
- 'TextBox55
- '
- Me.TextBox55.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.TextBox55.ForeColor = System.Drawing.Color.Blue
- Me.TextBox55.Location = New System.Drawing.Point(85, 126)
- Me.TextBox55.Margin = New System.Windows.Forms.Padding(4, 4, 4, 4)
- Me.TextBox55.Name = "TextBox55"
- Me.TextBox55.Size = New System.Drawing.Size(105, 27)
- Me.TextBox55.TabIndex = 38
- '
- 'Label57
- '
- Me.Label57.AutoSize = True
- Me.Label57.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.Label57.Location = New System.Drawing.Point(8, 59)
- Me.Label57.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
- Me.Label57.Name = "Label57"
- Me.Label57.Size = New System.Drawing.Size(69, 19)
- Me.Label57.TabIndex = 10
- Me.Label57.Text = "其他收入"
- '
- 'Label58
- '
- Me.Label58.AutoSize = True
- Me.Label58.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.Label58.Location = New System.Drawing.Point(38, 94)
- Me.Label58.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
- Me.Label58.Name = "Label58"
- Me.Label58.Size = New System.Drawing.Size(39, 19)
- Me.Label58.TabIndex = 11
- Me.Label58.Text = "利息"
- '
- 'TextBox56
- '
- Me.TextBox56.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.TextBox56.ForeColor = System.Drawing.Color.Blue
- Me.TextBox56.Location = New System.Drawing.Point(85, 21)
- Me.TextBox56.Margin = New System.Windows.Forms.Padding(4, 4, 4, 4)
- Me.TextBox56.Name = "TextBox56"
- Me.TextBox56.Size = New System.Drawing.Size(105, 27)
- Me.TextBox56.TabIndex = 24
- '
- 'TextBox57
- '
- Me.TextBox57.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.TextBox57.ForeColor = System.Drawing.Color.Blue
- Me.TextBox57.Location = New System.Drawing.Point(85, 56)
- Me.TextBox57.Margin = New System.Windows.Forms.Padding(4, 4, 4, 4)
- Me.TextBox57.Name = "TextBox57"
- Me.TextBox57.Size = New System.Drawing.Size(105, 27)
- Me.TextBox57.TabIndex = 25
- '
- 'TextBox58
- '
- Me.TextBox58.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.TextBox58.ForeColor = System.Drawing.Color.Blue
- Me.TextBox58.Location = New System.Drawing.Point(85, 91)
- Me.TextBox58.Margin = New System.Windows.Forms.Padding(4, 4, 4, 4)
- Me.TextBox58.Name = "TextBox58"
- Me.TextBox58.Size = New System.Drawing.Size(105, 27)
- Me.TextBox58.TabIndex = 26
- '
- 'GroupBox11
- '
- Me.GroupBox11.Controls.Add(Me.GroupBox12)
- Me.GroupBox11.Controls.Add(Me.GroupBox13)
- Me.GroupBox11.Controls.Add(Me.GroupBox14)
- Me.GroupBox11.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.GroupBox11.Location = New System.Drawing.Point(736, 83)
- Me.GroupBox11.Margin = New System.Windows.Forms.Padding(4, 4, 4, 4)
- Me.GroupBox11.Name = "GroupBox11"
- Me.GroupBox11.Padding = New System.Windows.Forms.Padding(4, 4, 4, 4)
- Me.GroupBox11.Size = New System.Drawing.Size(399, 674)
- Me.GroupBox11.TabIndex = 57
- Me.GroupBox11.TabStop = False
- Me.GroupBox11.Text = "總和統計"
- '
- 'GroupBox12
- '
- Me.GroupBox12.Controls.Add(Me.Label61)
- Me.GroupBox12.Controls.Add(Me.TextBox60)
- Me.GroupBox12.Location = New System.Drawing.Point(9, 610)
- Me.GroupBox12.Margin = New System.Windows.Forms.Padding(4, 4, 4, 4)
- Me.GroupBox12.Name = "GroupBox12"
- Me.GroupBox12.Padding = New System.Windows.Forms.Padding(4, 4, 4, 4)
- Me.GroupBox12.Size = New System.Drawing.Size(381, 55)
- Me.GroupBox12.TabIndex = 52
- Me.GroupBox12.TabStop = False
- Me.GroupBox12.Text = "資產"
- '
- 'Label61
- '
- Me.Label61.AutoSize = True
- Me.Label61.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.Label61.Location = New System.Drawing.Point(8, 24)
- Me.Label61.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
- Me.Label61.Name = "Label61"
- Me.Label61.Size = New System.Drawing.Size(69, 19)
- Me.Label61.TabIndex = 54
- Me.Label61.Text = "目前餘額"
- '
- 'TextBox60
- '
- Me.TextBox60.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.TextBox60.ForeColor = System.Drawing.Color.Green
- Me.TextBox60.Location = New System.Drawing.Point(86, 21)
- Me.TextBox60.Margin = New System.Windows.Forms.Padding(4, 4, 4, 4)
- Me.TextBox60.Name = "TextBox60"
- Me.TextBox60.Size = New System.Drawing.Size(257, 27)
- Me.TextBox60.TabIndex = 36
- '
- 'GroupBox13
- '
- Me.GroupBox13.Controls.Add(Me.Label62)
- Me.GroupBox13.Controls.Add(Me.TextBox61)
- Me.GroupBox13.Controls.Add(Me.Label63)
- Me.GroupBox13.Controls.Add(Me.TextBox62)
- Me.GroupBox13.Controls.Add(Me.Label64)
- Me.GroupBox13.Controls.Add(Me.TextBox63)
- Me.GroupBox13.Controls.Add(Me.Label65)
- Me.GroupBox13.Controls.Add(Me.TextBox64)
- Me.GroupBox13.Controls.Add(Me.Label66)
- Me.GroupBox13.Controls.Add(Me.TextBox65)
- Me.GroupBox13.Controls.Add(Me.Label67)
- Me.GroupBox13.Controls.Add(Me.TextBox66)
- Me.GroupBox13.Controls.Add(Me.Label68)
- Me.GroupBox13.Controls.Add(Me.TextBox67)
- Me.GroupBox13.Controls.Add(Me.Label69)
- Me.GroupBox13.Controls.Add(Me.TextBox68)
- Me.GroupBox13.Controls.Add(Me.Label70)
- Me.GroupBox13.Controls.Add(Me.TextBox69)
- Me.GroupBox13.Controls.Add(Me.Label71)
- Me.GroupBox13.Controls.Add(Me.TextBox70)
- Me.GroupBox13.Controls.Add(Me.Label72)
- Me.GroupBox13.Controls.Add(Me.TextBox71)
- Me.GroupBox13.Controls.Add(Me.Label73)
- Me.GroupBox13.Controls.Add(Me.TextBox72)
- Me.GroupBox13.Controls.Add(Me.TextBox73)
- Me.GroupBox13.Controls.Add(Me.Label74)
- Me.GroupBox13.Controls.Add(Me.Label75)
- Me.GroupBox13.Controls.Add(Me.TextBox74)
- Me.GroupBox13.Controls.Add(Me.Label76)
- Me.GroupBox13.Controls.Add(Me.TextBox75)
- Me.GroupBox13.Controls.Add(Me.Label77)
- Me.GroupBox13.Controls.Add(Me.TextBox76)
- Me.GroupBox13.Controls.Add(Me.Label78)
- Me.GroupBox13.Controls.Add(Me.TextBox77)
- Me.GroupBox13.Controls.Add(Me.Label79)
- Me.GroupBox13.Controls.Add(Me.TextBox78)
- Me.GroupBox13.Controls.Add(Me.Label80)
- Me.GroupBox13.Controls.Add(Me.TextBox79)
- Me.GroupBox13.Controls.Add(Me.Label81)
- Me.GroupBox13.Controls.Add(Me.TextBox80)
- Me.GroupBox13.Controls.Add(Me.Label82)
- Me.GroupBox13.Controls.Add(Me.TextBox81)
- Me.GroupBox13.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.GroupBox13.Location = New System.Drawing.Point(9, 198)
- Me.GroupBox13.Margin = New System.Windows.Forms.Padding(4, 4, 4, 4)
- Me.GroupBox13.Name = "GroupBox13"
- Me.GroupBox13.Padding = New System.Windows.Forms.Padding(4, 4, 4, 4)
- Me.GroupBox13.Size = New System.Drawing.Size(381, 404)
- Me.GroupBox13.TabIndex = 51
- Me.GroupBox13.TabStop = False
- Me.GroupBox13.Text = "支出"
- '
- 'Label62
- '
- Me.Label62.AutoSize = True
- Me.Label62.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.Label62.Location = New System.Drawing.Point(348, 341)
- Me.Label62.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
- Me.Label62.Name = "Label62"
- Me.Label62.Size = New System.Drawing.Size(22, 19)
- Me.Label62.TabIndex = 61
- Me.Label62.Text = "%"
- '
- 'TextBox61
- '
- Me.TextBox61.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.TextBox61.ForeColor = System.Drawing.Color.Red
- Me.TextBox61.Location = New System.Drawing.Point(241, 335)
- Me.TextBox61.Margin = New System.Windows.Forms.Padding(4, 4, 4, 4)
- Me.TextBox61.Name = "TextBox61"
- Me.TextBox61.Size = New System.Drawing.Size(100, 27)
- Me.TextBox61.TabIndex = 60
- '
- 'Label63
- '
- Me.Label63.AutoSize = True
- Me.Label63.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.Label63.Location = New System.Drawing.Point(348, 305)
- Me.Label63.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
- Me.Label63.Name = "Label63"
- Me.Label63.Size = New System.Drawing.Size(22, 19)
- Me.Label63.TabIndex = 59
- Me.Label63.Text = "%"
- '
- 'TextBox62
- '
- Me.TextBox62.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.TextBox62.ForeColor = System.Drawing.Color.Red
- Me.TextBox62.Location = New System.Drawing.Point(243, 300)
- Me.TextBox62.Margin = New System.Windows.Forms.Padding(4, 4, 4, 4)
- Me.TextBox62.Name = "TextBox62"
- Me.TextBox62.Size = New System.Drawing.Size(100, 27)
- Me.TextBox62.TabIndex = 58
- '
- 'Label64
- '
- Me.Label64.AutoSize = True
- Me.Label64.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.Label64.Location = New System.Drawing.Point(348, 270)
- Me.Label64.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
- Me.Label64.Name = "Label64"
- Me.Label64.Size = New System.Drawing.Size(22, 19)
- Me.Label64.TabIndex = 57
- Me.Label64.Text = "%"
- '
- 'TextBox63
- '
- Me.TextBox63.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.TextBox63.ForeColor = System.Drawing.Color.Red
- Me.TextBox63.Location = New System.Drawing.Point(243, 265)
- Me.TextBox63.Margin = New System.Windows.Forms.Padding(4, 4, 4, 4)
- Me.TextBox63.Name = "TextBox63"
- Me.TextBox63.Size = New System.Drawing.Size(100, 27)
- Me.TextBox63.TabIndex = 56
- '
- 'Label65
- '
- Me.Label65.AutoSize = True
- Me.Label65.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.Label65.Location = New System.Drawing.Point(348, 235)
- Me.Label65.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
- Me.Label65.Name = "Label65"
- Me.Label65.Size = New System.Drawing.Size(22, 19)
- Me.Label65.TabIndex = 55
- Me.Label65.Text = "%"
- '
- 'TextBox64
- '
- Me.TextBox64.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.TextBox64.ForeColor = System.Drawing.Color.Red
- Me.TextBox64.Location = New System.Drawing.Point(243, 229)
- Me.TextBox64.Margin = New System.Windows.Forms.Padding(4, 4, 4, 4)
- Me.TextBox64.Name = "TextBox64"
- Me.TextBox64.Size = New System.Drawing.Size(100, 27)
- Me.TextBox64.TabIndex = 54
- '
- 'Label66
- '
- Me.Label66.AutoSize = True
- Me.Label66.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.Label66.Location = New System.Drawing.Point(347, 197)
- Me.Label66.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
- Me.Label66.Name = "Label66"
- Me.Label66.Size = New System.Drawing.Size(22, 19)
- Me.Label66.TabIndex = 53
- Me.Label66.Text = "%"
- '
- 'TextBox65
- '
- Me.TextBox65.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.TextBox65.ForeColor = System.Drawing.Color.Red
- Me.TextBox65.Location = New System.Drawing.Point(241, 194)
- Me.TextBox65.Margin = New System.Windows.Forms.Padding(4, 4, 4, 4)
- Me.TextBox65.Name = "TextBox65"
- Me.TextBox65.Size = New System.Drawing.Size(100, 27)
- Me.TextBox65.TabIndex = 52
- '
- 'Label67
- '
- Me.Label67.AutoSize = True
- Me.Label67.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.Label67.Location = New System.Drawing.Point(347, 160)
- Me.Label67.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
- Me.Label67.Name = "Label67"
- Me.Label67.Size = New System.Drawing.Size(22, 19)
- Me.Label67.TabIndex = 51
- Me.Label67.Text = "%"
- '
- 'TextBox66
- '
- Me.TextBox66.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.TextBox66.ForeColor = System.Drawing.Color.Red
- Me.TextBox66.Location = New System.Drawing.Point(243, 159)
- Me.TextBox66.Margin = New System.Windows.Forms.Padding(4, 4, 4, 4)
- Me.TextBox66.Name = "TextBox66"
- Me.TextBox66.Size = New System.Drawing.Size(100, 27)
- Me.TextBox66.TabIndex = 50
- '
- 'Label68
- '
- Me.Label68.AutoSize = True
- Me.Label68.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.Label68.Location = New System.Drawing.Point(347, 129)
- Me.Label68.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
- Me.Label68.Name = "Label68"
- Me.Label68.Size = New System.Drawing.Size(22, 19)
- Me.Label68.TabIndex = 49
- Me.Label68.Text = "%"
- '
- 'TextBox67
- '
- Me.TextBox67.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.TextBox67.ForeColor = System.Drawing.Color.Red
- Me.TextBox67.Location = New System.Drawing.Point(242, 124)
- Me.TextBox67.Margin = New System.Windows.Forms.Padding(4, 4, 4, 4)
- Me.TextBox67.Name = "TextBox67"
- Me.TextBox67.Size = New System.Drawing.Size(100, 27)
- Me.TextBox67.TabIndex = 48
- '
- 'Label69
- '
- Me.Label69.AutoSize = True
- Me.Label69.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.Label69.Location = New System.Drawing.Point(350, 93)
- Me.Label69.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
- Me.Label69.Name = "Label69"
- Me.Label69.Size = New System.Drawing.Size(22, 19)
- Me.Label69.TabIndex = 47
- Me.Label69.Text = "%"
- '
- 'TextBox68
- '
- Me.TextBox68.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.TextBox68.ForeColor = System.Drawing.Color.Red
- Me.TextBox68.Location = New System.Drawing.Point(242, 89)
- Me.TextBox68.Margin = New System.Windows.Forms.Padding(4, 4, 4, 4)
- Me.TextBox68.Name = "TextBox68"
- Me.TextBox68.Size = New System.Drawing.Size(100, 27)
- Me.TextBox68.TabIndex = 46
- '
- 'Label70
- '
- Me.Label70.AutoSize = True
- Me.Label70.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.Label70.Location = New System.Drawing.Point(349, 59)
- Me.Label70.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
- Me.Label70.Name = "Label70"
- Me.Label70.Size = New System.Drawing.Size(22, 19)
- Me.Label70.TabIndex = 45
- Me.Label70.Text = "%"
- '
- 'TextBox69
- '
- Me.TextBox69.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.TextBox69.ForeColor = System.Drawing.Color.Red
- Me.TextBox69.Location = New System.Drawing.Point(242, 54)
- Me.TextBox69.Margin = New System.Windows.Forms.Padding(4, 4, 4, 4)
- Me.TextBox69.Name = "TextBox69"
- Me.TextBox69.Size = New System.Drawing.Size(100, 27)
- Me.TextBox69.TabIndex = 44
- '
- 'Label71
- '
- Me.Label71.AutoSize = True
- Me.Label71.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.Label71.Location = New System.Drawing.Point(347, 23)
- Me.Label71.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
- Me.Label71.Name = "Label71"
- Me.Label71.Size = New System.Drawing.Size(22, 19)
- Me.Label71.TabIndex = 43
- Me.Label71.Text = "%"
- '
- 'TextBox70
- '
- Me.TextBox70.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.TextBox70.ForeColor = System.Drawing.Color.Red
- Me.TextBox70.Location = New System.Drawing.Point(243, 20)
- Me.TextBox70.Margin = New System.Windows.Forms.Padding(4, 4, 4, 4)
- Me.TextBox70.Name = "TextBox70"
- Me.TextBox70.Size = New System.Drawing.Size(100, 27)
- Me.TextBox70.TabIndex = 42
- '
- 'Label72
- '
- Me.Label72.AutoSize = True
- Me.Label72.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.Label72.Location = New System.Drawing.Point(23, 372)
- Me.Label72.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
- Me.Label72.Name = "Label72"
- Me.Label72.Size = New System.Drawing.Size(54, 19)
- Me.Label72.TabIndex = 37
- Me.Label72.Text = "總支出"
- '
- 'TextBox71
- '
- Me.TextBox71.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.TextBox71.ForeColor = System.Drawing.Color.Red
- Me.TextBox71.Location = New System.Drawing.Point(85, 334)
- Me.TextBox71.Margin = New System.Windows.Forms.Padding(4, 4, 4, 4)
- Me.TextBox71.Name = "TextBox71"
- Me.TextBox71.Size = New System.Drawing.Size(148, 27)
- Me.TextBox71.TabIndex = 37
- '
- 'Label73
- '
- Me.Label73.AutoSize = True
- Me.Label73.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.Label73.Location = New System.Drawing.Point(24, 337)
- Me.Label73.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
- Me.Label73.Name = "Label73"
- Me.Label73.Size = New System.Drawing.Size(54, 19)
- Me.Label73.TabIndex = 22
- Me.Label73.Text = "手續費"
- '
- 'TextBox72
- '
- Me.TextBox72.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.TextBox72.ForeColor = System.Drawing.Color.Red
- Me.TextBox72.Location = New System.Drawing.Point(85, 369)
- Me.TextBox72.Margin = New System.Windows.Forms.Padding(4, 4, 4, 4)
- Me.TextBox72.Name = "TextBox72"
- Me.TextBox72.Size = New System.Drawing.Size(148, 27)
- Me.TextBox72.TabIndex = 36
- '
- 'TextBox73
- '
- Me.TextBox73.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.TextBox73.ForeColor = System.Drawing.Color.Red
- Me.TextBox73.Location = New System.Drawing.Point(86, 20)
- Me.TextBox73.Margin = New System.Windows.Forms.Padding(4, 4, 4, 4)
- Me.TextBox73.Name = "TextBox73"
- Me.TextBox73.Size = New System.Drawing.Size(148, 27)
- Me.TextBox73.TabIndex = 27
- '
- 'Label74
- '
- Me.Label74.AutoSize = True
- Me.Label74.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.Label74.Location = New System.Drawing.Point(23, 23)
- Me.Label74.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
- Me.Label74.Name = "Label74"
- Me.Label74.Size = New System.Drawing.Size(54, 19)
- Me.Label74.TabIndex = 12
- Me.Label74.Text = "交通費"
- '
- 'Label75
- '
- Me.Label75.AutoSize = True
- Me.Label75.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.Label75.Location = New System.Drawing.Point(23, 94)
- Me.Label75.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
- Me.Label75.Name = "Label75"
- Me.Label75.Size = New System.Drawing.Size(54, 19)
- Me.Label75.TabIndex = 13
- Me.Label75.Text = "伙食費"
- '
- 'TextBox74
- '
- Me.TextBox74.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.TextBox74.ForeColor = System.Drawing.Color.Red
- Me.TextBox74.Location = New System.Drawing.Point(85, 299)
- Me.TextBox74.Margin = New System.Windows.Forms.Padding(4, 4, 4, 4)
- Me.TextBox74.Name = "TextBox74"
- Me.TextBox74.Size = New System.Drawing.Size(148, 27)
- Me.TextBox74.TabIndex = 35
- '
- 'Label76
- '
- Me.Label76.AutoSize = True
- Me.Label76.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.Label76.Location = New System.Drawing.Point(23, 58)
- Me.Label76.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
- Me.Label76.Name = "Label76"
- Me.Label76.Size = New System.Drawing.Size(54, 19)
- Me.Label76.TabIndex = 14
- Me.Label76.Text = "住宿費"
- '
- 'TextBox75
- '
- Me.TextBox75.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.TextBox75.ForeColor = System.Drawing.Color.Red
- Me.TextBox75.Location = New System.Drawing.Point(85, 264)
- Me.TextBox75.Margin = New System.Windows.Forms.Padding(4, 4, 4, 4)
- Me.TextBox75.Name = "TextBox75"
- Me.TextBox75.Size = New System.Drawing.Size(148, 27)
- Me.TextBox75.TabIndex = 34
- '
- 'Label77
- '
- Me.Label77.AutoSize = True
- Me.Label77.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.Label77.Location = New System.Drawing.Point(23, 127)
- Me.Label77.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
- Me.Label77.Name = "Label77"
- Me.Label77.Size = New System.Drawing.Size(54, 19)
- Me.Label77.TabIndex = 15
- Me.Label77.Text = "娛樂費"
- '
- 'TextBox76
- '
- Me.TextBox76.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.TextBox76.ForeColor = System.Drawing.Color.Red
- Me.TextBox76.Location = New System.Drawing.Point(85, 229)
- Me.TextBox76.Margin = New System.Windows.Forms.Padding(4, 4, 4, 4)
- Me.TextBox76.Name = "TextBox76"
- Me.TextBox76.Size = New System.Drawing.Size(148, 27)
- Me.TextBox76.TabIndex = 33
- '
- 'Label78
- '
- Me.Label78.AutoSize = True
- Me.Label78.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.Label78.Location = New System.Drawing.Point(23, 163)
- Me.Label78.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
- Me.Label78.Name = "Label78"
- Me.Label78.Size = New System.Drawing.Size(54, 19)
- Me.Label78.TabIndex = 16
- Me.Label78.Text = "家用費"
- '
- 'TextBox77
- '
- Me.TextBox77.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.TextBox77.ForeColor = System.Drawing.Color.Red
- Me.TextBox77.Location = New System.Drawing.Point(86, 194)
- Me.TextBox77.Margin = New System.Windows.Forms.Padding(4, 4, 4, 4)
- Me.TextBox77.Name = "TextBox77"
- Me.TextBox77.Size = New System.Drawing.Size(148, 27)
- Me.TextBox77.TabIndex = 32
- '
- 'Label79
- '
- Me.Label79.AutoSize = True
- Me.Label79.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.Label79.Location = New System.Drawing.Point(24, 199)
- Me.Label79.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
- Me.Label79.Name = "Label79"
- Me.Label79.Size = New System.Drawing.Size(54, 19)
- Me.Label79.TabIndex = 17
- Me.Label79.Text = "醫療費"
- '
- 'TextBox78
- '
- Me.TextBox78.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.TextBox78.ForeColor = System.Drawing.Color.Red
- Me.TextBox78.Location = New System.Drawing.Point(85, 159)
- Me.TextBox78.Margin = New System.Windows.Forms.Padding(4, 4, 4, 4)
- Me.TextBox78.Name = "TextBox78"
- Me.TextBox78.Size = New System.Drawing.Size(148, 27)
- Me.TextBox78.TabIndex = 31
- '
- 'Label80
- '
- Me.Label80.AutoSize = True
- Me.Label80.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.Label80.Location = New System.Drawing.Point(23, 232)
- Me.Label80.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
- Me.Label80.Name = "Label80"
- Me.Label80.Size = New System.Drawing.Size(54, 19)
- Me.Label80.TabIndex = 18
- Me.Label80.Text = "務公費"
- '
- 'TextBox79
- '
- Me.TextBox79.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.TextBox79.ForeColor = System.Drawing.Color.Red
- Me.TextBox79.Location = New System.Drawing.Point(86, 124)
- Me.TextBox79.Margin = New System.Windows.Forms.Padding(4, 4, 4, 4)
- Me.TextBox79.Name = "TextBox79"
- Me.TextBox79.Size = New System.Drawing.Size(148, 27)
- Me.TextBox79.TabIndex = 30
- '
- 'Label81
- '
- Me.Label81.AutoSize = True
- Me.Label81.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.Label81.Location = New System.Drawing.Point(23, 266)
- Me.Label81.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
- Me.Label81.Name = "Label81"
- Me.Label81.Size = New System.Drawing.Size(54, 19)
- Me.Label81.TabIndex = 19
- Me.Label81.Text = "交際費"
- '
- 'TextBox80
- '
- Me.TextBox80.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.TextBox80.ForeColor = System.Drawing.Color.Red
- Me.TextBox80.Location = New System.Drawing.Point(86, 89)
- Me.TextBox80.Margin = New System.Windows.Forms.Padding(4, 4, 4, 4)
- Me.TextBox80.Name = "TextBox80"
- Me.TextBox80.Size = New System.Drawing.Size(148, 27)
- Me.TextBox80.TabIndex = 29
- '
- 'Label82
- '
- Me.Label82.AutoSize = True
- Me.Label82.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.Label82.Location = New System.Drawing.Point(9, 302)
- Me.Label82.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
- Me.Label82.Name = "Label82"
- Me.Label82.Size = New System.Drawing.Size(69, 19)
- Me.Label82.TabIndex = 20
- Me.Label82.Text = "其他支出"
- '
- 'TextBox81
- '
- Me.TextBox81.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.TextBox81.ForeColor = System.Drawing.Color.Red
- Me.TextBox81.Location = New System.Drawing.Point(86, 54)
- Me.TextBox81.Margin = New System.Windows.Forms.Padding(4, 4, 4, 4)
- Me.TextBox81.Name = "TextBox81"
- Me.TextBox81.Size = New System.Drawing.Size(148, 27)
- Me.TextBox81.TabIndex = 28
- '
- 'GroupBox14
- '
- Me.GroupBox14.Controls.Add(Me.Label83)
- Me.GroupBox14.Controls.Add(Me.TextBox82)
- Me.GroupBox14.Controls.Add(Me.Label84)
- Me.GroupBox14.Controls.Add(Me.TextBox83)
- Me.GroupBox14.Controls.Add(Me.Label85)
- Me.GroupBox14.Controls.Add(Me.TextBox84)
- Me.GroupBox14.Controls.Add(Me.Label86)
- Me.GroupBox14.Controls.Add(Me.Label87)
- Me.GroupBox14.Controls.Add(Me.TextBox85)
- Me.GroupBox14.Controls.Add(Me.Label88)
- Me.GroupBox14.Controls.Add(Me.Label89)
- Me.GroupBox14.Controls.Add(Me.TextBox86)
- Me.GroupBox14.Controls.Add(Me.TextBox87)
- Me.GroupBox14.Controls.Add(Me.TextBox88)
- Me.GroupBox14.Location = New System.Drawing.Point(9, 28)
- Me.GroupBox14.Margin = New System.Windows.Forms.Padding(4, 4, 4, 4)
- Me.GroupBox14.Name = "GroupBox14"
- Me.GroupBox14.Padding = New System.Windows.Forms.Padding(4, 4, 4, 4)
- Me.GroupBox14.Size = New System.Drawing.Size(381, 162)
- Me.GroupBox14.TabIndex = 39
- Me.GroupBox14.TabStop = False
- Me.GroupBox14.Text = "收入"
- '
- 'Label83
- '
- Me.Label83.AutoSize = True
- Me.Label83.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.Label83.Location = New System.Drawing.Point(347, 94)
- Me.Label83.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
- Me.Label83.Name = "Label83"
- Me.Label83.Size = New System.Drawing.Size(22, 19)
- Me.Label83.TabIndex = 45
- Me.Label83.Text = "%"
- '
- 'TextBox82
- '
- Me.TextBox82.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.TextBox82.ForeColor = System.Drawing.Color.Blue
- Me.TextBox82.Location = New System.Drawing.Point(241, 91)
- Me.TextBox82.Margin = New System.Windows.Forms.Padding(4, 4, 4, 4)
- Me.TextBox82.Name = "TextBox82"
- Me.TextBox82.Size = New System.Drawing.Size(100, 27)
- Me.TextBox82.TabIndex = 44
- '
- 'Label84
- '
- Me.Label84.AutoSize = True
- Me.Label84.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.Label84.Location = New System.Drawing.Point(347, 59)
- Me.Label84.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
- Me.Label84.Name = "Label84"
- Me.Label84.Size = New System.Drawing.Size(22, 19)
- Me.Label84.TabIndex = 43
- Me.Label84.Text = "%"
- '
- 'TextBox83
- '
- Me.TextBox83.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.TextBox83.ForeColor = System.Drawing.Color.Blue
- Me.TextBox83.Location = New System.Drawing.Point(241, 56)
- Me.TextBox83.Margin = New System.Windows.Forms.Padding(4, 4, 4, 4)
- Me.TextBox83.Name = "TextBox83"
- Me.TextBox83.Size = New System.Drawing.Size(100, 27)
- Me.TextBox83.TabIndex = 42
- '
- 'Label85
- '
- Me.Label85.AutoSize = True
- Me.Label85.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.Label85.Location = New System.Drawing.Point(347, 24)
- Me.Label85.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
- Me.Label85.Name = "Label85"
- Me.Label85.Size = New System.Drawing.Size(22, 19)
- Me.Label85.TabIndex = 41
- Me.Label85.Text = "%"
- '
- 'TextBox84
- '
- Me.TextBox84.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.TextBox84.ForeColor = System.Drawing.Color.Blue
- Me.TextBox84.Location = New System.Drawing.Point(239, 21)
- Me.TextBox84.Margin = New System.Windows.Forms.Padding(4, 4, 4, 4)
- Me.TextBox84.Name = "TextBox84"
- Me.TextBox84.Size = New System.Drawing.Size(100, 27)
- Me.TextBox84.TabIndex = 40
- '
- 'Label86
- '
- Me.Label86.AutoSize = True
- Me.Label86.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.Label86.Location = New System.Drawing.Point(23, 129)
- Me.Label86.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
- Me.Label86.Name = "Label86"
- Me.Label86.Size = New System.Drawing.Size(54, 19)
- Me.Label86.TabIndex = 39
- Me.Label86.Text = "總收入"
- '
- 'Label87
- '
- Me.Label87.AutoSize = True
- Me.Label87.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.Label87.Location = New System.Drawing.Point(8, 24)
- Me.Label87.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
- Me.Label87.Name = "Label87"
- Me.Label87.Size = New System.Drawing.Size(69, 19)
- Me.Label87.TabIndex = 9
- Me.Label87.Text = "薪資收入"
- '
- 'TextBox85
- '
- Me.TextBox85.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.TextBox85.ForeColor = System.Drawing.Color.Blue
- Me.TextBox85.Location = New System.Drawing.Point(86, 126)
- Me.TextBox85.Margin = New System.Windows.Forms.Padding(4, 4, 4, 4)
- Me.TextBox85.Name = "TextBox85"
- Me.TextBox85.Size = New System.Drawing.Size(145, 27)
- Me.TextBox85.TabIndex = 38
- '
- 'Label88
- '
- Me.Label88.AutoSize = True
- Me.Label88.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.Label88.Location = New System.Drawing.Point(8, 59)
- Me.Label88.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
- Me.Label88.Name = "Label88"
- Me.Label88.Size = New System.Drawing.Size(69, 19)
- Me.Label88.TabIndex = 10
- Me.Label88.Text = "其他收入"
- '
- 'Label89
- '
- Me.Label89.AutoSize = True
- Me.Label89.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.Label89.Location = New System.Drawing.Point(38, 94)
- Me.Label89.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
- Me.Label89.Name = "Label89"
- Me.Label89.Size = New System.Drawing.Size(39, 19)
- Me.Label89.TabIndex = 11
- Me.Label89.Text = "利息"
- '
- 'TextBox86
- '
- Me.TextBox86.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.TextBox86.ForeColor = System.Drawing.Color.Blue
- Me.TextBox86.Location = New System.Drawing.Point(85, 21)
- Me.TextBox86.Margin = New System.Windows.Forms.Padding(4, 4, 4, 4)
- Me.TextBox86.Name = "TextBox86"
- Me.TextBox86.Size = New System.Drawing.Size(145, 27)
- Me.TextBox86.TabIndex = 24
- '
- 'TextBox87
- '
- Me.TextBox87.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.TextBox87.ForeColor = System.Drawing.Color.Blue
- Me.TextBox87.Location = New System.Drawing.Point(86, 56)
- Me.TextBox87.Margin = New System.Windows.Forms.Padding(4, 4, 4, 4)
- Me.TextBox87.Name = "TextBox87"
- Me.TextBox87.Size = New System.Drawing.Size(145, 27)
- Me.TextBox87.TabIndex = 25
- '
- 'TextBox88
- '
- Me.TextBox88.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.TextBox88.ForeColor = System.Drawing.Color.Blue
- Me.TextBox88.Location = New System.Drawing.Point(86, 91)
- Me.TextBox88.Margin = New System.Windows.Forms.Padding(4, 4, 4, 4)
- Me.TextBox88.Name = "TextBox88"
- Me.TextBox88.Size = New System.Drawing.Size(145, 27)
- Me.TextBox88.TabIndex = 26
- '
- '月份查詢
- '
- Me.AutoScaleDimensions = New System.Drawing.SizeF(8.0!, 15.0!)
- Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font
- Me.ClientSize = New System.Drawing.Size(1146, 763)
- Me.Controls.Add(Me.GroupBox11)
- Me.Controls.Add(Me.GroupBox1)
- Me.Controls.Add(Me.GroupBox10)
- Me.Controls.Add(Me.GroupBox3)
- Me.Controls.Add(Me.GroupBox9)
- Me.Margin = New System.Windows.Forms.Padding(4, 4, 4, 4)
- Me.Name = "月份查詢"
- Me.Text = "月份查詢"
- Me.GroupBox3.ResumeLayout(False)
- Me.GroupBox6.ResumeLayout(False)
- Me.GroupBox6.PerformLayout()
- Me.GroupBox5.ResumeLayout(False)
- Me.GroupBox5.PerformLayout()
- Me.GroupBox4.ResumeLayout(False)
- Me.GroupBox4.PerformLayout()
- Me.GroupBox9.ResumeLayout(False)
- Me.GroupBox9.PerformLayout()
- Me.GroupBox10.ResumeLayout(False)
- Me.GroupBox10.PerformLayout()
- Me.GroupBox1.ResumeLayout(False)
- Me.GroupBox2.ResumeLayout(False)
- Me.GroupBox2.PerformLayout()
- Me.GroupBox7.ResumeLayout(False)
- Me.GroupBox7.PerformLayout()
- Me.GroupBox8.ResumeLayout(False)
- Me.GroupBox8.PerformLayout()
- Me.GroupBox11.ResumeLayout(False)
- Me.GroupBox12.ResumeLayout(False)
- Me.GroupBox12.PerformLayout()
- Me.GroupBox13.ResumeLayout(False)
- Me.GroupBox13.PerformLayout()
- Me.GroupBox14.ResumeLayout(False)
- Me.GroupBox14.PerformLayout()
- Me.ResumeLayout(False)
-
- End Sub
- Friend WithEvents GroupBox3 As System.Windows.Forms.GroupBox
- Friend WithEvents GroupBox6 As System.Windows.Forms.GroupBox
- Friend WithEvents Label47 As System.Windows.Forms.Label
- Friend WithEvents TextBox38 As System.Windows.Forms.TextBox
- Friend WithEvents GroupBox5 As System.Windows.Forms.GroupBox
- Friend WithEvents Label46 As System.Windows.Forms.Label
- Friend WithEvents TextBox54 As System.Windows.Forms.TextBox
- Friend WithEvents Label45 As System.Windows.Forms.Label
- Friend WithEvents TextBox53 As System.Windows.Forms.TextBox
- Friend WithEvents Label44 As System.Windows.Forms.Label
- Friend WithEvents TextBox52 As System.Windows.Forms.TextBox
- Friend WithEvents Label43 As System.Windows.Forms.Label
- Friend WithEvents TextBox51 As System.Windows.Forms.TextBox
- Friend WithEvents Label42 As System.Windows.Forms.Label
- Friend WithEvents TextBox50 As System.Windows.Forms.TextBox
- Friend WithEvents Label41 As System.Windows.Forms.Label
- Friend WithEvents TextBox49 As System.Windows.Forms.TextBox
- Friend WithEvents Label40 As System.Windows.Forms.Label
- Friend WithEvents TextBox48 As System.Windows.Forms.TextBox
- Friend WithEvents Label39 As System.Windows.Forms.Label
- Friend WithEvents TextBox47 As System.Windows.Forms.TextBox
- Friend WithEvents Label38 As System.Windows.Forms.Label
- Friend WithEvents TextBox46 As System.Windows.Forms.TextBox
- Friend WithEvents Label37 As System.Windows.Forms.Label
- Friend WithEvents TextBox45 As System.Windows.Forms.TextBox
- Friend WithEvents Label30 As System.Windows.Forms.Label
- Friend WithEvents TextBox39 As System.Windows.Forms.TextBox
- Friend WithEvents Label31 As System.Windows.Forms.Label
- Friend WithEvents TextBox41 As System.Windows.Forms.TextBox
- Friend WithEvents TextBox29 As System.Windows.Forms.TextBox
- Friend WithEvents Label23 As System.Windows.Forms.Label
- Friend WithEvents Label22 As System.Windows.Forms.Label
- Friend WithEvents TextBox37 As System.Windows.Forms.TextBox
- Friend WithEvents Label21 As System.Windows.Forms.Label
- Friend WithEvents TextBox36 As System.Windows.Forms.TextBox
- Friend WithEvents Label26 As System.Windows.Forms.Label
- Friend WithEvents TextBox35 As System.Windows.Forms.TextBox
- Friend WithEvents Label25 As System.Windows.Forms.Label
- Friend WithEvents TextBox34 As System.Windows.Forms.TextBox
- Friend WithEvents Label24 As System.Windows.Forms.Label
- Friend WithEvents TextBox33 As System.Windows.Forms.TextBox
- Friend WithEvents Label29 As System.Windows.Forms.Label
- Friend WithEvents TextBox32 As System.Windows.Forms.TextBox
- Friend WithEvents Label28 As System.Windows.Forms.Label
- Friend WithEvents TextBox31 As System.Windows.Forms.TextBox
- Friend WithEvents Label27 As System.Windows.Forms.Label
- Friend WithEvents TextBox30 As System.Windows.Forms.TextBox
- Friend WithEvents GroupBox4 As System.Windows.Forms.GroupBox
- Friend WithEvents Label36 As System.Windows.Forms.Label
- Friend WithEvents TextBox44 As System.Windows.Forms.TextBox
- Friend WithEvents Label35 As System.Windows.Forms.Label
- Friend WithEvents TextBox43 As System.Windows.Forms.TextBox
- Friend WithEvents Label34 As System.Windows.Forms.Label
- Friend WithEvents TextBox42 As System.Windows.Forms.TextBox
- Friend WithEvents Label33 As System.Windows.Forms.Label
- Friend WithEvents Label18 As System.Windows.Forms.Label
- Friend WithEvents TextBox40 As System.Windows.Forms.TextBox
- Friend WithEvents Label19 As System.Windows.Forms.Label
- Friend WithEvents Label20 As System.Windows.Forms.Label
- Friend WithEvents TextBox26 As System.Windows.Forms.TextBox
- Friend WithEvents TextBox27 As System.Windows.Forms.TextBox
- Friend WithEvents TextBox28 As System.Windows.Forms.TextBox
- Friend WithEvents GroupBox9 As System.Windows.Forms.GroupBox
- Friend WithEvents Label59 As System.Windows.Forms.Label
- Friend WithEvents DateTimePicker2 As System.Windows.Forms.DateTimePicker
- Friend WithEvents DateTimePicker1 As System.Windows.Forms.DateTimePicker
- Friend WithEvents Button1 As System.Windows.Forms.Button
- Friend WithEvents Button2 As System.Windows.Forms.Button
- Friend WithEvents TextBox59 As System.Windows.Forms.TextBox
- Friend WithEvents GroupBox10 As System.Windows.Forms.GroupBox
- Friend WithEvents Label60 As System.Windows.Forms.Label
- Friend WithEvents GroupBox1 As System.Windows.Forms.GroupBox
- Friend WithEvents GroupBox2 As System.Windows.Forms.GroupBox
- Friend WithEvents Label1 As System.Windows.Forms.Label
- Friend WithEvents TextBox1 As System.Windows.Forms.TextBox
- Friend WithEvents GroupBox7 As System.Windows.Forms.GroupBox
- Friend WithEvents Label2 As System.Windows.Forms.Label
- Friend WithEvents TextBox2 As System.Windows.Forms.TextBox
- Friend WithEvents Label3 As System.Windows.Forms.Label
- Friend WithEvents TextBox3 As System.Windows.Forms.TextBox
- Friend WithEvents Label4 As System.Windows.Forms.Label
- Friend WithEvents TextBox4 As System.Windows.Forms.TextBox
- Friend WithEvents Label5 As System.Windows.Forms.Label
- Friend WithEvents TextBox5 As System.Windows.Forms.TextBox
- Friend WithEvents Label6 As System.Windows.Forms.Label
- Friend WithEvents TextBox6 As System.Windows.Forms.TextBox
- Friend WithEvents Label7 As System.Windows.Forms.Label
- Friend WithEvents TextBox7 As System.Windows.Forms.TextBox
- Friend WithEvents Label8 As System.Windows.Forms.Label
- Friend WithEvents TextBox8 As System.Windows.Forms.TextBox
- Friend WithEvents Label9 As System.Windows.Forms.Label
- Friend WithEvents TextBox9 As System.Windows.Forms.TextBox
- Friend WithEvents Label10 As System.Windows.Forms.Label
- Friend WithEvents TextBox10 As System.Windows.Forms.TextBox
- Friend WithEvents Label11 As System.Windows.Forms.Label
- Friend WithEvents TextBox11 As System.Windows.Forms.TextBox
- Friend WithEvents Label12 As System.Windows.Forms.Label
- Friend WithEvents TextBox12 As System.Windows.Forms.TextBox
- Friend WithEvents Label13 As System.Windows.Forms.Label
- Friend WithEvents TextBox13 As System.Windows.Forms.TextBox
- Friend WithEvents TextBox14 As System.Windows.Forms.TextBox
- Friend WithEvents Label14 As System.Windows.Forms.Label
- Friend WithEvents Label15 As System.Windows.Forms.Label
- Friend WithEvents TextBox15 As System.Windows.Forms.TextBox
- Friend WithEvents Label16 As System.Windows.Forms.Label
- Friend WithEvents TextBox16 As System.Windows.Forms.TextBox
- Friend WithEvents Label17 As System.Windows.Forms.Label
- Friend WithEvents TextBox17 As System.Windows.Forms.TextBox
- Friend WithEvents Label32 As System.Windows.Forms.Label
- Friend WithEvents TextBox18 As System.Windows.Forms.TextBox
- Friend WithEvents Label48 As System.Windows.Forms.Label
- Friend WithEvents TextBox19 As System.Windows.Forms.TextBox
- Friend WithEvents Label49 As System.Windows.Forms.Label
- Friend WithEvents TextBox20 As System.Windows.Forms.TextBox
- Friend WithEvents Label50 As System.Windows.Forms.Label
- Friend WithEvents TextBox21 As System.Windows.Forms.TextBox
- Friend WithEvents Label51 As System.Windows.Forms.Label
- Friend WithEvents TextBox22 As System.Windows.Forms.TextBox
- Friend WithEvents GroupBox8 As System.Windows.Forms.GroupBox
- Friend WithEvents Label52 As System.Windows.Forms.Label
- Friend WithEvents TextBox23 As System.Windows.Forms.TextBox
- Friend WithEvents Label53 As System.Windows.Forms.Label
- Friend WithEvents TextBox24 As System.Windows.Forms.TextBox
- Friend WithEvents Label54 As System.Windows.Forms.Label
- Friend WithEvents TextBox25 As System.Windows.Forms.TextBox
- Friend WithEvents Label55 As System.Windows.Forms.Label
- Friend WithEvents Label56 As System.Windows.Forms.Label
- Friend WithEvents TextBox55 As System.Windows.Forms.TextBox
- Friend WithEvents Label57 As System.Windows.Forms.Label
- Friend WithEvents Label58 As System.Windows.Forms.Label
- Friend WithEvents TextBox56 As System.Windows.Forms.TextBox
- Friend WithEvents TextBox57 As System.Windows.Forms.TextBox
- Friend WithEvents TextBox58 As System.Windows.Forms.TextBox
- Friend WithEvents GroupBox11 As System.Windows.Forms.GroupBox
- Friend WithEvents GroupBox12 As System.Windows.Forms.GroupBox
- Friend WithEvents Label61 As System.Windows.Forms.Label
- Friend WithEvents TextBox60 As System.Windows.Forms.TextBox
- Friend WithEvents GroupBox13 As System.Windows.Forms.GroupBox
- Friend WithEvents Label62 As System.Windows.Forms.Label
- Friend WithEvents TextBox61 As System.Windows.Forms.TextBox
- Friend WithEvents Label63 As System.Windows.Forms.Label
- Friend WithEvents TextBox62 As System.Windows.Forms.TextBox
- Friend WithEvents Label64 As System.Windows.Forms.Label
- Friend WithEvents TextBox63 As System.Windows.Forms.TextBox
- Friend WithEvents Label65 As System.Windows.Forms.Label
- Friend WithEvents TextBox64 As System.Windows.Forms.TextBox
- Friend WithEvents Label66 As System.Windows.Forms.Label
- Friend WithEvents TextBox65 As System.Windows.Forms.TextBox
- Friend WithEvents Label67 As System.Windows.Forms.Label
- Friend WithEvents TextBox66 As System.Windows.Forms.TextBox
- Friend WithEvents Label68 As System.Windows.Forms.Label
- Friend WithEvents TextBox67 As System.Windows.Forms.TextBox
- Friend WithEvents Label69 As System.Windows.Forms.Label
- Friend WithEvents TextBox68 As System.Windows.Forms.TextBox
- Friend WithEvents Label70 As System.Windows.Forms.Label
- Friend WithEvents TextBox69 As System.Windows.Forms.TextBox
- Friend WithEvents Label71 As System.Windows.Forms.Label
- Friend WithEvents TextBox70 As System.Windows.Forms.TextBox
- Friend WithEvents Label72 As System.Windows.Forms.Label
- Friend WithEvents TextBox71 As System.Windows.Forms.TextBox
- Friend WithEvents Label73 As System.Windows.Forms.Label
- Friend WithEvents TextBox72 As System.Windows.Forms.TextBox
- Friend WithEvents TextBox73 As System.Windows.Forms.TextBox
- Friend WithEvents Label74 As System.Windows.Forms.Label
- Friend WithEvents Label75 As System.Windows.Forms.Label
- Friend WithEvents TextBox74 As System.Windows.Forms.TextBox
- Friend WithEvents Label76 As System.Windows.Forms.Label
- Friend WithEvents TextBox75 As System.Windows.Forms.TextBox
- Friend WithEvents Label77 As System.Windows.Forms.Label
- Friend WithEvents TextBox76 As System.Windows.Forms.TextBox
- Friend WithEvents Label78 As System.Windows.Forms.Label
- Friend WithEvents TextBox77 As System.Windows.Forms.TextBox
- Friend WithEvents Label79 As System.Windows.Forms.Label
- Friend WithEvents TextBox78 As System.Windows.Forms.TextBox
- Friend WithEvents Label80 As System.Windows.Forms.Label
- Friend WithEvents TextBox79 As System.Windows.Forms.TextBox
- Friend WithEvents Label81 As System.Windows.Forms.Label
- Friend WithEvents TextBox80 As System.Windows.Forms.TextBox
- Friend WithEvents Label82 As System.Windows.Forms.Label
- Friend WithEvents TextBox81 As System.Windows.Forms.TextBox
- Friend WithEvents GroupBox14 As System.Windows.Forms.GroupBox
- Friend WithEvents Label83 As System.Windows.Forms.Label
- Friend WithEvents TextBox82 As System.Windows.Forms.TextBox
- Friend WithEvents Label84 As System.Windows.Forms.Label
- Friend WithEvents TextBox83 As System.Windows.Forms.TextBox
- Friend WithEvents Label85 As System.Windows.Forms.Label
- Friend WithEvents TextBox84 As System.Windows.Forms.TextBox
- Friend WithEvents Label86 As System.Windows.Forms.Label
- Friend WithEvents Label87 As System.Windows.Forms.Label
- Friend WithEvents TextBox85 As System.Windows.Forms.TextBox
- Friend WithEvents Label88 As System.Windows.Forms.Label
- Friend WithEvents Label89 As System.Windows.Forms.Label
- Friend WithEvents TextBox86 As System.Windows.Forms.TextBox
- Friend WithEvents TextBox87 As System.Windows.Forms.TextBox
- Friend WithEvents TextBox88 As System.Windows.Forms.TextBox
- End Class
|