123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058 |
- <Global.Microsoft.VisualBasic.CompilerServices.DesignerGenerated()>
- Partial Class 財務報表4
- 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()
- Dim DataGridViewCellStyle1 As System.Windows.Forms.DataGridViewCellStyle = New System.Windows.Forms.DataGridViewCellStyle()
- Dim DataGridViewCellStyle2 As System.Windows.Forms.DataGridViewCellStyle = New System.Windows.Forms.DataGridViewCellStyle()
- Dim DataGridViewCellStyle3 As System.Windows.Forms.DataGridViewCellStyle = New System.Windows.Forms.DataGridViewCellStyle()
- Dim DataGridViewCellStyle4 As System.Windows.Forms.DataGridViewCellStyle = New System.Windows.Forms.DataGridViewCellStyle()
- Dim DataGridViewCellStyle5 As System.Windows.Forms.DataGridViewCellStyle = New System.Windows.Forms.DataGridViewCellStyle()
- Dim DataGridViewCellStyle6 As System.Windows.Forms.DataGridViewCellStyle = New System.Windows.Forms.DataGridViewCellStyle()
- Dim DataGridViewCellStyle7 As System.Windows.Forms.DataGridViewCellStyle = New System.Windows.Forms.DataGridViewCellStyle()
- Dim DataGridViewCellStyle8 As System.Windows.Forms.DataGridViewCellStyle = New System.Windows.Forms.DataGridViewCellStyle()
- Dim DataGridViewCellStyle9 As System.Windows.Forms.DataGridViewCellStyle = New System.Windows.Forms.DataGridViewCellStyle()
- Dim DataGridViewCellStyle10 As System.Windows.Forms.DataGridViewCellStyle = New System.Windows.Forms.DataGridViewCellStyle()
- Dim DataGridViewCellStyle11 As System.Windows.Forms.DataGridViewCellStyle = New System.Windows.Forms.DataGridViewCellStyle()
- Dim DataGridViewCellStyle12 As System.Windows.Forms.DataGridViewCellStyle = New System.Windows.Forms.DataGridViewCellStyle()
- Dim DataGridViewCellStyle13 As System.Windows.Forms.DataGridViewCellStyle = New System.Windows.Forms.DataGridViewCellStyle()
- Me.TextBox77 = New System.Windows.Forms.TextBox()
- Me.TextBox78 = New System.Windows.Forms.TextBox()
- Me.TextBox79 = New System.Windows.Forms.TextBox()
- Me.TextBox80 = New System.Windows.Forms.TextBox()
- Me.TextBox81 = New System.Windows.Forms.TextBox()
- Me.TextBox82 = New System.Windows.Forms.TextBox()
- Me.TextBox83 = New System.Windows.Forms.TextBox()
- Me.TextBox84 = New System.Windows.Forms.TextBox()
- Me.TextBox85 = New System.Windows.Forms.TextBox()
- Me.TextBox86 = New System.Windows.Forms.TextBox()
- Me.TextBox87 = New System.Windows.Forms.TextBox()
- Me.TextBox88 = New System.Windows.Forms.TextBox()
- Me.匯差_lb = New System.Windows.Forms.Label()
- Me.損益_lb = New System.Windows.Forms.Label()
- Me.TextBox64 = New System.Windows.Forms.TextBox()
- Me.TextBox65 = New System.Windows.Forms.TextBox()
- Me.TextBox66 = New System.Windows.Forms.TextBox()
- Me.TextBox67 = New System.Windows.Forms.TextBox()
- Me.TextBox68 = New System.Windows.Forms.TextBox()
- Me.TextBox69 = New System.Windows.Forms.TextBox()
- Me.TextBox70 = New System.Windows.Forms.TextBox()
- Me.TextBox71 = New System.Windows.Forms.TextBox()
- Me.TextBox72 = New System.Windows.Forms.TextBox()
- Me.TextBox73 = New System.Windows.Forms.TextBox()
- Me.TextBox74 = New System.Windows.Forms.TextBox()
- Me.TextBox75 = New System.Windows.Forms.TextBox()
- Me.TextBox76 = New System.Windows.Forms.TextBox()
- Me.TextBox63 = New System.Windows.Forms.TextBox()
- Me.TextBox62 = New System.Windows.Forms.TextBox()
- Me.TextBox61 = New System.Windows.Forms.TextBox()
- Me.全部資料合併計算_bt = New System.Windows.Forms.Button()
- Me.TextBox56 = New System.Windows.Forms.TextBox()
- Me.TextBox57 = New System.Windows.Forms.TextBox()
- Me.TextBox58 = New System.Windows.Forms.TextBox()
- Me.TextBox59 = New System.Windows.Forms.TextBox()
- Me.TextBox60 = New System.Windows.Forms.TextBox()
- Me.TextBox51 = New System.Windows.Forms.TextBox()
- Me.TextBox52 = New System.Windows.Forms.TextBox()
- Me.TextBox53 = New System.Windows.Forms.TextBox()
- Me.TextBox54 = New System.Windows.Forms.TextBox()
- Me.TextBox55 = New System.Windows.Forms.TextBox()
- Me.TextBox46 = New System.Windows.Forms.TextBox()
- Me.TextBox47 = New System.Windows.Forms.TextBox()
- Me.TextBox48 = New System.Windows.Forms.TextBox()
- Me.TextBox49 = New System.Windows.Forms.TextBox()
- Me.TextBox50 = New System.Windows.Forms.TextBox()
- Me.TextBox41 = New System.Windows.Forms.TextBox()
- Me.TextBox42 = New System.Windows.Forms.TextBox()
- Me.TextBox43 = New System.Windows.Forms.TextBox()
- Me.TextBox44 = New System.Windows.Forms.TextBox()
- Me.TextBox45 = New System.Windows.Forms.TextBox()
- Me.TextBox36 = New System.Windows.Forms.TextBox()
- Me.TextBox37 = New System.Windows.Forms.TextBox()
- Me.TextBox38 = New System.Windows.Forms.TextBox()
- Me.TextBox39 = New System.Windows.Forms.TextBox()
- Me.TextBox40 = New System.Windows.Forms.TextBox()
- Me.TextBox31 = New System.Windows.Forms.TextBox()
- Me.TextBox32 = New System.Windows.Forms.TextBox()
- Me.TextBox33 = New System.Windows.Forms.TextBox()
- Me.TextBox34 = New System.Windows.Forms.TextBox()
- Me.TextBox35 = New System.Windows.Forms.TextBox()
- Me.上月結存_lb = New System.Windows.Forms.Label()
- Me.TextBox25 = New System.Windows.Forms.TextBox()
- Me.TextBox26 = New System.Windows.Forms.TextBox()
- Me.TextBox27 = New System.Windows.Forms.TextBox()
- Me.TextBox28 = New System.Windows.Forms.TextBox()
- Me.TextBox29 = New System.Windows.Forms.TextBox()
- Me.TextBox30 = New System.Windows.Forms.TextBox()
- Me.TextBox24 = New System.Windows.Forms.TextBox()
- Me.TextBox23 = New System.Windows.Forms.TextBox()
- Me.TextBox22 = New System.Windows.Forms.TextBox()
- Me.TextBox21 = New System.Windows.Forms.TextBox()
- Me.TextBox20 = New System.Windows.Forms.TextBox()
- Me.TextBox19 = New System.Windows.Forms.TextBox()
- Me.TextBox18 = New System.Windows.Forms.TextBox()
- Me.TextBox17 = New System.Windows.Forms.TextBox()
- Me.TextBox16 = New System.Windows.Forms.TextBox()
- Me.TextBox15 = New System.Windows.Forms.TextBox()
- Me.TextBox14 = New System.Windows.Forms.TextBox()
- Me.TextBox13 = New System.Windows.Forms.TextBox()
- Me.TextBox12 = New System.Windows.Forms.TextBox()
- Me.TextBox11 = New System.Windows.Forms.TextBox()
- Me.TextBox10 = New System.Windows.Forms.TextBox()
- Me.TextBox9 = New System.Windows.Forms.TextBox()
- Me.TextBox8 = New System.Windows.Forms.TextBox()
- Me.TextBox7 = New System.Windows.Forms.TextBox()
- Me.TextBox6 = New System.Windows.Forms.TextBox()
- Me.TextBox5 = New System.Windows.Forms.TextBox()
- Me.TextBox4 = New System.Windows.Forms.TextBox()
- Me.本月結存_lb = New System.Windows.Forms.Label()
- Me.TextBox3 = New System.Windows.Forms.TextBox()
- Me.支出合計_lb = New System.Windows.Forms.Label()
- Me.TextBox2 = New System.Windows.Forms.TextBox()
- Me.收入合計_lb = New System.Windows.Forms.Label()
- Me.TextBox1 = New System.Windows.Forms.TextBox()
- Me.新增資本_lb = New System.Windows.Forms.Label()
- Me.重新整理_bt = New System.Windows.Forms.Button()
- Me.月12_lb = New System.Windows.Forms.Label()
- Me.月11_lb = New System.Windows.Forms.Label()
- Me.月10_lb = New System.Windows.Forms.Label()
- Me.月9_lb = New System.Windows.Forms.Label()
- Me.月8_lb = New System.Windows.Forms.Label()
- Me.月7_lb = New System.Windows.Forms.Label()
- Me.月6_lb = New System.Windows.Forms.Label()
- Me.月5_lb = New System.Windows.Forms.Label()
- Me.月4_lb = New System.Windows.Forms.Label()
- Me.月3_lb = New System.Windows.Forms.Label()
- Me.月2_lb = New System.Windows.Forms.Label()
- Me.月1_lb = New System.Windows.Forms.Label()
- Me.月12_dgv = New System.Windows.Forms.DataGridView()
- Me.月11_dgv = New System.Windows.Forms.DataGridView()
- Me.月10_dgv = New System.Windows.Forms.DataGridView()
- Me.月9_dgv = New System.Windows.Forms.DataGridView()
- Me.月8_dgv = New System.Windows.Forms.DataGridView()
- Me.月7_dgv = New System.Windows.Forms.DataGridView()
- Me.月6_dgv = New System.Windows.Forms.DataGridView()
- Me.月5_dgv = New System.Windows.Forms.DataGridView()
- Me.月4_dgv = New System.Windows.Forms.DataGridView()
- Me.月3_dgv = New System.Windows.Forms.DataGridView()
- Me.月2_dgv = New System.Windows.Forms.DataGridView()
- Me.月1_dgv = New System.Windows.Forms.DataGridView()
- Me.年份_cb = New System.Windows.Forms.ComboBox()
- Me.財務決算表_lb = New System.Windows.Forms.Label()
- Me.主表_dgv = New System.Windows.Forms.DataGridView()
- Me.語言_dgv = New System.Windows.Forms.DataGridView()
- Me.PictureBox1 = New System.Windows.Forms.PictureBox()
- Me.語轉扭_bt = New System.Windows.Forms.Button()
- CType(Me.月12_dgv, System.ComponentModel.ISupportInitialize).BeginInit()
- CType(Me.月11_dgv, System.ComponentModel.ISupportInitialize).BeginInit()
- CType(Me.月10_dgv, System.ComponentModel.ISupportInitialize).BeginInit()
- CType(Me.月9_dgv, System.ComponentModel.ISupportInitialize).BeginInit()
- CType(Me.月8_dgv, System.ComponentModel.ISupportInitialize).BeginInit()
- CType(Me.月7_dgv, System.ComponentModel.ISupportInitialize).BeginInit()
- CType(Me.月6_dgv, System.ComponentModel.ISupportInitialize).BeginInit()
- CType(Me.月5_dgv, System.ComponentModel.ISupportInitialize).BeginInit()
- CType(Me.月4_dgv, System.ComponentModel.ISupportInitialize).BeginInit()
- CType(Me.月3_dgv, System.ComponentModel.ISupportInitialize).BeginInit()
- CType(Me.月2_dgv, System.ComponentModel.ISupportInitialize).BeginInit()
- CType(Me.月1_dgv, System.ComponentModel.ISupportInitialize).BeginInit()
- CType(Me.主表_dgv, System.ComponentModel.ISupportInitialize).BeginInit()
- CType(Me.語言_dgv, System.ComponentModel.ISupportInitialize).BeginInit()
- CType(Me.PictureBox1, System.ComponentModel.ISupportInitialize).BeginInit()
- Me.SuspendLayout()
- '
- 'TextBox77
- '
- Me.TextBox77.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
- Me.TextBox77.BorderStyle = System.Windows.Forms.BorderStyle.None
- Me.TextBox77.Font = New System.Drawing.Font("微軟正黑體", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.TextBox77.Location = New System.Drawing.Point(1783, 809)
- Me.TextBox77.Name = "TextBox77"
- Me.TextBox77.Size = New System.Drawing.Size(95, 15)
- Me.TextBox77.TabIndex = 1468
- Me.TextBox77.Text = "0"
- Me.TextBox77.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- '
- 'TextBox78
- '
- Me.TextBox78.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
- Me.TextBox78.BorderStyle = System.Windows.Forms.BorderStyle.None
- Me.TextBox78.Font = New System.Drawing.Font("微軟正黑體", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.TextBox78.Location = New System.Drawing.Point(1685, 809)
- Me.TextBox78.Name = "TextBox78"
- Me.TextBox78.Size = New System.Drawing.Size(95, 15)
- Me.TextBox78.TabIndex = 1467
- Me.TextBox78.Text = "0"
- Me.TextBox78.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- '
- 'TextBox79
- '
- Me.TextBox79.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
- Me.TextBox79.BorderStyle = System.Windows.Forms.BorderStyle.None
- Me.TextBox79.Font = New System.Drawing.Font("微軟正黑體", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.TextBox79.Location = New System.Drawing.Point(1587, 809)
- Me.TextBox79.Name = "TextBox79"
- Me.TextBox79.Size = New System.Drawing.Size(95, 15)
- Me.TextBox79.TabIndex = 1466
- Me.TextBox79.Text = "0"
- Me.TextBox79.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- '
- 'TextBox80
- '
- Me.TextBox80.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
- Me.TextBox80.BorderStyle = System.Windows.Forms.BorderStyle.None
- Me.TextBox80.Font = New System.Drawing.Font("微軟正黑體", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.TextBox80.Location = New System.Drawing.Point(1489, 809)
- Me.TextBox80.Name = "TextBox80"
- Me.TextBox80.Size = New System.Drawing.Size(95, 15)
- Me.TextBox80.TabIndex = 1465
- Me.TextBox80.Text = "0"
- Me.TextBox80.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- '
- 'TextBox81
- '
- Me.TextBox81.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
- Me.TextBox81.BorderStyle = System.Windows.Forms.BorderStyle.None
- Me.TextBox81.Font = New System.Drawing.Font("微軟正黑體", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.TextBox81.Location = New System.Drawing.Point(1391, 809)
- Me.TextBox81.Name = "TextBox81"
- Me.TextBox81.Size = New System.Drawing.Size(95, 15)
- Me.TextBox81.TabIndex = 1464
- Me.TextBox81.Text = "0"
- Me.TextBox81.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- '
- 'TextBox82
- '
- Me.TextBox82.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
- Me.TextBox82.BorderStyle = System.Windows.Forms.BorderStyle.None
- Me.TextBox82.Font = New System.Drawing.Font("微軟正黑體", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.TextBox82.Location = New System.Drawing.Point(1293, 809)
- Me.TextBox82.Name = "TextBox82"
- Me.TextBox82.Size = New System.Drawing.Size(95, 15)
- Me.TextBox82.TabIndex = 1463
- Me.TextBox82.Text = "0"
- Me.TextBox82.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- '
- 'TextBox83
- '
- Me.TextBox83.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
- Me.TextBox83.BorderStyle = System.Windows.Forms.BorderStyle.None
- Me.TextBox83.Font = New System.Drawing.Font("微軟正黑體", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.TextBox83.Location = New System.Drawing.Point(1195, 809)
- Me.TextBox83.Name = "TextBox83"
- Me.TextBox83.Size = New System.Drawing.Size(95, 15)
- Me.TextBox83.TabIndex = 1462
- Me.TextBox83.Text = "0"
- Me.TextBox83.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- '
- 'TextBox84
- '
- Me.TextBox84.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
- Me.TextBox84.BorderStyle = System.Windows.Forms.BorderStyle.None
- Me.TextBox84.Font = New System.Drawing.Font("微軟正黑體", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.TextBox84.Location = New System.Drawing.Point(1097, 809)
- Me.TextBox84.Name = "TextBox84"
- Me.TextBox84.Size = New System.Drawing.Size(95, 15)
- Me.TextBox84.TabIndex = 1461
- Me.TextBox84.Text = "0"
- Me.TextBox84.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- '
- 'TextBox85
- '
- Me.TextBox85.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
- Me.TextBox85.BorderStyle = System.Windows.Forms.BorderStyle.None
- Me.TextBox85.Font = New System.Drawing.Font("微軟正黑體", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.TextBox85.Location = New System.Drawing.Point(999, 809)
- Me.TextBox85.Name = "TextBox85"
- Me.TextBox85.Size = New System.Drawing.Size(95, 15)
- Me.TextBox85.TabIndex = 1460
- Me.TextBox85.Text = "0"
- Me.TextBox85.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- '
- 'TextBox86
- '
- Me.TextBox86.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
- Me.TextBox86.BorderStyle = System.Windows.Forms.BorderStyle.None
- Me.TextBox86.Font = New System.Drawing.Font("微軟正黑體", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.TextBox86.Location = New System.Drawing.Point(901, 809)
- Me.TextBox86.Name = "TextBox86"
- Me.TextBox86.Size = New System.Drawing.Size(95, 15)
- Me.TextBox86.TabIndex = 1459
- Me.TextBox86.Text = "0"
- Me.TextBox86.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- '
- 'TextBox87
- '
- Me.TextBox87.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
- Me.TextBox87.BorderStyle = System.Windows.Forms.BorderStyle.None
- Me.TextBox87.Font = New System.Drawing.Font("微軟正黑體", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.TextBox87.Location = New System.Drawing.Point(803, 809)
- Me.TextBox87.Name = "TextBox87"
- Me.TextBox87.Size = New System.Drawing.Size(95, 15)
- Me.TextBox87.TabIndex = 1458
- Me.TextBox87.Text = "0"
- Me.TextBox87.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- '
- 'TextBox88
- '
- Me.TextBox88.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
- Me.TextBox88.BorderStyle = System.Windows.Forms.BorderStyle.None
- Me.TextBox88.Font = New System.Drawing.Font("微軟正黑體", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.TextBox88.Location = New System.Drawing.Point(705, 809)
- Me.TextBox88.Name = "TextBox88"
- Me.TextBox88.Size = New System.Drawing.Size(95, 15)
- Me.TextBox88.TabIndex = 1457
- Me.TextBox88.Text = "0"
- Me.TextBox88.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- '
- '匯差_lb
- '
- Me.匯差_lb.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
- Me.匯差_lb.Location = New System.Drawing.Point(462, 809)
- Me.匯差_lb.Name = "匯差_lb"
- Me.匯差_lb.Size = New System.Drawing.Size(120, 18)
- Me.匯差_lb.TabIndex = 1456
- Me.匯差_lb.Text = "匯差"
- Me.匯差_lb.TextAlign = System.Drawing.ContentAlignment.MiddleRight
- '
- '損益_lb
- '
- Me.損益_lb.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
- Me.損益_lb.Location = New System.Drawing.Point(460, 889)
- Me.損益_lb.Name = "損益_lb"
- Me.損益_lb.Size = New System.Drawing.Size(120, 18)
- Me.損益_lb.TabIndex = 1455
- Me.損益_lb.Text = "損 益"
- Me.損益_lb.TextAlign = System.Drawing.ContentAlignment.MiddleRight
- '
- 'TextBox64
- '
- Me.TextBox64.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
- Me.TextBox64.BorderStyle = System.Windows.Forms.BorderStyle.None
- Me.TextBox64.Font = New System.Drawing.Font("微軟正黑體", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.TextBox64.Location = New System.Drawing.Point(586, 889)
- Me.TextBox64.Name = "TextBox64"
- Me.TextBox64.Size = New System.Drawing.Size(116, 15)
- Me.TextBox64.TabIndex = 1454
- Me.TextBox64.Text = "0"
- Me.TextBox64.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- '
- 'TextBox65
- '
- Me.TextBox65.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
- Me.TextBox65.BorderStyle = System.Windows.Forms.BorderStyle.None
- Me.TextBox65.Font = New System.Drawing.Font("微軟正黑體", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.TextBox65.Location = New System.Drawing.Point(1783, 889)
- Me.TextBox65.Name = "TextBox65"
- Me.TextBox65.Size = New System.Drawing.Size(95, 15)
- Me.TextBox65.TabIndex = 1453
- Me.TextBox65.Text = "0"
- Me.TextBox65.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- '
- 'TextBox66
- '
- Me.TextBox66.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
- Me.TextBox66.BorderStyle = System.Windows.Forms.BorderStyle.None
- Me.TextBox66.Font = New System.Drawing.Font("微軟正黑體", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.TextBox66.Location = New System.Drawing.Point(1685, 889)
- Me.TextBox66.Name = "TextBox66"
- Me.TextBox66.Size = New System.Drawing.Size(95, 15)
- Me.TextBox66.TabIndex = 1452
- Me.TextBox66.Text = "0"
- Me.TextBox66.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- '
- 'TextBox67
- '
- Me.TextBox67.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
- Me.TextBox67.BorderStyle = System.Windows.Forms.BorderStyle.None
- Me.TextBox67.Font = New System.Drawing.Font("微軟正黑體", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.TextBox67.Location = New System.Drawing.Point(1587, 889)
- Me.TextBox67.Name = "TextBox67"
- Me.TextBox67.Size = New System.Drawing.Size(95, 15)
- Me.TextBox67.TabIndex = 1451
- Me.TextBox67.Text = "0"
- Me.TextBox67.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- '
- 'TextBox68
- '
- Me.TextBox68.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
- Me.TextBox68.BorderStyle = System.Windows.Forms.BorderStyle.None
- Me.TextBox68.Font = New System.Drawing.Font("微軟正黑體", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.TextBox68.Location = New System.Drawing.Point(1489, 889)
- Me.TextBox68.Name = "TextBox68"
- Me.TextBox68.Size = New System.Drawing.Size(95, 15)
- Me.TextBox68.TabIndex = 1450
- Me.TextBox68.Text = "0"
- Me.TextBox68.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- '
- 'TextBox69
- '
- Me.TextBox69.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
- Me.TextBox69.BorderStyle = System.Windows.Forms.BorderStyle.None
- Me.TextBox69.Font = New System.Drawing.Font("微軟正黑體", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.TextBox69.Location = New System.Drawing.Point(1391, 889)
- Me.TextBox69.Name = "TextBox69"
- Me.TextBox69.Size = New System.Drawing.Size(95, 15)
- Me.TextBox69.TabIndex = 1449
- Me.TextBox69.Text = "0"
- Me.TextBox69.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- '
- 'TextBox70
- '
- Me.TextBox70.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
- Me.TextBox70.BorderStyle = System.Windows.Forms.BorderStyle.None
- Me.TextBox70.Font = New System.Drawing.Font("微軟正黑體", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.TextBox70.Location = New System.Drawing.Point(1293, 889)
- Me.TextBox70.Name = "TextBox70"
- Me.TextBox70.Size = New System.Drawing.Size(95, 15)
- Me.TextBox70.TabIndex = 1448
- Me.TextBox70.Text = "0"
- Me.TextBox70.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- '
- 'TextBox71
- '
- Me.TextBox71.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
- Me.TextBox71.BorderStyle = System.Windows.Forms.BorderStyle.None
- Me.TextBox71.Font = New System.Drawing.Font("微軟正黑體", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.TextBox71.Location = New System.Drawing.Point(1195, 889)
- Me.TextBox71.Name = "TextBox71"
- Me.TextBox71.Size = New System.Drawing.Size(95, 15)
- Me.TextBox71.TabIndex = 1447
- Me.TextBox71.Text = "0"
- Me.TextBox71.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- '
- 'TextBox72
- '
- Me.TextBox72.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
- Me.TextBox72.BorderStyle = System.Windows.Forms.BorderStyle.None
- Me.TextBox72.Font = New System.Drawing.Font("微軟正黑體", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.TextBox72.Location = New System.Drawing.Point(1097, 889)
- Me.TextBox72.Name = "TextBox72"
- Me.TextBox72.Size = New System.Drawing.Size(95, 15)
- Me.TextBox72.TabIndex = 1446
- Me.TextBox72.Text = "0"
- Me.TextBox72.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- '
- 'TextBox73
- '
- Me.TextBox73.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
- Me.TextBox73.BorderStyle = System.Windows.Forms.BorderStyle.None
- Me.TextBox73.Font = New System.Drawing.Font("微軟正黑體", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.TextBox73.Location = New System.Drawing.Point(999, 889)
- Me.TextBox73.Name = "TextBox73"
- Me.TextBox73.Size = New System.Drawing.Size(95, 15)
- Me.TextBox73.TabIndex = 1445
- Me.TextBox73.Text = "0"
- Me.TextBox73.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- '
- 'TextBox74
- '
- Me.TextBox74.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
- Me.TextBox74.BorderStyle = System.Windows.Forms.BorderStyle.None
- Me.TextBox74.Font = New System.Drawing.Font("微軟正黑體", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.TextBox74.Location = New System.Drawing.Point(901, 889)
- Me.TextBox74.Name = "TextBox74"
- Me.TextBox74.Size = New System.Drawing.Size(95, 15)
- Me.TextBox74.TabIndex = 1444
- Me.TextBox74.Text = "0"
- Me.TextBox74.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- '
- 'TextBox75
- '
- Me.TextBox75.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
- Me.TextBox75.BorderStyle = System.Windows.Forms.BorderStyle.None
- Me.TextBox75.Font = New System.Drawing.Font("微軟正黑體", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.TextBox75.Location = New System.Drawing.Point(803, 889)
- Me.TextBox75.Name = "TextBox75"
- Me.TextBox75.Size = New System.Drawing.Size(95, 15)
- Me.TextBox75.TabIndex = 1443
- Me.TextBox75.Text = "0"
- Me.TextBox75.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- '
- 'TextBox76
- '
- Me.TextBox76.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
- Me.TextBox76.BorderStyle = System.Windows.Forms.BorderStyle.None
- Me.TextBox76.Font = New System.Drawing.Font("微軟正黑體", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.TextBox76.Location = New System.Drawing.Point(705, 889)
- Me.TextBox76.Name = "TextBox76"
- Me.TextBox76.Size = New System.Drawing.Size(95, 15)
- Me.TextBox76.TabIndex = 1442
- Me.TextBox76.Text = "0"
- Me.TextBox76.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- '
- 'TextBox63
- '
- Me.TextBox63.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
- Me.TextBox63.BorderStyle = System.Windows.Forms.BorderStyle.None
- Me.TextBox63.Font = New System.Drawing.Font("微軟正黑體", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.TextBox63.ForeColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
- Me.TextBox63.Location = New System.Drawing.Point(586, 869)
- Me.TextBox63.Name = "TextBox63"
- Me.TextBox63.Size = New System.Drawing.Size(116, 15)
- Me.TextBox63.TabIndex = 1441
- Me.TextBox63.Text = "0"
- Me.TextBox63.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- '
- 'TextBox62
- '
- Me.TextBox62.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
- Me.TextBox62.BorderStyle = System.Windows.Forms.BorderStyle.None
- Me.TextBox62.Font = New System.Drawing.Font("微軟正黑體", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.TextBox62.ForeColor = System.Drawing.Color.Blue
- Me.TextBox62.Location = New System.Drawing.Point(586, 849)
- Me.TextBox62.Name = "TextBox62"
- Me.TextBox62.Size = New System.Drawing.Size(116, 15)
- Me.TextBox62.TabIndex = 1440
- Me.TextBox62.Text = "0"
- Me.TextBox62.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- '
- 'TextBox61
- '
- Me.TextBox61.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
- Me.TextBox61.BorderStyle = System.Windows.Forms.BorderStyle.None
- Me.TextBox61.Font = New System.Drawing.Font("微軟正黑體", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.TextBox61.ForeColor = System.Drawing.Color.Green
- Me.TextBox61.Location = New System.Drawing.Point(586, 789)
- Me.TextBox61.Name = "TextBox61"
- Me.TextBox61.Size = New System.Drawing.Size(116, 15)
- Me.TextBox61.TabIndex = 1439
- Me.TextBox61.Text = "0"
- Me.TextBox61.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- '
- '全部資料合併計算_bt
- '
- Me.全部資料合併計算_bt.ForeColor = System.Drawing.Color.Blue
- Me.全部資料合併計算_bt.Location = New System.Drawing.Point(561, 2)
- Me.全部資料合併計算_bt.Name = "全部資料合併計算_bt"
- Me.全部資料合併計算_bt.Size = New System.Drawing.Size(113, 23)
- Me.全部資料合併計算_bt.TabIndex = 1438
- Me.全部資料合併計算_bt.Text = "全部資料合併計算"
- Me.全部資料合併計算_bt.UseVisualStyleBackColor = True
- Me.全部資料合併計算_bt.Visible = False
- '
- 'TextBox56
- '
- Me.TextBox56.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
- Me.TextBox56.BorderStyle = System.Windows.Forms.BorderStyle.None
- Me.TextBox56.Font = New System.Drawing.Font("微軟正黑體", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.TextBox56.Location = New System.Drawing.Point(1783, 829)
- Me.TextBox56.Name = "TextBox56"
- Me.TextBox56.Size = New System.Drawing.Size(95, 15)
- Me.TextBox56.TabIndex = 1437
- Me.TextBox56.Text = "0"
- Me.TextBox56.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- '
- 'TextBox57
- '
- Me.TextBox57.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
- Me.TextBox57.BorderStyle = System.Windows.Forms.BorderStyle.None
- Me.TextBox57.Font = New System.Drawing.Font("微軟正黑體", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.TextBox57.Location = New System.Drawing.Point(1783, 909)
- Me.TextBox57.Name = "TextBox57"
- Me.TextBox57.Size = New System.Drawing.Size(95, 15)
- Me.TextBox57.TabIndex = 1436
- Me.TextBox57.Text = "0"
- Me.TextBox57.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- '
- 'TextBox58
- '
- Me.TextBox58.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
- Me.TextBox58.BorderStyle = System.Windows.Forms.BorderStyle.None
- Me.TextBox58.Font = New System.Drawing.Font("微軟正黑體", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.TextBox58.ForeColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
- Me.TextBox58.Location = New System.Drawing.Point(1783, 869)
- Me.TextBox58.Name = "TextBox58"
- Me.TextBox58.Size = New System.Drawing.Size(95, 15)
- Me.TextBox58.TabIndex = 1435
- Me.TextBox58.Text = "0"
- Me.TextBox58.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- '
- 'TextBox59
- '
- Me.TextBox59.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
- Me.TextBox59.BorderStyle = System.Windows.Forms.BorderStyle.None
- Me.TextBox59.Font = New System.Drawing.Font("微軟正黑體", 8.25!, 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(1783, 849)
- Me.TextBox59.Name = "TextBox59"
- Me.TextBox59.Size = New System.Drawing.Size(95, 15)
- Me.TextBox59.TabIndex = 1434
- Me.TextBox59.Text = "0"
- Me.TextBox59.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- '
- 'TextBox60
- '
- Me.TextBox60.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
- Me.TextBox60.BorderStyle = System.Windows.Forms.BorderStyle.None
- Me.TextBox60.Font = New System.Drawing.Font("微軟正黑體", 8.25!, 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(1783, 789)
- Me.TextBox60.Name = "TextBox60"
- Me.TextBox60.Size = New System.Drawing.Size(95, 15)
- Me.TextBox60.TabIndex = 1433
- Me.TextBox60.Text = "0"
- Me.TextBox60.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- '
- 'TextBox51
- '
- Me.TextBox51.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
- Me.TextBox51.BorderStyle = System.Windows.Forms.BorderStyle.None
- Me.TextBox51.Font = New System.Drawing.Font("微軟正黑體", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.TextBox51.Location = New System.Drawing.Point(1685, 829)
- Me.TextBox51.Name = "TextBox51"
- Me.TextBox51.Size = New System.Drawing.Size(95, 15)
- Me.TextBox51.TabIndex = 1432
- Me.TextBox51.Text = "0"
- Me.TextBox51.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- '
- 'TextBox52
- '
- Me.TextBox52.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
- Me.TextBox52.BorderStyle = System.Windows.Forms.BorderStyle.None
- Me.TextBox52.Font = New System.Drawing.Font("微軟正黑體", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.TextBox52.Location = New System.Drawing.Point(1685, 909)
- Me.TextBox52.Name = "TextBox52"
- Me.TextBox52.Size = New System.Drawing.Size(95, 15)
- Me.TextBox52.TabIndex = 1431
- Me.TextBox52.Text = "0"
- Me.TextBox52.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- '
- 'TextBox53
- '
- Me.TextBox53.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
- Me.TextBox53.BorderStyle = System.Windows.Forms.BorderStyle.None
- Me.TextBox53.Font = New System.Drawing.Font("微軟正黑體", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.TextBox53.ForeColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
- Me.TextBox53.Location = New System.Drawing.Point(1685, 869)
- Me.TextBox53.Name = "TextBox53"
- Me.TextBox53.Size = New System.Drawing.Size(95, 15)
- Me.TextBox53.TabIndex = 1430
- Me.TextBox53.Text = "0"
- Me.TextBox53.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- '
- 'TextBox54
- '
- Me.TextBox54.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
- Me.TextBox54.BorderStyle = System.Windows.Forms.BorderStyle.None
- Me.TextBox54.Font = New System.Drawing.Font("微軟正黑體", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.TextBox54.ForeColor = System.Drawing.Color.Blue
- Me.TextBox54.Location = New System.Drawing.Point(1685, 849)
- Me.TextBox54.Name = "TextBox54"
- Me.TextBox54.Size = New System.Drawing.Size(95, 15)
- Me.TextBox54.TabIndex = 1429
- Me.TextBox54.Text = "0"
- Me.TextBox54.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- '
- 'TextBox55
- '
- Me.TextBox55.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
- Me.TextBox55.BorderStyle = System.Windows.Forms.BorderStyle.None
- Me.TextBox55.Font = New System.Drawing.Font("微軟正黑體", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.TextBox55.ForeColor = System.Drawing.Color.Green
- Me.TextBox55.Location = New System.Drawing.Point(1685, 789)
- Me.TextBox55.Name = "TextBox55"
- Me.TextBox55.Size = New System.Drawing.Size(95, 15)
- Me.TextBox55.TabIndex = 1428
- Me.TextBox55.Text = "0"
- Me.TextBox55.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- '
- 'TextBox46
- '
- Me.TextBox46.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
- Me.TextBox46.BorderStyle = System.Windows.Forms.BorderStyle.None
- Me.TextBox46.Font = New System.Drawing.Font("微軟正黑體", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.TextBox46.Location = New System.Drawing.Point(1587, 829)
- Me.TextBox46.Name = "TextBox46"
- Me.TextBox46.Size = New System.Drawing.Size(95, 15)
- Me.TextBox46.TabIndex = 1427
- Me.TextBox46.Text = "0"
- Me.TextBox46.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- '
- 'TextBox47
- '
- Me.TextBox47.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
- Me.TextBox47.BorderStyle = System.Windows.Forms.BorderStyle.None
- Me.TextBox47.Font = New System.Drawing.Font("微軟正黑體", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.TextBox47.Location = New System.Drawing.Point(1587, 909)
- Me.TextBox47.Name = "TextBox47"
- Me.TextBox47.Size = New System.Drawing.Size(95, 15)
- Me.TextBox47.TabIndex = 1426
- Me.TextBox47.Text = "0"
- Me.TextBox47.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- '
- 'TextBox48
- '
- Me.TextBox48.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
- Me.TextBox48.BorderStyle = System.Windows.Forms.BorderStyle.None
- Me.TextBox48.Font = New System.Drawing.Font("微軟正黑體", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.TextBox48.ForeColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
- Me.TextBox48.Location = New System.Drawing.Point(1587, 869)
- Me.TextBox48.Name = "TextBox48"
- Me.TextBox48.Size = New System.Drawing.Size(95, 15)
- Me.TextBox48.TabIndex = 1425
- Me.TextBox48.Text = "0"
- Me.TextBox48.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- '
- 'TextBox49
- '
- Me.TextBox49.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
- Me.TextBox49.BorderStyle = System.Windows.Forms.BorderStyle.None
- Me.TextBox49.Font = New System.Drawing.Font("微軟正黑體", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.TextBox49.ForeColor = System.Drawing.Color.Blue
- Me.TextBox49.Location = New System.Drawing.Point(1587, 849)
- Me.TextBox49.Name = "TextBox49"
- Me.TextBox49.Size = New System.Drawing.Size(95, 15)
- Me.TextBox49.TabIndex = 1424
- Me.TextBox49.Text = "0"
- Me.TextBox49.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- '
- 'TextBox50
- '
- Me.TextBox50.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
- Me.TextBox50.BorderStyle = System.Windows.Forms.BorderStyle.None
- Me.TextBox50.Font = New System.Drawing.Font("微軟正黑體", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.TextBox50.ForeColor = System.Drawing.Color.Green
- Me.TextBox50.Location = New System.Drawing.Point(1587, 789)
- Me.TextBox50.Name = "TextBox50"
- Me.TextBox50.Size = New System.Drawing.Size(95, 15)
- Me.TextBox50.TabIndex = 1423
- Me.TextBox50.Text = "0"
- Me.TextBox50.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- '
- 'TextBox41
- '
- Me.TextBox41.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
- Me.TextBox41.BorderStyle = System.Windows.Forms.BorderStyle.None
- Me.TextBox41.Font = New System.Drawing.Font("微軟正黑體", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.TextBox41.Location = New System.Drawing.Point(1489, 829)
- Me.TextBox41.Name = "TextBox41"
- Me.TextBox41.Size = New System.Drawing.Size(95, 15)
- Me.TextBox41.TabIndex = 1422
- Me.TextBox41.Text = "0"
- Me.TextBox41.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- '
- 'TextBox42
- '
- Me.TextBox42.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
- Me.TextBox42.BorderStyle = System.Windows.Forms.BorderStyle.None
- Me.TextBox42.Font = New System.Drawing.Font("微軟正黑體", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.TextBox42.Location = New System.Drawing.Point(1489, 909)
- Me.TextBox42.Name = "TextBox42"
- Me.TextBox42.Size = New System.Drawing.Size(95, 15)
- Me.TextBox42.TabIndex = 1421
- Me.TextBox42.Text = "0"
- Me.TextBox42.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- '
- 'TextBox43
- '
- Me.TextBox43.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
- Me.TextBox43.BorderStyle = System.Windows.Forms.BorderStyle.None
- Me.TextBox43.Font = New System.Drawing.Font("微軟正黑體", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.TextBox43.ForeColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
- Me.TextBox43.Location = New System.Drawing.Point(1489, 869)
- Me.TextBox43.Name = "TextBox43"
- Me.TextBox43.Size = New System.Drawing.Size(95, 15)
- Me.TextBox43.TabIndex = 1420
- Me.TextBox43.Text = "0"
- Me.TextBox43.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- '
- 'TextBox44
- '
- Me.TextBox44.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
- Me.TextBox44.BorderStyle = System.Windows.Forms.BorderStyle.None
- Me.TextBox44.Font = New System.Drawing.Font("微軟正黑體", 8.25!, 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(1489, 849)
- Me.TextBox44.Name = "TextBox44"
- Me.TextBox44.Size = New System.Drawing.Size(95, 15)
- Me.TextBox44.TabIndex = 1419
- Me.TextBox44.Text = "0"
- Me.TextBox44.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- '
- 'TextBox45
- '
- Me.TextBox45.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
- Me.TextBox45.BorderStyle = System.Windows.Forms.BorderStyle.None
- Me.TextBox45.Font = New System.Drawing.Font("微軟正黑體", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.TextBox45.ForeColor = System.Drawing.Color.Green
- Me.TextBox45.Location = New System.Drawing.Point(1489, 789)
- Me.TextBox45.Name = "TextBox45"
- Me.TextBox45.Size = New System.Drawing.Size(95, 15)
- Me.TextBox45.TabIndex = 1418
- Me.TextBox45.Text = "0"
- Me.TextBox45.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- '
- 'TextBox36
- '
- Me.TextBox36.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
- Me.TextBox36.BorderStyle = System.Windows.Forms.BorderStyle.None
- Me.TextBox36.Font = New System.Drawing.Font("微軟正黑體", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.TextBox36.Location = New System.Drawing.Point(1391, 829)
- Me.TextBox36.Name = "TextBox36"
- Me.TextBox36.Size = New System.Drawing.Size(95, 15)
- Me.TextBox36.TabIndex = 1417
- Me.TextBox36.Text = "0"
- Me.TextBox36.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- '
- 'TextBox37
- '
- Me.TextBox37.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
- Me.TextBox37.BorderStyle = System.Windows.Forms.BorderStyle.None
- Me.TextBox37.Font = New System.Drawing.Font("微軟正黑體", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.TextBox37.Location = New System.Drawing.Point(1391, 909)
- Me.TextBox37.Name = "TextBox37"
- Me.TextBox37.Size = New System.Drawing.Size(95, 15)
- Me.TextBox37.TabIndex = 1416
- Me.TextBox37.Text = "0"
- Me.TextBox37.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- '
- 'TextBox38
- '
- Me.TextBox38.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
- Me.TextBox38.BorderStyle = System.Windows.Forms.BorderStyle.None
- Me.TextBox38.Font = New System.Drawing.Font("微軟正黑體", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.TextBox38.ForeColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
- Me.TextBox38.Location = New System.Drawing.Point(1391, 869)
- Me.TextBox38.Name = "TextBox38"
- Me.TextBox38.Size = New System.Drawing.Size(95, 15)
- Me.TextBox38.TabIndex = 1415
- Me.TextBox38.Text = "0"
- Me.TextBox38.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- '
- 'TextBox39
- '
- Me.TextBox39.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
- Me.TextBox39.BorderStyle = System.Windows.Forms.BorderStyle.None
- Me.TextBox39.Font = New System.Drawing.Font("微軟正黑體", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.TextBox39.ForeColor = System.Drawing.Color.Blue
- Me.TextBox39.Location = New System.Drawing.Point(1391, 849)
- Me.TextBox39.Name = "TextBox39"
- Me.TextBox39.Size = New System.Drawing.Size(95, 15)
- Me.TextBox39.TabIndex = 1414
- Me.TextBox39.Text = "0"
- Me.TextBox39.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- '
- 'TextBox40
- '
- Me.TextBox40.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
- Me.TextBox40.BorderStyle = System.Windows.Forms.BorderStyle.None
- Me.TextBox40.Font = New System.Drawing.Font("微軟正黑體", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.TextBox40.ForeColor = System.Drawing.Color.Green
- Me.TextBox40.Location = New System.Drawing.Point(1391, 789)
- Me.TextBox40.Name = "TextBox40"
- Me.TextBox40.Size = New System.Drawing.Size(95, 15)
- Me.TextBox40.TabIndex = 1413
- Me.TextBox40.Text = "0"
- Me.TextBox40.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- '
- 'TextBox31
- '
- Me.TextBox31.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
- Me.TextBox31.BorderStyle = System.Windows.Forms.BorderStyle.None
- Me.TextBox31.Font = New System.Drawing.Font("微軟正黑體", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.TextBox31.Location = New System.Drawing.Point(1293, 829)
- Me.TextBox31.Name = "TextBox31"
- Me.TextBox31.Size = New System.Drawing.Size(95, 15)
- Me.TextBox31.TabIndex = 1412
- Me.TextBox31.Text = "0"
- Me.TextBox31.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- '
- 'TextBox32
- '
- Me.TextBox32.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
- Me.TextBox32.BorderStyle = System.Windows.Forms.BorderStyle.None
- Me.TextBox32.Font = New System.Drawing.Font("微軟正黑體", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.TextBox32.Location = New System.Drawing.Point(1293, 909)
- Me.TextBox32.Name = "TextBox32"
- Me.TextBox32.Size = New System.Drawing.Size(95, 15)
- Me.TextBox32.TabIndex = 1411
- Me.TextBox32.Text = "0"
- Me.TextBox32.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- '
- 'TextBox33
- '
- Me.TextBox33.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
- Me.TextBox33.BorderStyle = System.Windows.Forms.BorderStyle.None
- Me.TextBox33.Font = New System.Drawing.Font("微軟正黑體", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.TextBox33.ForeColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
- Me.TextBox33.Location = New System.Drawing.Point(1293, 869)
- Me.TextBox33.Name = "TextBox33"
- Me.TextBox33.Size = New System.Drawing.Size(95, 15)
- Me.TextBox33.TabIndex = 1410
- Me.TextBox33.Text = "0"
- Me.TextBox33.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- '
- 'TextBox34
- '
- Me.TextBox34.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
- Me.TextBox34.BorderStyle = System.Windows.Forms.BorderStyle.None
- Me.TextBox34.Font = New System.Drawing.Font("微軟正黑體", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.TextBox34.ForeColor = System.Drawing.Color.Blue
- Me.TextBox34.Location = New System.Drawing.Point(1293, 849)
- Me.TextBox34.Name = "TextBox34"
- Me.TextBox34.Size = New System.Drawing.Size(95, 15)
- Me.TextBox34.TabIndex = 1409
- Me.TextBox34.Text = "0"
- Me.TextBox34.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- '
- 'TextBox35
- '
- Me.TextBox35.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
- Me.TextBox35.BorderStyle = System.Windows.Forms.BorderStyle.None
- Me.TextBox35.Font = New System.Drawing.Font("微軟正黑體", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.TextBox35.ForeColor = System.Drawing.Color.Green
- Me.TextBox35.Location = New System.Drawing.Point(1293, 789)
- Me.TextBox35.Name = "TextBox35"
- Me.TextBox35.Size = New System.Drawing.Size(95, 15)
- Me.TextBox35.TabIndex = 1408
- Me.TextBox35.Text = "0"
- Me.TextBox35.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- '
- '上月結存_lb
- '
- Me.上月結存_lb.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
- Me.上月結存_lb.Location = New System.Drawing.Point(462, 829)
- Me.上月結存_lb.Name = "上月結存_lb"
- Me.上月結存_lb.Size = New System.Drawing.Size(120, 18)
- Me.上月結存_lb.TabIndex = 1407
- Me.上月結存_lb.Text = "上月結存"
- Me.上月結存_lb.TextAlign = System.Drawing.ContentAlignment.MiddleRight
- '
- 'TextBox25
- '
- Me.TextBox25.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
- Me.TextBox25.BorderStyle = System.Windows.Forms.BorderStyle.None
- Me.TextBox25.Font = New System.Drawing.Font("微軟正黑體", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.TextBox25.Location = New System.Drawing.Point(1195, 829)
- Me.TextBox25.Name = "TextBox25"
- Me.TextBox25.Size = New System.Drawing.Size(95, 15)
- Me.TextBox25.TabIndex = 1406
- Me.TextBox25.Text = "0"
- Me.TextBox25.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- '
- 'TextBox26
- '
- Me.TextBox26.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
- Me.TextBox26.BorderStyle = System.Windows.Forms.BorderStyle.None
- Me.TextBox26.Font = New System.Drawing.Font("微軟正黑體", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.TextBox26.Location = New System.Drawing.Point(1097, 829)
- Me.TextBox26.Name = "TextBox26"
- Me.TextBox26.Size = New System.Drawing.Size(95, 15)
- Me.TextBox26.TabIndex = 1405
- Me.TextBox26.Text = "0"
- Me.TextBox26.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- '
- 'TextBox27
- '
- Me.TextBox27.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
- Me.TextBox27.BorderStyle = System.Windows.Forms.BorderStyle.None
- Me.TextBox27.Font = New System.Drawing.Font("微軟正黑體", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.TextBox27.Location = New System.Drawing.Point(999, 829)
- Me.TextBox27.Name = "TextBox27"
- Me.TextBox27.Size = New System.Drawing.Size(95, 15)
- Me.TextBox27.TabIndex = 1404
- Me.TextBox27.Text = "0"
- Me.TextBox27.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- '
- 'TextBox28
- '
- Me.TextBox28.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
- Me.TextBox28.BorderStyle = System.Windows.Forms.BorderStyle.None
- Me.TextBox28.Font = New System.Drawing.Font("微軟正黑體", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.TextBox28.Location = New System.Drawing.Point(901, 829)
- Me.TextBox28.Name = "TextBox28"
- Me.TextBox28.Size = New System.Drawing.Size(95, 15)
- Me.TextBox28.TabIndex = 1403
- Me.TextBox28.Text = "0"
- Me.TextBox28.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- '
- 'TextBox29
- '
- Me.TextBox29.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
- Me.TextBox29.BorderStyle = System.Windows.Forms.BorderStyle.None
- Me.TextBox29.Font = New System.Drawing.Font("微軟正黑體", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.TextBox29.Location = New System.Drawing.Point(803, 829)
- Me.TextBox29.Name = "TextBox29"
- Me.TextBox29.Size = New System.Drawing.Size(95, 15)
- Me.TextBox29.TabIndex = 1402
- Me.TextBox29.Text = "0"
- Me.TextBox29.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- '
- 'TextBox30
- '
- Me.TextBox30.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
- Me.TextBox30.BorderStyle = System.Windows.Forms.BorderStyle.None
- Me.TextBox30.Font = New System.Drawing.Font("微軟正黑體", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.TextBox30.Location = New System.Drawing.Point(705, 829)
- Me.TextBox30.Name = "TextBox30"
- Me.TextBox30.Size = New System.Drawing.Size(95, 15)
- Me.TextBox30.TabIndex = 1401
- Me.TextBox30.Text = "0"
- Me.TextBox30.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- '
- 'TextBox24
- '
- Me.TextBox24.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
- Me.TextBox24.BorderStyle = System.Windows.Forms.BorderStyle.None
- Me.TextBox24.Font = New System.Drawing.Font("微軟正黑體", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.TextBox24.Location = New System.Drawing.Point(1195, 909)
- Me.TextBox24.Name = "TextBox24"
- Me.TextBox24.Size = New System.Drawing.Size(95, 15)
- Me.TextBox24.TabIndex = 1400
- Me.TextBox24.Text = "0"
- Me.TextBox24.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- '
- 'TextBox23
- '
- Me.TextBox23.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
- Me.TextBox23.BorderStyle = System.Windows.Forms.BorderStyle.None
- Me.TextBox23.Font = New System.Drawing.Font("微軟正黑體", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.TextBox23.ForeColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
- Me.TextBox23.Location = New System.Drawing.Point(1195, 869)
- Me.TextBox23.Name = "TextBox23"
- Me.TextBox23.Size = New System.Drawing.Size(95, 15)
- Me.TextBox23.TabIndex = 1399
- Me.TextBox23.Text = "0"
- Me.TextBox23.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- '
- 'TextBox22
- '
- Me.TextBox22.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
- Me.TextBox22.BorderStyle = System.Windows.Forms.BorderStyle.None
- Me.TextBox22.Font = New System.Drawing.Font("微軟正黑體", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.TextBox22.ForeColor = System.Drawing.Color.Blue
- Me.TextBox22.Location = New System.Drawing.Point(1195, 849)
- Me.TextBox22.Name = "TextBox22"
- Me.TextBox22.Size = New System.Drawing.Size(95, 15)
- Me.TextBox22.TabIndex = 1398
- Me.TextBox22.Text = "0"
- Me.TextBox22.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- '
- 'TextBox21
- '
- Me.TextBox21.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
- Me.TextBox21.BorderStyle = System.Windows.Forms.BorderStyle.None
- Me.TextBox21.Font = New System.Drawing.Font("微軟正黑體", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.TextBox21.ForeColor = System.Drawing.Color.Green
- Me.TextBox21.Location = New System.Drawing.Point(1195, 789)
- Me.TextBox21.Name = "TextBox21"
- Me.TextBox21.Size = New System.Drawing.Size(95, 15)
- Me.TextBox21.TabIndex = 1397
- Me.TextBox21.Text = "0"
- Me.TextBox21.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- '
- 'TextBox20
- '
- Me.TextBox20.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
- Me.TextBox20.BorderStyle = System.Windows.Forms.BorderStyle.None
- Me.TextBox20.Font = New System.Drawing.Font("微軟正黑體", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.TextBox20.Location = New System.Drawing.Point(1097, 909)
- Me.TextBox20.Name = "TextBox20"
- Me.TextBox20.Size = New System.Drawing.Size(95, 15)
- Me.TextBox20.TabIndex = 1396
- Me.TextBox20.Text = "0"
- Me.TextBox20.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- '
- 'TextBox19
- '
- Me.TextBox19.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
- Me.TextBox19.BorderStyle = System.Windows.Forms.BorderStyle.None
- Me.TextBox19.Font = New System.Drawing.Font("微軟正黑體", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.TextBox19.ForeColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
- Me.TextBox19.Location = New System.Drawing.Point(1097, 869)
- Me.TextBox19.Name = "TextBox19"
- Me.TextBox19.Size = New System.Drawing.Size(95, 15)
- Me.TextBox19.TabIndex = 1395
- Me.TextBox19.Text = "0"
- Me.TextBox19.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- '
- 'TextBox18
- '
- Me.TextBox18.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
- Me.TextBox18.BorderStyle = System.Windows.Forms.BorderStyle.None
- Me.TextBox18.Font = New System.Drawing.Font("微軟正黑體", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.TextBox18.ForeColor = System.Drawing.Color.Blue
- Me.TextBox18.Location = New System.Drawing.Point(1097, 849)
- Me.TextBox18.Name = "TextBox18"
- Me.TextBox18.Size = New System.Drawing.Size(95, 15)
- Me.TextBox18.TabIndex = 1394
- Me.TextBox18.Text = "0"
- Me.TextBox18.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- '
- 'TextBox17
- '
- Me.TextBox17.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
- Me.TextBox17.BorderStyle = System.Windows.Forms.BorderStyle.None
- Me.TextBox17.Font = New System.Drawing.Font("微軟正黑體", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.TextBox17.ForeColor = System.Drawing.Color.Green
- Me.TextBox17.Location = New System.Drawing.Point(1097, 789)
- Me.TextBox17.Name = "TextBox17"
- Me.TextBox17.Size = New System.Drawing.Size(95, 15)
- Me.TextBox17.TabIndex = 1393
- Me.TextBox17.Text = "0"
- Me.TextBox17.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- '
- 'TextBox16
- '
- Me.TextBox16.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
- Me.TextBox16.BorderStyle = System.Windows.Forms.BorderStyle.None
- Me.TextBox16.Font = New System.Drawing.Font("微軟正黑體", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.TextBox16.Location = New System.Drawing.Point(999, 909)
- Me.TextBox16.Name = "TextBox16"
- Me.TextBox16.Size = New System.Drawing.Size(95, 15)
- Me.TextBox16.TabIndex = 1392
- Me.TextBox16.Text = "0"
- Me.TextBox16.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- '
- 'TextBox15
- '
- Me.TextBox15.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
- Me.TextBox15.BorderStyle = System.Windows.Forms.BorderStyle.None
- Me.TextBox15.Font = New System.Drawing.Font("微軟正黑體", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.TextBox15.ForeColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
- Me.TextBox15.Location = New System.Drawing.Point(999, 869)
- Me.TextBox15.Name = "TextBox15"
- Me.TextBox15.Size = New System.Drawing.Size(95, 15)
- Me.TextBox15.TabIndex = 1391
- Me.TextBox15.Text = "0"
- Me.TextBox15.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- '
- 'TextBox14
- '
- Me.TextBox14.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
- Me.TextBox14.BorderStyle = System.Windows.Forms.BorderStyle.None
- Me.TextBox14.Font = New System.Drawing.Font("微軟正黑體", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.TextBox14.ForeColor = System.Drawing.Color.Blue
- Me.TextBox14.Location = New System.Drawing.Point(999, 849)
- Me.TextBox14.Name = "TextBox14"
- Me.TextBox14.Size = New System.Drawing.Size(95, 15)
- Me.TextBox14.TabIndex = 1390
- Me.TextBox14.Text = "0"
- Me.TextBox14.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- '
- 'TextBox13
- '
- Me.TextBox13.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
- Me.TextBox13.BorderStyle = System.Windows.Forms.BorderStyle.None
- Me.TextBox13.Font = New System.Drawing.Font("微軟正黑體", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.TextBox13.ForeColor = System.Drawing.Color.Green
- Me.TextBox13.Location = New System.Drawing.Point(999, 789)
- Me.TextBox13.Name = "TextBox13"
- Me.TextBox13.Size = New System.Drawing.Size(95, 15)
- Me.TextBox13.TabIndex = 1389
- Me.TextBox13.Text = "0"
- Me.TextBox13.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- '
- 'TextBox12
- '
- Me.TextBox12.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
- Me.TextBox12.BorderStyle = System.Windows.Forms.BorderStyle.None
- Me.TextBox12.Font = New System.Drawing.Font("微軟正黑體", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.TextBox12.Location = New System.Drawing.Point(901, 909)
- Me.TextBox12.Name = "TextBox12"
- Me.TextBox12.Size = New System.Drawing.Size(95, 15)
- Me.TextBox12.TabIndex = 1388
- Me.TextBox12.Text = "0"
- Me.TextBox12.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- '
- 'TextBox11
- '
- Me.TextBox11.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
- Me.TextBox11.BorderStyle = System.Windows.Forms.BorderStyle.None
- Me.TextBox11.Font = New System.Drawing.Font("微軟正黑體", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.TextBox11.ForeColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
- Me.TextBox11.Location = New System.Drawing.Point(901, 869)
- Me.TextBox11.Name = "TextBox11"
- Me.TextBox11.Size = New System.Drawing.Size(95, 15)
- Me.TextBox11.TabIndex = 1387
- Me.TextBox11.Text = "0"
- Me.TextBox11.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- '
- 'TextBox10
- '
- Me.TextBox10.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
- Me.TextBox10.BorderStyle = System.Windows.Forms.BorderStyle.None
- Me.TextBox10.Font = New System.Drawing.Font("微軟正黑體", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.TextBox10.ForeColor = System.Drawing.Color.Blue
- Me.TextBox10.Location = New System.Drawing.Point(901, 849)
- Me.TextBox10.Name = "TextBox10"
- Me.TextBox10.Size = New System.Drawing.Size(95, 15)
- Me.TextBox10.TabIndex = 1386
- Me.TextBox10.Text = "0"
- Me.TextBox10.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- '
- 'TextBox9
- '
- Me.TextBox9.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
- Me.TextBox9.BorderStyle = System.Windows.Forms.BorderStyle.None
- Me.TextBox9.Font = New System.Drawing.Font("微軟正黑體", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.TextBox9.ForeColor = System.Drawing.Color.Green
- Me.TextBox9.Location = New System.Drawing.Point(901, 789)
- Me.TextBox9.Name = "TextBox9"
- Me.TextBox9.Size = New System.Drawing.Size(95, 15)
- Me.TextBox9.TabIndex = 1385
- Me.TextBox9.Text = "0"
- Me.TextBox9.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- '
- 'TextBox8
- '
- Me.TextBox8.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
- Me.TextBox8.BorderStyle = System.Windows.Forms.BorderStyle.None
- Me.TextBox8.Font = New System.Drawing.Font("微軟正黑體", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.TextBox8.Location = New System.Drawing.Point(803, 909)
- Me.TextBox8.Name = "TextBox8"
- Me.TextBox8.Size = New System.Drawing.Size(95, 15)
- Me.TextBox8.TabIndex = 1384
- Me.TextBox8.Text = "0"
- Me.TextBox8.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- '
- 'TextBox7
- '
- Me.TextBox7.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
- Me.TextBox7.BorderStyle = System.Windows.Forms.BorderStyle.None
- Me.TextBox7.Font = New System.Drawing.Font("微軟正黑體", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.TextBox7.ForeColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
- Me.TextBox7.Location = New System.Drawing.Point(803, 869)
- Me.TextBox7.Name = "TextBox7"
- Me.TextBox7.Size = New System.Drawing.Size(95, 15)
- Me.TextBox7.TabIndex = 1383
- Me.TextBox7.Text = "0"
- Me.TextBox7.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- '
- 'TextBox6
- '
- Me.TextBox6.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
- Me.TextBox6.BorderStyle = System.Windows.Forms.BorderStyle.None
- Me.TextBox6.Font = New System.Drawing.Font("微軟正黑體", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.TextBox6.ForeColor = System.Drawing.Color.Blue
- Me.TextBox6.Location = New System.Drawing.Point(803, 849)
- Me.TextBox6.Name = "TextBox6"
- Me.TextBox6.Size = New System.Drawing.Size(95, 15)
- Me.TextBox6.TabIndex = 1382
- Me.TextBox6.Text = "0"
- Me.TextBox6.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- '
- 'TextBox5
- '
- Me.TextBox5.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
- Me.TextBox5.BorderStyle = System.Windows.Forms.BorderStyle.None
- Me.TextBox5.Font = New System.Drawing.Font("微軟正黑體", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.TextBox5.ForeColor = System.Drawing.Color.Green
- Me.TextBox5.Location = New System.Drawing.Point(803, 789)
- Me.TextBox5.Name = "TextBox5"
- Me.TextBox5.Size = New System.Drawing.Size(95, 15)
- Me.TextBox5.TabIndex = 1381
- Me.TextBox5.Text = "0"
- Me.TextBox5.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- '
- 'TextBox4
- '
- Me.TextBox4.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
- Me.TextBox4.BorderStyle = System.Windows.Forms.BorderStyle.None
- Me.TextBox4.Font = New System.Drawing.Font("微軟正黑體", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.TextBox4.Location = New System.Drawing.Point(705, 909)
- Me.TextBox4.Name = "TextBox4"
- Me.TextBox4.Size = New System.Drawing.Size(95, 15)
- Me.TextBox4.TabIndex = 1380
- Me.TextBox4.Text = "0"
- Me.TextBox4.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- '
- '本月結存_lb
- '
- Me.本月結存_lb.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
- Me.本月結存_lb.Location = New System.Drawing.Point(462, 909)
- Me.本月結存_lb.Name = "本月結存_lb"
- Me.本月結存_lb.Size = New System.Drawing.Size(120, 18)
- Me.本月結存_lb.TabIndex = 1379
- Me.本月結存_lb.Text = "本月結存"
- Me.本月結存_lb.TextAlign = System.Drawing.ContentAlignment.MiddleRight
- '
- 'TextBox3
- '
- Me.TextBox3.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
- Me.TextBox3.BorderStyle = System.Windows.Forms.BorderStyle.None
- Me.TextBox3.Font = New System.Drawing.Font("微軟正黑體", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.TextBox3.ForeColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
- Me.TextBox3.Location = New System.Drawing.Point(705, 869)
- Me.TextBox3.Name = "TextBox3"
- Me.TextBox3.Size = New System.Drawing.Size(95, 15)
- Me.TextBox3.TabIndex = 1378
- Me.TextBox3.Text = "0"
- Me.TextBox3.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- '
- '支出合計_lb
- '
- Me.支出合計_lb.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
- Me.支出合計_lb.Location = New System.Drawing.Point(460, 869)
- Me.支出合計_lb.Name = "支出合計_lb"
- Me.支出合計_lb.Size = New System.Drawing.Size(120, 18)
- Me.支出合計_lb.TabIndex = 1377
- Me.支出合計_lb.Text = "支出合計"
- Me.支出合計_lb.TextAlign = System.Drawing.ContentAlignment.MiddleRight
- '
- 'TextBox2
- '
- Me.TextBox2.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
- Me.TextBox2.BorderStyle = System.Windows.Forms.BorderStyle.None
- Me.TextBox2.Font = New System.Drawing.Font("微軟正黑體", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.TextBox2.ForeColor = System.Drawing.Color.Blue
- Me.TextBox2.Location = New System.Drawing.Point(705, 849)
- Me.TextBox2.Name = "TextBox2"
- Me.TextBox2.Size = New System.Drawing.Size(95, 15)
- Me.TextBox2.TabIndex = 1376
- Me.TextBox2.Text = "0"
- Me.TextBox2.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- '
- '收入合計_lb
- '
- Me.收入合計_lb.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
- Me.收入合計_lb.Location = New System.Drawing.Point(460, 849)
- Me.收入合計_lb.Name = "收入合計_lb"
- Me.收入合計_lb.Size = New System.Drawing.Size(120, 18)
- Me.收入合計_lb.TabIndex = 1375
- Me.收入合計_lb.Text = "收入合計"
- Me.收入合計_lb.TextAlign = System.Drawing.ContentAlignment.MiddleRight
- '
- 'TextBox1
- '
- Me.TextBox1.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
- Me.TextBox1.BorderStyle = System.Windows.Forms.BorderStyle.None
- Me.TextBox1.Font = New System.Drawing.Font("微軟正黑體", 8.25!, 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(705, 789)
- Me.TextBox1.Name = "TextBox1"
- Me.TextBox1.Size = New System.Drawing.Size(95, 15)
- Me.TextBox1.TabIndex = 1374
- Me.TextBox1.Text = "0"
- Me.TextBox1.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- '
- '新增資本_lb
- '
- Me.新增資本_lb.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
- Me.新增資本_lb.Location = New System.Drawing.Point(462, 787)
- Me.新增資本_lb.Name = "新增資本_lb"
- Me.新增資本_lb.Size = New System.Drawing.Size(120, 18)
- Me.新增資本_lb.TabIndex = 1373
- Me.新增資本_lb.Text = "新增資本"
- Me.新增資本_lb.TextAlign = System.Drawing.ContentAlignment.MiddleRight
- '
- '重新整理_bt
- '
- Me.重新整理_bt.Location = New System.Drawing.Point(397, 2)
- Me.重新整理_bt.Name = "重新整理_bt"
- Me.重新整理_bt.Size = New System.Drawing.Size(158, 23)
- Me.重新整理_bt.TabIndex = 1372
- Me.重新整理_bt.Text = "重新整理"
- Me.重新整理_bt.UseVisualStyleBackColor = True
- '
- '月12_lb
- '
- Me.月12_lb.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
- Me.月12_lb.AutoSize = True
- Me.月12_lb.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.月12_lb.ForeColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
- Me.月12_lb.Location = New System.Drawing.Point(1784, 8)
- Me.月12_lb.Name = "月12_lb"
- Me.月12_lb.Size = New System.Drawing.Size(37, 17)
- Me.月12_lb.TabIndex = 1371
- Me.月12_lb.Text = "12月"
- '
- '月11_lb
- '
- Me.月11_lb.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
- Me.月11_lb.AutoSize = True
- Me.月11_lb.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.月11_lb.ForeColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
- Me.月11_lb.Location = New System.Drawing.Point(1686, 8)
- Me.月11_lb.Name = "月11_lb"
- Me.月11_lb.Size = New System.Drawing.Size(37, 17)
- Me.月11_lb.TabIndex = 1370
- Me.月11_lb.Text = "11月"
- '
- '月10_lb
- '
- Me.月10_lb.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
- Me.月10_lb.AutoSize = True
- Me.月10_lb.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.月10_lb.ForeColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
- Me.月10_lb.Location = New System.Drawing.Point(1588, 8)
- Me.月10_lb.Name = "月10_lb"
- Me.月10_lb.Size = New System.Drawing.Size(37, 17)
- Me.月10_lb.TabIndex = 1369
- Me.月10_lb.Text = "10月"
- '
- '月9_lb
- '
- Me.月9_lb.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
- Me.月9_lb.AutoSize = True
- Me.月9_lb.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.月9_lb.ForeColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
- Me.月9_lb.Location = New System.Drawing.Point(1490, 8)
- Me.月9_lb.Name = "月9_lb"
- Me.月9_lb.Size = New System.Drawing.Size(29, 17)
- Me.月9_lb.TabIndex = 1368
- Me.月9_lb.Text = "9月"
- '
- '月8_lb
- '
- Me.月8_lb.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
- Me.月8_lb.AutoSize = True
- Me.月8_lb.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.月8_lb.ForeColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
- Me.月8_lb.Location = New System.Drawing.Point(1392, 8)
- Me.月8_lb.Name = "月8_lb"
- Me.月8_lb.Size = New System.Drawing.Size(29, 17)
- Me.月8_lb.TabIndex = 1367
- Me.月8_lb.Text = "8月"
- '
- '月7_lb
- '
- Me.月7_lb.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
- Me.月7_lb.AutoSize = True
- Me.月7_lb.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.月7_lb.ForeColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
- Me.月7_lb.Location = New System.Drawing.Point(1294, 8)
- Me.月7_lb.Name = "月7_lb"
- Me.月7_lb.Size = New System.Drawing.Size(29, 17)
- Me.月7_lb.TabIndex = 1366
- Me.月7_lb.Text = "7月"
- '
- '月6_lb
- '
- Me.月6_lb.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
- Me.月6_lb.AutoSize = True
- Me.月6_lb.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.月6_lb.ForeColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
- Me.月6_lb.Location = New System.Drawing.Point(1196, 8)
- Me.月6_lb.Name = "月6_lb"
- Me.月6_lb.Size = New System.Drawing.Size(29, 17)
- Me.月6_lb.TabIndex = 1365
- Me.月6_lb.Text = "6月"
- '
- '月5_lb
- '
- Me.月5_lb.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
- Me.月5_lb.AutoSize = True
- Me.月5_lb.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.月5_lb.ForeColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
- Me.月5_lb.Location = New System.Drawing.Point(1098, 8)
- Me.月5_lb.Name = "月5_lb"
- Me.月5_lb.Size = New System.Drawing.Size(29, 17)
- Me.月5_lb.TabIndex = 1364
- Me.月5_lb.Text = "5月"
- '
- '月4_lb
- '
- Me.月4_lb.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
- Me.月4_lb.AutoSize = True
- Me.月4_lb.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.月4_lb.ForeColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
- Me.月4_lb.Location = New System.Drawing.Point(1000, 8)
- Me.月4_lb.Name = "月4_lb"
- Me.月4_lb.Size = New System.Drawing.Size(29, 17)
- Me.月4_lb.TabIndex = 1363
- Me.月4_lb.Text = "4月"
- '
- '月3_lb
- '
- Me.月3_lb.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
- Me.月3_lb.AutoSize = True
- Me.月3_lb.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.月3_lb.ForeColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
- Me.月3_lb.Location = New System.Drawing.Point(902, 8)
- Me.月3_lb.Name = "月3_lb"
- Me.月3_lb.Size = New System.Drawing.Size(29, 17)
- Me.月3_lb.TabIndex = 1362
- Me.月3_lb.Text = "3月"
- '
- '月2_lb
- '
- Me.月2_lb.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
- Me.月2_lb.AutoSize = True
- Me.月2_lb.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.月2_lb.ForeColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
- Me.月2_lb.Location = New System.Drawing.Point(804, 8)
- Me.月2_lb.Name = "月2_lb"
- Me.月2_lb.Size = New System.Drawing.Size(29, 17)
- Me.月2_lb.TabIndex = 1361
- Me.月2_lb.Text = "2月"
- '
- '月1_lb
- '
- Me.月1_lb.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
- Me.月1_lb.AutoSize = True
- Me.月1_lb.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.月1_lb.ForeColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
- Me.月1_lb.Location = New System.Drawing.Point(706, 8)
- Me.月1_lb.Name = "月1_lb"
- Me.月1_lb.Size = New System.Drawing.Size(29, 17)
- Me.月1_lb.TabIndex = 1360
- Me.月1_lb.Text = "1月"
- '
- '月12_dgv
- '
- Me.月12_dgv.Anchor = CType(((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
- Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
- Me.月12_dgv.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill
- Me.月12_dgv.BackgroundColor = System.Drawing.Color.White
- Me.月12_dgv.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize
- Me.月12_dgv.Location = New System.Drawing.Point(1781, 28)
- Me.月12_dgv.Name = "月12_dgv"
- Me.月12_dgv.RowHeadersWidth = 5
- DataGridViewCellStyle1.WrapMode = System.Windows.Forms.DataGridViewTriState.[True]
- Me.月12_dgv.RowsDefaultCellStyle = DataGridViewCellStyle1
- Me.月12_dgv.RowTemplate.Height = 24
- Me.月12_dgv.Size = New System.Drawing.Size(116, 755)
- Me.月12_dgv.TabIndex = 1359
- '
- '月11_dgv
- '
- Me.月11_dgv.Anchor = CType(((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
- Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
- Me.月11_dgv.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill
- Me.月11_dgv.BackgroundColor = System.Drawing.Color.White
- Me.月11_dgv.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize
- Me.月11_dgv.Location = New System.Drawing.Point(1683, 28)
- Me.月11_dgv.Name = "月11_dgv"
- Me.月11_dgv.RowHeadersWidth = 5
- DataGridViewCellStyle2.WrapMode = System.Windows.Forms.DataGridViewTriState.[True]
- Me.月11_dgv.RowsDefaultCellStyle = DataGridViewCellStyle2
- Me.月11_dgv.RowTemplate.Height = 24
- Me.月11_dgv.Size = New System.Drawing.Size(116, 755)
- Me.月11_dgv.TabIndex = 1358
- '
- '月10_dgv
- '
- Me.月10_dgv.Anchor = CType(((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
- Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
- Me.月10_dgv.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill
- Me.月10_dgv.BackgroundColor = System.Drawing.Color.White
- Me.月10_dgv.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize
- Me.月10_dgv.Location = New System.Drawing.Point(1585, 28)
- Me.月10_dgv.Name = "月10_dgv"
- Me.月10_dgv.RowHeadersWidth = 5
- DataGridViewCellStyle3.WrapMode = System.Windows.Forms.DataGridViewTriState.[True]
- Me.月10_dgv.RowsDefaultCellStyle = DataGridViewCellStyle3
- Me.月10_dgv.RowTemplate.Height = 24
- Me.月10_dgv.Size = New System.Drawing.Size(116, 755)
- Me.月10_dgv.TabIndex = 1357
- '
- '月9_dgv
- '
- Me.月9_dgv.Anchor = CType(((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
- Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
- Me.月9_dgv.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill
- Me.月9_dgv.BackgroundColor = System.Drawing.Color.White
- Me.月9_dgv.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize
- Me.月9_dgv.Location = New System.Drawing.Point(1487, 28)
- Me.月9_dgv.Name = "月9_dgv"
- Me.月9_dgv.RowHeadersWidth = 5
- DataGridViewCellStyle4.WrapMode = System.Windows.Forms.DataGridViewTriState.[True]
- Me.月9_dgv.RowsDefaultCellStyle = DataGridViewCellStyle4
- Me.月9_dgv.RowTemplate.Height = 24
- Me.月9_dgv.Size = New System.Drawing.Size(116, 755)
- Me.月9_dgv.TabIndex = 1356
- '
- '月8_dgv
- '
- Me.月8_dgv.Anchor = CType(((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
- Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
- Me.月8_dgv.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill
- Me.月8_dgv.BackgroundColor = System.Drawing.Color.White
- Me.月8_dgv.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize
- Me.月8_dgv.Location = New System.Drawing.Point(1389, 28)
- Me.月8_dgv.Name = "月8_dgv"
- Me.月8_dgv.RowHeadersWidth = 5
- DataGridViewCellStyle5.WrapMode = System.Windows.Forms.DataGridViewTriState.[True]
- Me.月8_dgv.RowsDefaultCellStyle = DataGridViewCellStyle5
- Me.月8_dgv.RowTemplate.Height = 24
- Me.月8_dgv.Size = New System.Drawing.Size(116, 755)
- Me.月8_dgv.TabIndex = 1355
- '
- '月7_dgv
- '
- Me.月7_dgv.Anchor = CType(((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
- Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
- Me.月7_dgv.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill
- Me.月7_dgv.BackgroundColor = System.Drawing.Color.White
- Me.月7_dgv.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize
- Me.月7_dgv.Location = New System.Drawing.Point(1291, 28)
- Me.月7_dgv.Name = "月7_dgv"
- Me.月7_dgv.RowHeadersWidth = 5
- DataGridViewCellStyle6.WrapMode = System.Windows.Forms.DataGridViewTriState.[True]
- Me.月7_dgv.RowsDefaultCellStyle = DataGridViewCellStyle6
- Me.月7_dgv.RowTemplate.Height = 24
- Me.月7_dgv.Size = New System.Drawing.Size(116, 755)
- Me.月7_dgv.TabIndex = 1354
- '
- '月6_dgv
- '
- Me.月6_dgv.Anchor = CType(((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
- Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
- Me.月6_dgv.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill
- Me.月6_dgv.BackgroundColor = System.Drawing.Color.White
- Me.月6_dgv.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize
- Me.月6_dgv.Location = New System.Drawing.Point(1193, 28)
- Me.月6_dgv.Name = "月6_dgv"
- Me.月6_dgv.RowHeadersWidth = 5
- DataGridViewCellStyle7.WrapMode = System.Windows.Forms.DataGridViewTriState.[True]
- Me.月6_dgv.RowsDefaultCellStyle = DataGridViewCellStyle7
- Me.月6_dgv.RowTemplate.Height = 24
- Me.月6_dgv.Size = New System.Drawing.Size(116, 755)
- Me.月6_dgv.TabIndex = 1353
- '
- '月5_dgv
- '
- Me.月5_dgv.Anchor = CType(((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
- Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
- Me.月5_dgv.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill
- Me.月5_dgv.BackgroundColor = System.Drawing.Color.White
- Me.月5_dgv.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize
- Me.月5_dgv.Location = New System.Drawing.Point(1095, 28)
- Me.月5_dgv.Name = "月5_dgv"
- Me.月5_dgv.RowHeadersWidth = 5
- DataGridViewCellStyle8.WrapMode = System.Windows.Forms.DataGridViewTriState.[True]
- Me.月5_dgv.RowsDefaultCellStyle = DataGridViewCellStyle8
- Me.月5_dgv.RowTemplate.Height = 24
- Me.月5_dgv.Size = New System.Drawing.Size(116, 755)
- Me.月5_dgv.TabIndex = 1352
- '
- '月4_dgv
- '
- Me.月4_dgv.Anchor = CType(((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
- Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
- Me.月4_dgv.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill
- Me.月4_dgv.BackgroundColor = System.Drawing.Color.White
- Me.月4_dgv.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize
- Me.月4_dgv.Location = New System.Drawing.Point(997, 28)
- Me.月4_dgv.Name = "月4_dgv"
- Me.月4_dgv.RowHeadersWidth = 5
- DataGridViewCellStyle9.WrapMode = System.Windows.Forms.DataGridViewTriState.[True]
- Me.月4_dgv.RowsDefaultCellStyle = DataGridViewCellStyle9
- Me.月4_dgv.RowTemplate.Height = 24
- Me.月4_dgv.Size = New System.Drawing.Size(116, 755)
- Me.月4_dgv.TabIndex = 1351
- '
- '月3_dgv
- '
- Me.月3_dgv.Anchor = CType(((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
- Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
- Me.月3_dgv.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill
- Me.月3_dgv.BackgroundColor = System.Drawing.Color.White
- Me.月3_dgv.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize
- Me.月3_dgv.Location = New System.Drawing.Point(899, 28)
- Me.月3_dgv.Name = "月3_dgv"
- Me.月3_dgv.RowHeadersWidth = 5
- DataGridViewCellStyle10.WrapMode = System.Windows.Forms.DataGridViewTriState.[True]
- Me.月3_dgv.RowsDefaultCellStyle = DataGridViewCellStyle10
- Me.月3_dgv.RowTemplate.Height = 24
- Me.月3_dgv.Size = New System.Drawing.Size(116, 755)
- Me.月3_dgv.TabIndex = 1350
- '
- '月2_dgv
- '
- Me.月2_dgv.Anchor = CType(((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
- Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
- Me.月2_dgv.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill
- Me.月2_dgv.BackgroundColor = System.Drawing.Color.White
- Me.月2_dgv.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize
- Me.月2_dgv.Location = New System.Drawing.Point(801, 28)
- Me.月2_dgv.Name = "月2_dgv"
- Me.月2_dgv.RowHeadersWidth = 5
- DataGridViewCellStyle11.WrapMode = System.Windows.Forms.DataGridViewTriState.[True]
- Me.月2_dgv.RowsDefaultCellStyle = DataGridViewCellStyle11
- Me.月2_dgv.RowTemplate.Height = 24
- Me.月2_dgv.Size = New System.Drawing.Size(116, 755)
- Me.月2_dgv.TabIndex = 1349
- '
- '月1_dgv
- '
- Me.月1_dgv.Anchor = CType(((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
- Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
- Me.月1_dgv.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill
- Me.月1_dgv.BackgroundColor = System.Drawing.Color.White
- Me.月1_dgv.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize
- Me.月1_dgv.Location = New System.Drawing.Point(703, 28)
- Me.月1_dgv.Name = "月1_dgv"
- Me.月1_dgv.RowHeadersWidth = 5
- DataGridViewCellStyle12.WrapMode = System.Windows.Forms.DataGridViewTriState.[True]
- Me.月1_dgv.RowsDefaultCellStyle = DataGridViewCellStyle12
- Me.月1_dgv.RowTemplate.Height = 24
- Me.月1_dgv.Size = New System.Drawing.Size(116, 755)
- Me.月1_dgv.TabIndex = 1348
- '
- '年份_cb
- '
- Me.年份_cb.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
- Me.年份_cb.FormattingEnabled = True
- Me.年份_cb.Items.AddRange(New Object() {"2019"})
- Me.年份_cb.Location = New System.Drawing.Point(325, 2)
- Me.年份_cb.Name = "年份_cb"
- Me.年份_cb.Size = New System.Drawing.Size(70, 24)
- Me.年份_cb.TabIndex = 1347
- '
- '財務決算表_lb
- '
- Me.財務決算表_lb.AutoSize = True
- Me.財務決算表_lb.Font = New System.Drawing.Font("微軟正黑體", 14.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.財務決算表_lb.ForeColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
- Me.財務決算表_lb.Location = New System.Drawing.Point(4, 1)
- Me.財務決算表_lb.Name = "財務決算表_lb"
- Me.財務決算表_lb.Size = New System.Drawing.Size(105, 24)
- Me.財務決算表_lb.TabIndex = 1346
- Me.財務決算表_lb.Text = "財務決算表"
- '
- '主表_dgv
- '
- Me.主表_dgv.Anchor = CType((((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
- Or System.Windows.Forms.AnchorStyles.Left) _
- Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
- Me.主表_dgv.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill
- Me.主表_dgv.BackgroundColor = System.Drawing.Color.White
- Me.主表_dgv.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize
- Me.主表_dgv.Location = New System.Drawing.Point(3, 28)
- Me.主表_dgv.Name = "主表_dgv"
- Me.主表_dgv.RowHeadersWidth = 5
- DataGridViewCellStyle13.WrapMode = System.Windows.Forms.DataGridViewTriState.[True]
- Me.主表_dgv.RowsDefaultCellStyle = DataGridViewCellStyle13
- Me.主表_dgv.RowTemplate.Height = 24
- Me.主表_dgv.Size = New System.Drawing.Size(718, 755)
- Me.主表_dgv.TabIndex = 1345
- '
- '語言_dgv
- '
- Me.語言_dgv.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize
- Me.語言_dgv.Location = New System.Drawing.Point(76, 137)
- Me.語言_dgv.Name = "語言_dgv"
- Me.語言_dgv.RowHeadersWidth = 5
- Me.語言_dgv.RowTemplate.Height = 24
- Me.語言_dgv.Size = New System.Drawing.Size(81, 49)
- Me.語言_dgv.TabIndex = 1469
- Me.語言_dgv.Visible = False
- '
- 'PictureBox1
- '
- Me.PictureBox1.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.PictureBox1.BackgroundImage = Global.Calculator_SYS.My.Resources.Resources._0hxlogo1
- Me.PictureBox1.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom
- Me.PictureBox1.Location = New System.Drawing.Point(3, 784)
- Me.PictureBox1.Name = "PictureBox1"
- Me.PictureBox1.Size = New System.Drawing.Size(367, 143)
- Me.PictureBox1.TabIndex = 1470
- Me.PictureBox1.TabStop = False
- '
- '語轉扭_bt
- '
- Me.語轉扭_bt.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
- Me.語轉扭_bt.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.語轉扭_bt.ForeColor = System.Drawing.Color.Black
- Me.語轉扭_bt.Location = New System.Drawing.Point(675, 1)
- Me.語轉扭_bt.Name = "語轉扭_bt"
- Me.語轉扭_bt.Size = New System.Drawing.Size(25, 25)
- Me.語轉扭_bt.TabIndex = 1846
- Me.語轉扭_bt.Text = "L"
- Me.語轉扭_bt.UseVisualStyleBackColor = True
- '
- '財務報表4
- '
- Me.AutoScaleDimensions = New System.Drawing.SizeF(7.0!, 16.0!)
- Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font
- Me.ClientSize = New System.Drawing.Size(1900, 929)
- Me.Controls.Add(Me.語轉扭_bt)
- Me.Controls.Add(Me.PictureBox1)
- Me.Controls.Add(Me.語言_dgv)
- Me.Controls.Add(Me.TextBox77)
- Me.Controls.Add(Me.TextBox78)
- Me.Controls.Add(Me.TextBox79)
- Me.Controls.Add(Me.TextBox80)
- Me.Controls.Add(Me.TextBox81)
- Me.Controls.Add(Me.TextBox82)
- Me.Controls.Add(Me.TextBox83)
- Me.Controls.Add(Me.TextBox84)
- Me.Controls.Add(Me.TextBox85)
- Me.Controls.Add(Me.TextBox86)
- Me.Controls.Add(Me.TextBox87)
- Me.Controls.Add(Me.TextBox88)
- Me.Controls.Add(Me.匯差_lb)
- Me.Controls.Add(Me.損益_lb)
- Me.Controls.Add(Me.TextBox64)
- Me.Controls.Add(Me.TextBox65)
- Me.Controls.Add(Me.TextBox66)
- Me.Controls.Add(Me.TextBox67)
- Me.Controls.Add(Me.TextBox68)
- Me.Controls.Add(Me.TextBox69)
- Me.Controls.Add(Me.TextBox70)
- Me.Controls.Add(Me.TextBox71)
- Me.Controls.Add(Me.TextBox72)
- Me.Controls.Add(Me.TextBox73)
- Me.Controls.Add(Me.TextBox74)
- Me.Controls.Add(Me.TextBox75)
- Me.Controls.Add(Me.TextBox76)
- Me.Controls.Add(Me.TextBox63)
- Me.Controls.Add(Me.TextBox62)
- Me.Controls.Add(Me.TextBox61)
- Me.Controls.Add(Me.全部資料合併計算_bt)
- Me.Controls.Add(Me.TextBox56)
- Me.Controls.Add(Me.TextBox57)
- Me.Controls.Add(Me.TextBox58)
- Me.Controls.Add(Me.TextBox59)
- Me.Controls.Add(Me.TextBox60)
- Me.Controls.Add(Me.TextBox51)
- Me.Controls.Add(Me.TextBox52)
- Me.Controls.Add(Me.TextBox53)
- Me.Controls.Add(Me.TextBox54)
- Me.Controls.Add(Me.TextBox55)
- Me.Controls.Add(Me.TextBox46)
- Me.Controls.Add(Me.TextBox47)
- Me.Controls.Add(Me.TextBox48)
- Me.Controls.Add(Me.TextBox49)
- Me.Controls.Add(Me.TextBox50)
- Me.Controls.Add(Me.TextBox41)
- Me.Controls.Add(Me.TextBox42)
- Me.Controls.Add(Me.TextBox43)
- Me.Controls.Add(Me.TextBox44)
- Me.Controls.Add(Me.TextBox45)
- Me.Controls.Add(Me.TextBox36)
- Me.Controls.Add(Me.TextBox37)
- Me.Controls.Add(Me.TextBox38)
- Me.Controls.Add(Me.TextBox39)
- Me.Controls.Add(Me.TextBox40)
- Me.Controls.Add(Me.TextBox31)
- Me.Controls.Add(Me.TextBox32)
- Me.Controls.Add(Me.TextBox33)
- Me.Controls.Add(Me.TextBox34)
- Me.Controls.Add(Me.TextBox35)
- Me.Controls.Add(Me.上月結存_lb)
- Me.Controls.Add(Me.TextBox25)
- Me.Controls.Add(Me.TextBox26)
- Me.Controls.Add(Me.TextBox27)
- Me.Controls.Add(Me.TextBox28)
- Me.Controls.Add(Me.TextBox29)
- Me.Controls.Add(Me.TextBox30)
- Me.Controls.Add(Me.TextBox24)
- Me.Controls.Add(Me.TextBox23)
- Me.Controls.Add(Me.TextBox22)
- Me.Controls.Add(Me.TextBox21)
- Me.Controls.Add(Me.TextBox20)
- Me.Controls.Add(Me.TextBox19)
- Me.Controls.Add(Me.TextBox18)
- Me.Controls.Add(Me.TextBox17)
- Me.Controls.Add(Me.TextBox16)
- Me.Controls.Add(Me.TextBox15)
- Me.Controls.Add(Me.TextBox14)
- Me.Controls.Add(Me.TextBox13)
- Me.Controls.Add(Me.TextBox12)
- Me.Controls.Add(Me.TextBox11)
- Me.Controls.Add(Me.TextBox10)
- Me.Controls.Add(Me.TextBox9)
- Me.Controls.Add(Me.TextBox8)
- Me.Controls.Add(Me.TextBox7)
- Me.Controls.Add(Me.TextBox6)
- Me.Controls.Add(Me.TextBox5)
- Me.Controls.Add(Me.TextBox4)
- Me.Controls.Add(Me.本月結存_lb)
- Me.Controls.Add(Me.TextBox3)
- Me.Controls.Add(Me.支出合計_lb)
- Me.Controls.Add(Me.TextBox2)
- Me.Controls.Add(Me.收入合計_lb)
- Me.Controls.Add(Me.TextBox1)
- Me.Controls.Add(Me.新增資本_lb)
- Me.Controls.Add(Me.重新整理_bt)
- Me.Controls.Add(Me.月12_lb)
- Me.Controls.Add(Me.月11_lb)
- Me.Controls.Add(Me.月10_lb)
- Me.Controls.Add(Me.月9_lb)
- Me.Controls.Add(Me.月8_lb)
- Me.Controls.Add(Me.月7_lb)
- Me.Controls.Add(Me.月6_lb)
- Me.Controls.Add(Me.月5_lb)
- Me.Controls.Add(Me.月4_lb)
- Me.Controls.Add(Me.月3_lb)
- Me.Controls.Add(Me.月2_lb)
- Me.Controls.Add(Me.月1_lb)
- Me.Controls.Add(Me.月12_dgv)
- Me.Controls.Add(Me.月11_dgv)
- Me.Controls.Add(Me.月10_dgv)
- Me.Controls.Add(Me.月9_dgv)
- Me.Controls.Add(Me.月8_dgv)
- Me.Controls.Add(Me.月7_dgv)
- Me.Controls.Add(Me.月6_dgv)
- Me.Controls.Add(Me.月5_dgv)
- Me.Controls.Add(Me.月4_dgv)
- Me.Controls.Add(Me.月3_dgv)
- Me.Controls.Add(Me.月2_dgv)
- Me.Controls.Add(Me.月1_dgv)
- Me.Controls.Add(Me.年份_cb)
- Me.Controls.Add(Me.財務決算表_lb)
- Me.Controls.Add(Me.主表_dgv)
- Me.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4)
- Me.Name = "財務報表4"
- Me.Text = "營運成本收支決算表"
- CType(Me.月12_dgv, System.ComponentModel.ISupportInitialize).EndInit()
- CType(Me.月11_dgv, System.ComponentModel.ISupportInitialize).EndInit()
- CType(Me.月10_dgv, System.ComponentModel.ISupportInitialize).EndInit()
- CType(Me.月9_dgv, System.ComponentModel.ISupportInitialize).EndInit()
- CType(Me.月8_dgv, System.ComponentModel.ISupportInitialize).EndInit()
- CType(Me.月7_dgv, System.ComponentModel.ISupportInitialize).EndInit()
- CType(Me.月6_dgv, System.ComponentModel.ISupportInitialize).EndInit()
- CType(Me.月5_dgv, System.ComponentModel.ISupportInitialize).EndInit()
- CType(Me.月4_dgv, System.ComponentModel.ISupportInitialize).EndInit()
- CType(Me.月3_dgv, System.ComponentModel.ISupportInitialize).EndInit()
- CType(Me.月2_dgv, System.ComponentModel.ISupportInitialize).EndInit()
- CType(Me.月1_dgv, System.ComponentModel.ISupportInitialize).EndInit()
- CType(Me.主表_dgv, System.ComponentModel.ISupportInitialize).EndInit()
- CType(Me.語言_dgv, System.ComponentModel.ISupportInitialize).EndInit()
- CType(Me.PictureBox1, System.ComponentModel.ISupportInitialize).EndInit()
- Me.ResumeLayout(False)
- Me.PerformLayout()
-
- End Sub
-
- Friend WithEvents TextBox77 As TextBox
- Friend WithEvents TextBox78 As TextBox
- Friend WithEvents TextBox79 As TextBox
- Friend WithEvents TextBox80 As TextBox
- Friend WithEvents TextBox81 As TextBox
- Friend WithEvents TextBox82 As TextBox
- Friend WithEvents TextBox83 As TextBox
- Friend WithEvents TextBox84 As TextBox
- Friend WithEvents TextBox85 As TextBox
- Friend WithEvents TextBox86 As TextBox
- Friend WithEvents TextBox87 As TextBox
- Friend WithEvents TextBox88 As TextBox
- Friend WithEvents 匯差_lb As Label
- Friend WithEvents 損益_lb As Label
- Friend WithEvents TextBox64 As TextBox
- Friend WithEvents TextBox65 As TextBox
- Friend WithEvents TextBox66 As TextBox
- Friend WithEvents TextBox67 As TextBox
- Friend WithEvents TextBox68 As TextBox
- Friend WithEvents TextBox69 As TextBox
- Friend WithEvents TextBox70 As TextBox
- Friend WithEvents TextBox71 As TextBox
- Friend WithEvents TextBox72 As TextBox
- Friend WithEvents TextBox73 As TextBox
- Friend WithEvents TextBox74 As TextBox
- Friend WithEvents TextBox75 As TextBox
- Friend WithEvents TextBox76 As TextBox
- Friend WithEvents TextBox63 As TextBox
- Friend WithEvents TextBox62 As TextBox
- Friend WithEvents TextBox61 As TextBox
- Friend WithEvents 全部資料合併計算_bt As Button
- Friend WithEvents TextBox56 As TextBox
- Friend WithEvents TextBox57 As TextBox
- Friend WithEvents TextBox58 As TextBox
- Friend WithEvents TextBox59 As TextBox
- Friend WithEvents TextBox60 As TextBox
- Friend WithEvents TextBox51 As TextBox
- Friend WithEvents TextBox52 As TextBox
- Friend WithEvents TextBox53 As TextBox
- Friend WithEvents TextBox54 As TextBox
- Friend WithEvents TextBox55 As TextBox
- Friend WithEvents TextBox46 As TextBox
- Friend WithEvents TextBox47 As TextBox
- Friend WithEvents TextBox48 As TextBox
- Friend WithEvents TextBox49 As TextBox
- Friend WithEvents TextBox50 As TextBox
- Friend WithEvents TextBox41 As TextBox
- Friend WithEvents TextBox42 As TextBox
- Friend WithEvents TextBox43 As TextBox
- Friend WithEvents TextBox44 As TextBox
- Friend WithEvents TextBox45 As TextBox
- Friend WithEvents TextBox36 As TextBox
- Friend WithEvents TextBox37 As TextBox
- Friend WithEvents TextBox38 As TextBox
- Friend WithEvents TextBox39 As TextBox
- Friend WithEvents TextBox40 As TextBox
- Friend WithEvents TextBox31 As TextBox
- Friend WithEvents TextBox32 As TextBox
- Friend WithEvents TextBox33 As TextBox
- Friend WithEvents TextBox34 As TextBox
- Friend WithEvents TextBox35 As TextBox
- Friend WithEvents 上月結存_lb As Label
- Friend WithEvents TextBox25 As TextBox
- Friend WithEvents TextBox26 As TextBox
- Friend WithEvents TextBox27 As TextBox
- Friend WithEvents TextBox28 As TextBox
- Friend WithEvents TextBox29 As TextBox
- Friend WithEvents TextBox30 As TextBox
- Friend WithEvents TextBox24 As TextBox
- Friend WithEvents TextBox23 As TextBox
- Friend WithEvents TextBox22 As TextBox
- Friend WithEvents TextBox21 As TextBox
- Friend WithEvents TextBox20 As TextBox
- Friend WithEvents TextBox19 As TextBox
- Friend WithEvents TextBox18 As TextBox
- Friend WithEvents TextBox17 As TextBox
- Friend WithEvents TextBox16 As TextBox
- Friend WithEvents TextBox15 As TextBox
- Friend WithEvents TextBox14 As TextBox
- Friend WithEvents TextBox13 As TextBox
- Friend WithEvents TextBox12 As TextBox
- Friend WithEvents TextBox11 As TextBox
- Friend WithEvents TextBox10 As TextBox
- Friend WithEvents TextBox9 As TextBox
- Friend WithEvents TextBox8 As TextBox
- Friend WithEvents TextBox7 As TextBox
- Friend WithEvents TextBox6 As TextBox
- Friend WithEvents TextBox5 As TextBox
- Friend WithEvents TextBox4 As TextBox
- Friend WithEvents 本月結存_lb As Label
- Friend WithEvents TextBox3 As TextBox
- Friend WithEvents 支出合計_lb As Label
- Friend WithEvents TextBox2 As TextBox
- Friend WithEvents 收入合計_lb As Label
- Friend WithEvents TextBox1 As TextBox
- Friend WithEvents 新增資本_lb As Label
- Friend WithEvents 重新整理_bt As Button
- Friend WithEvents 月12_lb As Label
- Friend WithEvents 月11_lb As Label
- Friend WithEvents 月10_lb As Label
- Friend WithEvents 月9_lb As Label
- Friend WithEvents 月8_lb As Label
- Friend WithEvents 月7_lb As Label
- Friend WithEvents 月6_lb As Label
- Friend WithEvents 月5_lb As Label
- Friend WithEvents 月4_lb As Label
- Friend WithEvents 月3_lb As Label
- Friend WithEvents 月2_lb As Label
- Friend WithEvents 月1_lb As Label
- Friend WithEvents 月12_dgv As DataGridView
- Friend WithEvents 月11_dgv As DataGridView
- Friend WithEvents 月10_dgv As DataGridView
- Friend WithEvents 月9_dgv As DataGridView
- Friend WithEvents 月8_dgv As DataGridView
- Friend WithEvents 月7_dgv As DataGridView
- Friend WithEvents 月6_dgv As DataGridView
- Friend WithEvents 月5_dgv As DataGridView
- Friend WithEvents 月4_dgv As DataGridView
- Friend WithEvents 月3_dgv As DataGridView
- Friend WithEvents 月2_dgv As DataGridView
- Friend WithEvents 月1_dgv As DataGridView
- Friend WithEvents 年份_cb As ComboBox
- Friend WithEvents 財務決算表_lb As Label
- Friend WithEvents 主表_dgv As DataGridView
- Friend WithEvents 語言_dgv As DataGridView
- Friend WithEvents PictureBox1 As PictureBox
- Friend WithEvents 語轉扭_bt As Button
- End Class
|