123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382 |
- <Global.Microsoft.VisualBasic.CompilerServices.DesignerGenerated()> _
- Partial Class 營運成本收支_決算表
- Inherits System.Windows.Forms.Form
-
- 'Form 覆寫 Dispose 以清除元件清單。
- <System.Diagnostics.DebuggerNonUserCode()> _
- Protected Overrides Sub Dispose(ByVal disposing As Boolean)
- Try
- If disposing AndAlso components IsNot Nothing Then
- components.Dispose()
- End If
- Finally
- MyBase.Dispose(disposing)
- End Try
- End Sub
-
- '為 Windows Form 設計工具的必要項
- Private components As System.ComponentModel.IContainer
-
- '注意: 以下為 Windows Form 設計工具所需的程序
- '可以使用 Windows Form 設計工具進行修改。
- '請勿使用程式碼編輯器進行修改。
- <System.Diagnostics.DebuggerStepThrough()> _
- Private Sub InitializeComponent()
- Me.components = New System.ComponentModel.Container()
- 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()
- Dim DataGridViewCellStyle14 As System.Windows.Forms.DataGridViewCellStyle = New System.Windows.Forms.DataGridViewCellStyle()
- Me.ContextMenuStrip1 = New System.Windows.Forms.ContextMenuStrip(Me.components)
- Me.重新整理ToolStripMenuItem = New System.Windows.Forms.ToolStripMenuItem()
- Me.Button2 = New System.Windows.Forms.Button()
- Me.Button1 = New System.Windows.Forms.Button()
- Me.Label13 = New System.Windows.Forms.Label()
- Me.Label12 = New System.Windows.Forms.Label()
- Me.Label11 = New System.Windows.Forms.Label()
- Me.Label10 = New System.Windows.Forms.Label()
- Me.Label9 = New System.Windows.Forms.Label()
- Me.Label8 = New System.Windows.Forms.Label()
- Me.Label7 = New System.Windows.Forms.Label()
- Me.Label6 = New System.Windows.Forms.Label()
- Me.Label5 = New System.Windows.Forms.Label()
- Me.Label4 = New System.Windows.Forms.Label()
- Me.Label3 = New System.Windows.Forms.Label()
- Me.Label2 = New System.Windows.Forms.Label()
- Me.DataGridView13 = New System.Windows.Forms.DataGridView()
- Me.DataGridView12 = New System.Windows.Forms.DataGridView()
- Me.DataGridView11 = New System.Windows.Forms.DataGridView()
- Me.DataGridView10 = New System.Windows.Forms.DataGridView()
- Me.DataGridView9 = New System.Windows.Forms.DataGridView()
- Me.DataGridView8 = New System.Windows.Forms.DataGridView()
- Me.DataGridView7 = New System.Windows.Forms.DataGridView()
- Me.DataGridView6 = New System.Windows.Forms.DataGridView()
- Me.DataGridView5 = New System.Windows.Forms.DataGridView()
- Me.DataGridView4 = New System.Windows.Forms.DataGridView()
- Me.DataGridView3 = New System.Windows.Forms.DataGridView()
- Me.DataGridView1 = New System.Windows.Forms.DataGridView()
- Me.ComboBox1 = New System.Windows.Forms.ComboBox()
- Me.Label1 = New System.Windows.Forms.Label()
- Me.DataGridView2 = New System.Windows.Forms.DataGridView()
- Me.Label19 = New System.Windows.Forms.Label()
- Me.TextBox64 = New System.Windows.Forms.TextBox()
- Me.TextBox65 = New System.Windows.Forms.TextBox()
- Me.TextBox66 = New System.Windows.Forms.TextBox()
- Me.TextBox67 = New System.Windows.Forms.TextBox()
- Me.TextBox68 = New System.Windows.Forms.TextBox()
- Me.TextBox69 = New System.Windows.Forms.TextBox()
- Me.TextBox70 = New System.Windows.Forms.TextBox()
- Me.TextBox71 = New System.Windows.Forms.TextBox()
- Me.TextBox72 = New System.Windows.Forms.TextBox()
- Me.TextBox73 = New System.Windows.Forms.TextBox()
- Me.TextBox74 = New System.Windows.Forms.TextBox()
- Me.TextBox75 = New System.Windows.Forms.TextBox()
- Me.TextBox76 = New System.Windows.Forms.TextBox()
- Me.TextBox63 = New System.Windows.Forms.TextBox()
- Me.TextBox62 = New System.Windows.Forms.TextBox()
- Me.TextBox61 = New System.Windows.Forms.TextBox()
- Me.TextBox56 = New System.Windows.Forms.TextBox()
- Me.TextBox57 = New System.Windows.Forms.TextBox()
- Me.TextBox58 = New System.Windows.Forms.TextBox()
- Me.TextBox59 = New System.Windows.Forms.TextBox()
- Me.TextBox60 = New System.Windows.Forms.TextBox()
- Me.TextBox51 = New System.Windows.Forms.TextBox()
- Me.TextBox52 = New System.Windows.Forms.TextBox()
- Me.TextBox53 = New System.Windows.Forms.TextBox()
- Me.TextBox54 = New System.Windows.Forms.TextBox()
- Me.TextBox55 = New System.Windows.Forms.TextBox()
- Me.TextBox46 = New System.Windows.Forms.TextBox()
- Me.TextBox47 = New System.Windows.Forms.TextBox()
- Me.TextBox48 = New System.Windows.Forms.TextBox()
- Me.TextBox49 = New System.Windows.Forms.TextBox()
- Me.TextBox50 = New System.Windows.Forms.TextBox()
- Me.TextBox41 = New System.Windows.Forms.TextBox()
- Me.TextBox42 = New System.Windows.Forms.TextBox()
- Me.TextBox43 = New System.Windows.Forms.TextBox()
- Me.TextBox44 = New System.Windows.Forms.TextBox()
- Me.TextBox45 = New System.Windows.Forms.TextBox()
- Me.TextBox36 = New System.Windows.Forms.TextBox()
- Me.TextBox37 = New System.Windows.Forms.TextBox()
- Me.TextBox38 = New System.Windows.Forms.TextBox()
- Me.TextBox39 = New System.Windows.Forms.TextBox()
- Me.TextBox40 = New System.Windows.Forms.TextBox()
- Me.TextBox31 = New System.Windows.Forms.TextBox()
- Me.TextBox32 = New System.Windows.Forms.TextBox()
- Me.TextBox33 = New System.Windows.Forms.TextBox()
- Me.TextBox34 = New System.Windows.Forms.TextBox()
- Me.TextBox35 = New System.Windows.Forms.TextBox()
- Me.Label18 = New System.Windows.Forms.Label()
- Me.TextBox25 = New System.Windows.Forms.TextBox()
- Me.TextBox26 = New System.Windows.Forms.TextBox()
- Me.TextBox27 = New System.Windows.Forms.TextBox()
- Me.TextBox28 = New System.Windows.Forms.TextBox()
- Me.TextBox29 = New System.Windows.Forms.TextBox()
- Me.TextBox30 = New System.Windows.Forms.TextBox()
- Me.TextBox24 = New System.Windows.Forms.TextBox()
- Me.TextBox23 = New System.Windows.Forms.TextBox()
- Me.TextBox22 = New System.Windows.Forms.TextBox()
- Me.TextBox21 = New System.Windows.Forms.TextBox()
- Me.TextBox20 = New System.Windows.Forms.TextBox()
- Me.TextBox19 = New System.Windows.Forms.TextBox()
- Me.TextBox18 = New System.Windows.Forms.TextBox()
- Me.TextBox17 = New System.Windows.Forms.TextBox()
- Me.TextBox16 = New System.Windows.Forms.TextBox()
- Me.TextBox15 = New System.Windows.Forms.TextBox()
- Me.TextBox14 = New System.Windows.Forms.TextBox()
- Me.TextBox13 = New System.Windows.Forms.TextBox()
- Me.TextBox12 = New System.Windows.Forms.TextBox()
- Me.TextBox11 = New System.Windows.Forms.TextBox()
- Me.TextBox10 = New System.Windows.Forms.TextBox()
- Me.TextBox9 = New System.Windows.Forms.TextBox()
- Me.TextBox8 = New System.Windows.Forms.TextBox()
- Me.TextBox7 = New System.Windows.Forms.TextBox()
- Me.TextBox6 = New System.Windows.Forms.TextBox()
- Me.TextBox5 = New System.Windows.Forms.TextBox()
- Me.TextBox4 = New System.Windows.Forms.TextBox()
- Me.Label17 = New System.Windows.Forms.Label()
- Me.TextBox3 = New System.Windows.Forms.TextBox()
- Me.Label16 = New System.Windows.Forms.Label()
- Me.TextBox2 = New System.Windows.Forms.TextBox()
- Me.Label15 = New System.Windows.Forms.Label()
- Me.TextBox1 = New System.Windows.Forms.TextBox()
- Me.Label14 = New System.Windows.Forms.Label()
- Me.ComboBox2 = New System.Windows.Forms.ComboBox()
- Me.ComboBox3 = New System.Windows.Forms.ComboBox()
- Me.ComboBox4 = New System.Windows.Forms.ComboBox()
- Me.ComboBox5 = New System.Windows.Forms.ComboBox()
- Me.TextBox77 = New System.Windows.Forms.TextBox()
- Me.ComboBox6 = New System.Windows.Forms.ComboBox()
- Me.TextBox78 = New System.Windows.Forms.TextBox()
- Me.TextBox79 = New System.Windows.Forms.TextBox()
- Me.TextBox80 = New System.Windows.Forms.TextBox()
- Me.TextBox81 = New System.Windows.Forms.TextBox()
- Me.TextBox82 = New System.Windows.Forms.TextBox()
- Me.TextBox83 = New System.Windows.Forms.TextBox()
- Me.TextBox84 = New System.Windows.Forms.TextBox()
- Me.TextBox85 = New System.Windows.Forms.TextBox()
- Me.TextBox86 = New System.Windows.Forms.TextBox()
- Me.TextBox87 = New System.Windows.Forms.TextBox()
- Me.TextBox88 = New System.Windows.Forms.TextBox()
- Me.TextBox89 = New System.Windows.Forms.TextBox()
- Me.TextBox90 = New System.Windows.Forms.TextBox()
- Me.TextBox91 = New System.Windows.Forms.TextBox()
- Me.ComboBox7 = New System.Windows.Forms.ComboBox()
- Me.Label20 = New System.Windows.Forms.Label()
- Me.TextBox92 = New System.Windows.Forms.TextBox()
- Me.TextBox93 = New System.Windows.Forms.TextBox()
- Me.TextBox94 = New System.Windows.Forms.TextBox()
- Me.TextBox95 = New System.Windows.Forms.TextBox()
- Me.TextBox96 = New System.Windows.Forms.TextBox()
- Me.TextBox97 = New System.Windows.Forms.TextBox()
- Me.TextBox98 = New System.Windows.Forms.TextBox()
- Me.TextBox99 = New System.Windows.Forms.TextBox()
- Me.TextBox100 = New System.Windows.Forms.TextBox()
- Me.TextBox101 = New System.Windows.Forms.TextBox()
- Me.TextBox102 = New System.Windows.Forms.TextBox()
- Me.TextBox103 = New System.Windows.Forms.TextBox()
- Me.TextBox104 = New System.Windows.Forms.TextBox()
- Me.ComboBox8 = New System.Windows.Forms.ComboBox()
- Me.Label21 = New System.Windows.Forms.Label()
- Me.Label22 = New System.Windows.Forms.Label()
- Me.CheckBox1 = New System.Windows.Forms.CheckBox()
- Me.CheckBox2 = New System.Windows.Forms.CheckBox()
- Me.CheckBox3 = New System.Windows.Forms.CheckBox()
- Me.CheckBox4 = New System.Windows.Forms.CheckBox()
- Me.CheckBox5 = New System.Windows.Forms.CheckBox()
- Me.CheckBox6 = New System.Windows.Forms.CheckBox()
- Me.CheckBox7 = New System.Windows.Forms.CheckBox()
- Me.DataGridView14 = New System.Windows.Forms.DataGridView()
- Me.Button3 = New System.Windows.Forms.Button()
- Me.Button4 = New System.Windows.Forms.Button()
- Me.TextBox105 = New System.Windows.Forms.TextBox()
- Me.TextBox106 = New System.Windows.Forms.TextBox()
- Me.TextBox107 = New System.Windows.Forms.TextBox()
- Me.TextBox108 = New System.Windows.Forms.TextBox()
- Me.TextBox109 = New System.Windows.Forms.TextBox()
- Me.TextBox110 = New System.Windows.Forms.TextBox()
- Me.TextBox111 = New System.Windows.Forms.TextBox()
- Me.ContextMenuStrip1.SuspendLayout()
- CType(Me.DataGridView13, System.ComponentModel.ISupportInitialize).BeginInit()
- CType(Me.DataGridView12, System.ComponentModel.ISupportInitialize).BeginInit()
- CType(Me.DataGridView11, System.ComponentModel.ISupportInitialize).BeginInit()
- CType(Me.DataGridView10, System.ComponentModel.ISupportInitialize).BeginInit()
- CType(Me.DataGridView9, System.ComponentModel.ISupportInitialize).BeginInit()
- CType(Me.DataGridView8, System.ComponentModel.ISupportInitialize).BeginInit()
- CType(Me.DataGridView7, System.ComponentModel.ISupportInitialize).BeginInit()
- CType(Me.DataGridView6, System.ComponentModel.ISupportInitialize).BeginInit()
- CType(Me.DataGridView5, System.ComponentModel.ISupportInitialize).BeginInit()
- CType(Me.DataGridView4, System.ComponentModel.ISupportInitialize).BeginInit()
- CType(Me.DataGridView3, System.ComponentModel.ISupportInitialize).BeginInit()
- CType(Me.DataGridView1, System.ComponentModel.ISupportInitialize).BeginInit()
- CType(Me.DataGridView2, System.ComponentModel.ISupportInitialize).BeginInit()
- CType(Me.DataGridView14, System.ComponentModel.ISupportInitialize).BeginInit()
- Me.SuspendLayout()
- '
- 'ContextMenuStrip1
- '
- Me.ContextMenuStrip1.Items.AddRange(New System.Windows.Forms.ToolStripItem() {Me.重新整理ToolStripMenuItem})
- Me.ContextMenuStrip1.Name = "ContextMenuStrip1"
- Me.ContextMenuStrip1.Size = New System.Drawing.Size(123, 26)
- '
- '重新整理ToolStripMenuItem
- '
- Me.重新整理ToolStripMenuItem.Name = "重新整理ToolStripMenuItem"
- Me.重新整理ToolStripMenuItem.Size = New System.Drawing.Size(122, 22)
- Me.重新整理ToolStripMenuItem.Text = "重新整理"
- '
- 'Button2
- '
- Me.Button2.ForeColor = System.Drawing.Color.Blue
- Me.Button2.Location = New System.Drawing.Point(295, 2)
- Me.Button2.Name = "Button2"
- Me.Button2.Size = New System.Drawing.Size(113, 23)
- Me.Button2.TabIndex = 1219
- Me.Button2.Text = "全部資料合併計算"
- Me.Button2.UseVisualStyleBackColor = True
- '
- 'Button1
- '
- Me.Button1.Location = New System.Drawing.Point(190, 2)
- Me.Button1.Name = "Button1"
- Me.Button1.Size = New System.Drawing.Size(75, 23)
- Me.Button1.TabIndex = 1218
- Me.Button1.Text = "重新整理"
- Me.Button1.UseVisualStyleBackColor = True
- '
- '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(1818, 2)
- Me.Label13.Name = "Label13"
- Me.Label13.Size = New System.Drawing.Size(51, 24)
- Me.Label13.TabIndex = 1217
- Me.Label13.Text = "12月"
- '
- '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(1700, 2)
- Me.Label12.Name = "Label12"
- Me.Label12.Size = New System.Drawing.Size(51, 24)
- Me.Label12.TabIndex = 1216
- Me.Label12.Text = "11月"
- '
- '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(1582, 2)
- Me.Label11.Name = "Label11"
- Me.Label11.Size = New System.Drawing.Size(51, 24)
- Me.Label11.TabIndex = 1215
- Me.Label11.Text = "10月"
- '
- '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(1464, 2)
- Me.Label10.Name = "Label10"
- Me.Label10.Size = New System.Drawing.Size(40, 24)
- Me.Label10.TabIndex = 1214
- Me.Label10.Text = "9月"
- '
- '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(1346, 2)
- Me.Label9.Name = "Label9"
- Me.Label9.Size = New System.Drawing.Size(40, 24)
- Me.Label9.TabIndex = 1213
- Me.Label9.Text = "8月"
- '
- '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(1228, 2)
- Me.Label8.Name = "Label8"
- Me.Label8.Size = New System.Drawing.Size(40, 24)
- Me.Label8.TabIndex = 1212
- Me.Label8.Text = "7月"
- '
- '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(1110, 2)
- Me.Label7.Name = "Label7"
- Me.Label7.Size = New System.Drawing.Size(40, 24)
- Me.Label7.TabIndex = 1211
- Me.Label7.Text = "6月"
- '
- '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(992, 2)
- Me.Label6.Name = "Label6"
- Me.Label6.Size = New System.Drawing.Size(40, 24)
- Me.Label6.TabIndex = 1210
- Me.Label6.Text = "5月"
- '
- '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(874, 2)
- Me.Label5.Name = "Label5"
- Me.Label5.Size = New System.Drawing.Size(40, 24)
- Me.Label5.TabIndex = 1209
- Me.Label5.Text = "4月"
- '
- '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(756, 2)
- Me.Label4.Name = "Label4"
- Me.Label4.Size = New System.Drawing.Size(40, 24)
- Me.Label4.TabIndex = 1208
- Me.Label4.Text = "3月"
- '
- '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(638, 2)
- Me.Label3.Name = "Label3"
- Me.Label3.Size = New System.Drawing.Size(40, 24)
- Me.Label3.TabIndex = 1207
- Me.Label3.Text = "2月"
- '
- '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(520, 2)
- Me.Label2.Name = "Label2"
- Me.Label2.Size = New System.Drawing.Size(40, 24)
- Me.Label2.TabIndex = 1206
- Me.Label2.Text = "1月"
- '
- 'DataGridView13
- '
- Me.DataGridView13.Anchor = CType(((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
- Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.DataGridView13.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill
- Me.DataGridView13.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize
- Me.DataGridView13.Location = New System.Drawing.Point(1780, 27)
- Me.DataGridView13.Name = "DataGridView13"
- Me.DataGridView13.RowHeadersWidth = 5
- DataGridViewCellStyle1.Font = New System.Drawing.Font("微軟正黑體", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- DataGridViewCellStyle1.WrapMode = System.Windows.Forms.DataGridViewTriState.[True]
- Me.DataGridView13.RowsDefaultCellStyle = DataGridViewCellStyle1
- Me.DataGridView13.RowTemplate.Height = 24
- Me.DataGridView13.ScrollBars = System.Windows.Forms.ScrollBars.None
- Me.DataGridView13.Size = New System.Drawing.Size(116, 740)
- Me.DataGridView13.TabIndex = 1205
- '
- 'DataGridView12
- '
- Me.DataGridView12.Anchor = CType(((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
- Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.DataGridView12.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill
- Me.DataGridView12.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize
- Me.DataGridView12.Location = New System.Drawing.Point(1662, 27)
- Me.DataGridView12.Name = "DataGridView12"
- Me.DataGridView12.RowHeadersWidth = 5
- DataGridViewCellStyle2.Font = New System.Drawing.Font("微軟正黑體", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- DataGridViewCellStyle2.WrapMode = System.Windows.Forms.DataGridViewTriState.[True]
- Me.DataGridView12.RowsDefaultCellStyle = DataGridViewCellStyle2
- Me.DataGridView12.RowTemplate.Height = 24
- Me.DataGridView12.ScrollBars = System.Windows.Forms.ScrollBars.None
- Me.DataGridView12.Size = New System.Drawing.Size(116, 740)
- Me.DataGridView12.TabIndex = 1204
- '
- 'DataGridView11
- '
- Me.DataGridView11.Anchor = CType(((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
- Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.DataGridView11.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill
- Me.DataGridView11.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize
- Me.DataGridView11.Location = New System.Drawing.Point(1544, 27)
- Me.DataGridView11.Name = "DataGridView11"
- Me.DataGridView11.RowHeadersWidth = 5
- DataGridViewCellStyle3.Font = New System.Drawing.Font("微軟正黑體", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- DataGridViewCellStyle3.WrapMode = System.Windows.Forms.DataGridViewTriState.[True]
- Me.DataGridView11.RowsDefaultCellStyle = DataGridViewCellStyle3
- Me.DataGridView11.RowTemplate.Height = 24
- Me.DataGridView11.ScrollBars = System.Windows.Forms.ScrollBars.None
- Me.DataGridView11.Size = New System.Drawing.Size(116, 740)
- Me.DataGridView11.TabIndex = 1203
- '
- 'DataGridView10
- '
- Me.DataGridView10.Anchor = CType(((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
- Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.DataGridView10.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill
- Me.DataGridView10.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize
- Me.DataGridView10.Location = New System.Drawing.Point(1426, 27)
- Me.DataGridView10.Name = "DataGridView10"
- Me.DataGridView10.RowHeadersWidth = 5
- DataGridViewCellStyle4.Font = New System.Drawing.Font("微軟正黑體", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- DataGridViewCellStyle4.WrapMode = System.Windows.Forms.DataGridViewTriState.[True]
- Me.DataGridView10.RowsDefaultCellStyle = DataGridViewCellStyle4
- Me.DataGridView10.RowTemplate.Height = 24
- Me.DataGridView10.ScrollBars = System.Windows.Forms.ScrollBars.None
- Me.DataGridView10.Size = New System.Drawing.Size(116, 740)
- Me.DataGridView10.TabIndex = 1202
- '
- 'DataGridView9
- '
- Me.DataGridView9.Anchor = CType(((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
- Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.DataGridView9.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill
- Me.DataGridView9.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize
- Me.DataGridView9.Location = New System.Drawing.Point(1308, 27)
- Me.DataGridView9.Name = "DataGridView9"
- Me.DataGridView9.RowHeadersWidth = 5
- DataGridViewCellStyle5.Font = New System.Drawing.Font("微軟正黑體", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- DataGridViewCellStyle5.WrapMode = System.Windows.Forms.DataGridViewTriState.[True]
- Me.DataGridView9.RowsDefaultCellStyle = DataGridViewCellStyle5
- Me.DataGridView9.RowTemplate.Height = 24
- Me.DataGridView9.ScrollBars = System.Windows.Forms.ScrollBars.None
- Me.DataGridView9.Size = New System.Drawing.Size(116, 740)
- Me.DataGridView9.TabIndex = 1201
- '
- 'DataGridView8
- '
- Me.DataGridView8.Anchor = CType(((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
- Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.DataGridView8.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill
- Me.DataGridView8.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize
- Me.DataGridView8.Location = New System.Drawing.Point(1190, 27)
- Me.DataGridView8.Name = "DataGridView8"
- Me.DataGridView8.RowHeadersWidth = 5
- DataGridViewCellStyle6.Font = New System.Drawing.Font("微軟正黑體", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- DataGridViewCellStyle6.WrapMode = System.Windows.Forms.DataGridViewTriState.[True]
- Me.DataGridView8.RowsDefaultCellStyle = DataGridViewCellStyle6
- Me.DataGridView8.RowTemplate.Height = 24
- Me.DataGridView8.ScrollBars = System.Windows.Forms.ScrollBars.None
- Me.DataGridView8.Size = New System.Drawing.Size(116, 740)
- Me.DataGridView8.TabIndex = 1200
- '
- 'DataGridView7
- '
- Me.DataGridView7.Anchor = CType(((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
- Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.DataGridView7.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill
- Me.DataGridView7.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize
- Me.DataGridView7.Location = New System.Drawing.Point(1072, 27)
- Me.DataGridView7.Name = "DataGridView7"
- Me.DataGridView7.RowHeadersWidth = 5
- DataGridViewCellStyle7.Font = New System.Drawing.Font("微軟正黑體", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- DataGridViewCellStyle7.WrapMode = System.Windows.Forms.DataGridViewTriState.[True]
- Me.DataGridView7.RowsDefaultCellStyle = DataGridViewCellStyle7
- Me.DataGridView7.RowTemplate.Height = 24
- Me.DataGridView7.ScrollBars = System.Windows.Forms.ScrollBars.None
- Me.DataGridView7.Size = New System.Drawing.Size(116, 740)
- Me.DataGridView7.TabIndex = 1199
- '
- 'DataGridView6
- '
- Me.DataGridView6.Anchor = CType(((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
- Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.DataGridView6.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill
- Me.DataGridView6.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize
- Me.DataGridView6.Location = New System.Drawing.Point(954, 27)
- Me.DataGridView6.Name = "DataGridView6"
- Me.DataGridView6.RowHeadersWidth = 5
- DataGridViewCellStyle8.Font = New System.Drawing.Font("微軟正黑體", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- DataGridViewCellStyle8.WrapMode = System.Windows.Forms.DataGridViewTriState.[True]
- Me.DataGridView6.RowsDefaultCellStyle = DataGridViewCellStyle8
- Me.DataGridView6.RowTemplate.Height = 24
- Me.DataGridView6.ScrollBars = System.Windows.Forms.ScrollBars.None
- Me.DataGridView6.Size = New System.Drawing.Size(116, 740)
- Me.DataGridView6.TabIndex = 1198
- '
- 'DataGridView5
- '
- Me.DataGridView5.Anchor = CType(((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
- Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.DataGridView5.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill
- Me.DataGridView5.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize
- Me.DataGridView5.Location = New System.Drawing.Point(836, 27)
- Me.DataGridView5.Name = "DataGridView5"
- Me.DataGridView5.RowHeadersWidth = 5
- DataGridViewCellStyle9.Font = New System.Drawing.Font("微軟正黑體", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- DataGridViewCellStyle9.WrapMode = System.Windows.Forms.DataGridViewTriState.[True]
- Me.DataGridView5.RowsDefaultCellStyle = DataGridViewCellStyle9
- Me.DataGridView5.RowTemplate.Height = 24
- Me.DataGridView5.ScrollBars = System.Windows.Forms.ScrollBars.None
- Me.DataGridView5.Size = New System.Drawing.Size(116, 740)
- Me.DataGridView5.TabIndex = 1197
- '
- 'DataGridView4
- '
- Me.DataGridView4.Anchor = CType(((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
- Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.DataGridView4.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill
- Me.DataGridView4.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize
- Me.DataGridView4.Location = New System.Drawing.Point(718, 27)
- Me.DataGridView4.Name = "DataGridView4"
- Me.DataGridView4.RowHeadersWidth = 5
- DataGridViewCellStyle10.Font = New System.Drawing.Font("微軟正黑體", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- DataGridViewCellStyle10.WrapMode = System.Windows.Forms.DataGridViewTriState.[True]
- Me.DataGridView4.RowsDefaultCellStyle = DataGridViewCellStyle10
- Me.DataGridView4.RowTemplate.Height = 24
- Me.DataGridView4.ScrollBars = System.Windows.Forms.ScrollBars.None
- Me.DataGridView4.Size = New System.Drawing.Size(116, 740)
- Me.DataGridView4.TabIndex = 1196
- '
- 'DataGridView3
- '
- Me.DataGridView3.Anchor = CType(((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
- Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.DataGridView3.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill
- Me.DataGridView3.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize
- Me.DataGridView3.Location = New System.Drawing.Point(600, 27)
- Me.DataGridView3.Name = "DataGridView3"
- Me.DataGridView3.RowHeadersWidth = 5
- DataGridViewCellStyle11.Font = New System.Drawing.Font("微軟正黑體", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- DataGridViewCellStyle11.WrapMode = System.Windows.Forms.DataGridViewTriState.[True]
- Me.DataGridView3.RowsDefaultCellStyle = DataGridViewCellStyle11
- Me.DataGridView3.RowTemplate.Height = 24
- Me.DataGridView3.ScrollBars = System.Windows.Forms.ScrollBars.None
- Me.DataGridView3.Size = New System.Drawing.Size(116, 740)
- Me.DataGridView3.TabIndex = 1195
- '
- 'DataGridView1
- '
- Me.DataGridView1.Anchor = CType(((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
- Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.DataGridView1.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill
- Me.DataGridView1.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize
- Me.DataGridView1.Location = New System.Drawing.Point(482, 27)
- Me.DataGridView1.Name = "DataGridView1"
- Me.DataGridView1.RowHeadersWidth = 5
- DataGridViewCellStyle12.Font = New System.Drawing.Font("微軟正黑體", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- DataGridViewCellStyle12.WrapMode = System.Windows.Forms.DataGridViewTriState.[True]
- Me.DataGridView1.RowsDefaultCellStyle = DataGridViewCellStyle12
- Me.DataGridView1.RowTemplate.Height = 24
- Me.DataGridView1.ScrollBars = System.Windows.Forms.ScrollBars.None
- Me.DataGridView1.Size = New System.Drawing.Size(116, 740)
- Me.DataGridView1.TabIndex = 1194
- '
- 'ComboBox1
- '
- Me.ComboBox1.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
- Me.ComboBox1.FormattingEnabled = True
- Me.ComboBox1.Items.AddRange(New Object() {"2019"})
- Me.ComboBox1.Location = New System.Drawing.Point(114, 2)
- Me.ComboBox1.Name = "ComboBox1"
- Me.ComboBox1.Size = New System.Drawing.Size(70, 24)
- Me.ComboBox1.TabIndex = 1193
- '
- '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(3, 2)
- Me.Label1.Name = "Label1"
- Me.Label1.Size = New System.Drawing.Size(105, 24)
- Me.Label1.TabIndex = 1192
- Me.Label1.Text = "財務決算表"
- '
- 'DataGridView2
- '
- Me.DataGridView2.Anchor = CType(((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
- Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.DataGridView2.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill
- Me.DataGridView2.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize
- Me.DataGridView2.Location = New System.Drawing.Point(7, 27)
- Me.DataGridView2.Name = "DataGridView2"
- Me.DataGridView2.RowHeadersWidth = 5
- DataGridViewCellStyle13.Font = New System.Drawing.Font("微軟正黑體", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- DataGridViewCellStyle13.WrapMode = System.Windows.Forms.DataGridViewTriState.[True]
- Me.DataGridView2.RowsDefaultCellStyle = DataGridViewCellStyle13
- Me.DataGridView2.RowTemplate.Height = 24
- Me.DataGridView2.Size = New System.Drawing.Size(473, 740)
- Me.DataGridView2.TabIndex = 1191
- '
- '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.Font = New System.Drawing.Font("微軟正黑體", 11.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.Label19.Location = New System.Drawing.Point(217, 946)
- Me.Label19.Name = "Label19"
- Me.Label19.Size = New System.Drawing.Size(91, 19)
- Me.Label19.TabIndex = 1301
- Me.Label19.Text = "損 益"
- '
- 'TextBox64
- '
- Me.TextBox64.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.TextBox64.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.TextBox64.Location = New System.Drawing.Point(339, 945)
- Me.TextBox64.Name = "TextBox64"
- Me.TextBox64.Size = New System.Drawing.Size(116, 23)
- Me.TextBox64.TabIndex = 1300
- Me.TextBox64.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- '
- 'TextBox65
- '
- Me.TextBox65.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.TextBox65.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.TextBox65.Location = New System.Drawing.Point(1780, 845)
- Me.TextBox65.Name = "TextBox65"
- Me.TextBox65.Size = New System.Drawing.Size(116, 23)
- Me.TextBox65.TabIndex = 1299
- Me.TextBox65.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- '
- 'TextBox66
- '
- Me.TextBox66.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.TextBox66.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.TextBox66.Location = New System.Drawing.Point(1662, 845)
- Me.TextBox66.Name = "TextBox66"
- Me.TextBox66.Size = New System.Drawing.Size(116, 23)
- Me.TextBox66.TabIndex = 1298
- Me.TextBox66.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- '
- 'TextBox67
- '
- Me.TextBox67.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.TextBox67.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.TextBox67.Location = New System.Drawing.Point(1544, 845)
- Me.TextBox67.Name = "TextBox67"
- Me.TextBox67.Size = New System.Drawing.Size(116, 23)
- Me.TextBox67.TabIndex = 1297
- Me.TextBox67.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- '
- 'TextBox68
- '
- Me.TextBox68.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.TextBox68.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.TextBox68.Location = New System.Drawing.Point(1426, 845)
- Me.TextBox68.Name = "TextBox68"
- Me.TextBox68.Size = New System.Drawing.Size(116, 23)
- Me.TextBox68.TabIndex = 1296
- Me.TextBox68.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- '
- 'TextBox69
- '
- Me.TextBox69.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.TextBox69.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.TextBox69.Location = New System.Drawing.Point(1308, 845)
- Me.TextBox69.Name = "TextBox69"
- Me.TextBox69.Size = New System.Drawing.Size(116, 23)
- Me.TextBox69.TabIndex = 1295
- Me.TextBox69.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- '
- 'TextBox70
- '
- Me.TextBox70.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.TextBox70.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.TextBox70.Location = New System.Drawing.Point(1190, 845)
- Me.TextBox70.Name = "TextBox70"
- Me.TextBox70.Size = New System.Drawing.Size(116, 23)
- Me.TextBox70.TabIndex = 1294
- Me.TextBox70.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- '
- 'TextBox71
- '
- Me.TextBox71.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.TextBox71.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.TextBox71.Location = New System.Drawing.Point(1072, 845)
- Me.TextBox71.Name = "TextBox71"
- Me.TextBox71.Size = New System.Drawing.Size(116, 23)
- Me.TextBox71.TabIndex = 1293
- Me.TextBox71.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- '
- 'TextBox72
- '
- Me.TextBox72.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.TextBox72.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.TextBox72.Location = New System.Drawing.Point(954, 845)
- Me.TextBox72.Name = "TextBox72"
- Me.TextBox72.Size = New System.Drawing.Size(116, 23)
- Me.TextBox72.TabIndex = 1292
- Me.TextBox72.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- '
- 'TextBox73
- '
- Me.TextBox73.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.TextBox73.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.TextBox73.Location = New System.Drawing.Point(836, 845)
- Me.TextBox73.Name = "TextBox73"
- Me.TextBox73.Size = New System.Drawing.Size(116, 23)
- Me.TextBox73.TabIndex = 1291
- Me.TextBox73.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- '
- 'TextBox74
- '
- Me.TextBox74.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.TextBox74.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.TextBox74.Location = New System.Drawing.Point(718, 845)
- Me.TextBox74.Name = "TextBox74"
- Me.TextBox74.Size = New System.Drawing.Size(116, 23)
- Me.TextBox74.TabIndex = 1290
- Me.TextBox74.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- '
- 'TextBox75
- '
- Me.TextBox75.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.TextBox75.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.TextBox75.Location = New System.Drawing.Point(600, 845)
- Me.TextBox75.Name = "TextBox75"
- Me.TextBox75.Size = New System.Drawing.Size(116, 23)
- Me.TextBox75.TabIndex = 1289
- Me.TextBox75.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- '
- 'TextBox76
- '
- Me.TextBox76.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.TextBox76.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.TextBox76.Location = New System.Drawing.Point(482, 845)
- Me.TextBox76.Name = "TextBox76"
- Me.TextBox76.Size = New System.Drawing.Size(116, 23)
- Me.TextBox76.TabIndex = 1288
- Me.TextBox76.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- '
- 'TextBox63
- '
- Me.TextBox63.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.TextBox63.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.TextBox63.Location = New System.Drawing.Point(339, 820)
- Me.TextBox63.Name = "TextBox63"
- Me.TextBox63.Size = New System.Drawing.Size(116, 23)
- Me.TextBox63.TabIndex = 1287
- Me.TextBox63.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- '
- 'TextBox62
- '
- Me.TextBox62.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.TextBox62.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.TextBox62.Location = New System.Drawing.Point(339, 795)
- Me.TextBox62.Name = "TextBox62"
- Me.TextBox62.Size = New System.Drawing.Size(116, 23)
- Me.TextBox62.TabIndex = 1286
- Me.TextBox62.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- '
- 'TextBox61
- '
- Me.TextBox61.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.TextBox61.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.TextBox61.Location = New System.Drawing.Point(339, 770)
- Me.TextBox61.Name = "TextBox61"
- Me.TextBox61.Size = New System.Drawing.Size(116, 23)
- Me.TextBox61.TabIndex = 1285
- Me.TextBox61.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- '
- 'TextBox56
- '
- Me.TextBox56.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.TextBox56.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.TextBox56.Location = New System.Drawing.Point(1780, 920)
- Me.TextBox56.Name = "TextBox56"
- Me.TextBox56.Size = New System.Drawing.Size(116, 23)
- Me.TextBox56.TabIndex = 1284
- Me.TextBox56.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- '
- 'TextBox57
- '
- Me.TextBox57.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.TextBox57.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.TextBox57.Location = New System.Drawing.Point(1780, 945)
- Me.TextBox57.Name = "TextBox57"
- Me.TextBox57.Size = New System.Drawing.Size(116, 23)
- Me.TextBox57.TabIndex = 1283
- Me.TextBox57.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- '
- 'TextBox58
- '
- Me.TextBox58.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.TextBox58.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.TextBox58.Location = New System.Drawing.Point(1780, 820)
- Me.TextBox58.Name = "TextBox58"
- Me.TextBox58.Size = New System.Drawing.Size(116, 23)
- Me.TextBox58.TabIndex = 1282
- Me.TextBox58.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- '
- 'TextBox59
- '
- Me.TextBox59.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.TextBox59.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.TextBox59.Location = New System.Drawing.Point(1780, 795)
- Me.TextBox59.Name = "TextBox59"
- Me.TextBox59.Size = New System.Drawing.Size(116, 23)
- Me.TextBox59.TabIndex = 1281
- Me.TextBox59.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- '
- 'TextBox60
- '
- Me.TextBox60.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.TextBox60.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.TextBox60.Location = New System.Drawing.Point(1780, 770)
- Me.TextBox60.Name = "TextBox60"
- Me.TextBox60.Size = New System.Drawing.Size(116, 23)
- Me.TextBox60.TabIndex = 1280
- Me.TextBox60.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- '
- 'TextBox51
- '
- Me.TextBox51.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.TextBox51.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.TextBox51.Location = New System.Drawing.Point(1662, 920)
- Me.TextBox51.Name = "TextBox51"
- Me.TextBox51.Size = New System.Drawing.Size(116, 23)
- Me.TextBox51.TabIndex = 1279
- Me.TextBox51.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- '
- 'TextBox52
- '
- Me.TextBox52.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.TextBox52.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.TextBox52.Location = New System.Drawing.Point(1662, 945)
- Me.TextBox52.Name = "TextBox52"
- Me.TextBox52.Size = New System.Drawing.Size(116, 23)
- Me.TextBox52.TabIndex = 1278
- Me.TextBox52.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- '
- 'TextBox53
- '
- Me.TextBox53.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.TextBox53.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.TextBox53.Location = New System.Drawing.Point(1662, 820)
- Me.TextBox53.Name = "TextBox53"
- Me.TextBox53.Size = New System.Drawing.Size(116, 23)
- Me.TextBox53.TabIndex = 1277
- Me.TextBox53.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- '
- 'TextBox54
- '
- Me.TextBox54.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.TextBox54.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.TextBox54.Location = New System.Drawing.Point(1662, 795)
- Me.TextBox54.Name = "TextBox54"
- Me.TextBox54.Size = New System.Drawing.Size(116, 23)
- Me.TextBox54.TabIndex = 1276
- Me.TextBox54.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- '
- 'TextBox55
- '
- Me.TextBox55.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.TextBox55.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.TextBox55.Location = New System.Drawing.Point(1662, 770)
- Me.TextBox55.Name = "TextBox55"
- Me.TextBox55.Size = New System.Drawing.Size(116, 23)
- Me.TextBox55.TabIndex = 1275
- Me.TextBox55.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- '
- 'TextBox46
- '
- Me.TextBox46.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.TextBox46.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.TextBox46.Location = New System.Drawing.Point(1544, 920)
- Me.TextBox46.Name = "TextBox46"
- Me.TextBox46.Size = New System.Drawing.Size(116, 23)
- Me.TextBox46.TabIndex = 1274
- Me.TextBox46.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- '
- 'TextBox47
- '
- Me.TextBox47.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.TextBox47.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.TextBox47.Location = New System.Drawing.Point(1544, 945)
- Me.TextBox47.Name = "TextBox47"
- Me.TextBox47.Size = New System.Drawing.Size(116, 23)
- Me.TextBox47.TabIndex = 1273
- Me.TextBox47.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- '
- 'TextBox48
- '
- Me.TextBox48.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.TextBox48.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.TextBox48.Location = New System.Drawing.Point(1544, 820)
- Me.TextBox48.Name = "TextBox48"
- Me.TextBox48.Size = New System.Drawing.Size(116, 23)
- Me.TextBox48.TabIndex = 1272
- Me.TextBox48.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- '
- 'TextBox49
- '
- Me.TextBox49.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.TextBox49.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.TextBox49.Location = New System.Drawing.Point(1544, 795)
- Me.TextBox49.Name = "TextBox49"
- Me.TextBox49.Size = New System.Drawing.Size(116, 23)
- Me.TextBox49.TabIndex = 1271
- Me.TextBox49.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- '
- 'TextBox50
- '
- Me.TextBox50.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.TextBox50.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.TextBox50.Location = New System.Drawing.Point(1544, 770)
- Me.TextBox50.Name = "TextBox50"
- Me.TextBox50.Size = New System.Drawing.Size(116, 23)
- Me.TextBox50.TabIndex = 1270
- Me.TextBox50.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- '
- 'TextBox41
- '
- Me.TextBox41.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.TextBox41.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.TextBox41.Location = New System.Drawing.Point(1426, 920)
- Me.TextBox41.Name = "TextBox41"
- Me.TextBox41.Size = New System.Drawing.Size(116, 23)
- Me.TextBox41.TabIndex = 1269
- Me.TextBox41.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- '
- 'TextBox42
- '
- Me.TextBox42.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.TextBox42.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.TextBox42.Location = New System.Drawing.Point(1426, 945)
- Me.TextBox42.Name = "TextBox42"
- Me.TextBox42.Size = New System.Drawing.Size(116, 23)
- Me.TextBox42.TabIndex = 1268
- Me.TextBox42.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- '
- 'TextBox43
- '
- Me.TextBox43.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.TextBox43.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.TextBox43.Location = New System.Drawing.Point(1426, 820)
- Me.TextBox43.Name = "TextBox43"
- Me.TextBox43.Size = New System.Drawing.Size(116, 23)
- Me.TextBox43.TabIndex = 1267
- Me.TextBox43.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- '
- 'TextBox44
- '
- Me.TextBox44.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.TextBox44.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.TextBox44.Location = New System.Drawing.Point(1426, 795)
- Me.TextBox44.Name = "TextBox44"
- Me.TextBox44.Size = New System.Drawing.Size(116, 23)
- Me.TextBox44.TabIndex = 1266
- Me.TextBox44.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- '
- 'TextBox45
- '
- Me.TextBox45.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.TextBox45.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.TextBox45.Location = New System.Drawing.Point(1426, 770)
- Me.TextBox45.Name = "TextBox45"
- Me.TextBox45.Size = New System.Drawing.Size(116, 23)
- Me.TextBox45.TabIndex = 1265
- Me.TextBox45.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- '
- 'TextBox36
- '
- Me.TextBox36.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.TextBox36.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.TextBox36.Location = New System.Drawing.Point(1308, 920)
- Me.TextBox36.Name = "TextBox36"
- Me.TextBox36.Size = New System.Drawing.Size(116, 23)
- Me.TextBox36.TabIndex = 1264
- Me.TextBox36.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- '
- 'TextBox37
- '
- Me.TextBox37.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.TextBox37.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.TextBox37.Location = New System.Drawing.Point(1308, 945)
- Me.TextBox37.Name = "TextBox37"
- Me.TextBox37.Size = New System.Drawing.Size(116, 23)
- Me.TextBox37.TabIndex = 1263
- Me.TextBox37.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- '
- 'TextBox38
- '
- Me.TextBox38.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.TextBox38.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.TextBox38.Location = New System.Drawing.Point(1308, 820)
- Me.TextBox38.Name = "TextBox38"
- Me.TextBox38.Size = New System.Drawing.Size(116, 23)
- Me.TextBox38.TabIndex = 1262
- Me.TextBox38.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- '
- 'TextBox39
- '
- Me.TextBox39.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.TextBox39.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.TextBox39.Location = New System.Drawing.Point(1308, 795)
- Me.TextBox39.Name = "TextBox39"
- Me.TextBox39.Size = New System.Drawing.Size(116, 23)
- Me.TextBox39.TabIndex = 1261
- Me.TextBox39.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- '
- 'TextBox40
- '
- Me.TextBox40.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.TextBox40.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.TextBox40.Location = New System.Drawing.Point(1308, 770)
- Me.TextBox40.Name = "TextBox40"
- Me.TextBox40.Size = New System.Drawing.Size(116, 23)
- Me.TextBox40.TabIndex = 1260
- Me.TextBox40.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- '
- 'TextBox31
- '
- Me.TextBox31.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.TextBox31.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.TextBox31.Location = New System.Drawing.Point(1190, 920)
- Me.TextBox31.Name = "TextBox31"
- Me.TextBox31.Size = New System.Drawing.Size(116, 23)
- Me.TextBox31.TabIndex = 1259
- Me.TextBox31.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- '
- 'TextBox32
- '
- Me.TextBox32.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.TextBox32.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.TextBox32.Location = New System.Drawing.Point(1190, 945)
- Me.TextBox32.Name = "TextBox32"
- Me.TextBox32.Size = New System.Drawing.Size(116, 23)
- Me.TextBox32.TabIndex = 1258
- Me.TextBox32.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- '
- 'TextBox33
- '
- Me.TextBox33.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.TextBox33.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.TextBox33.Location = New System.Drawing.Point(1190, 820)
- Me.TextBox33.Name = "TextBox33"
- Me.TextBox33.Size = New System.Drawing.Size(116, 23)
- Me.TextBox33.TabIndex = 1257
- Me.TextBox33.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- '
- 'TextBox34
- '
- Me.TextBox34.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.TextBox34.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.TextBox34.Location = New System.Drawing.Point(1190, 795)
- Me.TextBox34.Name = "TextBox34"
- Me.TextBox34.Size = New System.Drawing.Size(116, 23)
- Me.TextBox34.TabIndex = 1256
- Me.TextBox34.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- '
- 'TextBox35
- '
- Me.TextBox35.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.TextBox35.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.TextBox35.Location = New System.Drawing.Point(1190, 770)
- Me.TextBox35.Name = "TextBox35"
- Me.TextBox35.Size = New System.Drawing.Size(116, 23)
- Me.TextBox35.TabIndex = 1255
- Me.TextBox35.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(176, 873)
- Me.Label18.Name = "Label18"
- Me.Label18.Size = New System.Drawing.Size(27, 16)
- Me.Label18.TabIndex = 1254
- Me.Label18.Text = "5、"
- '
- 'TextBox25
- '
- Me.TextBox25.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.TextBox25.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.TextBox25.Location = New System.Drawing.Point(1072, 920)
- Me.TextBox25.Name = "TextBox25"
- Me.TextBox25.Size = New System.Drawing.Size(116, 23)
- Me.TextBox25.TabIndex = 1253
- Me.TextBox25.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- '
- 'TextBox26
- '
- Me.TextBox26.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.TextBox26.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.TextBox26.Location = New System.Drawing.Point(954, 920)
- Me.TextBox26.Name = "TextBox26"
- Me.TextBox26.Size = New System.Drawing.Size(116, 23)
- Me.TextBox26.TabIndex = 1252
- Me.TextBox26.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- '
- 'TextBox27
- '
- Me.TextBox27.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.TextBox27.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.TextBox27.Location = New System.Drawing.Point(836, 920)
- Me.TextBox27.Name = "TextBox27"
- Me.TextBox27.Size = New System.Drawing.Size(116, 23)
- Me.TextBox27.TabIndex = 1251
- Me.TextBox27.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- '
- 'TextBox28
- '
- Me.TextBox28.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.TextBox28.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.TextBox28.Location = New System.Drawing.Point(718, 920)
- Me.TextBox28.Name = "TextBox28"
- Me.TextBox28.Size = New System.Drawing.Size(116, 23)
- Me.TextBox28.TabIndex = 1250
- Me.TextBox28.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- '
- 'TextBox29
- '
- Me.TextBox29.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.TextBox29.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.TextBox29.Location = New System.Drawing.Point(600, 920)
- Me.TextBox29.Name = "TextBox29"
- Me.TextBox29.Size = New System.Drawing.Size(116, 23)
- Me.TextBox29.TabIndex = 1249
- Me.TextBox29.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- '
- 'TextBox30
- '
- Me.TextBox30.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.TextBox30.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.TextBox30.Location = New System.Drawing.Point(482, 920)
- Me.TextBox30.Name = "TextBox30"
- Me.TextBox30.Size = New System.Drawing.Size(116, 23)
- Me.TextBox30.TabIndex = 1248
- Me.TextBox30.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- '
- 'TextBox24
- '
- Me.TextBox24.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.TextBox24.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.TextBox24.Location = New System.Drawing.Point(1072, 945)
- Me.TextBox24.Name = "TextBox24"
- Me.TextBox24.Size = New System.Drawing.Size(116, 23)
- Me.TextBox24.TabIndex = 1247
- Me.TextBox24.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- '
- 'TextBox23
- '
- Me.TextBox23.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.TextBox23.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.TextBox23.Location = New System.Drawing.Point(1072, 820)
- Me.TextBox23.Name = "TextBox23"
- Me.TextBox23.Size = New System.Drawing.Size(116, 23)
- Me.TextBox23.TabIndex = 1246
- Me.TextBox23.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- '
- 'TextBox22
- '
- Me.TextBox22.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.TextBox22.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.TextBox22.Location = New System.Drawing.Point(1072, 795)
- Me.TextBox22.Name = "TextBox22"
- Me.TextBox22.Size = New System.Drawing.Size(116, 23)
- Me.TextBox22.TabIndex = 1245
- Me.TextBox22.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- '
- 'TextBox21
- '
- Me.TextBox21.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.TextBox21.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.TextBox21.Location = New System.Drawing.Point(1072, 770)
- Me.TextBox21.Name = "TextBox21"
- Me.TextBox21.Size = New System.Drawing.Size(116, 23)
- Me.TextBox21.TabIndex = 1244
- Me.TextBox21.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- '
- 'TextBox20
- '
- Me.TextBox20.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.TextBox20.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.TextBox20.Location = New System.Drawing.Point(954, 945)
- Me.TextBox20.Name = "TextBox20"
- Me.TextBox20.Size = New System.Drawing.Size(116, 23)
- Me.TextBox20.TabIndex = 1243
- Me.TextBox20.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- '
- 'TextBox19
- '
- Me.TextBox19.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.TextBox19.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.TextBox19.Location = New System.Drawing.Point(954, 820)
- Me.TextBox19.Name = "TextBox19"
- Me.TextBox19.Size = New System.Drawing.Size(116, 23)
- Me.TextBox19.TabIndex = 1242
- Me.TextBox19.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- '
- 'TextBox18
- '
- Me.TextBox18.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.TextBox18.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.TextBox18.Location = New System.Drawing.Point(954, 795)
- Me.TextBox18.Name = "TextBox18"
- Me.TextBox18.Size = New System.Drawing.Size(116, 23)
- Me.TextBox18.TabIndex = 1241
- Me.TextBox18.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- '
- 'TextBox17
- '
- Me.TextBox17.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.TextBox17.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.TextBox17.Location = New System.Drawing.Point(954, 770)
- Me.TextBox17.Name = "TextBox17"
- Me.TextBox17.Size = New System.Drawing.Size(116, 23)
- Me.TextBox17.TabIndex = 1240
- Me.TextBox17.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- '
- 'TextBox16
- '
- Me.TextBox16.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.TextBox16.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.TextBox16.Location = New System.Drawing.Point(836, 945)
- Me.TextBox16.Name = "TextBox16"
- Me.TextBox16.Size = New System.Drawing.Size(116, 23)
- Me.TextBox16.TabIndex = 1239
- Me.TextBox16.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- '
- 'TextBox15
- '
- Me.TextBox15.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.TextBox15.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.TextBox15.Location = New System.Drawing.Point(836, 820)
- Me.TextBox15.Name = "TextBox15"
- Me.TextBox15.Size = New System.Drawing.Size(116, 23)
- Me.TextBox15.TabIndex = 1238
- Me.TextBox15.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- '
- 'TextBox14
- '
- Me.TextBox14.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.TextBox14.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.TextBox14.Location = New System.Drawing.Point(836, 795)
- Me.TextBox14.Name = "TextBox14"
- Me.TextBox14.Size = New System.Drawing.Size(116, 23)
- Me.TextBox14.TabIndex = 1237
- Me.TextBox14.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- '
- 'TextBox13
- '
- Me.TextBox13.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.TextBox13.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.TextBox13.Location = New System.Drawing.Point(836, 770)
- Me.TextBox13.Name = "TextBox13"
- Me.TextBox13.Size = New System.Drawing.Size(116, 23)
- Me.TextBox13.TabIndex = 1236
- Me.TextBox13.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- '
- 'TextBox12
- '
- Me.TextBox12.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.TextBox12.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.TextBox12.Location = New System.Drawing.Point(718, 945)
- Me.TextBox12.Name = "TextBox12"
- Me.TextBox12.Size = New System.Drawing.Size(116, 23)
- Me.TextBox12.TabIndex = 1235
- Me.TextBox12.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- '
- 'TextBox11
- '
- Me.TextBox11.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.TextBox11.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.TextBox11.Location = New System.Drawing.Point(718, 820)
- Me.TextBox11.Name = "TextBox11"
- Me.TextBox11.Size = New System.Drawing.Size(116, 23)
- Me.TextBox11.TabIndex = 1234
- Me.TextBox11.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- '
- 'TextBox10
- '
- Me.TextBox10.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.TextBox10.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.TextBox10.Location = New System.Drawing.Point(718, 795)
- Me.TextBox10.Name = "TextBox10"
- Me.TextBox10.Size = New System.Drawing.Size(116, 23)
- Me.TextBox10.TabIndex = 1233
- Me.TextBox10.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- '
- 'TextBox9
- '
- Me.TextBox9.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.TextBox9.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.TextBox9.Location = New System.Drawing.Point(718, 770)
- Me.TextBox9.Name = "TextBox9"
- Me.TextBox9.Size = New System.Drawing.Size(116, 23)
- Me.TextBox9.TabIndex = 1232
- Me.TextBox9.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- '
- 'TextBox8
- '
- Me.TextBox8.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.TextBox8.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.TextBox8.Location = New System.Drawing.Point(600, 945)
- Me.TextBox8.Name = "TextBox8"
- Me.TextBox8.Size = New System.Drawing.Size(116, 23)
- Me.TextBox8.TabIndex = 1231
- Me.TextBox8.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- '
- 'TextBox7
- '
- Me.TextBox7.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.TextBox7.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.TextBox7.Location = New System.Drawing.Point(600, 820)
- Me.TextBox7.Name = "TextBox7"
- Me.TextBox7.Size = New System.Drawing.Size(116, 23)
- Me.TextBox7.TabIndex = 1230
- Me.TextBox7.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- '
- 'TextBox6
- '
- Me.TextBox6.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.TextBox6.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.TextBox6.Location = New System.Drawing.Point(600, 795)
- Me.TextBox6.Name = "TextBox6"
- Me.TextBox6.Size = New System.Drawing.Size(116, 23)
- Me.TextBox6.TabIndex = 1229
- Me.TextBox6.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- '
- 'TextBox5
- '
- Me.TextBox5.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.TextBox5.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.TextBox5.Location = New System.Drawing.Point(600, 770)
- Me.TextBox5.Name = "TextBox5"
- Me.TextBox5.Size = New System.Drawing.Size(116, 23)
- Me.TextBox5.TabIndex = 1228
- Me.TextBox5.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- '
- 'TextBox4
- '
- Me.TextBox4.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.TextBox4.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.TextBox4.Location = New System.Drawing.Point(482, 945)
- Me.TextBox4.Name = "TextBox4"
- Me.TextBox4.Size = New System.Drawing.Size(116, 23)
- Me.TextBox4.TabIndex = 1227
- Me.TextBox4.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(176, 848)
- Me.Label17.Name = "Label17"
- Me.Label17.Size = New System.Drawing.Size(27, 16)
- Me.Label17.TabIndex = 1226
- Me.Label17.Text = "4、"
- '
- 'TextBox3
- '
- Me.TextBox3.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.TextBox3.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.TextBox3.Location = New System.Drawing.Point(482, 820)
- Me.TextBox3.Name = "TextBox3"
- Me.TextBox3.Size = New System.Drawing.Size(116, 23)
- Me.TextBox3.TabIndex = 1225
- Me.TextBox3.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(176, 823)
- Me.Label16.Name = "Label16"
- Me.Label16.Size = New System.Drawing.Size(27, 16)
- Me.Label16.TabIndex = 1224
- Me.Label16.Text = "3、"
- '
- 'TextBox2
- '
- Me.TextBox2.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.TextBox2.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.TextBox2.Location = New System.Drawing.Point(482, 795)
- Me.TextBox2.Name = "TextBox2"
- Me.TextBox2.Size = New System.Drawing.Size(116, 23)
- Me.TextBox2.TabIndex = 1223
- Me.TextBox2.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(176, 798)
- Me.Label15.Name = "Label15"
- Me.Label15.Size = New System.Drawing.Size(27, 16)
- Me.Label15.TabIndex = 1222
- Me.Label15.Text = "2、"
- '
- 'TextBox1
- '
- Me.TextBox1.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.TextBox1.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.TextBox1.Location = New System.Drawing.Point(482, 770)
- Me.TextBox1.Name = "TextBox1"
- Me.TextBox1.Size = New System.Drawing.Size(116, 23)
- Me.TextBox1.TabIndex = 1221
- Me.TextBox1.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- '
- '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(176, 773)
- Me.Label14.Name = "Label14"
- Me.Label14.Size = New System.Drawing.Size(27, 16)
- Me.Label14.TabIndex = 1220
- Me.Label14.Text = "1、"
- '
- 'ComboBox2
- '
- Me.ComboBox2.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.ComboBox2.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
- Me.ComboBox2.FormattingEnabled = True
- Me.ComboBox2.Items.AddRange(New Object() {"2019"})
- Me.ComboBox2.Location = New System.Drawing.Point(205, 770)
- Me.ComboBox2.Name = "ComboBox2"
- Me.ComboBox2.Size = New System.Drawing.Size(128, 24)
- Me.ComboBox2.TabIndex = 1302
- '
- 'ComboBox3
- '
- Me.ComboBox3.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.ComboBox3.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
- Me.ComboBox3.FormattingEnabled = True
- Me.ComboBox3.Items.AddRange(New Object() {"2019"})
- Me.ComboBox3.Location = New System.Drawing.Point(205, 795)
- Me.ComboBox3.Name = "ComboBox3"
- Me.ComboBox3.Size = New System.Drawing.Size(128, 24)
- Me.ComboBox3.TabIndex = 1303
- '
- 'ComboBox4
- '
- Me.ComboBox4.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.ComboBox4.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
- Me.ComboBox4.FormattingEnabled = True
- Me.ComboBox4.Items.AddRange(New Object() {"2019"})
- Me.ComboBox4.Location = New System.Drawing.Point(205, 820)
- Me.ComboBox4.Name = "ComboBox4"
- Me.ComboBox4.Size = New System.Drawing.Size(128, 24)
- Me.ComboBox4.TabIndex = 1304
- '
- 'ComboBox5
- '
- Me.ComboBox5.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.ComboBox5.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
- Me.ComboBox5.FormattingEnabled = True
- Me.ComboBox5.Items.AddRange(New Object() {"2019"})
- Me.ComboBox5.Location = New System.Drawing.Point(205, 845)
- Me.ComboBox5.Name = "ComboBox5"
- Me.ComboBox5.Size = New System.Drawing.Size(128, 24)
- Me.ComboBox5.TabIndex = 1305
- '
- 'TextBox77
- '
- Me.TextBox77.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.TextBox77.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.TextBox77.Location = New System.Drawing.Point(339, 845)
- Me.TextBox77.Name = "TextBox77"
- Me.TextBox77.Size = New System.Drawing.Size(116, 23)
- Me.TextBox77.TabIndex = 1306
- Me.TextBox77.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- '
- 'ComboBox6
- '
- Me.ComboBox6.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.ComboBox6.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
- Me.ComboBox6.FormattingEnabled = True
- Me.ComboBox6.Items.AddRange(New Object() {"2019"})
- Me.ComboBox6.Location = New System.Drawing.Point(205, 870)
- Me.ComboBox6.Name = "ComboBox6"
- Me.ComboBox6.Size = New System.Drawing.Size(128, 24)
- Me.ComboBox6.TabIndex = 1307
- '
- 'TextBox78
- '
- Me.TextBox78.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.TextBox78.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.TextBox78.Location = New System.Drawing.Point(339, 870)
- Me.TextBox78.Name = "TextBox78"
- Me.TextBox78.Size = New System.Drawing.Size(116, 23)
- Me.TextBox78.TabIndex = 1320
- Me.TextBox78.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- '
- 'TextBox79
- '
- Me.TextBox79.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.TextBox79.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.TextBox79.Location = New System.Drawing.Point(1780, 870)
- Me.TextBox79.Name = "TextBox79"
- Me.TextBox79.Size = New System.Drawing.Size(116, 23)
- Me.TextBox79.TabIndex = 1319
- Me.TextBox79.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- '
- 'TextBox80
- '
- Me.TextBox80.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.TextBox80.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.TextBox80.Location = New System.Drawing.Point(1662, 870)
- Me.TextBox80.Name = "TextBox80"
- Me.TextBox80.Size = New System.Drawing.Size(116, 23)
- Me.TextBox80.TabIndex = 1318
- Me.TextBox80.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- '
- 'TextBox81
- '
- Me.TextBox81.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.TextBox81.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.TextBox81.Location = New System.Drawing.Point(1544, 870)
- Me.TextBox81.Name = "TextBox81"
- Me.TextBox81.Size = New System.Drawing.Size(116, 23)
- Me.TextBox81.TabIndex = 1317
- Me.TextBox81.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- '
- 'TextBox82
- '
- Me.TextBox82.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.TextBox82.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.TextBox82.Location = New System.Drawing.Point(1426, 870)
- Me.TextBox82.Name = "TextBox82"
- Me.TextBox82.Size = New System.Drawing.Size(116, 23)
- Me.TextBox82.TabIndex = 1316
- Me.TextBox82.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- '
- 'TextBox83
- '
- Me.TextBox83.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.TextBox83.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.TextBox83.Location = New System.Drawing.Point(1308, 870)
- Me.TextBox83.Name = "TextBox83"
- Me.TextBox83.Size = New System.Drawing.Size(116, 23)
- Me.TextBox83.TabIndex = 1315
- Me.TextBox83.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- '
- 'TextBox84
- '
- Me.TextBox84.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.TextBox84.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.TextBox84.Location = New System.Drawing.Point(1190, 870)
- Me.TextBox84.Name = "TextBox84"
- Me.TextBox84.Size = New System.Drawing.Size(116, 23)
- Me.TextBox84.TabIndex = 1314
- Me.TextBox84.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- '
- 'TextBox85
- '
- Me.TextBox85.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.TextBox85.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.TextBox85.Location = New System.Drawing.Point(1072, 870)
- Me.TextBox85.Name = "TextBox85"
- Me.TextBox85.Size = New System.Drawing.Size(116, 23)
- Me.TextBox85.TabIndex = 1313
- Me.TextBox85.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- '
- 'TextBox86
- '
- Me.TextBox86.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.TextBox86.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.TextBox86.Location = New System.Drawing.Point(954, 870)
- Me.TextBox86.Name = "TextBox86"
- Me.TextBox86.Size = New System.Drawing.Size(116, 23)
- Me.TextBox86.TabIndex = 1312
- Me.TextBox86.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- '
- 'TextBox87
- '
- Me.TextBox87.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.TextBox87.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.TextBox87.Location = New System.Drawing.Point(836, 870)
- Me.TextBox87.Name = "TextBox87"
- Me.TextBox87.Size = New System.Drawing.Size(116, 23)
- Me.TextBox87.TabIndex = 1311
- Me.TextBox87.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- '
- 'TextBox88
- '
- Me.TextBox88.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.TextBox88.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.TextBox88.Location = New System.Drawing.Point(718, 870)
- Me.TextBox88.Name = "TextBox88"
- Me.TextBox88.Size = New System.Drawing.Size(116, 23)
- Me.TextBox88.TabIndex = 1310
- Me.TextBox88.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- '
- 'TextBox89
- '
- Me.TextBox89.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.TextBox89.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.TextBox89.Location = New System.Drawing.Point(600, 870)
- Me.TextBox89.Name = "TextBox89"
- Me.TextBox89.Size = New System.Drawing.Size(116, 23)
- Me.TextBox89.TabIndex = 1309
- Me.TextBox89.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- '
- 'TextBox90
- '
- Me.TextBox90.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.TextBox90.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.TextBox90.Location = New System.Drawing.Point(482, 870)
- Me.TextBox90.Name = "TextBox90"
- Me.TextBox90.Size = New System.Drawing.Size(116, 23)
- Me.TextBox90.TabIndex = 1308
- Me.TextBox90.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- '
- 'TextBox91
- '
- Me.TextBox91.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.TextBox91.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.TextBox91.Location = New System.Drawing.Point(339, 895)
- Me.TextBox91.Name = "TextBox91"
- Me.TextBox91.Size = New System.Drawing.Size(116, 23)
- Me.TextBox91.TabIndex = 1323
- Me.TextBox91.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- '
- 'ComboBox7
- '
- Me.ComboBox7.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.ComboBox7.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
- Me.ComboBox7.FormattingEnabled = True
- Me.ComboBox7.Items.AddRange(New Object() {"2019"})
- Me.ComboBox7.Location = New System.Drawing.Point(205, 895)
- Me.ComboBox7.Name = "ComboBox7"
- Me.ComboBox7.Size = New System.Drawing.Size(128, 24)
- Me.ComboBox7.TabIndex = 1322
- '
- '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(176, 898)
- Me.Label20.Name = "Label20"
- Me.Label20.Size = New System.Drawing.Size(27, 16)
- Me.Label20.TabIndex = 1321
- Me.Label20.Text = "6、"
- '
- 'TextBox92
- '
- Me.TextBox92.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.TextBox92.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.TextBox92.Location = New System.Drawing.Point(1780, 895)
- Me.TextBox92.Name = "TextBox92"
- Me.TextBox92.Size = New System.Drawing.Size(116, 23)
- Me.TextBox92.TabIndex = 1335
- Me.TextBox92.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- '
- 'TextBox93
- '
- Me.TextBox93.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.TextBox93.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.TextBox93.Location = New System.Drawing.Point(1662, 895)
- Me.TextBox93.Name = "TextBox93"
- Me.TextBox93.Size = New System.Drawing.Size(116, 23)
- Me.TextBox93.TabIndex = 1334
- Me.TextBox93.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- '
- 'TextBox94
- '
- Me.TextBox94.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.TextBox94.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.TextBox94.Location = New System.Drawing.Point(1544, 895)
- Me.TextBox94.Name = "TextBox94"
- Me.TextBox94.Size = New System.Drawing.Size(116, 23)
- Me.TextBox94.TabIndex = 1333
- Me.TextBox94.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- '
- 'TextBox95
- '
- Me.TextBox95.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.TextBox95.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.TextBox95.Location = New System.Drawing.Point(1426, 895)
- Me.TextBox95.Name = "TextBox95"
- Me.TextBox95.Size = New System.Drawing.Size(116, 23)
- Me.TextBox95.TabIndex = 1332
- Me.TextBox95.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- '
- 'TextBox96
- '
- Me.TextBox96.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.TextBox96.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.TextBox96.Location = New System.Drawing.Point(1308, 895)
- Me.TextBox96.Name = "TextBox96"
- Me.TextBox96.Size = New System.Drawing.Size(116, 23)
- Me.TextBox96.TabIndex = 1331
- Me.TextBox96.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- '
- 'TextBox97
- '
- Me.TextBox97.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.TextBox97.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.TextBox97.Location = New System.Drawing.Point(1190, 895)
- Me.TextBox97.Name = "TextBox97"
- Me.TextBox97.Size = New System.Drawing.Size(116, 23)
- Me.TextBox97.TabIndex = 1330
- Me.TextBox97.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- '
- 'TextBox98
- '
- Me.TextBox98.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.TextBox98.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.TextBox98.Location = New System.Drawing.Point(1072, 895)
- Me.TextBox98.Name = "TextBox98"
- Me.TextBox98.Size = New System.Drawing.Size(116, 23)
- Me.TextBox98.TabIndex = 1329
- Me.TextBox98.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- '
- 'TextBox99
- '
- Me.TextBox99.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.TextBox99.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.TextBox99.Location = New System.Drawing.Point(954, 895)
- Me.TextBox99.Name = "TextBox99"
- Me.TextBox99.Size = New System.Drawing.Size(116, 23)
- Me.TextBox99.TabIndex = 1328
- Me.TextBox99.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- '
- 'TextBox100
- '
- Me.TextBox100.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.TextBox100.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.TextBox100.Location = New System.Drawing.Point(836, 895)
- Me.TextBox100.Name = "TextBox100"
- Me.TextBox100.Size = New System.Drawing.Size(116, 23)
- Me.TextBox100.TabIndex = 1327
- Me.TextBox100.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- '
- 'TextBox101
- '
- Me.TextBox101.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.TextBox101.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.TextBox101.Location = New System.Drawing.Point(718, 895)
- Me.TextBox101.Name = "TextBox101"
- Me.TextBox101.Size = New System.Drawing.Size(116, 23)
- Me.TextBox101.TabIndex = 1326
- Me.TextBox101.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- '
- 'TextBox102
- '
- Me.TextBox102.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.TextBox102.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.TextBox102.Location = New System.Drawing.Point(600, 895)
- Me.TextBox102.Name = "TextBox102"
- Me.TextBox102.Size = New System.Drawing.Size(116, 23)
- Me.TextBox102.TabIndex = 1325
- Me.TextBox102.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- '
- 'TextBox103
- '
- Me.TextBox103.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.TextBox103.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.TextBox103.Location = New System.Drawing.Point(482, 895)
- Me.TextBox103.Name = "TextBox103"
- Me.TextBox103.Size = New System.Drawing.Size(116, 23)
- Me.TextBox103.TabIndex = 1324
- Me.TextBox103.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- '
- 'TextBox104
- '
- Me.TextBox104.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.TextBox104.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.TextBox104.Location = New System.Drawing.Point(339, 920)
- Me.TextBox104.Name = "TextBox104"
- Me.TextBox104.Size = New System.Drawing.Size(116, 23)
- Me.TextBox104.TabIndex = 1338
- Me.TextBox104.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- '
- 'ComboBox8
- '
- Me.ComboBox8.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.ComboBox8.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
- Me.ComboBox8.FormattingEnabled = True
- Me.ComboBox8.Items.AddRange(New Object() {"2019"})
- Me.ComboBox8.Location = New System.Drawing.Point(205, 920)
- Me.ComboBox8.Name = "ComboBox8"
- Me.ComboBox8.Size = New System.Drawing.Size(128, 24)
- Me.ComboBox8.TabIndex = 1337
- '
- 'Label21
- '
- Me.Label21.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.Label21.AutoSize = True
- Me.Label21.Location = New System.Drawing.Point(176, 923)
- Me.Label21.Name = "Label21"
- Me.Label21.Size = New System.Drawing.Size(27, 16)
- Me.Label21.TabIndex = 1336
- Me.Label21.Text = "7、"
- '
- 'Label22
- '
- Me.Label22.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.Label22.AutoSize = True
- Me.Label22.Location = New System.Drawing.Point(176, 948)
- Me.Label22.Name = "Label22"
- Me.Label22.Size = New System.Drawing.Size(27, 16)
- Me.Label22.TabIndex = 1339
- Me.Label22.Text = "8、"
- '
- 'CheckBox1
- '
- Me.CheckBox1.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.CheckBox1.AutoSize = True
- Me.CheckBox1.Location = New System.Drawing.Point(7, 772)
- Me.CheckBox1.Name = "CheckBox1"
- Me.CheckBox1.Size = New System.Drawing.Size(87, 20)
- Me.CheckBox1.TabIndex = 1340
- Me.CheckBox1.Text = "需年度加總"
- Me.CheckBox1.UseVisualStyleBackColor = True
- '
- 'CheckBox2
- '
- Me.CheckBox2.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.CheckBox2.AutoSize = True
- Me.CheckBox2.Location = New System.Drawing.Point(7, 797)
- Me.CheckBox2.Name = "CheckBox2"
- Me.CheckBox2.Size = New System.Drawing.Size(87, 20)
- Me.CheckBox2.TabIndex = 1341
- Me.CheckBox2.Text = "需年度加總"
- Me.CheckBox2.UseVisualStyleBackColor = True
- '
- 'CheckBox3
- '
- Me.CheckBox3.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.CheckBox3.AutoSize = True
- Me.CheckBox3.Location = New System.Drawing.Point(7, 822)
- Me.CheckBox3.Name = "CheckBox3"
- Me.CheckBox3.Size = New System.Drawing.Size(87, 20)
- Me.CheckBox3.TabIndex = 1342
- Me.CheckBox3.Text = "需年度加總"
- Me.CheckBox3.UseVisualStyleBackColor = True
- '
- 'CheckBox4
- '
- Me.CheckBox4.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.CheckBox4.AutoSize = True
- Me.CheckBox4.Location = New System.Drawing.Point(7, 847)
- Me.CheckBox4.Name = "CheckBox4"
- Me.CheckBox4.Size = New System.Drawing.Size(87, 20)
- Me.CheckBox4.TabIndex = 1343
- Me.CheckBox4.Text = "需年度加總"
- Me.CheckBox4.UseVisualStyleBackColor = True
- '
- 'CheckBox5
- '
- Me.CheckBox5.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.CheckBox5.AutoSize = True
- Me.CheckBox5.Location = New System.Drawing.Point(7, 872)
- Me.CheckBox5.Name = "CheckBox5"
- Me.CheckBox5.Size = New System.Drawing.Size(87, 20)
- Me.CheckBox5.TabIndex = 1344
- Me.CheckBox5.Text = "需年度加總"
- Me.CheckBox5.UseVisualStyleBackColor = True
- '
- 'CheckBox6
- '
- Me.CheckBox6.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.CheckBox6.AutoSize = True
- Me.CheckBox6.Location = New System.Drawing.Point(7, 897)
- Me.CheckBox6.Name = "CheckBox6"
- Me.CheckBox6.Size = New System.Drawing.Size(87, 20)
- Me.CheckBox6.TabIndex = 1345
- Me.CheckBox6.Text = "需年度加總"
- Me.CheckBox6.UseVisualStyleBackColor = True
- '
- 'CheckBox7
- '
- Me.CheckBox7.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.CheckBox7.AutoSize = True
- Me.CheckBox7.Location = New System.Drawing.Point(7, 922)
- Me.CheckBox7.Name = "CheckBox7"
- Me.CheckBox7.Size = New System.Drawing.Size(87, 20)
- Me.CheckBox7.TabIndex = 1346
- Me.CheckBox7.Text = "需年度加總"
- Me.CheckBox7.UseVisualStyleBackColor = True
- '
- 'DataGridView14
- '
- Me.DataGridView14.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill
- Me.DataGridView14.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize
- Me.DataGridView14.Location = New System.Drawing.Point(37, 583)
- Me.DataGridView14.Name = "DataGridView14"
- Me.DataGridView14.RowHeadersWidth = 5
- DataGridViewCellStyle14.Font = New System.Drawing.Font("微軟正黑體", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- DataGridViewCellStyle14.WrapMode = System.Windows.Forms.DataGridViewTriState.[True]
- Me.DataGridView14.RowsDefaultCellStyle = DataGridViewCellStyle14
- Me.DataGridView14.RowTemplate.Height = 24
- Me.DataGridView14.ScrollBars = System.Windows.Forms.ScrollBars.None
- Me.DataGridView14.Size = New System.Drawing.Size(253, 162)
- Me.DataGridView14.TabIndex = 1347
- '
- 'Button3
- '
- Me.Button3.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.Button3.Location = New System.Drawing.Point(7, 944)
- Me.Button3.Name = "Button3"
- Me.Button3.Size = New System.Drawing.Size(101, 25)
- Me.Button3.TabIndex = 1348
- Me.Button3.Text = "預設合計存檔"
- Me.Button3.UseVisualStyleBackColor = True
- '
- 'Button4
- '
- Me.Button4.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.Button4.Location = New System.Drawing.Point(111, 944)
- Me.Button4.Name = "Button4"
- Me.Button4.Size = New System.Drawing.Size(52, 25)
- Me.Button4.TabIndex = 1349
- Me.Button4.Text = "清空"
- Me.Button4.UseVisualStyleBackColor = True
- '
- 'TextBox105
- '
- Me.TextBox105.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.TextBox105.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.TextBox105.Location = New System.Drawing.Point(113, 920)
- Me.TextBox105.Name = "TextBox105"
- Me.TextBox105.Size = New System.Drawing.Size(48, 23)
- Me.TextBox105.TabIndex = 1356
- Me.TextBox105.TextAlign = System.Windows.Forms.HorizontalAlignment.Center
- '
- 'TextBox106
- '
- Me.TextBox106.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.TextBox106.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.TextBox106.Location = New System.Drawing.Point(113, 895)
- Me.TextBox106.Name = "TextBox106"
- Me.TextBox106.Size = New System.Drawing.Size(48, 23)
- Me.TextBox106.TabIndex = 1355
- Me.TextBox106.TextAlign = System.Windows.Forms.HorizontalAlignment.Center
- '
- 'TextBox107
- '
- Me.TextBox107.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.TextBox107.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.TextBox107.Location = New System.Drawing.Point(113, 870)
- Me.TextBox107.Name = "TextBox107"
- Me.TextBox107.Size = New System.Drawing.Size(48, 23)
- Me.TextBox107.TabIndex = 1354
- Me.TextBox107.TextAlign = System.Windows.Forms.HorizontalAlignment.Center
- '
- 'TextBox108
- '
- Me.TextBox108.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.TextBox108.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.TextBox108.Location = New System.Drawing.Point(113, 845)
- Me.TextBox108.Name = "TextBox108"
- Me.TextBox108.Size = New System.Drawing.Size(48, 23)
- Me.TextBox108.TabIndex = 1353
- Me.TextBox108.TextAlign = System.Windows.Forms.HorizontalAlignment.Center
- '
- 'TextBox109
- '
- Me.TextBox109.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.TextBox109.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.TextBox109.Location = New System.Drawing.Point(113, 820)
- Me.TextBox109.Name = "TextBox109"
- Me.TextBox109.Size = New System.Drawing.Size(48, 23)
- Me.TextBox109.TabIndex = 1352
- Me.TextBox109.TextAlign = System.Windows.Forms.HorizontalAlignment.Center
- '
- 'TextBox110
- '
- Me.TextBox110.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.TextBox110.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.TextBox110.Location = New System.Drawing.Point(113, 795)
- Me.TextBox110.Name = "TextBox110"
- Me.TextBox110.Size = New System.Drawing.Size(48, 23)
- Me.TextBox110.TabIndex = 1351
- Me.TextBox110.TextAlign = System.Windows.Forms.HorizontalAlignment.Center
- '
- 'TextBox111
- '
- Me.TextBox111.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.TextBox111.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.TextBox111.Location = New System.Drawing.Point(113, 770)
- Me.TextBox111.Name = "TextBox111"
- Me.TextBox111.Size = New System.Drawing.Size(48, 23)
- Me.TextBox111.TabIndex = 1350
- Me.TextBox111.TextAlign = System.Windows.Forms.HorizontalAlignment.Center
- '
- '營運成本收支_決算表
- '
- Me.AutoScaleDimensions = New System.Drawing.SizeF(7.0!, 16.0!)
- Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font
- Me.ClientSize = New System.Drawing.Size(1914, 981)
- Me.ContextMenuStrip = Me.ContextMenuStrip1
- Me.Controls.Add(Me.TextBox105)
- Me.Controls.Add(Me.TextBox106)
- Me.Controls.Add(Me.TextBox107)
- Me.Controls.Add(Me.TextBox108)
- Me.Controls.Add(Me.TextBox109)
- Me.Controls.Add(Me.TextBox110)
- Me.Controls.Add(Me.TextBox111)
- Me.Controls.Add(Me.Button4)
- Me.Controls.Add(Me.Button3)
- Me.Controls.Add(Me.DataGridView14)
- Me.Controls.Add(Me.CheckBox7)
- Me.Controls.Add(Me.CheckBox6)
- Me.Controls.Add(Me.CheckBox5)
- Me.Controls.Add(Me.CheckBox4)
- Me.Controls.Add(Me.CheckBox3)
- Me.Controls.Add(Me.CheckBox2)
- Me.Controls.Add(Me.CheckBox1)
- Me.Controls.Add(Me.Label22)
- Me.Controls.Add(Me.TextBox104)
- Me.Controls.Add(Me.ComboBox8)
- Me.Controls.Add(Me.Label21)
- Me.Controls.Add(Me.TextBox92)
- Me.Controls.Add(Me.TextBox93)
- Me.Controls.Add(Me.TextBox94)
- Me.Controls.Add(Me.TextBox95)
- Me.Controls.Add(Me.TextBox96)
- Me.Controls.Add(Me.TextBox97)
- Me.Controls.Add(Me.TextBox98)
- Me.Controls.Add(Me.TextBox99)
- Me.Controls.Add(Me.TextBox100)
- Me.Controls.Add(Me.TextBox101)
- Me.Controls.Add(Me.TextBox102)
- Me.Controls.Add(Me.TextBox103)
- Me.Controls.Add(Me.TextBox91)
- Me.Controls.Add(Me.ComboBox7)
- Me.Controls.Add(Me.Label20)
- Me.Controls.Add(Me.TextBox78)
- Me.Controls.Add(Me.TextBox79)
- Me.Controls.Add(Me.TextBox80)
- Me.Controls.Add(Me.TextBox81)
- Me.Controls.Add(Me.TextBox82)
- Me.Controls.Add(Me.TextBox83)
- Me.Controls.Add(Me.TextBox84)
- Me.Controls.Add(Me.TextBox85)
- Me.Controls.Add(Me.TextBox86)
- Me.Controls.Add(Me.TextBox87)
- Me.Controls.Add(Me.TextBox88)
- Me.Controls.Add(Me.TextBox89)
- Me.Controls.Add(Me.TextBox90)
- Me.Controls.Add(Me.ComboBox6)
- Me.Controls.Add(Me.TextBox77)
- Me.Controls.Add(Me.ComboBox5)
- Me.Controls.Add(Me.ComboBox4)
- Me.Controls.Add(Me.ComboBox3)
- Me.Controls.Add(Me.ComboBox2)
- Me.Controls.Add(Me.Label19)
- Me.Controls.Add(Me.TextBox64)
- Me.Controls.Add(Me.TextBox65)
- Me.Controls.Add(Me.TextBox66)
- Me.Controls.Add(Me.TextBox67)
- Me.Controls.Add(Me.TextBox68)
- Me.Controls.Add(Me.TextBox69)
- Me.Controls.Add(Me.TextBox70)
- Me.Controls.Add(Me.TextBox71)
- Me.Controls.Add(Me.TextBox72)
- Me.Controls.Add(Me.TextBox73)
- Me.Controls.Add(Me.TextBox74)
- Me.Controls.Add(Me.TextBox75)
- Me.Controls.Add(Me.TextBox76)
- Me.Controls.Add(Me.TextBox63)
- Me.Controls.Add(Me.TextBox62)
- Me.Controls.Add(Me.TextBox61)
- Me.Controls.Add(Me.TextBox56)
- Me.Controls.Add(Me.TextBox57)
- Me.Controls.Add(Me.TextBox58)
- Me.Controls.Add(Me.TextBox59)
- Me.Controls.Add(Me.TextBox60)
- Me.Controls.Add(Me.TextBox51)
- Me.Controls.Add(Me.TextBox52)
- Me.Controls.Add(Me.TextBox53)
- Me.Controls.Add(Me.TextBox54)
- Me.Controls.Add(Me.TextBox55)
- Me.Controls.Add(Me.TextBox46)
- Me.Controls.Add(Me.TextBox47)
- Me.Controls.Add(Me.TextBox48)
- Me.Controls.Add(Me.TextBox49)
- Me.Controls.Add(Me.TextBox50)
- Me.Controls.Add(Me.TextBox41)
- Me.Controls.Add(Me.TextBox42)
- Me.Controls.Add(Me.TextBox43)
- Me.Controls.Add(Me.TextBox44)
- Me.Controls.Add(Me.TextBox45)
- Me.Controls.Add(Me.TextBox36)
- Me.Controls.Add(Me.TextBox37)
- Me.Controls.Add(Me.TextBox38)
- Me.Controls.Add(Me.TextBox39)
- Me.Controls.Add(Me.TextBox40)
- Me.Controls.Add(Me.TextBox31)
- Me.Controls.Add(Me.TextBox32)
- Me.Controls.Add(Me.TextBox33)
- Me.Controls.Add(Me.TextBox34)
- Me.Controls.Add(Me.TextBox35)
- Me.Controls.Add(Me.Label18)
- Me.Controls.Add(Me.TextBox25)
- Me.Controls.Add(Me.TextBox26)
- Me.Controls.Add(Me.TextBox27)
- Me.Controls.Add(Me.TextBox28)
- Me.Controls.Add(Me.TextBox29)
- Me.Controls.Add(Me.TextBox30)
- Me.Controls.Add(Me.TextBox24)
- Me.Controls.Add(Me.TextBox23)
- Me.Controls.Add(Me.TextBox22)
- Me.Controls.Add(Me.TextBox21)
- Me.Controls.Add(Me.TextBox20)
- Me.Controls.Add(Me.TextBox19)
- Me.Controls.Add(Me.TextBox18)
- Me.Controls.Add(Me.TextBox17)
- Me.Controls.Add(Me.TextBox16)
- Me.Controls.Add(Me.TextBox15)
- Me.Controls.Add(Me.TextBox14)
- Me.Controls.Add(Me.TextBox13)
- Me.Controls.Add(Me.TextBox12)
- Me.Controls.Add(Me.TextBox11)
- Me.Controls.Add(Me.TextBox10)
- Me.Controls.Add(Me.TextBox9)
- Me.Controls.Add(Me.TextBox8)
- Me.Controls.Add(Me.TextBox7)
- Me.Controls.Add(Me.TextBox6)
- Me.Controls.Add(Me.TextBox5)
- Me.Controls.Add(Me.TextBox4)
- Me.Controls.Add(Me.Label17)
- Me.Controls.Add(Me.TextBox3)
- Me.Controls.Add(Me.Label16)
- Me.Controls.Add(Me.TextBox2)
- Me.Controls.Add(Me.Label15)
- Me.Controls.Add(Me.TextBox1)
- Me.Controls.Add(Me.Label14)
- Me.Controls.Add(Me.Button2)
- Me.Controls.Add(Me.Button1)
- 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.DataGridView13)
- Me.Controls.Add(Me.DataGridView12)
- Me.Controls.Add(Me.DataGridView11)
- Me.Controls.Add(Me.DataGridView10)
- Me.Controls.Add(Me.DataGridView9)
- Me.Controls.Add(Me.DataGridView8)
- Me.Controls.Add(Me.DataGridView7)
- Me.Controls.Add(Me.DataGridView6)
- Me.Controls.Add(Me.DataGridView5)
- Me.Controls.Add(Me.DataGridView4)
- Me.Controls.Add(Me.DataGridView3)
- Me.Controls.Add(Me.DataGridView1)
- Me.Controls.Add(Me.ComboBox1)
- Me.Controls.Add(Me.Label1)
- Me.Controls.Add(Me.DataGridView2)
- Me.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4)
- Me.Name = "營運成本收支_決算表"
- Me.Text = "營運成本收支_決算表"
- Me.ContextMenuStrip1.ResumeLayout(False)
- CType(Me.DataGridView13, System.ComponentModel.ISupportInitialize).EndInit()
- CType(Me.DataGridView12, System.ComponentModel.ISupportInitialize).EndInit()
- CType(Me.DataGridView11, System.ComponentModel.ISupportInitialize).EndInit()
- CType(Me.DataGridView10, System.ComponentModel.ISupportInitialize).EndInit()
- CType(Me.DataGridView9, System.ComponentModel.ISupportInitialize).EndInit()
- CType(Me.DataGridView8, System.ComponentModel.ISupportInitialize).EndInit()
- CType(Me.DataGridView7, System.ComponentModel.ISupportInitialize).EndInit()
- CType(Me.DataGridView6, System.ComponentModel.ISupportInitialize).EndInit()
- CType(Me.DataGridView5, System.ComponentModel.ISupportInitialize).EndInit()
- CType(Me.DataGridView4, System.ComponentModel.ISupportInitialize).EndInit()
- CType(Me.DataGridView3, System.ComponentModel.ISupportInitialize).EndInit()
- CType(Me.DataGridView1, System.ComponentModel.ISupportInitialize).EndInit()
- CType(Me.DataGridView2, System.ComponentModel.ISupportInitialize).EndInit()
- CType(Me.DataGridView14, System.ComponentModel.ISupportInitialize).EndInit()
- Me.ResumeLayout(False)
- Me.PerformLayout()
-
- End Sub
- Friend WithEvents ContextMenuStrip1 As ContextMenuStrip
- Friend WithEvents 重新整理ToolStripMenuItem As ToolStripMenuItem
- Friend WithEvents Button2 As Button
- Friend WithEvents Button1 As Button
- Friend WithEvents Label13 As Label
- Friend WithEvents Label12 As Label
- Friend WithEvents Label11 As Label
- Friend WithEvents Label10 As Label
- Friend WithEvents Label9 As Label
- Friend WithEvents Label8 As Label
- Friend WithEvents Label7 As Label
- Friend WithEvents Label6 As Label
- Friend WithEvents Label5 As Label
- Friend WithEvents Label4 As Label
- Friend WithEvents Label3 As Label
- Friend WithEvents Label2 As Label
- Friend WithEvents DataGridView13 As DataGridView
- Friend WithEvents DataGridView12 As DataGridView
- Friend WithEvents DataGridView11 As DataGridView
- Friend WithEvents DataGridView10 As DataGridView
- Friend WithEvents DataGridView9 As DataGridView
- Friend WithEvents DataGridView8 As DataGridView
- Friend WithEvents DataGridView7 As DataGridView
- Friend WithEvents DataGridView6 As DataGridView
- Friend WithEvents DataGridView5 As DataGridView
- Friend WithEvents DataGridView4 As DataGridView
- Friend WithEvents DataGridView3 As DataGridView
- Friend WithEvents DataGridView1 As DataGridView
- Friend WithEvents ComboBox1 As ComboBox
- Friend WithEvents Label1 As Label
- Friend WithEvents DataGridView2 As DataGridView
- Friend WithEvents Label19 As Label
- Friend WithEvents TextBox64 As TextBox
- Friend WithEvents TextBox65 As TextBox
- Friend WithEvents TextBox66 As TextBox
- Friend WithEvents TextBox67 As TextBox
- Friend WithEvents TextBox68 As TextBox
- Friend WithEvents TextBox69 As TextBox
- Friend WithEvents TextBox70 As TextBox
- Friend WithEvents TextBox71 As TextBox
- Friend WithEvents TextBox72 As TextBox
- Friend WithEvents TextBox73 As TextBox
- Friend WithEvents TextBox74 As TextBox
- Friend WithEvents TextBox75 As TextBox
- Friend WithEvents TextBox76 As TextBox
- Friend WithEvents TextBox63 As TextBox
- Friend WithEvents TextBox62 As TextBox
- Friend WithEvents TextBox61 As TextBox
- Friend WithEvents TextBox56 As TextBox
- Friend WithEvents TextBox57 As TextBox
- Friend WithEvents TextBox58 As TextBox
- Friend WithEvents TextBox59 As TextBox
- Friend WithEvents TextBox60 As TextBox
- Friend WithEvents TextBox51 As TextBox
- Friend WithEvents TextBox52 As TextBox
- Friend WithEvents TextBox53 As TextBox
- Friend WithEvents TextBox54 As TextBox
- Friend WithEvents TextBox55 As TextBox
- Friend WithEvents TextBox46 As TextBox
- Friend WithEvents TextBox47 As TextBox
- Friend WithEvents TextBox48 As TextBox
- Friend WithEvents TextBox49 As TextBox
- Friend WithEvents TextBox50 As TextBox
- Friend WithEvents TextBox41 As TextBox
- Friend WithEvents TextBox42 As TextBox
- Friend WithEvents TextBox43 As TextBox
- Friend WithEvents TextBox44 As TextBox
- Friend WithEvents TextBox45 As TextBox
- Friend WithEvents TextBox36 As TextBox
- Friend WithEvents TextBox37 As TextBox
- Friend WithEvents TextBox38 As TextBox
- Friend WithEvents TextBox39 As TextBox
- Friend WithEvents TextBox40 As TextBox
- Friend WithEvents TextBox31 As TextBox
- Friend WithEvents TextBox32 As TextBox
- Friend WithEvents TextBox33 As TextBox
- Friend WithEvents TextBox34 As TextBox
- Friend WithEvents TextBox35 As TextBox
- Friend WithEvents Label18 As Label
- Friend WithEvents TextBox25 As TextBox
- Friend WithEvents TextBox26 As TextBox
- Friend WithEvents TextBox27 As TextBox
- Friend WithEvents TextBox28 As TextBox
- Friend WithEvents TextBox29 As TextBox
- Friend WithEvents TextBox30 As TextBox
- Friend WithEvents TextBox24 As TextBox
- Friend WithEvents TextBox23 As TextBox
- Friend WithEvents TextBox22 As TextBox
- Friend WithEvents TextBox21 As TextBox
- Friend WithEvents TextBox20 As TextBox
- Friend WithEvents TextBox19 As TextBox
- Friend WithEvents TextBox18 As TextBox
- Friend WithEvents TextBox17 As TextBox
- Friend WithEvents TextBox16 As TextBox
- Friend WithEvents TextBox15 As TextBox
- Friend WithEvents TextBox14 As TextBox
- Friend WithEvents TextBox13 As TextBox
- Friend WithEvents TextBox12 As TextBox
- Friend WithEvents TextBox11 As TextBox
- Friend WithEvents TextBox10 As TextBox
- Friend WithEvents TextBox9 As TextBox
- Friend WithEvents TextBox8 As TextBox
- Friend WithEvents TextBox7 As TextBox
- Friend WithEvents TextBox6 As TextBox
- Friend WithEvents TextBox5 As TextBox
- Friend WithEvents TextBox4 As TextBox
- Friend WithEvents Label17 As Label
- Friend WithEvents TextBox3 As TextBox
- Friend WithEvents Label16 As Label
- Friend WithEvents TextBox2 As TextBox
- Friend WithEvents Label15 As Label
- Friend WithEvents TextBox1 As TextBox
- Friend WithEvents Label14 As Label
- Friend WithEvents ComboBox2 As ComboBox
- Friend WithEvents ComboBox3 As ComboBox
- Friend WithEvents ComboBox4 As ComboBox
- Friend WithEvents ComboBox5 As ComboBox
- Friend WithEvents TextBox77 As TextBox
- Friend WithEvents ComboBox6 As ComboBox
- Friend WithEvents TextBox78 As TextBox
- Friend WithEvents TextBox79 As TextBox
- Friend WithEvents TextBox80 As TextBox
- Friend WithEvents TextBox81 As TextBox
- Friend WithEvents TextBox82 As TextBox
- Friend WithEvents TextBox83 As TextBox
- Friend WithEvents TextBox84 As TextBox
- Friend WithEvents TextBox85 As TextBox
- Friend WithEvents TextBox86 As TextBox
- Friend WithEvents TextBox87 As TextBox
- Friend WithEvents TextBox88 As TextBox
- Friend WithEvents TextBox89 As TextBox
- Friend WithEvents TextBox90 As TextBox
- Friend WithEvents TextBox91 As TextBox
- Friend WithEvents ComboBox7 As ComboBox
- Friend WithEvents Label20 As Label
- Friend WithEvents TextBox92 As TextBox
- Friend WithEvents TextBox93 As TextBox
- Friend WithEvents TextBox94 As TextBox
- Friend WithEvents TextBox95 As TextBox
- Friend WithEvents TextBox96 As TextBox
- Friend WithEvents TextBox97 As TextBox
- Friend WithEvents TextBox98 As TextBox
- Friend WithEvents TextBox99 As TextBox
- Friend WithEvents TextBox100 As TextBox
- Friend WithEvents TextBox101 As TextBox
- Friend WithEvents TextBox102 As TextBox
- Friend WithEvents TextBox103 As TextBox
- Friend WithEvents TextBox104 As TextBox
- Friend WithEvents ComboBox8 As ComboBox
- Friend WithEvents Label21 As Label
- Friend WithEvents Label22 As Label
- Friend WithEvents CheckBox1 As CheckBox
- Friend WithEvents CheckBox2 As CheckBox
- Friend WithEvents CheckBox3 As CheckBox
- Friend WithEvents CheckBox4 As CheckBox
- Friend WithEvents CheckBox5 As CheckBox
- Friend WithEvents CheckBox6 As CheckBox
- Friend WithEvents CheckBox7 As CheckBox
- Friend WithEvents DataGridView14 As DataGridView
- Friend WithEvents Button3 As Button
- Friend WithEvents Button4 As Button
- Friend WithEvents TextBox105 As TextBox
- Friend WithEvents TextBox106 As TextBox
- Friend WithEvents TextBox107 As TextBox
- Friend WithEvents TextBox108 As TextBox
- Friend WithEvents TextBox109 As TextBox
- Friend WithEvents TextBox110 As TextBox
- Friend WithEvents TextBox111 As TextBox
- End Class
|