123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073 |
- <Global.Microsoft.VisualBasic.CompilerServices.DesignerGenerated()> _
- Partial Class 財務_決算表_GCM
- 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.Label1 = New System.Windows.Forms.Label()
- Me.主表_dgv = New System.Windows.Forms.DataGridView()
- Me.年份_cb = New System.Windows.Forms.ComboBox()
- Me.月1_dgv = New System.Windows.Forms.DataGridView()
- Me.月2_dgv = New System.Windows.Forms.DataGridView()
- Me.月3_dgv = New System.Windows.Forms.DataGridView()
- Me.月4_dgv = New System.Windows.Forms.DataGridView()
- Me.月5_dgv = New System.Windows.Forms.DataGridView()
- Me.月6_dgv = New System.Windows.Forms.DataGridView()
- Me.月7_dgv = New System.Windows.Forms.DataGridView()
- Me.月8_dgv = New System.Windows.Forms.DataGridView()
- Me.月9_dgv = New System.Windows.Forms.DataGridView()
- Me.月10_dgv = New System.Windows.Forms.DataGridView()
- Me.月11_dgv = New System.Windows.Forms.DataGridView()
- Me.月12_dgv = New System.Windows.Forms.DataGridView()
- Me.Label2 = New System.Windows.Forms.Label()
- Me.Label3 = New System.Windows.Forms.Label()
- Me.Label4 = New System.Windows.Forms.Label()
- Me.Label5 = New System.Windows.Forms.Label()
- Me.Label6 = New System.Windows.Forms.Label()
- Me.Label7 = New System.Windows.Forms.Label()
- Me.Label8 = New System.Windows.Forms.Label()
- Me.Label9 = New System.Windows.Forms.Label()
- Me.Label10 = New System.Windows.Forms.Label()
- Me.Label11 = New System.Windows.Forms.Label()
- Me.Label12 = New System.Windows.Forms.Label()
- Me.Label13 = New System.Windows.Forms.Label()
- Me.重新整理_bt = New System.Windows.Forms.Button()
- Me.Label14 = New System.Windows.Forms.Label()
- Me.資本1_tb = New System.Windows.Forms.TextBox()
- Me.收入1_tb = New System.Windows.Forms.TextBox()
- Me.Label15 = New System.Windows.Forms.Label()
- Me.支出1_tb = New System.Windows.Forms.TextBox()
- Me.Label16 = New System.Windows.Forms.Label()
- Me.月結1_tb = New System.Windows.Forms.TextBox()
- Me.Label17 = New System.Windows.Forms.Label()
- Me.資本2_tb = New System.Windows.Forms.TextBox()
- Me.收入2_tb = New System.Windows.Forms.TextBox()
- Me.支出2_tb = New System.Windows.Forms.TextBox()
- Me.月結2_tb = New System.Windows.Forms.TextBox()
- Me.資本3_tb = New System.Windows.Forms.TextBox()
- Me.收入3_tb = New System.Windows.Forms.TextBox()
- Me.支出3_tb = New System.Windows.Forms.TextBox()
- Me.月結3_tb = New System.Windows.Forms.TextBox()
- Me.資本4_tb = New System.Windows.Forms.TextBox()
- Me.收入4_tb = New System.Windows.Forms.TextBox()
- Me.支出4_tb = New System.Windows.Forms.TextBox()
- Me.月結4_tb = New System.Windows.Forms.TextBox()
- Me.資本5_tb = New System.Windows.Forms.TextBox()
- Me.收入5_tb = New System.Windows.Forms.TextBox()
- Me.支出5_tb = New System.Windows.Forms.TextBox()
- Me.月結5_tb = New System.Windows.Forms.TextBox()
- Me.資本6_tb = New System.Windows.Forms.TextBox()
- Me.收入6_tb = New System.Windows.Forms.TextBox()
- Me.支出6_tb = New System.Windows.Forms.TextBox()
- Me.月結6_tb = New System.Windows.Forms.TextBox()
- Me.結存6_tb = New System.Windows.Forms.TextBox()
- Me.結存5_tb = New System.Windows.Forms.TextBox()
- Me.結存4_tb = New System.Windows.Forms.TextBox()
- Me.結存3_tb = New System.Windows.Forms.TextBox()
- Me.結存2_tb = New System.Windows.Forms.TextBox()
- Me.結存1_tb = New System.Windows.Forms.TextBox()
- Me.Label18 = New System.Windows.Forms.Label()
- Me.結存7_tb = New System.Windows.Forms.TextBox()
- Me.月結7_tb = New System.Windows.Forms.TextBox()
- Me.支出7_tb = New System.Windows.Forms.TextBox()
- Me.收入7_tb = New System.Windows.Forms.TextBox()
- Me.資本7_tb = New System.Windows.Forms.TextBox()
- Me.結存8_tb = New System.Windows.Forms.TextBox()
- Me.月結8_tb = New System.Windows.Forms.TextBox()
- Me.支出8_tb = New System.Windows.Forms.TextBox()
- Me.收入8_tb = New System.Windows.Forms.TextBox()
- Me.資本8_tb = New System.Windows.Forms.TextBox()
- Me.結存9_tb = New System.Windows.Forms.TextBox()
- Me.月結9_tb = New System.Windows.Forms.TextBox()
- Me.支出9_tb = New System.Windows.Forms.TextBox()
- Me.收入9_tb = New System.Windows.Forms.TextBox()
- Me.資本9_tb = New System.Windows.Forms.TextBox()
- Me.結存10_tb = New System.Windows.Forms.TextBox()
- Me.月結10_tb = New System.Windows.Forms.TextBox()
- Me.支出10_tb = New System.Windows.Forms.TextBox()
- Me.收入10_tb = New System.Windows.Forms.TextBox()
- Me.資本10_tb = New System.Windows.Forms.TextBox()
- Me.結存11_tb = New System.Windows.Forms.TextBox()
- Me.月結11_tb = New System.Windows.Forms.TextBox()
- Me.支出11_tb = New System.Windows.Forms.TextBox()
- Me.收入11_tb = New System.Windows.Forms.TextBox()
- Me.資本11_tb = New System.Windows.Forms.TextBox()
- Me.結存12_tb = New System.Windows.Forms.TextBox()
- Me.月結12_tb = New System.Windows.Forms.TextBox()
- Me.支出12_tb = New System.Windows.Forms.TextBox()
- Me.收入12_tb = New System.Windows.Forms.TextBox()
- Me.資本12_tb = New System.Windows.Forms.TextBox()
- Me.Button2 = New System.Windows.Forms.Button()
- Me.總資本_tb = New System.Windows.Forms.TextBox()
- Me.總收入_tb = New System.Windows.Forms.TextBox()
- Me.總支出_tb = New System.Windows.Forms.TextBox()
- Me.總損益_tb = New System.Windows.Forms.TextBox()
- Me.損益_tb12 = New System.Windows.Forms.TextBox()
- Me.損益_tb11 = New System.Windows.Forms.TextBox()
- Me.損益_tb10 = New System.Windows.Forms.TextBox()
- Me.損益_tb9 = New System.Windows.Forms.TextBox()
- Me.損益_tb8 = New System.Windows.Forms.TextBox()
- Me.損益_tb7 = New System.Windows.Forms.TextBox()
- Me.損益_tb6 = New System.Windows.Forms.TextBox()
- Me.損益_tb5 = New System.Windows.Forms.TextBox()
- Me.損益_tb4 = New System.Windows.Forms.TextBox()
- Me.損益_tb3 = New System.Windows.Forms.TextBox()
- Me.損益_tb2 = New System.Windows.Forms.TextBox()
- Me.損益_tb1 = New System.Windows.Forms.TextBox()
- Me.Label19 = New System.Windows.Forms.Label()
- Me.匯差12_tb = New System.Windows.Forms.TextBox()
- Me.匯差11_tb = New System.Windows.Forms.TextBox()
- Me.匯差10_tb = New System.Windows.Forms.TextBox()
- Me.匯差9_tb = New System.Windows.Forms.TextBox()
- Me.匯差8_tb = New System.Windows.Forms.TextBox()
- Me.匯差7_tb = New System.Windows.Forms.TextBox()
- Me.匯差6_tb = New System.Windows.Forms.TextBox()
- Me.匯差5_tb = New System.Windows.Forms.TextBox()
- Me.匯差4_tb = New System.Windows.Forms.TextBox()
- Me.匯差3_tb = New System.Windows.Forms.TextBox()
- Me.匯差2_tb = New System.Windows.Forms.TextBox()
- Me.匯差1_tb = New System.Windows.Forms.TextBox()
- Me.Label20 = New System.Windows.Forms.Label()
- Me.彙總資料存檔_bt = New System.Windows.Forms.Button()
- Me.非稅_ch = New System.Windows.Forms.CheckBox()
- Me.含稅_ch = New System.Windows.Forms.CheckBox()
- Me.全部_ch = New System.Windows.Forms.CheckBox()
- Me.PictureBox1 = New System.Windows.Forms.PictureBox()
- CType(Me.主表_dgv, System.ComponentModel.ISupportInitialize).BeginInit()
- CType(Me.月1_dgv, System.ComponentModel.ISupportInitialize).BeginInit()
- CType(Me.月2_dgv, System.ComponentModel.ISupportInitialize).BeginInit()
- CType(Me.月3_dgv, System.ComponentModel.ISupportInitialize).BeginInit()
- CType(Me.月4_dgv, System.ComponentModel.ISupportInitialize).BeginInit()
- CType(Me.月5_dgv, System.ComponentModel.ISupportInitialize).BeginInit()
- CType(Me.月6_dgv, System.ComponentModel.ISupportInitialize).BeginInit()
- CType(Me.月7_dgv, System.ComponentModel.ISupportInitialize).BeginInit()
- CType(Me.月8_dgv, System.ComponentModel.ISupportInitialize).BeginInit()
- CType(Me.月9_dgv, System.ComponentModel.ISupportInitialize).BeginInit()
- CType(Me.月10_dgv, System.ComponentModel.ISupportInitialize).BeginInit()
- CType(Me.月11_dgv, System.ComponentModel.ISupportInitialize).BeginInit()
- CType(Me.月12_dgv, System.ComponentModel.ISupportInitialize).BeginInit()
- CType(Me.PictureBox1, System.ComponentModel.ISupportInitialize).BeginInit()
- Me.SuspendLayout()
- '
- 'Label1
- '
- Me.Label1.AutoSize = True
- Me.Label1.Font = New System.Drawing.Font("微軟正黑體", 14.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.Label1.ForeColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
- Me.Label1.Location = New System.Drawing.Point(2, 3)
- Me.Label1.Name = "Label1"
- Me.Label1.Size = New System.Drawing.Size(105, 24)
- Me.Label1.TabIndex = 1098
- Me.Label1.Text = "財務決算表"
- '
- '主表_dgv
- '
- Me.主表_dgv.Anchor = CType(((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
- Or System.Windows.Forms.AnchorStyles.Left), 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(6, 28)
- Me.主表_dgv.Name = "主表_dgv"
- Me.主表_dgv.RowHeadersWidth = 5
- DataGridViewCellStyle1.WrapMode = System.Windows.Forms.DataGridViewTriState.[True]
- Me.主表_dgv.RowsDefaultCellStyle = DataGridViewCellStyle1
- Me.主表_dgv.RowTemplate.Height = 24
- Me.主表_dgv.Size = New System.Drawing.Size(491, 754)
- Me.主表_dgv.TabIndex = 1097
- '
- '年份_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(113, 3)
- Me.年份_cb.Name = "年份_cb"
- Me.年份_cb.Size = New System.Drawing.Size(70, 23)
- Me.年份_cb.TabIndex = 1099
- '
- '月1_dgv
- '
- Me.月1_dgv.Anchor = CType(((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
- Or System.Windows.Forms.AnchorStyles.Left), 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(481, 28)
- Me.月1_dgv.Name = "月1_dgv"
- Me.月1_dgv.RowHeadersWidth = 5
- DataGridViewCellStyle2.WrapMode = System.Windows.Forms.DataGridViewTriState.[True]
- Me.月1_dgv.RowsDefaultCellStyle = DataGridViewCellStyle2
- Me.月1_dgv.RowTemplate.Height = 24
- Me.月1_dgv.Size = New System.Drawing.Size(135, 754)
- Me.月1_dgv.TabIndex = 1100
- '
- '月2_dgv
- '
- Me.月2_dgv.Anchor = CType(((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
- Or System.Windows.Forms.AnchorStyles.Left), 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(599, 28)
- Me.月2_dgv.Name = "月2_dgv"
- Me.月2_dgv.RowHeadersWidth = 5
- DataGridViewCellStyle3.WrapMode = System.Windows.Forms.DataGridViewTriState.[True]
- Me.月2_dgv.RowsDefaultCellStyle = DataGridViewCellStyle3
- Me.月2_dgv.RowTemplate.Height = 24
- Me.月2_dgv.Size = New System.Drawing.Size(135, 754)
- Me.月2_dgv.TabIndex = 1101
- '
- '月3_dgv
- '
- Me.月3_dgv.Anchor = CType(((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
- Or System.Windows.Forms.AnchorStyles.Left), 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(717, 28)
- Me.月3_dgv.Name = "月3_dgv"
- Me.月3_dgv.RowHeadersWidth = 5
- DataGridViewCellStyle4.WrapMode = System.Windows.Forms.DataGridViewTriState.[True]
- Me.月3_dgv.RowsDefaultCellStyle = DataGridViewCellStyle4
- Me.月3_dgv.RowTemplate.Height = 24
- Me.月3_dgv.Size = New System.Drawing.Size(135, 754)
- Me.月3_dgv.TabIndex = 1102
- '
- '月4_dgv
- '
- Me.月4_dgv.Anchor = CType(((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
- Or System.Windows.Forms.AnchorStyles.Left), 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(835, 28)
- Me.月4_dgv.Name = "月4_dgv"
- Me.月4_dgv.RowHeadersWidth = 5
- DataGridViewCellStyle5.WrapMode = System.Windows.Forms.DataGridViewTriState.[True]
- Me.月4_dgv.RowsDefaultCellStyle = DataGridViewCellStyle5
- Me.月4_dgv.RowTemplate.Height = 24
- Me.月4_dgv.Size = New System.Drawing.Size(135, 754)
- Me.月4_dgv.TabIndex = 1103
- '
- '月5_dgv
- '
- Me.月5_dgv.Anchor = CType(((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
- Or System.Windows.Forms.AnchorStyles.Left), 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(953, 28)
- Me.月5_dgv.Name = "月5_dgv"
- Me.月5_dgv.RowHeadersWidth = 5
- DataGridViewCellStyle6.WrapMode = System.Windows.Forms.DataGridViewTriState.[True]
- Me.月5_dgv.RowsDefaultCellStyle = DataGridViewCellStyle6
- Me.月5_dgv.RowTemplate.Height = 24
- Me.月5_dgv.Size = New System.Drawing.Size(135, 754)
- Me.月5_dgv.TabIndex = 1104
- '
- '月6_dgv
- '
- Me.月6_dgv.Anchor = CType(((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
- Or System.Windows.Forms.AnchorStyles.Left), 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(1071, 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(135, 754)
- Me.月6_dgv.TabIndex = 1105
- '
- '月7_dgv
- '
- Me.月7_dgv.Anchor = CType(((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
- Or System.Windows.Forms.AnchorStyles.Left), 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(1189, 28)
- Me.月7_dgv.Name = "月7_dgv"
- Me.月7_dgv.RowHeadersWidth = 5
- DataGridViewCellStyle8.WrapMode = System.Windows.Forms.DataGridViewTriState.[True]
- Me.月7_dgv.RowsDefaultCellStyle = DataGridViewCellStyle8
- Me.月7_dgv.RowTemplate.Height = 24
- Me.月7_dgv.Size = New System.Drawing.Size(135, 754)
- Me.月7_dgv.TabIndex = 1106
- '
- '月8_dgv
- '
- Me.月8_dgv.Anchor = CType(((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
- Or System.Windows.Forms.AnchorStyles.Left), 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(1307, 28)
- Me.月8_dgv.Name = "月8_dgv"
- Me.月8_dgv.RowHeadersWidth = 5
- DataGridViewCellStyle9.WrapMode = System.Windows.Forms.DataGridViewTriState.[True]
- Me.月8_dgv.RowsDefaultCellStyle = DataGridViewCellStyle9
- Me.月8_dgv.RowTemplate.Height = 24
- Me.月8_dgv.Size = New System.Drawing.Size(135, 754)
- Me.月8_dgv.TabIndex = 1107
- '
- '月9_dgv
- '
- Me.月9_dgv.Anchor = CType(((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
- Or System.Windows.Forms.AnchorStyles.Left), 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(1425, 28)
- Me.月9_dgv.Name = "月9_dgv"
- Me.月9_dgv.RowHeadersWidth = 5
- DataGridViewCellStyle10.WrapMode = System.Windows.Forms.DataGridViewTriState.[True]
- Me.月9_dgv.RowsDefaultCellStyle = DataGridViewCellStyle10
- Me.月9_dgv.RowTemplate.Height = 24
- Me.月9_dgv.Size = New System.Drawing.Size(135, 754)
- Me.月9_dgv.TabIndex = 1108
- '
- '月10_dgv
- '
- Me.月10_dgv.Anchor = CType(((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
- Or System.Windows.Forms.AnchorStyles.Left), 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(1543, 28)
- Me.月10_dgv.Name = "月10_dgv"
- Me.月10_dgv.RowHeadersWidth = 5
- DataGridViewCellStyle11.WrapMode = System.Windows.Forms.DataGridViewTriState.[True]
- Me.月10_dgv.RowsDefaultCellStyle = DataGridViewCellStyle11
- Me.月10_dgv.RowTemplate.Height = 24
- Me.月10_dgv.Size = New System.Drawing.Size(135, 754)
- Me.月10_dgv.TabIndex = 1109
- '
- '月11_dgv
- '
- Me.月11_dgv.Anchor = CType(((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
- Or System.Windows.Forms.AnchorStyles.Left), 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(1661, 28)
- Me.月11_dgv.Name = "月11_dgv"
- Me.月11_dgv.RowHeadersWidth = 5
- DataGridViewCellStyle12.WrapMode = System.Windows.Forms.DataGridViewTriState.[True]
- Me.月11_dgv.RowsDefaultCellStyle = DataGridViewCellStyle12
- Me.月11_dgv.RowTemplate.Height = 24
- Me.月11_dgv.Size = New System.Drawing.Size(135, 754)
- Me.月11_dgv.TabIndex = 1110
- '
- '月12_dgv
- '
- Me.月12_dgv.Anchor = CType(((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
- Or System.Windows.Forms.AnchorStyles.Left), 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(1779, 28)
- Me.月12_dgv.Name = "月12_dgv"
- Me.月12_dgv.RowHeadersWidth = 5
- DataGridViewCellStyle13.WrapMode = System.Windows.Forms.DataGridViewTriState.[True]
- Me.月12_dgv.RowsDefaultCellStyle = DataGridViewCellStyle13
- Me.月12_dgv.RowTemplate.Height = 24
- Me.月12_dgv.Size = New System.Drawing.Size(116, 754)
- Me.月12_dgv.TabIndex = 1111
- '
- 'Label2
- '
- Me.Label2.AutoSize = True
- Me.Label2.Font = New System.Drawing.Font("微軟正黑體", 14.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.Label2.ForeColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
- Me.Label2.Location = New System.Drawing.Point(477, 3)
- Me.Label2.Name = "Label2"
- Me.Label2.Size = New System.Drawing.Size(40, 24)
- Me.Label2.TabIndex = 1112
- Me.Label2.Text = "1月"
- '
- 'Label3
- '
- Me.Label3.AutoSize = True
- Me.Label3.Font = New System.Drawing.Font("微軟正黑體", 14.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.Label3.ForeColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
- Me.Label3.Location = New System.Drawing.Point(595, 3)
- Me.Label3.Name = "Label3"
- Me.Label3.Size = New System.Drawing.Size(40, 24)
- Me.Label3.TabIndex = 1113
- Me.Label3.Text = "2月"
- '
- 'Label4
- '
- Me.Label4.AutoSize = True
- Me.Label4.Font = New System.Drawing.Font("微軟正黑體", 14.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.Label4.ForeColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
- Me.Label4.Location = New System.Drawing.Point(713, 3)
- Me.Label4.Name = "Label4"
- Me.Label4.Size = New System.Drawing.Size(40, 24)
- Me.Label4.TabIndex = 1114
- Me.Label4.Text = "3月"
- '
- 'Label5
- '
- Me.Label5.AutoSize = True
- Me.Label5.Font = New System.Drawing.Font("微軟正黑體", 14.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.Label5.ForeColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
- Me.Label5.Location = New System.Drawing.Point(831, 3)
- Me.Label5.Name = "Label5"
- Me.Label5.Size = New System.Drawing.Size(40, 24)
- Me.Label5.TabIndex = 1115
- Me.Label5.Text = "4月"
- '
- 'Label6
- '
- Me.Label6.AutoSize = True
- Me.Label6.Font = New System.Drawing.Font("微軟正黑體", 14.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.Label6.ForeColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
- Me.Label6.Location = New System.Drawing.Point(949, 3)
- Me.Label6.Name = "Label6"
- Me.Label6.Size = New System.Drawing.Size(40, 24)
- Me.Label6.TabIndex = 1116
- Me.Label6.Text = "5月"
- '
- 'Label7
- '
- Me.Label7.AutoSize = True
- Me.Label7.Font = New System.Drawing.Font("微軟正黑體", 14.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.Label7.ForeColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
- Me.Label7.Location = New System.Drawing.Point(1067, 3)
- Me.Label7.Name = "Label7"
- Me.Label7.Size = New System.Drawing.Size(40, 24)
- Me.Label7.TabIndex = 1117
- Me.Label7.Text = "6月"
- '
- 'Label8
- '
- Me.Label8.AutoSize = True
- Me.Label8.Font = New System.Drawing.Font("微軟正黑體", 14.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.Label8.ForeColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
- Me.Label8.Location = New System.Drawing.Point(1185, 3)
- Me.Label8.Name = "Label8"
- Me.Label8.Size = New System.Drawing.Size(40, 24)
- Me.Label8.TabIndex = 1118
- Me.Label8.Text = "7月"
- '
- 'Label9
- '
- Me.Label9.AutoSize = True
- Me.Label9.Font = New System.Drawing.Font("微軟正黑體", 14.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.Label9.ForeColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
- Me.Label9.Location = New System.Drawing.Point(1303, 3)
- Me.Label9.Name = "Label9"
- Me.Label9.Size = New System.Drawing.Size(40, 24)
- Me.Label9.TabIndex = 1119
- Me.Label9.Text = "8月"
- '
- 'Label10
- '
- Me.Label10.AutoSize = True
- Me.Label10.Font = New System.Drawing.Font("微軟正黑體", 14.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.Label10.ForeColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
- Me.Label10.Location = New System.Drawing.Point(1421, 3)
- Me.Label10.Name = "Label10"
- Me.Label10.Size = New System.Drawing.Size(40, 24)
- Me.Label10.TabIndex = 1120
- Me.Label10.Text = "9月"
- '
- 'Label11
- '
- Me.Label11.AutoSize = True
- Me.Label11.Font = New System.Drawing.Font("微軟正黑體", 14.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.Label11.ForeColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
- Me.Label11.Location = New System.Drawing.Point(1539, 3)
- Me.Label11.Name = "Label11"
- Me.Label11.Size = New System.Drawing.Size(51, 24)
- Me.Label11.TabIndex = 1121
- Me.Label11.Text = "10月"
- '
- 'Label12
- '
- Me.Label12.AutoSize = True
- Me.Label12.Font = New System.Drawing.Font("微軟正黑體", 14.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.Label12.ForeColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
- Me.Label12.Location = New System.Drawing.Point(1657, 3)
- Me.Label12.Name = "Label12"
- Me.Label12.Size = New System.Drawing.Size(51, 24)
- Me.Label12.TabIndex = 1122
- Me.Label12.Text = "11月"
- '
- 'Label13
- '
- Me.Label13.AutoSize = True
- Me.Label13.Font = New System.Drawing.Font("微軟正黑體", 14.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.Label13.ForeColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
- Me.Label13.Location = New System.Drawing.Point(1775, 3)
- Me.Label13.Name = "Label13"
- Me.Label13.Size = New System.Drawing.Size(51, 24)
- Me.Label13.TabIndex = 1123
- Me.Label13.Text = "12月"
- '
- '重新整理_bt
- '
- Me.重新整理_bt.Location = New System.Drawing.Point(189, 3)
- Me.重新整理_bt.Name = "重新整理_bt"
- Me.重新整理_bt.Size = New System.Drawing.Size(75, 23)
- Me.重新整理_bt.TabIndex = 1124
- Me.重新整理_bt.Text = "重新整理"
- Me.重新整理_bt.UseVisualStyleBackColor = True
- '
- 'Label14
- '
- Me.Label14.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.Label14.AutoSize = True
- Me.Label14.Location = New System.Drawing.Point(306, 790)
- Me.Label14.Name = "Label14"
- Me.Label14.Size = New System.Drawing.Size(51, 15)
- Me.Label14.TabIndex = 1125
- Me.Label14.Text = "新增資本"
- '
- '資本1_tb
- '
- Me.資本1_tb.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.資本1_tb.BorderStyle = System.Windows.Forms.BorderStyle.None
- Me.資本1_tb.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.資本1_tb.ForeColor = System.Drawing.Color.Green
- Me.資本1_tb.Location = New System.Drawing.Point(481, 788)
- Me.資本1_tb.Name = "資本1_tb"
- Me.資本1_tb.Size = New System.Drawing.Size(116, 16)
- Me.資本1_tb.TabIndex = 1126
- Me.資本1_tb.Text = "0"
- Me.資本1_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- '
- '收入1_tb
- '
- Me.收入1_tb.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.收入1_tb.BorderStyle = System.Windows.Forms.BorderStyle.None
- Me.收入1_tb.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.收入1_tb.ForeColor = System.Drawing.Color.Blue
- Me.收入1_tb.Location = New System.Drawing.Point(481, 848)
- Me.收入1_tb.Name = "收入1_tb"
- Me.收入1_tb.Size = New System.Drawing.Size(116, 16)
- Me.收入1_tb.TabIndex = 1128
- Me.收入1_tb.Text = "0"
- Me.收入1_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- '
- 'Label15
- '
- Me.Label15.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.Label15.AutoSize = True
- Me.Label15.Location = New System.Drawing.Point(306, 849)
- Me.Label15.Name = "Label15"
- Me.Label15.Size = New System.Drawing.Size(51, 15)
- Me.Label15.TabIndex = 1127
- Me.Label15.Text = "收入合計"
- '
- '支出1_tb
- '
- Me.支出1_tb.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.支出1_tb.BorderStyle = System.Windows.Forms.BorderStyle.None
- Me.支出1_tb.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.支出1_tb.ForeColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
- Me.支出1_tb.Location = New System.Drawing.Point(481, 868)
- Me.支出1_tb.Name = "支出1_tb"
- Me.支出1_tb.Size = New System.Drawing.Size(116, 16)
- Me.支出1_tb.TabIndex = 1130
- Me.支出1_tb.Text = "0"
- Me.支出1_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- '
- 'Label16
- '
- Me.Label16.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.Label16.AutoSize = True
- Me.Label16.Location = New System.Drawing.Point(306, 869)
- Me.Label16.Name = "Label16"
- Me.Label16.Size = New System.Drawing.Size(51, 15)
- Me.Label16.TabIndex = 1129
- Me.Label16.Text = "支出合計"
- '
- '月結1_tb
- '
- Me.月結1_tb.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.月結1_tb.BorderStyle = System.Windows.Forms.BorderStyle.None
- Me.月結1_tb.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.月結1_tb.Location = New System.Drawing.Point(481, 908)
- Me.月結1_tb.Name = "月結1_tb"
- Me.月結1_tb.Size = New System.Drawing.Size(116, 16)
- Me.月結1_tb.TabIndex = 1132
- Me.月結1_tb.Text = "0"
- Me.月結1_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- '
- 'Label17
- '
- Me.Label17.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.Label17.AutoSize = True
- Me.Label17.Location = New System.Drawing.Point(306, 909)
- Me.Label17.Name = "Label17"
- Me.Label17.Size = New System.Drawing.Size(51, 15)
- Me.Label17.TabIndex = 1131
- Me.Label17.Text = "本月結存"
- '
- '資本2_tb
- '
- Me.資本2_tb.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.資本2_tb.BorderStyle = System.Windows.Forms.BorderStyle.None
- Me.資本2_tb.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.資本2_tb.ForeColor = System.Drawing.Color.Green
- Me.資本2_tb.Location = New System.Drawing.Point(599, 788)
- Me.資本2_tb.Name = "資本2_tb"
- Me.資本2_tb.Size = New System.Drawing.Size(116, 16)
- Me.資本2_tb.TabIndex = 1133
- Me.資本2_tb.Text = "0"
- Me.資本2_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- '
- '收入2_tb
- '
- Me.收入2_tb.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.收入2_tb.BorderStyle = System.Windows.Forms.BorderStyle.None
- Me.收入2_tb.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.收入2_tb.ForeColor = System.Drawing.Color.Blue
- Me.收入2_tb.Location = New System.Drawing.Point(599, 848)
- Me.收入2_tb.Name = "收入2_tb"
- Me.收入2_tb.Size = New System.Drawing.Size(116, 16)
- Me.收入2_tb.TabIndex = 1134
- Me.收入2_tb.Text = "0"
- Me.收入2_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- '
- '支出2_tb
- '
- Me.支出2_tb.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.支出2_tb.BorderStyle = System.Windows.Forms.BorderStyle.None
- Me.支出2_tb.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.支出2_tb.ForeColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
- Me.支出2_tb.Location = New System.Drawing.Point(599, 868)
- Me.支出2_tb.Name = "支出2_tb"
- Me.支出2_tb.Size = New System.Drawing.Size(116, 16)
- Me.支出2_tb.TabIndex = 1135
- Me.支出2_tb.Text = "0"
- Me.支出2_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- '
- '月結2_tb
- '
- Me.月結2_tb.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.月結2_tb.BorderStyle = System.Windows.Forms.BorderStyle.None
- Me.月結2_tb.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.月結2_tb.Location = New System.Drawing.Point(599, 908)
- Me.月結2_tb.Name = "月結2_tb"
- Me.月結2_tb.Size = New System.Drawing.Size(116, 16)
- Me.月結2_tb.TabIndex = 1136
- Me.月結2_tb.Text = "0"
- Me.月結2_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- '
- '資本3_tb
- '
- Me.資本3_tb.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.資本3_tb.BorderStyle = System.Windows.Forms.BorderStyle.None
- Me.資本3_tb.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.資本3_tb.ForeColor = System.Drawing.Color.Green
- Me.資本3_tb.Location = New System.Drawing.Point(717, 788)
- Me.資本3_tb.Name = "資本3_tb"
- Me.資本3_tb.Size = New System.Drawing.Size(116, 16)
- Me.資本3_tb.TabIndex = 1137
- Me.資本3_tb.Text = "0"
- Me.資本3_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- '
- '收入3_tb
- '
- Me.收入3_tb.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.收入3_tb.BorderStyle = System.Windows.Forms.BorderStyle.None
- Me.收入3_tb.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.收入3_tb.ForeColor = System.Drawing.Color.Blue
- Me.收入3_tb.Location = New System.Drawing.Point(717, 848)
- Me.收入3_tb.Name = "收入3_tb"
- Me.收入3_tb.Size = New System.Drawing.Size(116, 16)
- Me.收入3_tb.TabIndex = 1138
- Me.收入3_tb.Text = "0"
- Me.收入3_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- '
- '支出3_tb
- '
- Me.支出3_tb.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.支出3_tb.BorderStyle = System.Windows.Forms.BorderStyle.None
- Me.支出3_tb.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.支出3_tb.ForeColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
- Me.支出3_tb.Location = New System.Drawing.Point(717, 868)
- Me.支出3_tb.Name = "支出3_tb"
- Me.支出3_tb.Size = New System.Drawing.Size(116, 16)
- Me.支出3_tb.TabIndex = 1139
- Me.支出3_tb.Text = "0"
- Me.支出3_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- '
- '月結3_tb
- '
- Me.月結3_tb.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.月結3_tb.BorderStyle = System.Windows.Forms.BorderStyle.None
- Me.月結3_tb.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.月結3_tb.Location = New System.Drawing.Point(717, 908)
- Me.月結3_tb.Name = "月結3_tb"
- Me.月結3_tb.Size = New System.Drawing.Size(116, 16)
- Me.月結3_tb.TabIndex = 1140
- Me.月結3_tb.Text = "0"
- Me.月結3_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- '
- '資本4_tb
- '
- Me.資本4_tb.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.資本4_tb.BorderStyle = System.Windows.Forms.BorderStyle.None
- Me.資本4_tb.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.資本4_tb.ForeColor = System.Drawing.Color.Green
- Me.資本4_tb.Location = New System.Drawing.Point(835, 788)
- Me.資本4_tb.Name = "資本4_tb"
- Me.資本4_tb.Size = New System.Drawing.Size(116, 16)
- Me.資本4_tb.TabIndex = 1141
- Me.資本4_tb.Text = "0"
- Me.資本4_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- '
- '收入4_tb
- '
- Me.收入4_tb.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.收入4_tb.BorderStyle = System.Windows.Forms.BorderStyle.None
- Me.收入4_tb.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.收入4_tb.ForeColor = System.Drawing.Color.Blue
- Me.收入4_tb.Location = New System.Drawing.Point(835, 848)
- Me.收入4_tb.Name = "收入4_tb"
- Me.收入4_tb.Size = New System.Drawing.Size(116, 16)
- Me.收入4_tb.TabIndex = 1142
- Me.收入4_tb.Text = "0"
- Me.收入4_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- '
- '支出4_tb
- '
- Me.支出4_tb.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.支出4_tb.BorderStyle = System.Windows.Forms.BorderStyle.None
- Me.支出4_tb.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.支出4_tb.ForeColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
- Me.支出4_tb.Location = New System.Drawing.Point(835, 868)
- Me.支出4_tb.Name = "支出4_tb"
- Me.支出4_tb.Size = New System.Drawing.Size(116, 16)
- Me.支出4_tb.TabIndex = 1143
- Me.支出4_tb.Text = "0"
- Me.支出4_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- '
- '月結4_tb
- '
- Me.月結4_tb.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.月結4_tb.BorderStyle = System.Windows.Forms.BorderStyle.None
- Me.月結4_tb.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.月結4_tb.Location = New System.Drawing.Point(835, 908)
- Me.月結4_tb.Name = "月結4_tb"
- Me.月結4_tb.Size = New System.Drawing.Size(116, 16)
- Me.月結4_tb.TabIndex = 1144
- Me.月結4_tb.Text = "0"
- Me.月結4_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- '
- '資本5_tb
- '
- Me.資本5_tb.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.資本5_tb.BorderStyle = System.Windows.Forms.BorderStyle.None
- Me.資本5_tb.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.資本5_tb.ForeColor = System.Drawing.Color.Green
- Me.資本5_tb.Location = New System.Drawing.Point(953, 788)
- Me.資本5_tb.Name = "資本5_tb"
- Me.資本5_tb.Size = New System.Drawing.Size(116, 16)
- Me.資本5_tb.TabIndex = 1145
- Me.資本5_tb.Text = "0"
- Me.資本5_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- '
- '收入5_tb
- '
- Me.收入5_tb.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.收入5_tb.BorderStyle = System.Windows.Forms.BorderStyle.None
- Me.收入5_tb.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.收入5_tb.ForeColor = System.Drawing.Color.Blue
- Me.收入5_tb.Location = New System.Drawing.Point(953, 848)
- Me.收入5_tb.Name = "收入5_tb"
- Me.收入5_tb.Size = New System.Drawing.Size(116, 16)
- Me.收入5_tb.TabIndex = 1146
- Me.收入5_tb.Text = "0"
- Me.收入5_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- '
- '支出5_tb
- '
- Me.支出5_tb.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.支出5_tb.BorderStyle = System.Windows.Forms.BorderStyle.None
- Me.支出5_tb.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.支出5_tb.ForeColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
- Me.支出5_tb.Location = New System.Drawing.Point(953, 868)
- Me.支出5_tb.Name = "支出5_tb"
- Me.支出5_tb.Size = New System.Drawing.Size(116, 16)
- Me.支出5_tb.TabIndex = 1147
- Me.支出5_tb.Text = "0"
- Me.支出5_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- '
- '月結5_tb
- '
- Me.月結5_tb.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.月結5_tb.BorderStyle = System.Windows.Forms.BorderStyle.None
- Me.月結5_tb.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.月結5_tb.Location = New System.Drawing.Point(953, 908)
- Me.月結5_tb.Name = "月結5_tb"
- Me.月結5_tb.Size = New System.Drawing.Size(116, 16)
- Me.月結5_tb.TabIndex = 1148
- Me.月結5_tb.Text = "0"
- Me.月結5_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- '
- '資本6_tb
- '
- Me.資本6_tb.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.資本6_tb.BorderStyle = System.Windows.Forms.BorderStyle.None
- Me.資本6_tb.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.資本6_tb.ForeColor = System.Drawing.Color.Green
- Me.資本6_tb.Location = New System.Drawing.Point(1071, 788)
- Me.資本6_tb.Name = "資本6_tb"
- Me.資本6_tb.Size = New System.Drawing.Size(116, 16)
- Me.資本6_tb.TabIndex = 1149
- Me.資本6_tb.Text = "0"
- Me.資本6_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- '
- '收入6_tb
- '
- Me.收入6_tb.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.收入6_tb.BorderStyle = System.Windows.Forms.BorderStyle.None
- Me.收入6_tb.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.收入6_tb.ForeColor = System.Drawing.Color.Blue
- Me.收入6_tb.Location = New System.Drawing.Point(1071, 848)
- Me.收入6_tb.Name = "收入6_tb"
- Me.收入6_tb.Size = New System.Drawing.Size(116, 16)
- Me.收入6_tb.TabIndex = 1150
- Me.收入6_tb.Text = "0"
- Me.收入6_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- '
- '支出6_tb
- '
- Me.支出6_tb.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.支出6_tb.BorderStyle = System.Windows.Forms.BorderStyle.None
- Me.支出6_tb.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.支出6_tb.ForeColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
- Me.支出6_tb.Location = New System.Drawing.Point(1071, 868)
- Me.支出6_tb.Name = "支出6_tb"
- Me.支出6_tb.Size = New System.Drawing.Size(116, 16)
- Me.支出6_tb.TabIndex = 1151
- Me.支出6_tb.Text = "0"
- Me.支出6_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- '
- '月結6_tb
- '
- Me.月結6_tb.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.月結6_tb.BorderStyle = System.Windows.Forms.BorderStyle.None
- Me.月結6_tb.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.月結6_tb.Location = New System.Drawing.Point(1071, 908)
- Me.月結6_tb.Name = "月結6_tb"
- Me.月結6_tb.Size = New System.Drawing.Size(116, 16)
- Me.月結6_tb.TabIndex = 1152
- Me.月結6_tb.Text = "0"
- Me.月結6_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- '
- '結存6_tb
- '
- Me.結存6_tb.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.結存6_tb.BorderStyle = System.Windows.Forms.BorderStyle.None
- Me.結存6_tb.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.結存6_tb.Location = New System.Drawing.Point(1071, 828)
- Me.結存6_tb.Name = "結存6_tb"
- Me.結存6_tb.Size = New System.Drawing.Size(116, 16)
- Me.結存6_tb.TabIndex = 1158
- Me.結存6_tb.Text = "0"
- Me.結存6_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- '
- '結存5_tb
- '
- Me.結存5_tb.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.結存5_tb.BorderStyle = System.Windows.Forms.BorderStyle.None
- Me.結存5_tb.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.結存5_tb.Location = New System.Drawing.Point(953, 828)
- Me.結存5_tb.Name = "結存5_tb"
- Me.結存5_tb.Size = New System.Drawing.Size(116, 16)
- Me.結存5_tb.TabIndex = 1157
- Me.結存5_tb.Text = "0"
- Me.結存5_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- '
- '結存4_tb
- '
- Me.結存4_tb.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.結存4_tb.BorderStyle = System.Windows.Forms.BorderStyle.None
- Me.結存4_tb.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.結存4_tb.Location = New System.Drawing.Point(835, 828)
- Me.結存4_tb.Name = "結存4_tb"
- Me.結存4_tb.Size = New System.Drawing.Size(116, 16)
- Me.結存4_tb.TabIndex = 1156
- Me.結存4_tb.Text = "0"
- Me.結存4_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- '
- '結存3_tb
- '
- Me.結存3_tb.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.結存3_tb.BorderStyle = System.Windows.Forms.BorderStyle.None
- Me.結存3_tb.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.結存3_tb.Location = New System.Drawing.Point(717, 828)
- Me.結存3_tb.Name = "結存3_tb"
- Me.結存3_tb.Size = New System.Drawing.Size(116, 16)
- Me.結存3_tb.TabIndex = 1155
- Me.結存3_tb.Text = "0"
- Me.結存3_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- '
- '結存2_tb
- '
- Me.結存2_tb.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.結存2_tb.BorderStyle = System.Windows.Forms.BorderStyle.None
- Me.結存2_tb.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.結存2_tb.Location = New System.Drawing.Point(599, 828)
- Me.結存2_tb.Name = "結存2_tb"
- Me.結存2_tb.Size = New System.Drawing.Size(116, 16)
- Me.結存2_tb.TabIndex = 1154
- Me.結存2_tb.Text = "0"
- Me.結存2_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- '
- '結存1_tb
- '
- Me.結存1_tb.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.結存1_tb.BorderStyle = System.Windows.Forms.BorderStyle.None
- Me.結存1_tb.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.結存1_tb.Location = New System.Drawing.Point(481, 828)
- Me.結存1_tb.Name = "結存1_tb"
- Me.結存1_tb.Size = New System.Drawing.Size(116, 16)
- Me.結存1_tb.TabIndex = 1153
- Me.結存1_tb.Text = "0"
- Me.結存1_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- '
- 'Label18
- '
- Me.Label18.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.Label18.AutoSize = True
- Me.Label18.Location = New System.Drawing.Point(306, 831)
- Me.Label18.Name = "Label18"
- Me.Label18.Size = New System.Drawing.Size(51, 15)
- Me.Label18.TabIndex = 1159
- Me.Label18.Text = "上月結存"
- '
- '結存7_tb
- '
- Me.結存7_tb.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.結存7_tb.BorderStyle = System.Windows.Forms.BorderStyle.None
- Me.結存7_tb.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.結存7_tb.Location = New System.Drawing.Point(1189, 828)
- Me.結存7_tb.Name = "結存7_tb"
- Me.結存7_tb.Size = New System.Drawing.Size(116, 16)
- Me.結存7_tb.TabIndex = 1164
- Me.結存7_tb.Text = "0"
- Me.結存7_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- '
- '月結7_tb
- '
- Me.月結7_tb.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.月結7_tb.BorderStyle = System.Windows.Forms.BorderStyle.None
- Me.月結7_tb.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.月結7_tb.Location = New System.Drawing.Point(1189, 908)
- Me.月結7_tb.Name = "月結7_tb"
- Me.月結7_tb.Size = New System.Drawing.Size(116, 16)
- Me.月結7_tb.TabIndex = 1163
- Me.月結7_tb.Text = "0"
- Me.月結7_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- '
- '支出7_tb
- '
- Me.支出7_tb.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.支出7_tb.BorderStyle = System.Windows.Forms.BorderStyle.None
- Me.支出7_tb.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.支出7_tb.ForeColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
- Me.支出7_tb.Location = New System.Drawing.Point(1189, 868)
- Me.支出7_tb.Name = "支出7_tb"
- Me.支出7_tb.Size = New System.Drawing.Size(116, 16)
- Me.支出7_tb.TabIndex = 1162
- Me.支出7_tb.Text = "0"
- Me.支出7_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- '
- '收入7_tb
- '
- Me.收入7_tb.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.收入7_tb.BorderStyle = System.Windows.Forms.BorderStyle.None
- Me.收入7_tb.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.收入7_tb.ForeColor = System.Drawing.Color.Blue
- Me.收入7_tb.Location = New System.Drawing.Point(1189, 848)
- Me.收入7_tb.Name = "收入7_tb"
- Me.收入7_tb.Size = New System.Drawing.Size(116, 16)
- Me.收入7_tb.TabIndex = 1161
- Me.收入7_tb.Text = "0"
- Me.收入7_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- '
- '資本7_tb
- '
- Me.資本7_tb.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.資本7_tb.BorderStyle = System.Windows.Forms.BorderStyle.None
- Me.資本7_tb.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.資本7_tb.ForeColor = System.Drawing.Color.Green
- Me.資本7_tb.Location = New System.Drawing.Point(1189, 788)
- Me.資本7_tb.Name = "資本7_tb"
- Me.資本7_tb.Size = New System.Drawing.Size(116, 16)
- Me.資本7_tb.TabIndex = 1160
- Me.資本7_tb.Text = "0"
- Me.資本7_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- '
- '結存8_tb
- '
- Me.結存8_tb.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.結存8_tb.BorderStyle = System.Windows.Forms.BorderStyle.None
- Me.結存8_tb.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.結存8_tb.Location = New System.Drawing.Point(1307, 828)
- Me.結存8_tb.Name = "結存8_tb"
- Me.結存8_tb.Size = New System.Drawing.Size(116, 16)
- Me.結存8_tb.TabIndex = 1169
- Me.結存8_tb.Text = "0"
- Me.結存8_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- '
- '月結8_tb
- '
- Me.月結8_tb.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.月結8_tb.BorderStyle = System.Windows.Forms.BorderStyle.None
- Me.月結8_tb.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.月結8_tb.Location = New System.Drawing.Point(1307, 908)
- Me.月結8_tb.Name = "月結8_tb"
- Me.月結8_tb.Size = New System.Drawing.Size(116, 16)
- Me.月結8_tb.TabIndex = 1168
- Me.月結8_tb.Text = "0"
- Me.月結8_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- '
- '支出8_tb
- '
- Me.支出8_tb.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.支出8_tb.BorderStyle = System.Windows.Forms.BorderStyle.None
- Me.支出8_tb.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.支出8_tb.ForeColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
- Me.支出8_tb.Location = New System.Drawing.Point(1307, 868)
- Me.支出8_tb.Name = "支出8_tb"
- Me.支出8_tb.Size = New System.Drawing.Size(116, 16)
- Me.支出8_tb.TabIndex = 1167
- Me.支出8_tb.Text = "0"
- Me.支出8_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- '
- '收入8_tb
- '
- Me.收入8_tb.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.收入8_tb.BorderStyle = System.Windows.Forms.BorderStyle.None
- Me.收入8_tb.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.收入8_tb.ForeColor = System.Drawing.Color.Blue
- Me.收入8_tb.Location = New System.Drawing.Point(1307, 848)
- Me.收入8_tb.Name = "收入8_tb"
- Me.收入8_tb.Size = New System.Drawing.Size(116, 16)
- Me.收入8_tb.TabIndex = 1166
- Me.收入8_tb.Text = "0"
- Me.收入8_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- '
- '資本8_tb
- '
- Me.資本8_tb.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.資本8_tb.BorderStyle = System.Windows.Forms.BorderStyle.None
- Me.資本8_tb.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.資本8_tb.ForeColor = System.Drawing.Color.Green
- Me.資本8_tb.Location = New System.Drawing.Point(1307, 788)
- Me.資本8_tb.Name = "資本8_tb"
- Me.資本8_tb.Size = New System.Drawing.Size(116, 16)
- Me.資本8_tb.TabIndex = 1165
- Me.資本8_tb.Text = "0"
- Me.資本8_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- '
- '結存9_tb
- '
- Me.結存9_tb.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.結存9_tb.BorderStyle = System.Windows.Forms.BorderStyle.None
- Me.結存9_tb.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.結存9_tb.Location = New System.Drawing.Point(1425, 828)
- Me.結存9_tb.Name = "結存9_tb"
- Me.結存9_tb.Size = New System.Drawing.Size(116, 16)
- Me.結存9_tb.TabIndex = 1174
- Me.結存9_tb.Text = "0"
- Me.結存9_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- '
- '月結9_tb
- '
- Me.月結9_tb.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.月結9_tb.BorderStyle = System.Windows.Forms.BorderStyle.None
- Me.月結9_tb.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.月結9_tb.Location = New System.Drawing.Point(1425, 908)
- Me.月結9_tb.Name = "月結9_tb"
- Me.月結9_tb.Size = New System.Drawing.Size(116, 16)
- Me.月結9_tb.TabIndex = 1173
- Me.月結9_tb.Text = "0"
- Me.月結9_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- '
- '支出9_tb
- '
- Me.支出9_tb.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.支出9_tb.BorderStyle = System.Windows.Forms.BorderStyle.None
- Me.支出9_tb.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.支出9_tb.ForeColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
- Me.支出9_tb.Location = New System.Drawing.Point(1425, 868)
- Me.支出9_tb.Name = "支出9_tb"
- Me.支出9_tb.Size = New System.Drawing.Size(116, 16)
- Me.支出9_tb.TabIndex = 1172
- Me.支出9_tb.Text = "0"
- Me.支出9_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- '
- '收入9_tb
- '
- Me.收入9_tb.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.收入9_tb.BorderStyle = System.Windows.Forms.BorderStyle.None
- Me.收入9_tb.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.收入9_tb.ForeColor = System.Drawing.Color.Blue
- Me.收入9_tb.Location = New System.Drawing.Point(1425, 848)
- Me.收入9_tb.Name = "收入9_tb"
- Me.收入9_tb.Size = New System.Drawing.Size(116, 16)
- Me.收入9_tb.TabIndex = 1171
- Me.收入9_tb.Text = "0"
- Me.收入9_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- '
- '資本9_tb
- '
- Me.資本9_tb.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.資本9_tb.BorderStyle = System.Windows.Forms.BorderStyle.None
- Me.資本9_tb.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.資本9_tb.ForeColor = System.Drawing.Color.Green
- Me.資本9_tb.Location = New System.Drawing.Point(1425, 788)
- Me.資本9_tb.Name = "資本9_tb"
- Me.資本9_tb.Size = New System.Drawing.Size(116, 16)
- Me.資本9_tb.TabIndex = 1170
- Me.資本9_tb.Text = "0"
- Me.資本9_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- '
- '結存10_tb
- '
- Me.結存10_tb.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.結存10_tb.BorderStyle = System.Windows.Forms.BorderStyle.None
- Me.結存10_tb.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.結存10_tb.Location = New System.Drawing.Point(1543, 828)
- Me.結存10_tb.Name = "結存10_tb"
- Me.結存10_tb.Size = New System.Drawing.Size(116, 16)
- Me.結存10_tb.TabIndex = 1179
- Me.結存10_tb.Text = "0"
- Me.結存10_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- '
- '月結10_tb
- '
- Me.月結10_tb.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.月結10_tb.BorderStyle = System.Windows.Forms.BorderStyle.None
- Me.月結10_tb.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.月結10_tb.Location = New System.Drawing.Point(1543, 908)
- Me.月結10_tb.Name = "月結10_tb"
- Me.月結10_tb.Size = New System.Drawing.Size(116, 16)
- Me.月結10_tb.TabIndex = 1178
- Me.月結10_tb.Text = "0"
- Me.月結10_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- '
- '支出10_tb
- '
- Me.支出10_tb.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.支出10_tb.BorderStyle = System.Windows.Forms.BorderStyle.None
- Me.支出10_tb.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.支出10_tb.ForeColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
- Me.支出10_tb.Location = New System.Drawing.Point(1543, 868)
- Me.支出10_tb.Name = "支出10_tb"
- Me.支出10_tb.Size = New System.Drawing.Size(116, 16)
- Me.支出10_tb.TabIndex = 1177
- Me.支出10_tb.Text = "0"
- Me.支出10_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- '
- '收入10_tb
- '
- Me.收入10_tb.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.收入10_tb.BorderStyle = System.Windows.Forms.BorderStyle.None
- Me.收入10_tb.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.收入10_tb.ForeColor = System.Drawing.Color.Blue
- Me.收入10_tb.Location = New System.Drawing.Point(1543, 848)
- Me.收入10_tb.Name = "收入10_tb"
- Me.收入10_tb.Size = New System.Drawing.Size(116, 16)
- Me.收入10_tb.TabIndex = 1176
- Me.收入10_tb.Text = "0"
- Me.收入10_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- '
- '資本10_tb
- '
- Me.資本10_tb.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.資本10_tb.BorderStyle = System.Windows.Forms.BorderStyle.None
- Me.資本10_tb.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.資本10_tb.ForeColor = System.Drawing.Color.Green
- Me.資本10_tb.Location = New System.Drawing.Point(1543, 788)
- Me.資本10_tb.Name = "資本10_tb"
- Me.資本10_tb.Size = New System.Drawing.Size(116, 16)
- Me.資本10_tb.TabIndex = 1175
- Me.資本10_tb.Text = "0"
- Me.資本10_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- '
- '結存11_tb
- '
- Me.結存11_tb.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.結存11_tb.BorderStyle = System.Windows.Forms.BorderStyle.None
- Me.結存11_tb.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.結存11_tb.Location = New System.Drawing.Point(1661, 828)
- Me.結存11_tb.Name = "結存11_tb"
- Me.結存11_tb.Size = New System.Drawing.Size(116, 16)
- Me.結存11_tb.TabIndex = 1184
- Me.結存11_tb.Text = "0"
- Me.結存11_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- '
- '月結11_tb
- '
- Me.月結11_tb.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.月結11_tb.BorderStyle = System.Windows.Forms.BorderStyle.None
- Me.月結11_tb.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.月結11_tb.Location = New System.Drawing.Point(1661, 908)
- Me.月結11_tb.Name = "月結11_tb"
- Me.月結11_tb.Size = New System.Drawing.Size(116, 16)
- Me.月結11_tb.TabIndex = 1183
- Me.月結11_tb.Text = "0"
- Me.月結11_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- '
- '支出11_tb
- '
- Me.支出11_tb.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.支出11_tb.BorderStyle = System.Windows.Forms.BorderStyle.None
- Me.支出11_tb.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.支出11_tb.ForeColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
- Me.支出11_tb.Location = New System.Drawing.Point(1661, 868)
- Me.支出11_tb.Name = "支出11_tb"
- Me.支出11_tb.Size = New System.Drawing.Size(116, 16)
- Me.支出11_tb.TabIndex = 1182
- Me.支出11_tb.Text = "0"
- Me.支出11_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- '
- '收入11_tb
- '
- Me.收入11_tb.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.收入11_tb.BorderStyle = System.Windows.Forms.BorderStyle.None
- Me.收入11_tb.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.收入11_tb.ForeColor = System.Drawing.Color.Blue
- Me.收入11_tb.Location = New System.Drawing.Point(1661, 848)
- Me.收入11_tb.Name = "收入11_tb"
- Me.收入11_tb.Size = New System.Drawing.Size(116, 16)
- Me.收入11_tb.TabIndex = 1181
- Me.收入11_tb.Text = "0"
- Me.收入11_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- '
- '資本11_tb
- '
- Me.資本11_tb.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.資本11_tb.BorderStyle = System.Windows.Forms.BorderStyle.None
- Me.資本11_tb.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.資本11_tb.ForeColor = System.Drawing.Color.Green
- Me.資本11_tb.Location = New System.Drawing.Point(1661, 788)
- Me.資本11_tb.Name = "資本11_tb"
- Me.資本11_tb.Size = New System.Drawing.Size(116, 16)
- Me.資本11_tb.TabIndex = 1180
- Me.資本11_tb.Text = "0"
- Me.資本11_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- '
- '結存12_tb
- '
- Me.結存12_tb.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.結存12_tb.BorderStyle = System.Windows.Forms.BorderStyle.None
- Me.結存12_tb.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.結存12_tb.Location = New System.Drawing.Point(1779, 828)
- Me.結存12_tb.Name = "結存12_tb"
- Me.結存12_tb.Size = New System.Drawing.Size(116, 16)
- Me.結存12_tb.TabIndex = 1189
- Me.結存12_tb.Text = "0"
- Me.結存12_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- '
- '月結12_tb
- '
- Me.月結12_tb.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.月結12_tb.BorderStyle = System.Windows.Forms.BorderStyle.None
- Me.月結12_tb.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.月結12_tb.Location = New System.Drawing.Point(1779, 908)
- Me.月結12_tb.Name = "月結12_tb"
- Me.月結12_tb.Size = New System.Drawing.Size(116, 16)
- Me.月結12_tb.TabIndex = 1188
- Me.月結12_tb.Text = "0"
- Me.月結12_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- '
- '支出12_tb
- '
- Me.支出12_tb.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.支出12_tb.BorderStyle = System.Windows.Forms.BorderStyle.None
- Me.支出12_tb.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.支出12_tb.ForeColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
- Me.支出12_tb.Location = New System.Drawing.Point(1779, 868)
- Me.支出12_tb.Name = "支出12_tb"
- Me.支出12_tb.Size = New System.Drawing.Size(116, 16)
- Me.支出12_tb.TabIndex = 1187
- Me.支出12_tb.Text = "0"
- Me.支出12_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- '
- '收入12_tb
- '
- Me.收入12_tb.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.收入12_tb.BorderStyle = System.Windows.Forms.BorderStyle.None
- Me.收入12_tb.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.收入12_tb.ForeColor = System.Drawing.Color.Blue
- Me.收入12_tb.Location = New System.Drawing.Point(1779, 848)
- Me.收入12_tb.Name = "收入12_tb"
- Me.收入12_tb.Size = New System.Drawing.Size(116, 16)
- Me.收入12_tb.TabIndex = 1186
- Me.收入12_tb.Text = "0"
- Me.收入12_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- '
- '資本12_tb
- '
- Me.資本12_tb.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.資本12_tb.BorderStyle = System.Windows.Forms.BorderStyle.None
- Me.資本12_tb.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.資本12_tb.ForeColor = System.Drawing.Color.Green
- Me.資本12_tb.Location = New System.Drawing.Point(1779, 788)
- Me.資本12_tb.Name = "資本12_tb"
- Me.資本12_tb.Size = New System.Drawing.Size(116, 16)
- Me.資本12_tb.TabIndex = 1185
- Me.資本12_tb.Text = "0"
- Me.資本12_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- '
- 'Button2
- '
- Me.Button2.ForeColor = System.Drawing.Color.Blue
- Me.Button2.Location = New System.Drawing.Point(267, 3)
- Me.Button2.Name = "Button2"
- Me.Button2.Size = New System.Drawing.Size(113, 23)
- Me.Button2.TabIndex = 1190
- Me.Button2.Text = "全部資料合併計算"
- Me.Button2.UseVisualStyleBackColor = True
- '
- '總資本_tb
- '
- Me.總資本_tb.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.總資本_tb.BorderStyle = System.Windows.Forms.BorderStyle.None
- Me.總資本_tb.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.總資本_tb.ForeColor = System.Drawing.Color.Green
- Me.總資本_tb.Location = New System.Drawing.Point(359, 788)
- Me.總資本_tb.Name = "總資本_tb"
- Me.總資本_tb.Size = New System.Drawing.Size(116, 16)
- Me.總資本_tb.TabIndex = 1191
- Me.總資本_tb.Text = "0"
- Me.總資本_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- '
- '總收入_tb
- '
- Me.總收入_tb.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.總收入_tb.BorderStyle = System.Windows.Forms.BorderStyle.None
- Me.總收入_tb.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.總收入_tb.ForeColor = System.Drawing.Color.Blue
- Me.總收入_tb.Location = New System.Drawing.Point(359, 848)
- Me.總收入_tb.Name = "總收入_tb"
- Me.總收入_tb.Size = New System.Drawing.Size(116, 16)
- Me.總收入_tb.TabIndex = 1192
- Me.總收入_tb.Text = "0"
- Me.總收入_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- '
- '總支出_tb
- '
- Me.總支出_tb.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.總支出_tb.BorderStyle = System.Windows.Forms.BorderStyle.None
- Me.總支出_tb.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.總支出_tb.ForeColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
- Me.總支出_tb.Location = New System.Drawing.Point(359, 868)
- Me.總支出_tb.Name = "總支出_tb"
- Me.總支出_tb.Size = New System.Drawing.Size(116, 16)
- Me.總支出_tb.TabIndex = 1193
- Me.總支出_tb.Text = "0"
- Me.總支出_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- '
- '總損益_tb
- '
- Me.總損益_tb.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.總損益_tb.BorderStyle = System.Windows.Forms.BorderStyle.None
- Me.總損益_tb.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.總損益_tb.Location = New System.Drawing.Point(359, 888)
- Me.總損益_tb.Name = "總損益_tb"
- Me.總損益_tb.Size = New System.Drawing.Size(116, 16)
- Me.總損益_tb.TabIndex = 1206
- Me.總損益_tb.Text = "0"
- Me.總損益_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- '
- '損益_tb12
- '
- Me.損益_tb12.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.損益_tb12.BorderStyle = System.Windows.Forms.BorderStyle.None
- Me.損益_tb12.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.損益_tb12.Location = New System.Drawing.Point(1779, 888)
- Me.損益_tb12.Name = "損益_tb12"
- Me.損益_tb12.Size = New System.Drawing.Size(116, 16)
- Me.損益_tb12.TabIndex = 1205
- Me.損益_tb12.Text = "0"
- Me.損益_tb12.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- '
- '損益_tb11
- '
- Me.損益_tb11.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.損益_tb11.BorderStyle = System.Windows.Forms.BorderStyle.None
- Me.損益_tb11.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.損益_tb11.Location = New System.Drawing.Point(1661, 888)
- Me.損益_tb11.Name = "損益_tb11"
- Me.損益_tb11.Size = New System.Drawing.Size(116, 16)
- Me.損益_tb11.TabIndex = 1204
- Me.損益_tb11.Text = "0"
- Me.損益_tb11.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- '
- '損益_tb10
- '
- Me.損益_tb10.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.損益_tb10.BorderStyle = System.Windows.Forms.BorderStyle.None
- Me.損益_tb10.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.損益_tb10.Location = New System.Drawing.Point(1543, 888)
- Me.損益_tb10.Name = "損益_tb10"
- Me.損益_tb10.Size = New System.Drawing.Size(116, 16)
- Me.損益_tb10.TabIndex = 1203
- Me.損益_tb10.Text = "0"
- Me.損益_tb10.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- '
- '損益_tb9
- '
- Me.損益_tb9.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.損益_tb9.BorderStyle = System.Windows.Forms.BorderStyle.None
- Me.損益_tb9.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.損益_tb9.Location = New System.Drawing.Point(1425, 888)
- Me.損益_tb9.Name = "損益_tb9"
- Me.損益_tb9.Size = New System.Drawing.Size(116, 16)
- Me.損益_tb9.TabIndex = 1202
- Me.損益_tb9.Text = "0"
- Me.損益_tb9.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- '
- '損益_tb8
- '
- Me.損益_tb8.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.損益_tb8.BorderStyle = System.Windows.Forms.BorderStyle.None
- Me.損益_tb8.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.損益_tb8.Location = New System.Drawing.Point(1307, 888)
- Me.損益_tb8.Name = "損益_tb8"
- Me.損益_tb8.Size = New System.Drawing.Size(116, 16)
- Me.損益_tb8.TabIndex = 1201
- Me.損益_tb8.Text = "0"
- Me.損益_tb8.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- '
- '損益_tb7
- '
- Me.損益_tb7.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.損益_tb7.BorderStyle = System.Windows.Forms.BorderStyle.None
- Me.損益_tb7.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.損益_tb7.Location = New System.Drawing.Point(1189, 888)
- Me.損益_tb7.Name = "損益_tb7"
- Me.損益_tb7.Size = New System.Drawing.Size(116, 16)
- Me.損益_tb7.TabIndex = 1200
- Me.損益_tb7.Text = "0"
- Me.損益_tb7.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- '
- '損益_tb6
- '
- Me.損益_tb6.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.損益_tb6.BorderStyle = System.Windows.Forms.BorderStyle.None
- Me.損益_tb6.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.損益_tb6.Location = New System.Drawing.Point(1071, 888)
- Me.損益_tb6.Name = "損益_tb6"
- Me.損益_tb6.Size = New System.Drawing.Size(116, 16)
- Me.損益_tb6.TabIndex = 1199
- Me.損益_tb6.Text = "0"
- Me.損益_tb6.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- '
- '損益_tb5
- '
- Me.損益_tb5.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.損益_tb5.BorderStyle = System.Windows.Forms.BorderStyle.None
- Me.損益_tb5.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.損益_tb5.Location = New System.Drawing.Point(953, 888)
- Me.損益_tb5.Name = "損益_tb5"
- Me.損益_tb5.Size = New System.Drawing.Size(116, 16)
- Me.損益_tb5.TabIndex = 1198
- Me.損益_tb5.Text = "0"
- Me.損益_tb5.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- '
- '損益_tb4
- '
- Me.損益_tb4.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.損益_tb4.BorderStyle = System.Windows.Forms.BorderStyle.None
- Me.損益_tb4.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.損益_tb4.Location = New System.Drawing.Point(835, 888)
- Me.損益_tb4.Name = "損益_tb4"
- Me.損益_tb4.Size = New System.Drawing.Size(116, 16)
- Me.損益_tb4.TabIndex = 1197
- Me.損益_tb4.Text = "0"
- Me.損益_tb4.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- '
- '損益_tb3
- '
- Me.損益_tb3.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.損益_tb3.BorderStyle = System.Windows.Forms.BorderStyle.None
- Me.損益_tb3.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.損益_tb3.Location = New System.Drawing.Point(717, 888)
- Me.損益_tb3.Name = "損益_tb3"
- Me.損益_tb3.Size = New System.Drawing.Size(116, 16)
- Me.損益_tb3.TabIndex = 1196
- Me.損益_tb3.Text = "0"
- Me.損益_tb3.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- '
- '損益_tb2
- '
- Me.損益_tb2.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.損益_tb2.BorderStyle = System.Windows.Forms.BorderStyle.None
- Me.損益_tb2.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.損益_tb2.Location = New System.Drawing.Point(599, 888)
- Me.損益_tb2.Name = "損益_tb2"
- Me.損益_tb2.Size = New System.Drawing.Size(116, 16)
- Me.損益_tb2.TabIndex = 1195
- Me.損益_tb2.Text = "0"
- Me.損益_tb2.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- '
- '損益_tb1
- '
- Me.損益_tb1.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.損益_tb1.BorderStyle = System.Windows.Forms.BorderStyle.None
- Me.損益_tb1.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.損益_tb1.Location = New System.Drawing.Point(481, 888)
- Me.損益_tb1.Name = "損益_tb1"
- Me.損益_tb1.Size = New System.Drawing.Size(116, 16)
- Me.損益_tb1.TabIndex = 1194
- Me.損益_tb1.Text = "0"
- Me.損益_tb1.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- '
- 'Label19
- '
- Me.Label19.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.Label19.AutoSize = True
- Me.Label19.Location = New System.Drawing.Point(306, 889)
- Me.Label19.Name = "Label19"
- Me.Label19.Size = New System.Drawing.Size(50, 15)
- Me.Label19.TabIndex = 1207
- Me.Label19.Text = "損 益"
- '
- '匯差12_tb
- '
- Me.匯差12_tb.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.匯差12_tb.BorderStyle = System.Windows.Forms.BorderStyle.None
- Me.匯差12_tb.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.匯差12_tb.Location = New System.Drawing.Point(1779, 808)
- Me.匯差12_tb.Name = "匯差12_tb"
- Me.匯差12_tb.Size = New System.Drawing.Size(116, 16)
- Me.匯差12_tb.TabIndex = 1220
- Me.匯差12_tb.Text = "0"
- Me.匯差12_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- '
- '匯差11_tb
- '
- Me.匯差11_tb.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.匯差11_tb.BorderStyle = System.Windows.Forms.BorderStyle.None
- Me.匯差11_tb.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.匯差11_tb.Location = New System.Drawing.Point(1661, 808)
- Me.匯差11_tb.Name = "匯差11_tb"
- Me.匯差11_tb.Size = New System.Drawing.Size(116, 16)
- Me.匯差11_tb.TabIndex = 1219
- Me.匯差11_tb.Text = "0"
- Me.匯差11_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- '
- '匯差10_tb
- '
- Me.匯差10_tb.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.匯差10_tb.BorderStyle = System.Windows.Forms.BorderStyle.None
- Me.匯差10_tb.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.匯差10_tb.Location = New System.Drawing.Point(1543, 808)
- Me.匯差10_tb.Name = "匯差10_tb"
- Me.匯差10_tb.Size = New System.Drawing.Size(116, 16)
- Me.匯差10_tb.TabIndex = 1218
- Me.匯差10_tb.Text = "0"
- Me.匯差10_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- '
- '匯差9_tb
- '
- Me.匯差9_tb.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.匯差9_tb.BorderStyle = System.Windows.Forms.BorderStyle.None
- Me.匯差9_tb.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.匯差9_tb.Location = New System.Drawing.Point(1425, 808)
- Me.匯差9_tb.Name = "匯差9_tb"
- Me.匯差9_tb.Size = New System.Drawing.Size(116, 16)
- Me.匯差9_tb.TabIndex = 1217
- Me.匯差9_tb.Text = "0"
- Me.匯差9_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- '
- '匯差8_tb
- '
- Me.匯差8_tb.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.匯差8_tb.BorderStyle = System.Windows.Forms.BorderStyle.None
- Me.匯差8_tb.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.匯差8_tb.Location = New System.Drawing.Point(1307, 808)
- Me.匯差8_tb.Name = "匯差8_tb"
- Me.匯差8_tb.Size = New System.Drawing.Size(116, 16)
- Me.匯差8_tb.TabIndex = 1216
- Me.匯差8_tb.Text = "0"
- Me.匯差8_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- '
- '匯差7_tb
- '
- Me.匯差7_tb.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.匯差7_tb.BorderStyle = System.Windows.Forms.BorderStyle.None
- Me.匯差7_tb.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.匯差7_tb.Location = New System.Drawing.Point(1189, 808)
- Me.匯差7_tb.Name = "匯差7_tb"
- Me.匯差7_tb.Size = New System.Drawing.Size(116, 16)
- Me.匯差7_tb.TabIndex = 1215
- Me.匯差7_tb.Text = "0"
- Me.匯差7_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- '
- '匯差6_tb
- '
- Me.匯差6_tb.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.匯差6_tb.BorderStyle = System.Windows.Forms.BorderStyle.None
- Me.匯差6_tb.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.匯差6_tb.Location = New System.Drawing.Point(1071, 808)
- Me.匯差6_tb.Name = "匯差6_tb"
- Me.匯差6_tb.Size = New System.Drawing.Size(116, 16)
- Me.匯差6_tb.TabIndex = 1214
- Me.匯差6_tb.Text = "0"
- Me.匯差6_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- '
- '匯差5_tb
- '
- Me.匯差5_tb.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.匯差5_tb.BorderStyle = System.Windows.Forms.BorderStyle.None
- Me.匯差5_tb.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.匯差5_tb.Location = New System.Drawing.Point(953, 808)
- Me.匯差5_tb.Name = "匯差5_tb"
- Me.匯差5_tb.Size = New System.Drawing.Size(116, 16)
- Me.匯差5_tb.TabIndex = 1213
- Me.匯差5_tb.Text = "0"
- Me.匯差5_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- '
- '匯差4_tb
- '
- Me.匯差4_tb.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.匯差4_tb.BorderStyle = System.Windows.Forms.BorderStyle.None
- Me.匯差4_tb.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.匯差4_tb.Location = New System.Drawing.Point(835, 808)
- Me.匯差4_tb.Name = "匯差4_tb"
- Me.匯差4_tb.Size = New System.Drawing.Size(116, 16)
- Me.匯差4_tb.TabIndex = 1212
- Me.匯差4_tb.Text = "0"
- Me.匯差4_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- '
- '匯差3_tb
- '
- Me.匯差3_tb.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.匯差3_tb.BorderStyle = System.Windows.Forms.BorderStyle.None
- Me.匯差3_tb.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.匯差3_tb.Location = New System.Drawing.Point(717, 808)
- Me.匯差3_tb.Name = "匯差3_tb"
- Me.匯差3_tb.Size = New System.Drawing.Size(116, 16)
- Me.匯差3_tb.TabIndex = 1211
- Me.匯差3_tb.Text = "0"
- Me.匯差3_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- '
- '匯差2_tb
- '
- Me.匯差2_tb.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.匯差2_tb.BorderStyle = System.Windows.Forms.BorderStyle.None
- Me.匯差2_tb.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.匯差2_tb.Location = New System.Drawing.Point(599, 808)
- Me.匯差2_tb.Name = "匯差2_tb"
- Me.匯差2_tb.Size = New System.Drawing.Size(116, 16)
- Me.匯差2_tb.TabIndex = 1210
- Me.匯差2_tb.Text = "0"
- Me.匯差2_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- '
- '匯差1_tb
- '
- Me.匯差1_tb.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.匯差1_tb.BorderStyle = System.Windows.Forms.BorderStyle.None
- Me.匯差1_tb.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.匯差1_tb.Location = New System.Drawing.Point(481, 808)
- Me.匯差1_tb.Name = "匯差1_tb"
- Me.匯差1_tb.Size = New System.Drawing.Size(116, 16)
- Me.匯差1_tb.TabIndex = 1209
- Me.匯差1_tb.Text = "0"
- Me.匯差1_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- '
- 'Label20
- '
- Me.Label20.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.Label20.AutoSize = True
- Me.Label20.Location = New System.Drawing.Point(306, 809)
- Me.Label20.Name = "Label20"
- Me.Label20.Size = New System.Drawing.Size(29, 15)
- Me.Label20.TabIndex = 1208
- Me.Label20.Text = "匯差"
- '
- '彙總資料存檔_bt
- '
- Me.彙總資料存檔_bt.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.彙總資料存檔_bt.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.彙總資料存檔_bt.ForeColor = System.Drawing.Color.Blue
- Me.彙總資料存檔_bt.Location = New System.Drawing.Point(233, 869)
- Me.彙總資料存檔_bt.Name = "彙總資料存檔_bt"
- Me.彙總資料存檔_bt.Size = New System.Drawing.Size(66, 51)
- Me.彙總資料存檔_bt.TabIndex = 1221
- Me.彙總資料存檔_bt.Text = "彙總資料存檔" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10)
- Me.彙總資料存檔_bt.UseVisualStyleBackColor = True
- '
- '非稅_ch
- '
- Me.非稅_ch.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.非稅_ch.AutoSize = True
- Me.非稅_ch.Location = New System.Drawing.Point(233, 844)
- Me.非稅_ch.Name = "非稅_ch"
- Me.非稅_ch.Size = New System.Drawing.Size(48, 19)
- Me.非稅_ch.TabIndex = 1505
- Me.非稅_ch.Text = "非稅"
- Me.非稅_ch.UseVisualStyleBackColor = True
- '
- '含稅_ch
- '
- Me.含稅_ch.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.含稅_ch.AutoSize = True
- Me.含稅_ch.Location = New System.Drawing.Point(233, 819)
- Me.含稅_ch.Name = "含稅_ch"
- Me.含稅_ch.Size = New System.Drawing.Size(48, 19)
- Me.含稅_ch.TabIndex = 1504
- Me.含稅_ch.Text = "含稅"
- Me.含稅_ch.UseVisualStyleBackColor = True
- '
- '全部_ch
- '
- Me.全部_ch.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.全部_ch.AutoSize = True
- Me.全部_ch.Checked = True
- Me.全部_ch.CheckState = System.Windows.Forms.CheckState.Checked
- Me.全部_ch.Location = New System.Drawing.Point(233, 794)
- Me.全部_ch.Name = "全部_ch"
- Me.全部_ch.Size = New System.Drawing.Size(48, 19)
- Me.全部_ch.TabIndex = 1503
- Me.全部_ch.Text = "全部"
- Me.全部_ch.UseVisualStyleBackColor = True
- '
- 'PictureBox1
- '
- Me.PictureBox1.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.PictureBox1.BackgroundImage = Global.工巧明智能管理系統.My.Resources.Resources._1980X1010
- Me.PictureBox1.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch
- Me.PictureBox1.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D
- Me.PictureBox1.Location = New System.Drawing.Point(6, 788)
- Me.PictureBox1.Name = "PictureBox1"
- Me.PictureBox1.Size = New System.Drawing.Size(221, 136)
- Me.PictureBox1.TabIndex = 1502
- Me.PictureBox1.TabStop = False
- '
- '財務_決算表_GCM
- '
- Me.AutoScaleDimensions = New System.Drawing.SizeF(7.0!, 15.0!)
- Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font
- Me.ClientSize = New System.Drawing.Size(1900, 929)
- Me.Controls.Add(Me.資本1_tb)
- Me.Controls.Add(Me.非稅_ch)
- Me.Controls.Add(Me.含稅_ch)
- Me.Controls.Add(Me.全部_ch)
- Me.Controls.Add(Me.PictureBox1)
- Me.Controls.Add(Me.彙總資料存檔_bt)
- Me.Controls.Add(Me.匯差12_tb)
- Me.Controls.Add(Me.匯差11_tb)
- Me.Controls.Add(Me.匯差10_tb)
- Me.Controls.Add(Me.匯差9_tb)
- Me.Controls.Add(Me.匯差8_tb)
- Me.Controls.Add(Me.匯差7_tb)
- Me.Controls.Add(Me.匯差6_tb)
- Me.Controls.Add(Me.匯差5_tb)
- Me.Controls.Add(Me.匯差4_tb)
- Me.Controls.Add(Me.匯差3_tb)
- Me.Controls.Add(Me.匯差2_tb)
- Me.Controls.Add(Me.匯差1_tb)
- Me.Controls.Add(Me.Label20)
- Me.Controls.Add(Me.Label19)
- Me.Controls.Add(Me.總損益_tb)
- Me.Controls.Add(Me.損益_tb12)
- Me.Controls.Add(Me.損益_tb11)
- Me.Controls.Add(Me.損益_tb10)
- Me.Controls.Add(Me.損益_tb9)
- Me.Controls.Add(Me.損益_tb8)
- Me.Controls.Add(Me.損益_tb7)
- Me.Controls.Add(Me.損益_tb6)
- Me.Controls.Add(Me.損益_tb5)
- Me.Controls.Add(Me.損益_tb4)
- Me.Controls.Add(Me.損益_tb3)
- Me.Controls.Add(Me.損益_tb2)
- Me.Controls.Add(Me.損益_tb1)
- Me.Controls.Add(Me.總支出_tb)
- Me.Controls.Add(Me.總收入_tb)
- Me.Controls.Add(Me.總資本_tb)
- Me.Controls.Add(Me.Button2)
- Me.Controls.Add(Me.結存12_tb)
- Me.Controls.Add(Me.月結12_tb)
- Me.Controls.Add(Me.支出12_tb)
- Me.Controls.Add(Me.收入12_tb)
- Me.Controls.Add(Me.資本12_tb)
- Me.Controls.Add(Me.結存11_tb)
- Me.Controls.Add(Me.月結11_tb)
- Me.Controls.Add(Me.支出11_tb)
- Me.Controls.Add(Me.收入11_tb)
- Me.Controls.Add(Me.資本11_tb)
- Me.Controls.Add(Me.結存10_tb)
- Me.Controls.Add(Me.月結10_tb)
- Me.Controls.Add(Me.支出10_tb)
- Me.Controls.Add(Me.收入10_tb)
- Me.Controls.Add(Me.資本10_tb)
- Me.Controls.Add(Me.結存9_tb)
- Me.Controls.Add(Me.月結9_tb)
- Me.Controls.Add(Me.支出9_tb)
- Me.Controls.Add(Me.收入9_tb)
- Me.Controls.Add(Me.資本9_tb)
- Me.Controls.Add(Me.結存8_tb)
- Me.Controls.Add(Me.月結8_tb)
- Me.Controls.Add(Me.支出8_tb)
- Me.Controls.Add(Me.收入8_tb)
- Me.Controls.Add(Me.資本8_tb)
- Me.Controls.Add(Me.結存7_tb)
- Me.Controls.Add(Me.月結7_tb)
- Me.Controls.Add(Me.支出7_tb)
- Me.Controls.Add(Me.收入7_tb)
- Me.Controls.Add(Me.資本7_tb)
- Me.Controls.Add(Me.Label18)
- Me.Controls.Add(Me.結存6_tb)
- Me.Controls.Add(Me.結存5_tb)
- Me.Controls.Add(Me.結存4_tb)
- Me.Controls.Add(Me.結存3_tb)
- Me.Controls.Add(Me.結存2_tb)
- Me.Controls.Add(Me.結存1_tb)
- Me.Controls.Add(Me.月結6_tb)
- Me.Controls.Add(Me.支出6_tb)
- Me.Controls.Add(Me.收入6_tb)
- Me.Controls.Add(Me.資本6_tb)
- Me.Controls.Add(Me.月結5_tb)
- Me.Controls.Add(Me.支出5_tb)
- Me.Controls.Add(Me.收入5_tb)
- Me.Controls.Add(Me.資本5_tb)
- Me.Controls.Add(Me.月結4_tb)
- Me.Controls.Add(Me.支出4_tb)
- Me.Controls.Add(Me.收入4_tb)
- Me.Controls.Add(Me.資本4_tb)
- Me.Controls.Add(Me.月結3_tb)
- Me.Controls.Add(Me.支出3_tb)
- Me.Controls.Add(Me.收入3_tb)
- Me.Controls.Add(Me.資本3_tb)
- Me.Controls.Add(Me.月結2_tb)
- Me.Controls.Add(Me.支出2_tb)
- Me.Controls.Add(Me.收入2_tb)
- Me.Controls.Add(Me.資本2_tb)
- Me.Controls.Add(Me.月結1_tb)
- Me.Controls.Add(Me.Label17)
- Me.Controls.Add(Me.支出1_tb)
- Me.Controls.Add(Me.Label16)
- Me.Controls.Add(Me.收入1_tb)
- Me.Controls.Add(Me.Label15)
- Me.Controls.Add(Me.Label14)
- Me.Controls.Add(Me.重新整理_bt)
- Me.Controls.Add(Me.Label13)
- Me.Controls.Add(Me.Label12)
- Me.Controls.Add(Me.Label11)
- Me.Controls.Add(Me.Label10)
- Me.Controls.Add(Me.Label9)
- Me.Controls.Add(Me.Label8)
- Me.Controls.Add(Me.Label7)
- Me.Controls.Add(Me.Label6)
- Me.Controls.Add(Me.Label5)
- Me.Controls.Add(Me.Label4)
- Me.Controls.Add(Me.Label3)
- Me.Controls.Add(Me.Label2)
- 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.Label1)
- Me.Controls.Add(Me.主表_dgv)
- Me.Font = New System.Drawing.Font("微軟正黑體", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4)
- Me.Name = "財務_決算表_GCM"
- Me.Text = "財務_決算表_GCM"
- CType(Me.主表_dgv, System.ComponentModel.ISupportInitialize).EndInit()
- CType(Me.月1_dgv, System.ComponentModel.ISupportInitialize).EndInit()
- CType(Me.月2_dgv, System.ComponentModel.ISupportInitialize).EndInit()
- CType(Me.月3_dgv, System.ComponentModel.ISupportInitialize).EndInit()
- CType(Me.月4_dgv, System.ComponentModel.ISupportInitialize).EndInit()
- CType(Me.月5_dgv, System.ComponentModel.ISupportInitialize).EndInit()
- CType(Me.月6_dgv, System.ComponentModel.ISupportInitialize).EndInit()
- CType(Me.月7_dgv, System.ComponentModel.ISupportInitialize).EndInit()
- CType(Me.月8_dgv, System.ComponentModel.ISupportInitialize).EndInit()
- CType(Me.月9_dgv, System.ComponentModel.ISupportInitialize).EndInit()
- CType(Me.月10_dgv, System.ComponentModel.ISupportInitialize).EndInit()
- CType(Me.月11_dgv, System.ComponentModel.ISupportInitialize).EndInit()
- CType(Me.月12_dgv, System.ComponentModel.ISupportInitialize).EndInit()
- CType(Me.PictureBox1, System.ComponentModel.ISupportInitialize).EndInit()
- Me.ResumeLayout(False)
- Me.PerformLayout()
-
- End Sub
-
- Friend WithEvents Label1 As Label
- Friend WithEvents 主表_dgv As DataGridView
- Friend WithEvents 年份_cb As ComboBox
- Friend WithEvents 月1_dgv As DataGridView
- Friend WithEvents 月2_dgv As DataGridView
- Friend WithEvents 月3_dgv As DataGridView
- Friend WithEvents 月4_dgv As DataGridView
- Friend WithEvents 月5_dgv As DataGridView
- Friend WithEvents 月6_dgv As DataGridView
- Friend WithEvents 月7_dgv As DataGridView
- Friend WithEvents 月8_dgv As DataGridView
- Friend WithEvents 月9_dgv As DataGridView
- Friend WithEvents 月10_dgv As DataGridView
- Friend WithEvents 月11_dgv As DataGridView
- Friend WithEvents 月12_dgv As DataGridView
- Friend WithEvents Label2 As Label
- Friend WithEvents Label3 As Label
- Friend WithEvents Label4 As Label
- Friend WithEvents Label5 As Label
- Friend WithEvents Label6 As Label
- Friend WithEvents Label7 As Label
- Friend WithEvents Label8 As Label
- Friend WithEvents Label9 As Label
- Friend WithEvents Label10 As Label
- Friend WithEvents Label11 As Label
- Friend WithEvents Label12 As Label
- Friend WithEvents Label13 As Label
- Friend WithEvents 重新整理_bt As Button
- Friend WithEvents Label14 As Label
- Friend WithEvents 資本1_tb As TextBox
- Friend WithEvents 收入1_tb As TextBox
- Friend WithEvents Label15 As Label
- Friend WithEvents 支出1_tb As TextBox
- Friend WithEvents Label16 As Label
- Friend WithEvents 月結1_tb As TextBox
- Friend WithEvents Label17 As Label
- Friend WithEvents 資本2_tb As TextBox
- Friend WithEvents 收入2_tb As TextBox
- Friend WithEvents 支出2_tb As TextBox
- Friend WithEvents 月結2_tb As TextBox
- Friend WithEvents 資本3_tb As TextBox
- Friend WithEvents 收入3_tb As TextBox
- Friend WithEvents 支出3_tb As TextBox
- Friend WithEvents 月結3_tb As TextBox
- Friend WithEvents 資本4_tb As TextBox
- Friend WithEvents 收入4_tb As TextBox
- Friend WithEvents 支出4_tb As TextBox
- Friend WithEvents 月結4_tb As TextBox
- Friend WithEvents 資本5_tb As TextBox
- Friend WithEvents 收入5_tb As TextBox
- Friend WithEvents 支出5_tb As TextBox
- Friend WithEvents 月結5_tb As TextBox
- Friend WithEvents 資本6_tb As TextBox
- Friend WithEvents 收入6_tb As TextBox
- Friend WithEvents 支出6_tb As TextBox
- Friend WithEvents 月結6_tb As TextBox
- Friend WithEvents 結存6_tb As TextBox
- Friend WithEvents 結存5_tb As TextBox
- Friend WithEvents 結存4_tb As TextBox
- Friend WithEvents 結存3_tb As TextBox
- Friend WithEvents 結存2_tb As TextBox
- Friend WithEvents 結存1_tb As TextBox
- Friend WithEvents Label18 As Label
- Friend WithEvents 結存7_tb As TextBox
- Friend WithEvents 月結7_tb As TextBox
- Friend WithEvents 支出7_tb As TextBox
- Friend WithEvents 收入7_tb As TextBox
- Friend WithEvents 資本7_tb As TextBox
- Friend WithEvents 結存8_tb As TextBox
- Friend WithEvents 月結8_tb As TextBox
- Friend WithEvents 支出8_tb As TextBox
- Friend WithEvents 收入8_tb As TextBox
- Friend WithEvents 資本8_tb As TextBox
- Friend WithEvents 結存9_tb As TextBox
- Friend WithEvents 月結9_tb As TextBox
- Friend WithEvents 支出9_tb As TextBox
- Friend WithEvents 收入9_tb As TextBox
- Friend WithEvents 資本9_tb As TextBox
- Friend WithEvents 結存10_tb As TextBox
- Friend WithEvents 月結10_tb As TextBox
- Friend WithEvents 支出10_tb As TextBox
- Friend WithEvents 收入10_tb As TextBox
- Friend WithEvents 資本10_tb As TextBox
- Friend WithEvents 結存11_tb As TextBox
- Friend WithEvents 月結11_tb As TextBox
- Friend WithEvents 支出11_tb As TextBox
- Friend WithEvents 收入11_tb As TextBox
- Friend WithEvents 資本11_tb As TextBox
- Friend WithEvents 結存12_tb As TextBox
- Friend WithEvents 月結12_tb As TextBox
- Friend WithEvents 支出12_tb As TextBox
- Friend WithEvents 收入12_tb As TextBox
- Friend WithEvents 資本12_tb As TextBox
- Friend WithEvents Button2 As Button
- Friend WithEvents 總資本_tb As TextBox
- Friend WithEvents 總收入_tb As TextBox
- Friend WithEvents 總支出_tb As TextBox
- Friend WithEvents 總損益_tb As TextBox
- Friend WithEvents 損益_tb12 As TextBox
- Friend WithEvents 損益_tb11 As TextBox
- Friend WithEvents 損益_tb10 As TextBox
- Friend WithEvents 損益_tb9 As TextBox
- Friend WithEvents 損益_tb8 As TextBox
- Friend WithEvents 損益_tb7 As TextBox
- Friend WithEvents 損益_tb6 As TextBox
- Friend WithEvents 損益_tb5 As TextBox
- Friend WithEvents 損益_tb4 As TextBox
- Friend WithEvents 損益_tb3 As TextBox
- Friend WithEvents 損益_tb2 As TextBox
- Friend WithEvents 損益_tb1 As TextBox
- Friend WithEvents Label19 As Label
- Friend WithEvents 匯差12_tb As TextBox
- Friend WithEvents 匯差11_tb As TextBox
- Friend WithEvents 匯差10_tb As TextBox
- Friend WithEvents 匯差9_tb As TextBox
- Friend WithEvents 匯差8_tb As TextBox
- Friend WithEvents 匯差7_tb As TextBox
- Friend WithEvents 匯差6_tb As TextBox
- Friend WithEvents 匯差5_tb As TextBox
- Friend WithEvents 匯差4_tb As TextBox
- Friend WithEvents 匯差3_tb As TextBox
- Friend WithEvents 匯差2_tb As TextBox
- Friend WithEvents 匯差1_tb As TextBox
- Friend WithEvents Label20 As Label
- Friend WithEvents 彙總資料存檔_bt As Button
- Friend WithEvents PictureBox1 As PictureBox
- Friend WithEvents 非稅_ch As CheckBox
- Friend WithEvents 含稅_ch As CheckBox
- Friend WithEvents 全部_ch As CheckBox
- End Class
|