123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072 |
- <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()
- 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()
- Me.報告移交單_ch = New System.Windows.Forms.CheckBox()
- Me.Panel3 = New System.Windows.Forms.Panel()
- Me.B46_tb = New System.Windows.Forms.TextBox()
- Me.B45_tb = New System.Windows.Forms.TextBox()
- Me.B44_tb = New System.Windows.Forms.TextBox()
- Me.B43_tb = New System.Windows.Forms.TextBox()
- Me.B42_tb = New System.Windows.Forms.TextBox()
- Me.B40_tb = New System.Windows.Forms.TextBox()
- Me.B41_tb = New System.Windows.Forms.TextBox()
- Me.B39_tb = New System.Windows.Forms.TextBox()
- Me.B38_tb = New System.Windows.Forms.TextBox()
- Me.B37_tb = New System.Windows.Forms.TextBox()
- Me.B36_tb = New System.Windows.Forms.TextBox()
- Me.B35_tb = New System.Windows.Forms.TextBox()
- Me.B34_tb = New System.Windows.Forms.TextBox()
- Me.B33_tb = New System.Windows.Forms.TextBox()
- Me.B32_tb = New System.Windows.Forms.TextBox()
- Me.B29_tb = New System.Windows.Forms.TextBox()
- Me.B28_tb = New System.Windows.Forms.TextBox()
- Me.B27_tb = New System.Windows.Forms.TextBox()
- Me.B26_tb = New System.Windows.Forms.TextBox()
- Me.B25_tb = New System.Windows.Forms.TextBox()
- Me.B24_tb = New System.Windows.Forms.TextBox()
- Me.B31_tb = New System.Windows.Forms.TextBox()
- Me.B23_tb = New System.Windows.Forms.TextBox()
- Me.B22_tb = New System.Windows.Forms.TextBox()
- Me.B30_tb = 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.B21_tb = New System.Windows.Forms.TextBox()
- Me.B20_tb = New System.Windows.Forms.TextBox()
- Me.B19_tb = New System.Windows.Forms.TextBox()
- Me.B18_tb = New System.Windows.Forms.TextBox()
- Me.B17_tb = New System.Windows.Forms.TextBox()
- Me.B16_tb = New System.Windows.Forms.TextBox()
- Me.B15_tb = New System.Windows.Forms.TextBox()
- Me.B14_tb = New System.Windows.Forms.TextBox()
- Me.B13_tb = New System.Windows.Forms.TextBox()
- Me.B12_tb = New System.Windows.Forms.TextBox()
- Me.B11_tb = New System.Windows.Forms.TextBox()
- Me.B10_tb = New System.Windows.Forms.TextBox()
- Me.B09_tb = New System.Windows.Forms.TextBox()
- Me.B08_tb = New System.Windows.Forms.TextBox()
- Me.B07_tb = New System.Windows.Forms.TextBox()
- Me.B06_tb = New System.Windows.Forms.TextBox()
- Me.B05_tb = New System.Windows.Forms.TextBox()
- Me.B04_tb = New System.Windows.Forms.TextBox()
- Me.B03_tb = New System.Windows.Forms.TextBox()
- Me.B02_tb = New System.Windows.Forms.TextBox()
- Me.B01_tb = New System.Windows.Forms.TextBox()
- Me.A01_lb = New System.Windows.Forms.Label()
- Me.視窗2_pl = New System.Windows.Forms.Panel()
- Me.Label55 = New System.Windows.Forms.Label()
- Me.CanceL2_bt = New System.Windows.Forms.Button()
- Me.請款單_ch = New System.Windows.Forms.CheckBox()
- Me.存檔_tb = New System.Windows.Forms.Button()
- Me.付款期限_cb = New System.Windows.Forms.ComboBox()
- Me.Label46 = New System.Windows.Forms.Label()
- Me.Label414 = New System.Windows.Forms.Label()
- Me.申請日期_dtp = New System.Windows.Forms.DateTimePicker()
- Me.請款金額_nud = New System.Windows.Forms.NumericUpDown()
- Me.Label45 = New System.Windows.Forms.Label()
- Me.請款總額_nud = New System.Windows.Forms.NumericUpDown()
- Me.Label44 = New System.Windows.Forms.Label()
- Me.稅金_nud = New System.Windows.Forms.NumericUpDown()
- Me.Label43 = New System.Windows.Forms.Label()
- Me.請款內容_tb = New System.Windows.Forms.TextBox()
- Me.Label42 = New System.Windows.Forms.Label()
- Me.請款單號_tb = New System.Windows.Forms.TextBox()
- Me.比例_nud = New System.Windows.Forms.NumericUpDown()
- Me.Label38 = New System.Windows.Forms.Label()
- Me.其他意見_tb = New System.Windows.Forms.TextBox()
- Me.Label39 = New System.Windows.Forms.Label()
- Me.請款單_dgv = New System.Windows.Forms.DataGridView()
- Me.請款期數_cb = New System.Windows.Forms.ComboBox()
- Me.Label41 = New System.Windows.Forms.Label()
- Me.Label40 = New System.Windows.Forms.Label()
- Me.Label22 = New System.Windows.Forms.Label()
- Me.主頁明細_ch = New System.Windows.Forms.CheckBox()
- Me.新版_ch = New System.Windows.Forms.CheckBox()
- Me.主頁_ch = New System.Windows.Forms.CheckBox()
- Me.Panel1 = New System.Windows.Forms.Panel()
- Me.甲方_tb = New System.Windows.Forms.TextBox()
- Me.DTP1 = New System.Windows.Forms.DateTimePicker()
- Me.報價總表_dgv = New System.Windows.Forms.DataGridView()
- Me.工程期1_ch = New System.Windows.Forms.ComboBox()
- Me.Label10 = New System.Windows.Forms.Label()
- Me.合約_dgv = New System.Windows.Forms.DataGridView()
- Me.TabPage5 = New System.Windows.Forms.TabPage()
- Me.第1期_dgv = New System.Windows.Forms.DataGridView()
- Me.TabPage6 = New System.Windows.Forms.TabPage()
- Me.第2期_dgv = New System.Windows.Forms.DataGridView()
- Me.TabPage7 = New System.Windows.Forms.TabPage()
- Me.第3期_dgv = New System.Windows.Forms.DataGridView()
- Me.TabPage8 = New System.Windows.Forms.TabPage()
- Me.第4期_dgv = New System.Windows.Forms.DataGridView()
- Me.TabPage9 = New System.Windows.Forms.TabPage()
- Me.第5期_dgv = New System.Windows.Forms.DataGridView()
- Me.Label37 = New System.Windows.Forms.Label()
- Me.Label36 = New System.Windows.Forms.Label()
- Me.Label35 = New System.Windows.Forms.Label()
- Me.Label34 = New System.Windows.Forms.Label()
- Me.Label19 = New System.Windows.Forms.Label()
- Me.明細選項_bt = New System.Windows.Forms.TextBox()
- Me.刪除資料_bt = New System.Windows.Forms.Button()
- Me.新增資料_bt = New System.Windows.Forms.Button()
- Me.金額6_und = New System.Windows.Forms.NumericUpDown()
- Me.工程款6_nud = New System.Windows.Forms.NumericUpDown()
- Me.NUD2 = New System.Windows.Forms.NumericUpDown()
- Me.NUD1 = New System.Windows.Forms.NumericUpDown()
- Me.NUD3 = New System.Windows.Forms.NumericUpDown()
- Me.金額5_und = New System.Windows.Forms.NumericUpDown()
- Me.金額4_und = New System.Windows.Forms.NumericUpDown()
- Me.金額3_und = New System.Windows.Forms.NumericUpDown()
- Me.金額2_und = New System.Windows.Forms.NumericUpDown()
- Me.金額1_und = New System.Windows.Forms.NumericUpDown()
- Me.工程款5_nud = New System.Windows.Forms.NumericUpDown()
- Me.工程款4_nud = New System.Windows.Forms.NumericUpDown()
- Me.工程款3_nud = New System.Windows.Forms.NumericUpDown()
- Me.工程款1_nud = New System.Windows.Forms.NumericUpDown()
- Me.工程款2_nud = New System.Windows.Forms.NumericUpDown()
- Me.稅額顯示_lb = New System.Windows.Forms.Label()
- Me.CH2 = New System.Windows.Forms.CheckBox()
- Me.CH1 = New System.Windows.Forms.CheckBox()
- Me.Label386 = New System.Windows.Forms.Label()
- Me.Label21 = New System.Windows.Forms.Label()
- Me.TabControl2 = New System.Windows.Forms.TabControl()
- Me.Label387 = New System.Windows.Forms.Label()
- Me.Label372 = New System.Windows.Forms.Label()
- Me.客戶名稱_tb = New System.Windows.Forms.ComboBox()
- Me.Label375 = New System.Windows.Forms.Label()
- Me.工程名稱_中_tb = New System.Windows.Forms.TextBox()
- Me.工程名稱_英_tb = New System.Windows.Forms.TextBox()
- Me.Label378 = New System.Windows.Forms.Label()
- Me.Label2 = New System.Windows.Forms.Label()
- Me.合約編號_tb = New System.Windows.Forms.TextBox()
- Me.Label11 = New System.Windows.Forms.Label()
- Me.合約編號1_cb = New System.Windows.Forms.ComboBox()
- Me.Label7 = New System.Windows.Forms.Label()
- Me.關鍵字搜尋_tb = New System.Windows.Forms.TextBox()
- Me.BNUD5 = New System.Windows.Forms.NumericUpDown()
- Me.BNUD4 = New System.Windows.Forms.NumericUpDown()
- Me.Label31 = New System.Windows.Forms.Label()
- Me.Label32 = New System.Windows.Forms.Label()
- Me.BNUD3 = New System.Windows.Forms.NumericUpDown()
- Me.BNUD2 = New System.Windows.Forms.NumericUpDown()
- Me.BNUD1 = New System.Windows.Forms.NumericUpDown()
- Me.Label33 = New System.Windows.Forms.Label()
- Me.ANUD5 = New System.Windows.Forms.NumericUpDown()
- Me.ANUD4 = New System.Windows.Forms.NumericUpDown()
- Me.Label29 = New System.Windows.Forms.Label()
- Me.Label30 = New System.Windows.Forms.Label()
- Me.ANUD3 = New System.Windows.Forms.NumericUpDown()
- Me.ANUD2 = New System.Windows.Forms.NumericUpDown()
- Me.ANUD1 = New System.Windows.Forms.NumericUpDown()
- Me.Label26 = New System.Windows.Forms.Label()
- Me.Label27 = New System.Windows.Forms.Label()
- Me.Label28 = New System.Windows.Forms.Label()
- Me.Label12 = New System.Windows.Forms.Label()
- Me.Label20 = New System.Windows.Forms.Label()
- Me.Label13 = New System.Windows.Forms.Label()
- Me.Label23 = New System.Windows.Forms.Label()
- Me.Label24 = New System.Windows.Forms.Label()
- Me.Label15 = New System.Windows.Forms.Label()
- Me.Label14 = New System.Windows.Forms.Label()
- Me.Label16 = New System.Windows.Forms.Label()
- Me.Label17 = New System.Windows.Forms.Label()
- Me.Label18 = New System.Windows.Forms.Label()
- Me.Label5 = New System.Windows.Forms.Label()
- Me.附錄編號_tb = New System.Windows.Forms.TextBox()
- Me.合約附錄_dgv = New System.Windows.Forms.DataGridView()
- Me.NUD6 = New System.Windows.Forms.NumericUpDown()
- Me.NUD5 = New System.Windows.Forms.NumericUpDown()
- Me.NUD4 = New System.Windows.Forms.NumericUpDown()
- Me.Label6 = New System.Windows.Forms.Label()
- Me.Label8 = New System.Windows.Forms.Label()
- Me.Label9 = New System.Windows.Forms.Label()
- Me.Label388 = New System.Windows.Forms.Label()
- Me.Label390 = New System.Windows.Forms.Label()
- Me.Label389 = New System.Windows.Forms.Label()
- Me.Label1 = New System.Windows.Forms.Label()
- Me.Label3 = New System.Windows.Forms.Label()
- Me.Label4 = New System.Windows.Forms.Label()
- Me.Label25 = New System.Windows.Forms.Label()
- Me.縮放2_bt = New System.Windows.Forms.Button()
- Me.報告移交_bt = New System.Windows.Forms.Button()
- Me.列印_bt = New System.Windows.Forms.Button()
- Me.刪除_bt = New System.Windows.Forms.Button()
- Me.存檔_bt = New System.Windows.Forms.Button()
- Me.開新的請款單_bt = New System.Windows.Forms.Button()
- Me.SOP3_P = New System.Windows.Forms.PictureBox()
- Me.SOP4_P = New System.Windows.Forms.PictureBox()
- Me.SOP7_P = New System.Windows.Forms.PictureBox()
- Me.SOP5_P = New System.Windows.Forms.PictureBox()
- Me.SOP6_P = New System.Windows.Forms.PictureBox()
- Me.查詢_bt = New System.Windows.Forms.Button()
- Me.J2_PB = New System.Windows.Forms.PictureBox()
- Me.JCS_PB = New System.Windows.Forms.PictureBox()
- Me.PictureBox2 = New System.Windows.Forms.PictureBox()
- Me.PictureBox1 = New System.Windows.Forms.PictureBox()
- Me.Panel3.SuspendLayout()
- Me.視窗2_pl.SuspendLayout()
- CType(Me.請款金額_nud, System.ComponentModel.ISupportInitialize).BeginInit()
- CType(Me.請款總額_nud, System.ComponentModel.ISupportInitialize).BeginInit()
- CType(Me.稅金_nud, System.ComponentModel.ISupportInitialize).BeginInit()
- CType(Me.比例_nud, System.ComponentModel.ISupportInitialize).BeginInit()
- CType(Me.請款單_dgv, System.ComponentModel.ISupportInitialize).BeginInit()
- Me.Panel1.SuspendLayout()
- CType(Me.報價總表_dgv, System.ComponentModel.ISupportInitialize).BeginInit()
- CType(Me.合約_dgv, System.ComponentModel.ISupportInitialize).BeginInit()
- Me.TabPage5.SuspendLayout()
- CType(Me.第1期_dgv, System.ComponentModel.ISupportInitialize).BeginInit()
- Me.TabPage6.SuspendLayout()
- CType(Me.第2期_dgv, System.ComponentModel.ISupportInitialize).BeginInit()
- Me.TabPage7.SuspendLayout()
- CType(Me.第3期_dgv, System.ComponentModel.ISupportInitialize).BeginInit()
- Me.TabPage8.SuspendLayout()
- CType(Me.第4期_dgv, System.ComponentModel.ISupportInitialize).BeginInit()
- Me.TabPage9.SuspendLayout()
- CType(Me.第5期_dgv, System.ComponentModel.ISupportInitialize).BeginInit()
- CType(Me.金額6_und, System.ComponentModel.ISupportInitialize).BeginInit()
- CType(Me.工程款6_nud, System.ComponentModel.ISupportInitialize).BeginInit()
- CType(Me.NUD2, System.ComponentModel.ISupportInitialize).BeginInit()
- CType(Me.NUD1, System.ComponentModel.ISupportInitialize).BeginInit()
- CType(Me.NUD3, System.ComponentModel.ISupportInitialize).BeginInit()
- CType(Me.金額5_und, System.ComponentModel.ISupportInitialize).BeginInit()
- CType(Me.金額4_und, System.ComponentModel.ISupportInitialize).BeginInit()
- CType(Me.金額3_und, System.ComponentModel.ISupportInitialize).BeginInit()
- CType(Me.金額2_und, System.ComponentModel.ISupportInitialize).BeginInit()
- CType(Me.金額1_und, System.ComponentModel.ISupportInitialize).BeginInit()
- CType(Me.工程款5_nud, System.ComponentModel.ISupportInitialize).BeginInit()
- CType(Me.工程款4_nud, System.ComponentModel.ISupportInitialize).BeginInit()
- CType(Me.工程款3_nud, System.ComponentModel.ISupportInitialize).BeginInit()
- CType(Me.工程款1_nud, System.ComponentModel.ISupportInitialize).BeginInit()
- CType(Me.工程款2_nud, System.ComponentModel.ISupportInitialize).BeginInit()
- Me.TabControl2.SuspendLayout()
- CType(Me.BNUD5, System.ComponentModel.ISupportInitialize).BeginInit()
- CType(Me.BNUD4, System.ComponentModel.ISupportInitialize).BeginInit()
- CType(Me.BNUD3, System.ComponentModel.ISupportInitialize).BeginInit()
- CType(Me.BNUD2, System.ComponentModel.ISupportInitialize).BeginInit()
- CType(Me.BNUD1, System.ComponentModel.ISupportInitialize).BeginInit()
- CType(Me.ANUD5, System.ComponentModel.ISupportInitialize).BeginInit()
- CType(Me.ANUD4, System.ComponentModel.ISupportInitialize).BeginInit()
- CType(Me.ANUD3, System.ComponentModel.ISupportInitialize).BeginInit()
- CType(Me.ANUD2, System.ComponentModel.ISupportInitialize).BeginInit()
- CType(Me.ANUD1, System.ComponentModel.ISupportInitialize).BeginInit()
- CType(Me.合約附錄_dgv, System.ComponentModel.ISupportInitialize).BeginInit()
- CType(Me.NUD6, System.ComponentModel.ISupportInitialize).BeginInit()
- CType(Me.NUD5, System.ComponentModel.ISupportInitialize).BeginInit()
- CType(Me.NUD4, System.ComponentModel.ISupportInitialize).BeginInit()
- CType(Me.SOP3_P, System.ComponentModel.ISupportInitialize).BeginInit()
- CType(Me.SOP4_P, System.ComponentModel.ISupportInitialize).BeginInit()
- CType(Me.SOP7_P, System.ComponentModel.ISupportInitialize).BeginInit()
- CType(Me.SOP5_P, System.ComponentModel.ISupportInitialize).BeginInit()
- CType(Me.SOP6_P, System.ComponentModel.ISupportInitialize).BeginInit()
- CType(Me.J2_PB, System.ComponentModel.ISupportInitialize).BeginInit()
- CType(Me.JCS_PB, System.ComponentModel.ISupportInitialize).BeginInit()
- CType(Me.PictureBox2, System.ComponentModel.ISupportInitialize).BeginInit()
- CType(Me.PictureBox1, System.ComponentModel.ISupportInitialize).BeginInit()
- Me.SuspendLayout()
- '
- '報告移交單_ch
- '
- Me.報告移交單_ch.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.報告移交單_ch.AutoSize = True
- Me.報告移交單_ch.Location = New System.Drawing.Point(1191, 417)
- Me.報告移交單_ch.Name = "報告移交單_ch"
- Me.報告移交單_ch.Size = New System.Drawing.Size(86, 20)
- Me.報告移交單_ch.TabIndex = 1903
- Me.報告移交單_ch.Text = "報告移交單"
- Me.報告移交單_ch.UseVisualStyleBackColor = True
- '
- 'Panel3
- '
- Me.Panel3.Anchor = CType((((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
- Or System.Windows.Forms.AnchorStyles.Left) _
- Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
- Me.Panel3.BackColor = System.Drawing.Color.LightGray
- Me.Panel3.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D
- Me.Panel3.Controls.Add(Me.B46_tb)
- Me.Panel3.Controls.Add(Me.B45_tb)
- Me.Panel3.Controls.Add(Me.B44_tb)
- Me.Panel3.Controls.Add(Me.B43_tb)
- Me.Panel3.Controls.Add(Me.B42_tb)
- Me.Panel3.Controls.Add(Me.B40_tb)
- Me.Panel3.Controls.Add(Me.B41_tb)
- Me.Panel3.Controls.Add(Me.B39_tb)
- Me.Panel3.Controls.Add(Me.B38_tb)
- Me.Panel3.Controls.Add(Me.B37_tb)
- Me.Panel3.Controls.Add(Me.B36_tb)
- Me.Panel3.Controls.Add(Me.B35_tb)
- Me.Panel3.Controls.Add(Me.B34_tb)
- Me.Panel3.Controls.Add(Me.B33_tb)
- Me.Panel3.Controls.Add(Me.B32_tb)
- Me.Panel3.Controls.Add(Me.B29_tb)
- Me.Panel3.Controls.Add(Me.B28_tb)
- Me.Panel3.Controls.Add(Me.B27_tb)
- Me.Panel3.Controls.Add(Me.B26_tb)
- Me.Panel3.Controls.Add(Me.B25_tb)
- Me.Panel3.Controls.Add(Me.B24_tb)
- Me.Panel3.Controls.Add(Me.B31_tb)
- Me.Panel3.Controls.Add(Me.B23_tb)
- Me.Panel3.Controls.Add(Me.B22_tb)
- Me.Panel3.Controls.Add(Me.B30_tb)
- Me.Panel3.Controls.Add(Me.TextBox12)
- Me.Panel3.Controls.Add(Me.TextBox11)
- Me.Panel3.Controls.Add(Me.TextBox10)
- Me.Panel3.Controls.Add(Me.TextBox9)
- Me.Panel3.Controls.Add(Me.TextBox8)
- Me.Panel3.Controls.Add(Me.TextBox7)
- Me.Panel3.Controls.Add(Me.B21_tb)
- Me.Panel3.Controls.Add(Me.B20_tb)
- Me.Panel3.Controls.Add(Me.B19_tb)
- Me.Panel3.Controls.Add(Me.B18_tb)
- Me.Panel3.Controls.Add(Me.B17_tb)
- Me.Panel3.Controls.Add(Me.B16_tb)
- Me.Panel3.Controls.Add(Me.B15_tb)
- Me.Panel3.Controls.Add(Me.B14_tb)
- Me.Panel3.Controls.Add(Me.B13_tb)
- Me.Panel3.Controls.Add(Me.B12_tb)
- Me.Panel3.Controls.Add(Me.B11_tb)
- Me.Panel3.Controls.Add(Me.B10_tb)
- Me.Panel3.Controls.Add(Me.B09_tb)
- Me.Panel3.Controls.Add(Me.B08_tb)
- Me.Panel3.Controls.Add(Me.B07_tb)
- Me.Panel3.Controls.Add(Me.B06_tb)
- Me.Panel3.Controls.Add(Me.B05_tb)
- Me.Panel3.Controls.Add(Me.B04_tb)
- Me.Panel3.Controls.Add(Me.B03_tb)
- Me.Panel3.Controls.Add(Me.B02_tb)
- Me.Panel3.Controls.Add(Me.B01_tb)
- Me.Panel3.Controls.Add(Me.A01_lb)
- Me.Panel3.Location = New System.Drawing.Point(3, 28)
- Me.Panel3.Name = "Panel3"
- Me.Panel3.Size = New System.Drawing.Size(643, 613)
- Me.Panel3.TabIndex = 1367
- '
- 'B46_tb
- '
- Me.B46_tb.BackColor = System.Drawing.Color.LightGray
- Me.B46_tb.BorderStyle = System.Windows.Forms.BorderStyle.None
- Me.B46_tb.Enabled = False
- Me.B46_tb.Location = New System.Drawing.Point(10, 487)
- Me.B46_tb.Name = "B46_tb"
- Me.B46_tb.Size = New System.Drawing.Size(90, 16)
- Me.B46_tb.TabIndex = 1805
- Me.B46_tb.Text = "pertama ini." & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10)
- '
- 'B45_tb
- '
- Me.B45_tb.BackColor = System.Drawing.Color.LightGray
- Me.B45_tb.BorderStyle = System.Windows.Forms.BorderStyle.None
- Me.B45_tb.Enabled = False
- Me.B45_tb.Location = New System.Drawing.Point(340, 465)
- Me.B45_tb.Name = "B45_tb"
- Me.B45_tb.Size = New System.Drawing.Size(299, 16)
- Me.B45_tb.TabIndex = 1804
- Me.B45_tb.Text = "hari sejak ditandatangani berita acara serah terima " & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10)
- '
- 'B44_tb
- '
- Me.B44_tb.BackColor = System.Drawing.Color.LightGray
- Me.B44_tb.BorderStyle = System.Windows.Forms.BorderStyle.None
- Me.B44_tb.ForeColor = System.Drawing.Color.Red
- Me.B44_tb.Location = New System.Drawing.Point(297, 465)
- Me.B44_tb.Name = "B44_tb"
- Me.B44_tb.Size = New System.Drawing.Size(44, 16)
- Me.B44_tb.TabIndex = 1803
- Me.B44_tb.Text = "180"
- Me.B44_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Center
- '
- 'B43_tb
- '
- Me.B43_tb.BackColor = System.Drawing.Color.LightGray
- Me.B43_tb.BorderStyle = System.Windows.Forms.BorderStyle.None
- Me.B43_tb.ForeColor = System.Drawing.Color.Red
- Me.B43_tb.Location = New System.Drawing.Point(352, 586)
- Me.B43_tb.Name = "B43_tb"
- Me.B43_tb.Size = New System.Drawing.Size(287, 16)
- Me.B43_tb.TabIndex = 1802
- Me.B43_tb.Text = "PT. PUNCAK GEMILANG SEMESTA"
- '
- 'B42_tb
- '
- Me.B42_tb.BackColor = System.Drawing.Color.LightGray
- Me.B42_tb.BorderStyle = System.Windows.Forms.BorderStyle.None
- Me.B42_tb.ForeColor = System.Drawing.Color.Red
- Me.B42_tb.Location = New System.Drawing.Point(10, 586)
- Me.B42_tb.Name = "B42_tb"
- Me.B42_tb.Size = New System.Drawing.Size(316, 16)
- Me.B42_tb.TabIndex = 1801
- Me.B42_tb.Text = "PT. SHOETOWN KASOKANDEL INDONESIA"
- '
- 'B40_tb
- '
- Me.B40_tb.BackColor = System.Drawing.Color.LightGray
- Me.B40_tb.BorderStyle = System.Windows.Forms.BorderStyle.None
- Me.B40_tb.Enabled = False
- Me.B40_tb.Location = New System.Drawing.Point(10, 564)
- Me.B40_tb.Name = "B40_tb"
- Me.B40_tb.Size = New System.Drawing.Size(206, 16)
- Me.B40_tb.TabIndex = 1800
- Me.B40_tb.Text = "Pihak Kesatu (I)"
- Me.B40_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Center
- '
- 'B41_tb
- '
- Me.B41_tb.BackColor = System.Drawing.Color.LightGray
- Me.B41_tb.BorderStyle = System.Windows.Forms.BorderStyle.None
- Me.B41_tb.Enabled = False
- Me.B41_tb.Location = New System.Drawing.Point(352, 564)
- Me.B41_tb.Name = "B41_tb"
- Me.B41_tb.Size = New System.Drawing.Size(206, 16)
- Me.B41_tb.TabIndex = 1799
- Me.B41_tb.Text = "Pihak Kedua (II)"
- Me.B41_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Center
- '
- 'B39_tb
- '
- Me.B39_tb.BackColor = System.Drawing.Color.LightGray
- Me.B39_tb.BorderStyle = System.Windows.Forms.BorderStyle.None
- Me.B39_tb.Enabled = False
- Me.B39_tb.Location = New System.Drawing.Point(433, 542)
- Me.B39_tb.Name = "B39_tb"
- Me.B39_tb.Size = New System.Drawing.Size(206, 16)
- Me.B39_tb.TabIndex = 1798
- Me.B39_tb.Text = "Yang Melakukan Pekerjaan,"
- Me.B39_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Center
- '
- 'B38_tb
- '
- Me.B38_tb.BackColor = System.Drawing.Color.LightGray
- Me.B38_tb.BorderStyle = System.Windows.Forms.BorderStyle.None
- Me.B38_tb.ForeColor = System.Drawing.Color.Red
- Me.B38_tb.Location = New System.Drawing.Point(595, 520)
- Me.B38_tb.Name = "B38_tb"
- Me.B38_tb.Size = New System.Drawing.Size(44, 16)
- Me.B38_tb.TabIndex = 1797
- Me.B38_tb.Text = "2022"
- Me.B38_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Center
- '
- 'B37_tb
- '
- Me.B37_tb.BackColor = System.Drawing.Color.LightGray
- Me.B37_tb.BorderStyle = System.Windows.Forms.BorderStyle.None
- Me.B37_tb.ForeColor = System.Drawing.Color.Red
- Me.B37_tb.Location = New System.Drawing.Point(552, 520)
- Me.B37_tb.Name = "B37_tb"
- Me.B37_tb.Size = New System.Drawing.Size(44, 16)
- Me.B37_tb.TabIndex = 1796
- Me.B37_tb.Text = "Nov"
- Me.B37_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Center
- '
- 'B36_tb
- '
- Me.B36_tb.BackColor = System.Drawing.Color.LightGray
- Me.B36_tb.BorderStyle = System.Windows.Forms.BorderStyle.None
- Me.B36_tb.ForeColor = System.Drawing.Color.Red
- Me.B36_tb.Location = New System.Drawing.Point(522, 520)
- Me.B36_tb.Name = "B36_tb"
- Me.B36_tb.Size = New System.Drawing.Size(31, 16)
- Me.B36_tb.TabIndex = 1795
- Me.B36_tb.Text = "7"
- Me.B36_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Center
- '
- 'B35_tb
- '
- Me.B35_tb.BackColor = System.Drawing.Color.LightGray
- Me.B35_tb.BorderStyle = System.Windows.Forms.BorderStyle.None
- Me.B35_tb.ForeColor = System.Drawing.Color.Red
- Me.B35_tb.Location = New System.Drawing.Point(433, 520)
- Me.B35_tb.Name = "B35_tb"
- Me.B35_tb.Size = New System.Drawing.Size(90, 16)
- Me.B35_tb.TabIndex = 1794
- Me.B35_tb.Text = "Majalengka"
- Me.B35_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Center
- '
- 'B34_tb
- '
- Me.B34_tb.BackColor = System.Drawing.Color.LightGray
- Me.B34_tb.BorderStyle = System.Windows.Forms.BorderStyle.None
- Me.B34_tb.Enabled = False
- Me.B34_tb.Location = New System.Drawing.Point(10, 511)
- Me.B34_tb.Name = "B34_tb"
- Me.B34_tb.Size = New System.Drawing.Size(252, 16)
- Me.B34_tb.TabIndex = 1793
- Me.B34_tb.Text = "Demikian Berita Acara ini dibuat."
- '
- 'B33_tb
- '
- Me.B33_tb.BackColor = System.Drawing.Color.LightGray
- Me.B33_tb.BorderStyle = System.Windows.Forms.BorderStyle.None
- Me.B33_tb.Enabled = False
- Me.B33_tb.Location = New System.Drawing.Point(10, 465)
- Me.B33_tb.Name = "B33_tb"
- Me.B33_tb.Size = New System.Drawing.Size(288, 16)
- Me.B33_tb.TabIndex = 1792
- Me.B33_tb.Text = "Pihak kedua (II) memberikan masa garansi selama" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10)
- '
- 'B32_tb
- '
- Me.B32_tb.BackColor = System.Drawing.Color.LightGray
- Me.B32_tb.BorderStyle = System.Windows.Forms.BorderStyle.None
- Me.B32_tb.Enabled = False
- Me.B32_tb.Location = New System.Drawing.Point(10, 427)
- Me.B32_tb.Multiline = True
- Me.B32_tb.Name = "B32_tb"
- Me.B32_tb.Size = New System.Drawing.Size(629, 39)
- Me.B32_tb.TabIndex = 1791
- Me.B32_tb.Text = "Pihak kesatu (I) telah memeriksa hasil pekerjaan Pihak kedua (II) yang telah sel" &
- "esai dikerjakan sesuai dengan kontrak."
- '
- 'B29_tb
- '
- Me.B29_tb.BackColor = System.Drawing.Color.LightGray
- Me.B29_tb.BorderStyle = System.Windows.Forms.BorderStyle.None
- Me.B29_tb.ForeColor = System.Drawing.Color.Red
- Me.B29_tb.Location = New System.Drawing.Point(261, 352)
- Me.B29_tb.Name = "B29_tb"
- Me.B29_tb.Size = New System.Drawing.Size(44, 16)
- Me.B29_tb.TabIndex = 1790
- Me.B29_tb.Text = "2022"
- Me.B29_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Center
- '
- 'B28_tb
- '
- Me.B28_tb.BackColor = System.Drawing.Color.LightGray
- Me.B28_tb.BorderStyle = System.Windows.Forms.BorderStyle.None
- Me.B28_tb.ForeColor = System.Drawing.Color.Red
- Me.B28_tb.Location = New System.Drawing.Point(218, 352)
- Me.B28_tb.Name = "B28_tb"
- Me.B28_tb.Size = New System.Drawing.Size(44, 16)
- Me.B28_tb.TabIndex = 1789
- Me.B28_tb.Text = "Nov"
- Me.B28_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Center
- '
- 'B27_tb
- '
- Me.B27_tb.BackColor = System.Drawing.Color.LightGray
- Me.B27_tb.BorderStyle = System.Windows.Forms.BorderStyle.None
- Me.B27_tb.ForeColor = System.Drawing.Color.Red
- Me.B27_tb.Location = New System.Drawing.Point(188, 352)
- Me.B27_tb.Name = "B27_tb"
- Me.B27_tb.Size = New System.Drawing.Size(31, 16)
- Me.B27_tb.TabIndex = 1788
- Me.B27_tb.Text = "7"
- Me.B27_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Center
- '
- 'B26_tb
- '
- Me.B26_tb.BackColor = System.Drawing.Color.LightGray
- Me.B26_tb.BorderStyle = System.Windows.Forms.BorderStyle.None
- Me.B26_tb.ForeColor = System.Drawing.Color.Red
- Me.B26_tb.Location = New System.Drawing.Point(261, 330)
- Me.B26_tb.Name = "B26_tb"
- Me.B26_tb.Size = New System.Drawing.Size(44, 16)
- Me.B26_tb.TabIndex = 1787
- Me.B26_tb.Text = "2022"
- Me.B26_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Center
- '
- 'B25_tb
- '
- Me.B25_tb.BackColor = System.Drawing.Color.LightGray
- Me.B25_tb.BorderStyle = System.Windows.Forms.BorderStyle.None
- Me.B25_tb.ForeColor = System.Drawing.Color.Red
- Me.B25_tb.Location = New System.Drawing.Point(218, 330)
- Me.B25_tb.Name = "B25_tb"
- Me.B25_tb.Size = New System.Drawing.Size(44, 16)
- Me.B25_tb.TabIndex = 1786
- Me.B25_tb.Text = "Nov"
- Me.B25_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Center
- '
- 'B24_tb
- '
- Me.B24_tb.BackColor = System.Drawing.Color.LightGray
- Me.B24_tb.BorderStyle = System.Windows.Forms.BorderStyle.None
- Me.B24_tb.ForeColor = System.Drawing.Color.Red
- Me.B24_tb.Location = New System.Drawing.Point(188, 330)
- Me.B24_tb.Name = "B24_tb"
- Me.B24_tb.Size = New System.Drawing.Size(31, 16)
- Me.B24_tb.TabIndex = 1785
- Me.B24_tb.Text = "7"
- Me.B24_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Center
- '
- 'B31_tb
- '
- Me.B31_tb.BackColor = System.Drawing.Color.LightGray
- Me.B31_tb.BorderStyle = System.Windows.Forms.BorderStyle.None
- Me.B31_tb.ForeColor = System.Drawing.Color.Red
- Me.B31_tb.Location = New System.Drawing.Point(188, 396)
- Me.B31_tb.Name = "B31_tb"
- Me.B31_tb.Size = New System.Drawing.Size(451, 16)
- Me.B31_tb.TabIndex = 1784
- Me.B31_tb.Text = "Penagihan Invoice Pelunasan 95%"
- '
- 'B23_tb
- '
- Me.B23_tb.BackColor = System.Drawing.Color.LightGray
- Me.B23_tb.BorderStyle = System.Windows.Forms.BorderStyle.None
- Me.B23_tb.ForeColor = System.Drawing.Color.Red
- Me.B23_tb.Location = New System.Drawing.Point(188, 308)
- Me.B23_tb.Name = "B23_tb"
- Me.B23_tb.Size = New System.Drawing.Size(451, 16)
- Me.B23_tb.TabIndex = 1783
- Me.B23_tb.Text = " Instalasi line di gedung 2"
- '
- 'B22_tb
- '
- Me.B22_tb.BackColor = System.Drawing.Color.LightGray
- Me.B22_tb.BorderStyle = System.Windows.Forms.BorderStyle.None
- Me.B22_tb.ForeColor = System.Drawing.Color.Red
- Me.B22_tb.Location = New System.Drawing.Point(188, 286)
- Me.B22_tb.Name = "B22_tb"
- Me.B22_tb.Size = New System.Drawing.Size(451, 16)
- Me.B22_tb.TabIndex = 1782
- Me.B22_tb.Text = "PGS-JCS-220220"
- '
- 'B30_tb
- '
- Me.B30_tb.BackColor = System.Drawing.Color.LightGray
- Me.B30_tb.BorderStyle = System.Windows.Forms.BorderStyle.None
- Me.B30_tb.ForeColor = System.Drawing.Color.Red
- Me.B30_tb.Location = New System.Drawing.Point(188, 374)
- Me.B30_tb.Name = "B30_tb"
- Me.B30_tb.Size = New System.Drawing.Size(451, 16)
- Me.B30_tb.TabIndex = 1781
- Me.B30_tb.Text = "PT. SHOETOWN KASOKANDEL INDONESIA"
- '
- 'TextBox12
- '
- Me.TextBox12.BackColor = System.Drawing.Color.LightGray
- Me.TextBox12.BorderStyle = System.Windows.Forms.BorderStyle.None
- Me.TextBox12.Enabled = False
- Me.TextBox12.Location = New System.Drawing.Point(172, 396)
- Me.TextBox12.Name = "TextBox12"
- Me.TextBox12.Size = New System.Drawing.Size(17, 16)
- Me.TextBox12.TabIndex = 1780
- Me.TextBox12.Text = " : "
- Me.TextBox12.TextAlign = System.Windows.Forms.HorizontalAlignment.Center
- '
- 'TextBox11
- '
- Me.TextBox11.BackColor = System.Drawing.Color.LightGray
- Me.TextBox11.BorderStyle = System.Windows.Forms.BorderStyle.None
- Me.TextBox11.Enabled = False
- Me.TextBox11.Location = New System.Drawing.Point(172, 374)
- Me.TextBox11.Name = "TextBox11"
- Me.TextBox11.Size = New System.Drawing.Size(17, 16)
- Me.TextBox11.TabIndex = 1779
- Me.TextBox11.Text = " : "
- Me.TextBox11.TextAlign = System.Windows.Forms.HorizontalAlignment.Center
- '
- 'TextBox10
- '
- Me.TextBox10.BackColor = System.Drawing.Color.LightGray
- Me.TextBox10.BorderStyle = System.Windows.Forms.BorderStyle.None
- Me.TextBox10.Enabled = False
- Me.TextBox10.Location = New System.Drawing.Point(172, 352)
- Me.TextBox10.Name = "TextBox10"
- Me.TextBox10.Size = New System.Drawing.Size(17, 16)
- Me.TextBox10.TabIndex = 1778
- Me.TextBox10.Text = " : "
- Me.TextBox10.TextAlign = System.Windows.Forms.HorizontalAlignment.Center
- '
- 'TextBox9
- '
- Me.TextBox9.BackColor = System.Drawing.Color.LightGray
- Me.TextBox9.BorderStyle = System.Windows.Forms.BorderStyle.None
- Me.TextBox9.Enabled = False
- Me.TextBox9.Location = New System.Drawing.Point(172, 330)
- Me.TextBox9.Name = "TextBox9"
- Me.TextBox9.Size = New System.Drawing.Size(17, 16)
- Me.TextBox9.TabIndex = 1777
- Me.TextBox9.Text = " : "
- Me.TextBox9.TextAlign = System.Windows.Forms.HorizontalAlignment.Center
- '
- 'TextBox8
- '
- Me.TextBox8.BackColor = System.Drawing.Color.LightGray
- Me.TextBox8.BorderStyle = System.Windows.Forms.BorderStyle.None
- Me.TextBox8.Enabled = False
- Me.TextBox8.Location = New System.Drawing.Point(172, 308)
- Me.TextBox8.Name = "TextBox8"
- Me.TextBox8.Size = New System.Drawing.Size(17, 16)
- Me.TextBox8.TabIndex = 1776
- Me.TextBox8.Text = " : "
- Me.TextBox8.TextAlign = System.Windows.Forms.HorizontalAlignment.Center
- '
- 'TextBox7
- '
- Me.TextBox7.BackColor = System.Drawing.Color.LightGray
- Me.TextBox7.BorderStyle = System.Windows.Forms.BorderStyle.None
- Me.TextBox7.Enabled = False
- Me.TextBox7.Location = New System.Drawing.Point(172, 286)
- Me.TextBox7.Name = "TextBox7"
- Me.TextBox7.Size = New System.Drawing.Size(17, 16)
- Me.TextBox7.TabIndex = 1775
- Me.TextBox7.Text = " : "
- Me.TextBox7.TextAlign = System.Windows.Forms.HorizontalAlignment.Center
- '
- 'B21_tb
- '
- Me.B21_tb.BackColor = System.Drawing.Color.LightGray
- Me.B21_tb.BorderStyle = System.Windows.Forms.BorderStyle.None
- Me.B21_tb.Enabled = False
- Me.B21_tb.Location = New System.Drawing.Point(10, 396)
- Me.B21_tb.Name = "B21_tb"
- Me.B21_tb.Size = New System.Drawing.Size(163, 16)
- Me.B21_tb.TabIndex = 1774
- Me.B21_tb.Text = "Tujuan"
- '
- 'B20_tb
- '
- Me.B20_tb.BackColor = System.Drawing.Color.LightGray
- Me.B20_tb.BorderStyle = System.Windows.Forms.BorderStyle.None
- Me.B20_tb.Enabled = False
- Me.B20_tb.Location = New System.Drawing.Point(10, 374)
- Me.B20_tb.Name = "B20_tb"
- Me.B20_tb.Size = New System.Drawing.Size(163, 16)
- Me.B20_tb.TabIndex = 1773
- Me.B20_tb.Text = "Lokasi Pekerjaan"
- '
- 'B19_tb
- '
- Me.B19_tb.BackColor = System.Drawing.Color.LightGray
- Me.B19_tb.BorderStyle = System.Windows.Forms.BorderStyle.None
- Me.B19_tb.Enabled = False
- Me.B19_tb.Location = New System.Drawing.Point(10, 352)
- Me.B19_tb.Name = "B19_tb"
- Me.B19_tb.Size = New System.Drawing.Size(163, 16)
- Me.B19_tb.TabIndex = 1772
- Me.B19_tb.Text = "Batas Akhir Masa Garansi"
- '
- 'B18_tb
- '
- Me.B18_tb.BackColor = System.Drawing.Color.LightGray
- Me.B18_tb.BorderStyle = System.Windows.Forms.BorderStyle.None
- Me.B18_tb.Enabled = False
- Me.B18_tb.Location = New System.Drawing.Point(10, 330)
- Me.B18_tb.Name = "B18_tb"
- Me.B18_tb.Size = New System.Drawing.Size(163, 16)
- Me.B18_tb.TabIndex = 1771
- Me.B18_tb.Text = "Tanggal Selesai Pekerjaan"
- '
- 'B17_tb
- '
- Me.B17_tb.BackColor = System.Drawing.Color.LightGray
- Me.B17_tb.BorderStyle = System.Windows.Forms.BorderStyle.None
- Me.B17_tb.Enabled = False
- Me.B17_tb.Location = New System.Drawing.Point(10, 308)
- Me.B17_tb.Name = "B17_tb"
- Me.B17_tb.Size = New System.Drawing.Size(163, 16)
- Me.B17_tb.TabIndex = 1770
- Me.B17_tb.Text = "Uraian Pekerjaan"
- '
- 'B16_tb
- '
- Me.B16_tb.BackColor = System.Drawing.Color.LightGray
- Me.B16_tb.BorderStyle = System.Windows.Forms.BorderStyle.None
- Me.B16_tb.Enabled = False
- Me.B16_tb.Location = New System.Drawing.Point(10, 286)
- Me.B16_tb.Name = "B16_tb"
- Me.B16_tb.Size = New System.Drawing.Size(163, 16)
- Me.B16_tb.TabIndex = 1769
- Me.B16_tb.Text = "No Kontrak"
- '
- 'B15_tb
- '
- Me.B15_tb.BackColor = System.Drawing.Color.LightGray
- Me.B15_tb.BorderStyle = System.Windows.Forms.BorderStyle.None
- Me.B15_tb.Enabled = False
- Me.B15_tb.Location = New System.Drawing.Point(10, 257)
- Me.B15_tb.Name = "B15_tb"
- Me.B15_tb.Size = New System.Drawing.Size(396, 16)
- Me.B15_tb.TabIndex = 1768
- Me.B15_tb.Text = "Yang selanjutnya disebut sebagai Pihak Kedua (II)"
- Me.B15_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Center
- '
- 'B14_tb
- '
- Me.B14_tb.BackColor = System.Drawing.Color.LightGray
- Me.B14_tb.BorderStyle = System.Windows.Forms.BorderStyle.None
- Me.B14_tb.ForeColor = System.Drawing.Color.Red
- Me.B14_tb.Location = New System.Drawing.Point(140, 203)
- Me.B14_tb.Multiline = True
- Me.B14_tb.Name = "B14_tb"
- Me.B14_tb.Size = New System.Drawing.Size(499, 47)
- Me.B14_tb.TabIndex = 1767
- Me.B14_tb.Text = "Kawasan Industri Terpadu Indonesia China ( KITIC ) Kav. 42 Lantai 4 Desa Nagasari" &
- " Kec. Serang Baru Kab. Bekasi – Jawa Barat"
- '
- 'B13_tb
- '
- Me.B13_tb.BackColor = System.Drawing.Color.LightGray
- Me.B13_tb.BorderStyle = System.Windows.Forms.BorderStyle.None
- Me.B13_tb.Enabled = False
- Me.B13_tb.Location = New System.Drawing.Point(10, 203)
- Me.B13_tb.Name = "B13_tb"
- Me.B13_tb.Size = New System.Drawing.Size(131, 16)
- Me.B13_tb.TabIndex = 1766
- Me.B13_tb.Text = "Alamat perusahaan : "
- Me.B13_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- '
- 'B12_tb
- '
- Me.B12_tb.BackColor = System.Drawing.Color.LightGray
- Me.B12_tb.BorderStyle = System.Windows.Forms.BorderStyle.None
- Me.B12_tb.ForeColor = System.Drawing.Color.Red
- Me.B12_tb.Location = New System.Drawing.Point(140, 174)
- Me.B12_tb.Name = "B12_tb"
- Me.B12_tb.Size = New System.Drawing.Size(499, 16)
- Me.B12_tb.TabIndex = 1765
- Me.B12_tb.Text = "PT. PUNCAK GEMILANG SEMESTA"
- '
- 'B11_tb
- '
- Me.B11_tb.BackColor = System.Drawing.Color.LightGray
- Me.B11_tb.BorderStyle = System.Windows.Forms.BorderStyle.None
- Me.B11_tb.Enabled = False
- Me.B11_tb.Location = New System.Drawing.Point(10, 174)
- Me.B11_tb.Name = "B11_tb"
- Me.B11_tb.Size = New System.Drawing.Size(131, 16)
- Me.B11_tb.TabIndex = 1764
- Me.B11_tb.Text = "Perusahaan : "
- Me.B11_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- '
- 'B10_tb
- '
- Me.B10_tb.BackColor = System.Drawing.Color.LightGray
- Me.B10_tb.BorderStyle = System.Windows.Forms.BorderStyle.None
- Me.B10_tb.Enabled = False
- Me.B10_tb.Location = New System.Drawing.Point(10, 145)
- Me.B10_tb.Name = "B10_tb"
- Me.B10_tb.Size = New System.Drawing.Size(396, 16)
- Me.B10_tb.TabIndex = 1763
- Me.B10_tb.Text = "Yang selanjutnya disebut sebagai Pihak Kesatu (I)"
- Me.B10_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Center
- '
- 'B09_tb
- '
- Me.B09_tb.BackColor = System.Drawing.Color.LightGray
- Me.B09_tb.BorderStyle = System.Windows.Forms.BorderStyle.None
- Me.B09_tb.ForeColor = System.Drawing.Color.Red
- Me.B09_tb.Location = New System.Drawing.Point(140, 91)
- Me.B09_tb.Multiline = True
- Me.B09_tb.Name = "B09_tb"
- Me.B09_tb.Size = New System.Drawing.Size(499, 47)
- Me.B09_tb.TabIndex = 1762
- Me.B09_tb.Text = "Jl. Raya kasokandel km 45, Desa Kasokandel , Kec.Kasokandel, Kab.Majalengka, Jawa" &
- " Barat"
- '
- 'B08_tb
- '
- Me.B08_tb.BackColor = System.Drawing.Color.LightGray
- Me.B08_tb.BorderStyle = System.Windows.Forms.BorderStyle.None
- Me.B08_tb.Enabled = False
- Me.B08_tb.Location = New System.Drawing.Point(10, 91)
- Me.B08_tb.Name = "B08_tb"
- Me.B08_tb.Size = New System.Drawing.Size(131, 16)
- Me.B08_tb.TabIndex = 1761
- Me.B08_tb.Text = "Alamat perusahaan : "
- Me.B08_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- '
- 'B07_tb
- '
- Me.B07_tb.BackColor = System.Drawing.Color.LightGray
- Me.B07_tb.BorderStyle = System.Windows.Forms.BorderStyle.None
- Me.B07_tb.ForeColor = System.Drawing.Color.Red
- Me.B07_tb.Location = New System.Drawing.Point(140, 62)
- Me.B07_tb.Name = "B07_tb"
- Me.B07_tb.Size = New System.Drawing.Size(499, 16)
- Me.B07_tb.TabIndex = 1760
- Me.B07_tb.Text = "PT. SHOETOWN KASOKANDEL INDONESIA"
- '
- 'B06_tb
- '
- Me.B06_tb.BackColor = System.Drawing.Color.LightGray
- Me.B06_tb.BorderStyle = System.Windows.Forms.BorderStyle.None
- Me.B06_tb.Enabled = False
- Me.B06_tb.Location = New System.Drawing.Point(10, 62)
- Me.B06_tb.Name = "B06_tb"
- Me.B06_tb.Size = New System.Drawing.Size(131, 16)
- Me.B06_tb.TabIndex = 1759
- Me.B06_tb.Text = "Perusahaan : "
- Me.B06_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- '
- 'B05_tb
- '
- Me.B05_tb.BackColor = System.Drawing.Color.LightGray
- Me.B05_tb.BorderStyle = System.Windows.Forms.BorderStyle.None
- Me.B05_tb.Enabled = False
- Me.B05_tb.Location = New System.Drawing.Point(215, 33)
- Me.B05_tb.Name = "B05_tb"
- Me.B05_tb.Size = New System.Drawing.Size(424, 16)
- Me.B05_tb.TabIndex = 1758
- Me.B05_tb.Text = ", telah diterbitkan berita acara pekerjaan antara kami yang diwakilkan :"
- Me.B05_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Center
- '
- 'B04_tb
- '
- Me.B04_tb.BackColor = System.Drawing.Color.LightGray
- Me.B04_tb.BorderStyle = System.Windows.Forms.BorderStyle.None
- Me.B04_tb.ForeColor = System.Drawing.Color.Red
- Me.B04_tb.Location = New System.Drawing.Point(172, 33)
- Me.B04_tb.Name = "B04_tb"
- Me.B04_tb.Size = New System.Drawing.Size(44, 16)
- Me.B04_tb.TabIndex = 1757
- Me.B04_tb.Text = "2022"
- Me.B04_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Center
- '
- 'B03_tb
- '
- Me.B03_tb.BackColor = System.Drawing.Color.LightGray
- Me.B03_tb.BorderStyle = System.Windows.Forms.BorderStyle.None
- Me.B03_tb.ForeColor = System.Drawing.Color.Red
- Me.B03_tb.Location = New System.Drawing.Point(129, 33)
- Me.B03_tb.Name = "B03_tb"
- Me.B03_tb.Size = New System.Drawing.Size(44, 16)
- Me.B03_tb.TabIndex = 1756
- Me.B03_tb.Text = "Nov"
- Me.B03_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Center
- '
- 'B02_tb
- '
- Me.B02_tb.BackColor = System.Drawing.Color.LightGray
- Me.B02_tb.BorderStyle = System.Windows.Forms.BorderStyle.None
- Me.B02_tb.ForeColor = System.Drawing.Color.Red
- Me.B02_tb.Location = New System.Drawing.Point(99, 33)
- Me.B02_tb.Name = "B02_tb"
- Me.B02_tb.Size = New System.Drawing.Size(31, 16)
- Me.B02_tb.TabIndex = 1755
- Me.B02_tb.Text = "7"
- Me.B02_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Center
- '
- 'B01_tb
- '
- Me.B01_tb.BackColor = System.Drawing.Color.LightGray
- Me.B01_tb.BorderStyle = System.Windows.Forms.BorderStyle.None
- Me.B01_tb.Enabled = False
- Me.B01_tb.Location = New System.Drawing.Point(10, 33)
- Me.B01_tb.Name = "B01_tb"
- Me.B01_tb.Size = New System.Drawing.Size(90, 16)
- Me.B01_tb.TabIndex = 1754
- Me.B01_tb.Text = "Pada hari ini ,"
- Me.B01_tb.TextAlign = System.Windows.Forms.HorizontalAlignment.Center
- '
- 'A01_lb
- '
- Me.A01_lb.AutoSize = True
- Me.A01_lb.BackColor = System.Drawing.Color.LightGray
- Me.A01_lb.Font = New System.Drawing.Font("微軟正黑體", 14.25!, System.Drawing.FontStyle.Underline, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.A01_lb.Location = New System.Drawing.Point(140, 1)
- Me.A01_lb.Name = "A01_lb"
- Me.A01_lb.Size = New System.Drawing.Size(374, 24)
- Me.A01_lb.TabIndex = 1753
- Me.A01_lb.Text = "BERITA ACARA SERAH TERIMA PERTAMA"
- Me.A01_lb.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
- '
- '視窗2_pl
- '
- Me.視窗2_pl.BackColor = System.Drawing.Color.White
- Me.視窗2_pl.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
- Me.視窗2_pl.Controls.Add(Me.Panel3)
- Me.視窗2_pl.Controls.Add(Me.Label55)
- Me.視窗2_pl.Controls.Add(Me.CanceL2_bt)
- Me.視窗2_pl.Location = New System.Drawing.Point(73, 4)
- Me.視窗2_pl.Name = "視窗2_pl"
- Me.視窗2_pl.Size = New System.Drawing.Size(650, 645)
- Me.視窗2_pl.TabIndex = 1905
- '
- 'Label55
- '
- Me.Label55.AutoSize = True
- Me.Label55.Location = New System.Drawing.Point(5, 7)
- Me.Label55.Name = "Label55"
- Me.Label55.Size = New System.Drawing.Size(67, 16)
- Me.Label55.TabIndex = 1375
- Me.Label55.Text = "報告轉移單"
- '
- 'CanceL2_bt
- '
- Me.CanceL2_bt.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
- Me.CanceL2_bt.BackColor = System.Drawing.Color.FromArgb(CType(CType(255, Byte), Integer), CType(CType(128, Byte), Integer), CType(CType(128, Byte), Integer))
- Me.CanceL2_bt.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.CanceL2_bt.ForeColor = System.Drawing.Color.Black
- Me.CanceL2_bt.Location = New System.Drawing.Point(618, 2)
- Me.CanceL2_bt.Name = "CanceL2_bt"
- Me.CanceL2_bt.Size = New System.Drawing.Size(26, 26)
- Me.CanceL2_bt.TabIndex = 1374
- Me.CanceL2_bt.Text = "X"
- Me.CanceL2_bt.UseVisualStyleBackColor = False
- '
- '請款單_ch
- '
- Me.請款單_ch.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.請款單_ch.AutoSize = True
- Me.請款單_ch.Checked = True
- Me.請款單_ch.CheckState = System.Windows.Forms.CheckState.Checked
- Me.請款單_ch.Location = New System.Drawing.Point(1104, 417)
- Me.請款單_ch.Name = "請款單_ch"
- Me.請款單_ch.Size = New System.Drawing.Size(62, 20)
- Me.請款單_ch.TabIndex = 1908
- Me.請款單_ch.Text = "請款單"
- Me.請款單_ch.UseVisualStyleBackColor = True
- '
- '存檔_tb
- '
- Me.存檔_tb.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.存檔_tb.Font = New System.Drawing.Font("微軟正黑體", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.存檔_tb.ForeColor = System.Drawing.Color.Green
- Me.存檔_tb.Location = New System.Drawing.Point(814, 429)
- Me.存檔_tb.Name = "存檔_tb"
- Me.存檔_tb.Size = New System.Drawing.Size(105, 25)
- Me.存檔_tb.TabIndex = 1901
- Me.存檔_tb.Text = "明細存檔"
- Me.存檔_tb.UseVisualStyleBackColor = True
- '
- '付款期限_cb
- '
- Me.付款期限_cb.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.付款期限_cb.FormattingEnabled = True
- Me.付款期限_cb.Items.AddRange(New Object() {"", "1 DAY (天)", "2 DAY (天)", "3 DAY (天)", "4 DAY (天)", "5 DAY (天)", "6 DAY (天)", "7 DAY (天)", "8 DAY (天)", "9 DAY (天)", "10 DAY (天)", "11 DAY (天)", "12 DAY (天)", "13 DAY (天)", "14 DAY (天)", "15 DAY (天)"})
- Me.付款期限_cb.Location = New System.Drawing.Point(982, 391)
- Me.付款期限_cb.Name = "付款期限_cb"
- Me.付款期限_cb.Size = New System.Drawing.Size(184, 24)
- Me.付款期限_cb.TabIndex = 1895
- '
- 'Label46
- '
- Me.Label46.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.Label46.AutoSize = True
- Me.Label46.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.Label46.ForeColor = System.Drawing.Color.Black
- Me.Label46.Location = New System.Drawing.Point(925, 395)
- Me.Label46.Name = "Label46"
- Me.Label46.Size = New System.Drawing.Size(55, 16)
- Me.Label46.TabIndex = 1894
- Me.Label46.Text = "付款期限"
- Me.Label46.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
- '
- 'Label414
- '
- Me.Label414.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.Label414.AutoSize = True
- Me.Label414.ForeColor = System.Drawing.Color.Black
- Me.Label414.Location = New System.Drawing.Point(1172, 396)
- Me.Label414.Name = "Label414"
- Me.Label414.Size = New System.Drawing.Size(55, 16)
- Me.Label414.TabIndex = 1893
- Me.Label414.Text = "申請日期"
- '
- '申請日期_dtp
- '
- Me.申請日期_dtp.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.申請日期_dtp.CustomFormat = "yyyy/MM/dd"
- Me.申請日期_dtp.Format = System.Windows.Forms.DateTimePickerFormat.Custom
- Me.申請日期_dtp.Location = New System.Drawing.Point(1230, 392)
- Me.申請日期_dtp.Name = "申請日期_dtp"
- Me.申請日期_dtp.Size = New System.Drawing.Size(111, 23)
- Me.申請日期_dtp.TabIndex = 1892
- '
- '請款金額_nud
- '
- Me.請款金額_nud.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.請款金額_nud.Location = New System.Drawing.Point(982, 366)
- Me.請款金額_nud.Maximum = New Decimal(New Integer() {1316134912, 2328, 0, 0})
- Me.請款金額_nud.Minimum = New Decimal(New Integer() {1316134912, 2328, 0, -2147483648})
- Me.請款金額_nud.Name = "請款金額_nud"
- Me.請款金額_nud.Size = New System.Drawing.Size(142, 23)
- Me.請款金額_nud.TabIndex = 1890
- Me.請款金額_nud.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- Me.請款金額_nud.ThousandsSeparator = True
- '
- 'Label45
- '
- Me.Label45.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.Label45.AutoSize = True
- Me.Label45.ForeColor = System.Drawing.Color.Black
- Me.Label45.Location = New System.Drawing.Point(925, 370)
- Me.Label45.Name = "Label45"
- Me.Label45.Size = New System.Drawing.Size(55, 16)
- Me.Label45.TabIndex = 1891
- Me.Label45.Text = "未稅總額"
- '
- '請款總額_nud
- '
- Me.請款總額_nud.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.請款總額_nud.Location = New System.Drawing.Point(1199, 366)
- Me.請款總額_nud.Maximum = New Decimal(New Integer() {1316134912, 2328, 0, 0})
- Me.請款總額_nud.Minimum = New Decimal(New Integer() {1316134912, 2328, 0, -2147483648})
- Me.請款總額_nud.Name = "請款總額_nud"
- Me.請款總額_nud.Size = New System.Drawing.Size(142, 23)
- Me.請款總額_nud.TabIndex = 1888
- Me.請款總額_nud.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- Me.請款總額_nud.ThousandsSeparator = True
- '
- 'Label44
- '
- Me.Label44.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.Label44.AutoSize = True
- Me.Label44.ForeColor = System.Drawing.Color.Black
- Me.Label44.Location = New System.Drawing.Point(1142, 370)
- Me.Label44.Name = "Label44"
- Me.Label44.Size = New System.Drawing.Size(55, 16)
- Me.Label44.TabIndex = 1889
- Me.Label44.Text = "含稅總額"
- '
- '稅金_nud
- '
- Me.稅金_nud.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.稅金_nud.Location = New System.Drawing.Point(1301, 341)
- Me.稅金_nud.Name = "稅金_nud"
- Me.稅金_nud.Size = New System.Drawing.Size(40, 23)
- Me.稅金_nud.TabIndex = 1887
- Me.稅金_nud.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- Me.稅金_nud.ThousandsSeparator = True
- Me.稅金_nud.Value = New Decimal(New Integer() {10, 0, 0, 0})
- '
- 'Label43
- '
- Me.Label43.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.Label43.AutoSize = True
- Me.Label43.ForeColor = System.Drawing.Color.Black
- Me.Label43.Location = New System.Drawing.Point(1269, 344)
- Me.Label43.Name = "Label43"
- Me.Label43.Size = New System.Drawing.Size(31, 16)
- Me.Label43.TabIndex = 1886
- Me.Label43.Text = "稅金"
- '
- '請款內容_tb
- '
- Me.請款內容_tb.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.請款內容_tb.Location = New System.Drawing.Point(924, 456)
- Me.請款內容_tb.Multiline = True
- Me.請款內容_tb.Name = "請款內容_tb"
- Me.請款內容_tb.ScrollBars = System.Windows.Forms.ScrollBars.Vertical
- Me.請款內容_tb.Size = New System.Drawing.Size(417, 91)
- Me.請款內容_tb.TabIndex = 1884
- '
- 'Label42
- '
- Me.Label42.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.Label42.AutoSize = True
- Me.Label42.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.Label42.Location = New System.Drawing.Point(927, 438)
- Me.Label42.Name = "Label42"
- Me.Label42.Size = New System.Drawing.Size(193, 16)
- Me.Label42.TabIndex = 1885
- Me.Label42.Text = "本次請款內容: Deskripsi Tagihan"
- Me.Label42.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
- '
- '請款單號_tb
- '
- Me.請款單號_tb.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.請款單號_tb.Enabled = False
- Me.請款單號_tb.Location = New System.Drawing.Point(982, 341)
- Me.請款單號_tb.Name = "請款單號_tb"
- Me.請款單號_tb.Size = New System.Drawing.Size(94, 23)
- Me.請款單號_tb.TabIndex = 1880
- '
- '比例_nud
- '
- Me.比例_nud.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.比例_nud.DecimalPlaces = 2
- Me.比例_nud.Location = New System.Drawing.Point(1212, 341)
- Me.比例_nud.Name = "比例_nud"
- Me.比例_nud.Size = New System.Drawing.Size(55, 23)
- Me.比例_nud.TabIndex = 1879
- Me.比例_nud.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- Me.比例_nud.ThousandsSeparator = True
- '
- 'Label38
- '
- Me.Label38.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.Label38.AutoSize = True
- Me.Label38.ForeColor = System.Drawing.Color.Black
- Me.Label38.Location = New System.Drawing.Point(1180, 344)
- Me.Label38.Name = "Label38"
- Me.Label38.Size = New System.Drawing.Size(31, 16)
- Me.Label38.TabIndex = 1878
- Me.Label38.Text = "比例"
- '
- '其他意見_tb
- '
- Me.其他意見_tb.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.其他意見_tb.Location = New System.Drawing.Point(924, 564)
- Me.其他意見_tb.Multiline = True
- Me.其他意見_tb.Name = "其他意見_tb"
- Me.其他意見_tb.ScrollBars = System.Windows.Forms.ScrollBars.Vertical
- Me.其他意見_tb.Size = New System.Drawing.Size(417, 114)
- Me.其他意見_tb.TabIndex = 1876
- '
- 'Label39
- '
- Me.Label39.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.Label39.AutoSize = True
- Me.Label39.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.Label39.Location = New System.Drawing.Point(927, 550)
- Me.Label39.Name = "Label39"
- Me.Label39.Size = New System.Drawing.Size(362, 16)
- Me.Label39.TabIndex = 1877
- Me.Label39.Text = "籌建辦審批意見: Komentar Penyetuju Kantor Konstruksi Umum "
- Me.Label39.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
- '
- '請款單_dgv
- '
- DataGridViewCellStyle1.BackColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(255, Byte), Integer), CType(CType(192, Byte), Integer))
- Me.請款單_dgv.AlternatingRowsDefaultCellStyle = DataGridViewCellStyle1
- Me.請款單_dgv.Anchor = CType((((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
- Or System.Windows.Forms.AnchorStyles.Left) _
- Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
- Me.請款單_dgv.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill
- Me.請款單_dgv.BackgroundColor = System.Drawing.Color.White
- Me.請款單_dgv.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize
- Me.請款單_dgv.Location = New System.Drawing.Point(924, 5)
- Me.請款單_dgv.Name = "請款單_dgv"
- Me.請款單_dgv.RowHeadersWidth = 5
- Me.請款單_dgv.RowTemplate.Height = 24
- Me.請款單_dgv.Size = New System.Drawing.Size(417, 278)
- Me.請款單_dgv.TabIndex = 1874
- '
- '請款期數_cb
- '
- Me.請款期數_cb.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.請款期數_cb.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
- Me.請款期數_cb.FormattingEnabled = True
- Me.請款期數_cb.Items.AddRange(New Object() {"", "一", "二", "三", "四", "五"})
- Me.請款期數_cb.Location = New System.Drawing.Point(1131, 340)
- Me.請款期數_cb.Name = "請款期數_cb"
- Me.請款期數_cb.Size = New System.Drawing.Size(48, 24)
- Me.請款期數_cb.TabIndex = 1883
- '
- 'Label41
- '
- Me.Label41.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.Label41.AutoSize = True
- Me.Label41.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.Label41.ForeColor = System.Drawing.Color.Black
- Me.Label41.Location = New System.Drawing.Point(1077, 344)
- Me.Label41.Name = "Label41"
- Me.Label41.Size = New System.Drawing.Size(55, 16)
- Me.Label41.TabIndex = 1882
- Me.Label41.Text = "請款期數"
- Me.Label41.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
- '
- 'Label40
- '
- Me.Label40.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.Label40.AutoSize = True
- Me.Label40.BackColor = System.Drawing.SystemColors.Control
- Me.Label40.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.Label40.Location = New System.Drawing.Point(925, 345)
- Me.Label40.Name = "Label40"
- Me.Label40.Size = New System.Drawing.Size(55, 16)
- Me.Label40.TabIndex = 1881
- Me.Label40.Text = "請款單號"
- Me.Label40.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
- '
- '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.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.Label22.Location = New System.Drawing.Point(917, 321)
- Me.Label22.Name = "Label22"
- Me.Label22.Size = New System.Drawing.Size(427, 16)
- Me.Label22.TabIndex = 1900
- Me.Label22.Text = "_________________________________________________________________________________" &
- "___"
- Me.Label22.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
- '
- '主頁明細_ch
- '
- Me.主頁明細_ch.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.主頁明細_ch.AutoSize = True
- Me.主頁明細_ch.Location = New System.Drawing.Point(1009, 417)
- Me.主頁明細_ch.Name = "主頁明細_ch"
- Me.主頁明細_ch.Size = New System.Drawing.Size(74, 20)
- Me.主頁明細_ch.TabIndex = 1902
- Me.主頁明細_ch.Text = "主頁明細"
- Me.主頁明細_ch.UseVisualStyleBackColor = True
- '
- '新版_ch
- '
- Me.新版_ch.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.新版_ch.AutoSize = True
- Me.新版_ch.Location = New System.Drawing.Point(1295, 417)
- Me.新版_ch.Name = "新版_ch"
- Me.新版_ch.Size = New System.Drawing.Size(50, 20)
- Me.新版_ch.TabIndex = 1909
- Me.新版_ch.Text = "新版"
- Me.新版_ch.UseVisualStyleBackColor = True
- '
- '主頁_ch
- '
- Me.主頁_ch.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.主頁_ch.AutoSize = True
- Me.主頁_ch.Checked = True
- Me.主頁_ch.CheckState = System.Windows.Forms.CheckState.Checked
- Me.主頁_ch.Location = New System.Drawing.Point(926, 417)
- Me.主頁_ch.Name = "主頁_ch"
- Me.主頁_ch.Size = New System.Drawing.Size(50, 20)
- Me.主頁_ch.TabIndex = 1907
- Me.主頁_ch.Text = "主頁"
- Me.主頁_ch.UseVisualStyleBackColor = True
- '
- 'Panel1
- '
- Me.Panel1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
- Me.Panel1.Controls.Add(Me.甲方_tb)
- Me.Panel1.Controls.Add(Me.J2_PB)
- Me.Panel1.Controls.Add(Me.JCS_PB)
- Me.Panel1.Controls.Add(Me.DTP1)
- Me.Panel1.Controls.Add(Me.PictureBox2)
- Me.Panel1.Controls.Add(Me.PictureBox1)
- Me.Panel1.Controls.Add(Me.報價總表_dgv)
- Me.Panel1.Controls.Add(Me.工程期1_ch)
- Me.Panel1.Controls.Add(Me.Label10)
- Me.Panel1.Location = New System.Drawing.Point(699, 7)
- Me.Panel1.Name = "Panel1"
- Me.Panel1.Size = New System.Drawing.Size(543, 157)
- Me.Panel1.TabIndex = 1875
- Me.Panel1.Visible = False
- '
- '甲方_tb
- '
- Me.甲方_tb.Enabled = False
- Me.甲方_tb.Location = New System.Drawing.Point(233, 128)
- Me.甲方_tb.Name = "甲方_tb"
- Me.甲方_tb.Size = New System.Drawing.Size(125, 23)
- Me.甲方_tb.TabIndex = 1671
- '
- 'DTP1
- '
- Me.DTP1.CustomFormat = "yyyy/MM/dd"
- Me.DTP1.Format = System.Windows.Forms.DateTimePickerFormat.Custom
- Me.DTP1.Location = New System.Drawing.Point(4, 128)
- Me.DTP1.Name = "DTP1"
- Me.DTP1.Size = New System.Drawing.Size(87, 23)
- Me.DTP1.TabIndex = 1668
- '
- '報價總表_dgv
- '
- DataGridViewCellStyle2.BackColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(255, Byte), Integer), CType(CType(192, Byte), Integer))
- Me.報價總表_dgv.AlternatingRowsDefaultCellStyle = DataGridViewCellStyle2
- Me.報價總表_dgv.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill
- Me.報價總表_dgv.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize
- Me.報價總表_dgv.Location = New System.Drawing.Point(4, 2)
- Me.報價總表_dgv.Name = "報價總表_dgv"
- Me.報價總表_dgv.RowHeadersWidth = 5
- Me.報價總表_dgv.RowTemplate.Height = 24
- Me.報價總表_dgv.Size = New System.Drawing.Size(137, 124)
- Me.報價總表_dgv.TabIndex = 1065
- '
- '工程期1_ch
- '
- Me.工程期1_ch.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
- Me.工程期1_ch.ForeColor = System.Drawing.Color.Blue
- Me.工程期1_ch.FormattingEnabled = True
- Me.工程期1_ch.Items.AddRange(New Object() {"", "第一期", "第二期", "第三期", "第四期", "第五期", "第六期", "第七期", "第八期", "第九期", "第十期"})
- Me.工程期1_ch.Location = New System.Drawing.Point(154, 127)
- Me.工程期1_ch.Name = "工程期1_ch"
- Me.工程期1_ch.Size = New System.Drawing.Size(74, 24)
- Me.工程期1_ch.TabIndex = 1428
- '
- 'Label10
- '
- Me.Label10.AutoSize = True
- Me.Label10.BackColor = System.Drawing.SystemColors.Control
- Me.Label10.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.Label10.Location = New System.Drawing.Point(97, 131)
- Me.Label10.Name = "Label10"
- Me.Label10.Size = New System.Drawing.Size(55, 16)
- Me.Label10.TabIndex = 1429
- Me.Label10.Text = "工程期數"
- Me.Label10.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
- '
- '合約_dgv
- '
- DataGridViewCellStyle3.BackColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(255, Byte), Integer), CType(CType(192, Byte), Integer))
- Me.合約_dgv.AlternatingRowsDefaultCellStyle = DataGridViewCellStyle3
- Me.合約_dgv.Anchor = CType(((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
- Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.合約_dgv.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill
- Me.合約_dgv.BackgroundColor = System.Drawing.Color.White
- Me.合約_dgv.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize
- Me.合約_dgv.Location = New System.Drawing.Point(3, 54)
- Me.合約_dgv.Name = "合約_dgv"
- Me.合約_dgv.RowHeadersWidth = 5
- Me.合約_dgv.RowTemplate.Height = 24
- Me.合約_dgv.Size = New System.Drawing.Size(232, 623)
- Me.合約_dgv.TabIndex = 1781
- '
- 'TabPage5
- '
- Me.TabPage5.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D
- Me.TabPage5.Controls.Add(Me.第1期_dgv)
- Me.TabPage5.Location = New System.Drawing.Point(4, 28)
- Me.TabPage5.Name = "TabPage5"
- Me.TabPage5.Padding = New System.Windows.Forms.Padding(3)
- Me.TabPage5.Size = New System.Drawing.Size(682, 196)
- Me.TabPage5.TabIndex = 0
- Me.TabPage5.Text = "第一期"
- Me.TabPage5.UseVisualStyleBackColor = True
- '
- '第1期_dgv
- '
- DataGridViewCellStyle4.BackColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(255, Byte), Integer), CType(CType(192, Byte), Integer))
- Me.第1期_dgv.AlternatingRowsDefaultCellStyle = DataGridViewCellStyle4
- Me.第1期_dgv.Anchor = CType(((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
- Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.第1期_dgv.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill
- Me.第1期_dgv.BackgroundColor = System.Drawing.Color.White
- Me.第1期_dgv.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize
- Me.第1期_dgv.Location = New System.Drawing.Point(1, 1)
- Me.第1期_dgv.Name = "第1期_dgv"
- Me.第1期_dgv.RowHeadersWidth = 5
- Me.第1期_dgv.RowTemplate.Height = 24
- Me.第1期_dgv.Size = New System.Drawing.Size(675, 178)
- Me.第1期_dgv.TabIndex = 1038
- '
- 'TabPage6
- '
- Me.TabPage6.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D
- Me.TabPage6.Controls.Add(Me.第2期_dgv)
- Me.TabPage6.Location = New System.Drawing.Point(4, 28)
- Me.TabPage6.Name = "TabPage6"
- Me.TabPage6.Padding = New System.Windows.Forms.Padding(3)
- Me.TabPage6.Size = New System.Drawing.Size(682, 196)
- Me.TabPage6.TabIndex = 1
- Me.TabPage6.Text = "第二期"
- Me.TabPage6.UseVisualStyleBackColor = True
- '
- '第2期_dgv
- '
- DataGridViewCellStyle5.BackColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(255, Byte), Integer), CType(CType(192, Byte), Integer))
- Me.第2期_dgv.AlternatingRowsDefaultCellStyle = DataGridViewCellStyle5
- Me.第2期_dgv.Anchor = CType(((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
- Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.第2期_dgv.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill
- Me.第2期_dgv.BackgroundColor = System.Drawing.Color.White
- Me.第2期_dgv.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize
- Me.第2期_dgv.Location = New System.Drawing.Point(1, 1)
- Me.第2期_dgv.Name = "第2期_dgv"
- Me.第2期_dgv.RowHeadersWidth = 5
- Me.第2期_dgv.RowTemplate.Height = 24
- Me.第2期_dgv.Size = New System.Drawing.Size(675, 187)
- Me.第2期_dgv.TabIndex = 1039
- '
- 'TabPage7
- '
- Me.TabPage7.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D
- Me.TabPage7.Controls.Add(Me.第3期_dgv)
- Me.TabPage7.Location = New System.Drawing.Point(4, 28)
- Me.TabPage7.Name = "TabPage7"
- Me.TabPage7.Padding = New System.Windows.Forms.Padding(3)
- Me.TabPage7.Size = New System.Drawing.Size(682, 196)
- Me.TabPage7.TabIndex = 2
- Me.TabPage7.Text = "第三期"
- Me.TabPage7.UseVisualStyleBackColor = True
- '
- '第3期_dgv
- '
- DataGridViewCellStyle6.BackColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(255, Byte), Integer), CType(CType(192, Byte), Integer))
- Me.第3期_dgv.AlternatingRowsDefaultCellStyle = DataGridViewCellStyle6
- Me.第3期_dgv.Anchor = CType(((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
- Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.第3期_dgv.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill
- Me.第3期_dgv.BackgroundColor = System.Drawing.Color.White
- Me.第3期_dgv.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize
- Me.第3期_dgv.Location = New System.Drawing.Point(1, 1)
- Me.第3期_dgv.Name = "第3期_dgv"
- Me.第3期_dgv.RowHeadersWidth = 5
- Me.第3期_dgv.RowTemplate.Height = 24
- Me.第3期_dgv.Size = New System.Drawing.Size(675, 187)
- Me.第3期_dgv.TabIndex = 1040
- '
- 'TabPage8
- '
- Me.TabPage8.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D
- Me.TabPage8.Controls.Add(Me.第4期_dgv)
- Me.TabPage8.Location = New System.Drawing.Point(4, 28)
- Me.TabPage8.Name = "TabPage8"
- Me.TabPage8.Padding = New System.Windows.Forms.Padding(3)
- Me.TabPage8.Size = New System.Drawing.Size(682, 196)
- Me.TabPage8.TabIndex = 3
- Me.TabPage8.Text = "第四期"
- Me.TabPage8.UseVisualStyleBackColor = True
- '
- '第4期_dgv
- '
- DataGridViewCellStyle7.BackColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(255, Byte), Integer), CType(CType(192, Byte), Integer))
- Me.第4期_dgv.AlternatingRowsDefaultCellStyle = DataGridViewCellStyle7
- Me.第4期_dgv.Anchor = CType(((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
- Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.第4期_dgv.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill
- Me.第4期_dgv.BackgroundColor = System.Drawing.Color.White
- Me.第4期_dgv.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize
- Me.第4期_dgv.Location = New System.Drawing.Point(1, 1)
- Me.第4期_dgv.Name = "第4期_dgv"
- Me.第4期_dgv.RowHeadersWidth = 5
- Me.第4期_dgv.RowTemplate.Height = 24
- Me.第4期_dgv.Size = New System.Drawing.Size(675, 187)
- Me.第4期_dgv.TabIndex = 1041
- '
- 'TabPage9
- '
- Me.TabPage9.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D
- Me.TabPage9.Controls.Add(Me.第5期_dgv)
- Me.TabPage9.Location = New System.Drawing.Point(4, 28)
- Me.TabPage9.Name = "TabPage9"
- Me.TabPage9.Padding = New System.Windows.Forms.Padding(3)
- Me.TabPage9.Size = New System.Drawing.Size(682, 196)
- Me.TabPage9.TabIndex = 4
- Me.TabPage9.Text = "第五期"
- Me.TabPage9.UseVisualStyleBackColor = True
- '
- '第5期_dgv
- '
- DataGridViewCellStyle8.BackColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(255, Byte), Integer), CType(CType(192, Byte), Integer))
- Me.第5期_dgv.AlternatingRowsDefaultCellStyle = DataGridViewCellStyle8
- Me.第5期_dgv.Anchor = CType(((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
- Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.第5期_dgv.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill
- Me.第5期_dgv.BackgroundColor = System.Drawing.Color.White
- Me.第5期_dgv.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize
- Me.第5期_dgv.Location = New System.Drawing.Point(1, 1)
- Me.第5期_dgv.Name = "第5期_dgv"
- Me.第5期_dgv.RowHeadersWidth = 5
- Me.第5期_dgv.RowTemplate.Height = 24
- Me.第5期_dgv.Size = New System.Drawing.Size(675, 187)
- Me.第5期_dgv.TabIndex = 1042
- '
- 'Label37
- '
- Me.Label37.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.Label37.AutoSize = True
- Me.Label37.ForeColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
- Me.Label37.Location = New System.Drawing.Point(241, 536)
- Me.Label37.Name = "Label37"
- Me.Label37.Size = New System.Drawing.Size(31, 16)
- Me.Label37.TabIndex = 1873
- Me.Label37.Text = "主要"
- '
- 'Label36
- '
- Me.Label36.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.Label36.AutoSize = True
- Me.Label36.ForeColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
- Me.Label36.Location = New System.Drawing.Point(586, 536)
- Me.Label36.Name = "Label36"
- Me.Label36.Size = New System.Drawing.Size(31, 16)
- Me.Label36.TabIndex = 1872
- Me.Label36.Text = "其中"
- '
- 'Label35
- '
- Me.Label35.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.Label35.AutoSize = True
- Me.Label35.ForeColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
- Me.Label35.Location = New System.Drawing.Point(586, 608)
- Me.Label35.Name = "Label35"
- Me.Label35.Size = New System.Drawing.Size(225, 16)
- Me.Label35.TabIndex = 1867
- Me.Label35.Text = "Installation Fee Application 施工請款 : "
- '
- 'Label34
- '
- Me.Label34.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.Label34.AutoSize = True
- Me.Label34.ForeColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
- Me.Label34.Location = New System.Drawing.Point(586, 558)
- Me.Label34.Name = "Label34"
- Me.Label34.Size = New System.Drawing.Size(224, 16)
- Me.Label34.TabIndex = 1863
- Me.Label34.Text = "Prepayments 預付款 : "
- '
- 'Label19
- '
- Me.Label19.AutoSize = True
- Me.Label19.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.Label19.Location = New System.Drawing.Point(686, 211)
- Me.Label19.Name = "Label19"
- Me.Label19.Size = New System.Drawing.Size(235, 16)
- Me.Label19.TabIndex = 1823
- Me.Label19.Text = "打完比例後,請按左鍵或右鍵金額才會計算"
- Me.Label19.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
- '
- '明細選項_bt
- '
- Me.明細選項_bt.Enabled = False
- Me.明細選項_bt.Location = New System.Drawing.Point(491, 205)
- Me.明細選項_bt.Name = "明細選項_bt"
- Me.明細選項_bt.Size = New System.Drawing.Size(46, 23)
- Me.明細選項_bt.TabIndex = 1822
- '
- '刪除資料_bt
- '
- Me.刪除資料_bt.ForeColor = System.Drawing.Color.Red
- Me.刪除資料_bt.Location = New System.Drawing.Point(612, 203)
- Me.刪除資料_bt.Name = "刪除資料_bt"
- Me.刪除資料_bt.Size = New System.Drawing.Size(75, 26)
- Me.刪除資料_bt.TabIndex = 1821
- Me.刪除資料_bt.Text = "刪除資料"
- Me.刪除資料_bt.UseVisualStyleBackColor = True
- '
- '新增資料_bt
- '
- Me.新增資料_bt.ForeColor = System.Drawing.Color.Blue
- Me.新增資料_bt.Location = New System.Drawing.Point(537, 203)
- Me.新增資料_bt.Name = "新增資料_bt"
- Me.新增資料_bt.Size = New System.Drawing.Size(75, 26)
- Me.新增資料_bt.TabIndex = 1820
- Me.新增資料_bt.Text = "新增資料"
- Me.新增資料_bt.UseVisualStyleBackColor = True
- '
- '金額6_und
- '
- Me.金額6_und.Enabled = False
- Me.金額6_und.Location = New System.Drawing.Point(814, 179)
- Me.金額6_und.Maximum = New Decimal(New Integer() {1316134912, 2328, 0, 0})
- Me.金額6_und.Name = "金額6_und"
- Me.金額6_und.Size = New System.Drawing.Size(105, 23)
- Me.金額6_und.TabIndex = 1818
- Me.金額6_und.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- Me.金額6_und.ThousandsSeparator = True
- '
- '工程款6_nud
- '
- Me.工程款6_nud.Enabled = False
- Me.工程款6_nud.Location = New System.Drawing.Point(773, 179)
- Me.工程款6_nud.Maximum = New Decimal(New Integer() {1000, 0, 0, 0})
- Me.工程款6_nud.Name = "工程款6_nud"
- Me.工程款6_nud.Size = New System.Drawing.Size(40, 23)
- Me.工程款6_nud.TabIndex = 1817
- Me.工程款6_nud.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- Me.工程款6_nud.ThousandsSeparator = True
- Me.工程款6_nud.Value = New Decimal(New Integer() {100, 0, 0, 0})
- '
- 'NUD2
- '
- Me.NUD2.Enabled = False
- Me.NUD2.Location = New System.Drawing.Point(596, 126)
- Me.NUD2.Maximum = New Decimal(New Integer() {1316134912, 2328, 0, 0})
- Me.NUD2.Name = "NUD2"
- Me.NUD2.Size = New System.Drawing.Size(105, 23)
- Me.NUD2.TabIndex = 1797
- Me.NUD2.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- Me.NUD2.ThousandsSeparator = True
- '
- 'NUD1
- '
- Me.NUD1.Enabled = False
- Me.NUD1.Location = New System.Drawing.Point(369, 126)
- Me.NUD1.Maximum = New Decimal(New Integer() {1316134912, 2328, 0, 0})
- Me.NUD1.Name = "NUD1"
- Me.NUD1.Size = New System.Drawing.Size(105, 23)
- Me.NUD1.TabIndex = 1796
- Me.NUD1.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- Me.NUD1.ThousandsSeparator = True
- '
- 'NUD3
- '
- Me.NUD3.Location = New System.Drawing.Point(815, 126)
- Me.NUD3.Maximum = New Decimal(New Integer() {1316134912, 2328, 0, 0})
- Me.NUD3.Name = "NUD3"
- Me.NUD3.Size = New System.Drawing.Size(103, 23)
- Me.NUD3.TabIndex = 1798
- Me.NUD3.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- Me.NUD3.ThousandsSeparator = True
- '
- '金額5_und
- '
- Me.金額5_und.Enabled = False
- Me.金額5_und.Location = New System.Drawing.Point(814, 155)
- Me.金額5_und.Maximum = New Decimal(New Integer() {1316134912, 2328, 0, 0})
- Me.金額5_und.Name = "金額5_und"
- Me.金額5_und.Size = New System.Drawing.Size(105, 23)
- Me.金額5_und.TabIndex = 1813
- Me.金額5_und.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- Me.金額5_und.ThousandsSeparator = True
- '
- '金額4_und
- '
- Me.金額4_und.Enabled = False
- Me.金額4_und.Location = New System.Drawing.Point(585, 179)
- Me.金額4_und.Maximum = New Decimal(New Integer() {1316134912, 2328, 0, 0})
- Me.金額4_und.Name = "金額4_und"
- Me.金額4_und.Size = New System.Drawing.Size(105, 23)
- Me.金額4_und.TabIndex = 1812
- Me.金額4_und.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- Me.金額4_und.ThousandsSeparator = True
- '
- '金額3_und
- '
- Me.金額3_und.Enabled = False
- Me.金額3_und.Location = New System.Drawing.Point(585, 155)
- Me.金額3_und.Maximum = New Decimal(New Integer() {1316134912, 2328, 0, 0})
- Me.金額3_und.Name = "金額3_und"
- Me.金額3_und.Size = New System.Drawing.Size(105, 23)
- Me.金額3_und.TabIndex = 1811
- Me.金額3_und.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- Me.金額3_und.ThousandsSeparator = True
- '
- '金額2_und
- '
- Me.金額2_und.Enabled = False
- Me.金額2_und.Location = New System.Drawing.Point(355, 179)
- Me.金額2_und.Maximum = New Decimal(New Integer() {1316134912, 2328, 0, 0})
- Me.金額2_und.Name = "金額2_und"
- Me.金額2_und.Size = New System.Drawing.Size(105, 23)
- Me.金額2_und.TabIndex = 1810
- Me.金額2_und.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- Me.金額2_und.ThousandsSeparator = True
- '
- '金額1_und
- '
- Me.金額1_und.Enabled = False
- Me.金額1_und.Location = New System.Drawing.Point(355, 155)
- Me.金額1_und.Maximum = New Decimal(New Integer() {1316134912, 2328, 0, 0})
- Me.金額1_und.Name = "金額1_und"
- Me.金額1_und.Size = New System.Drawing.Size(105, 23)
- Me.金額1_und.TabIndex = 1809
- Me.金額1_und.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- Me.金額1_und.ThousandsSeparator = True
- '
- '工程款5_nud
- '
- Me.工程款5_nud.Location = New System.Drawing.Point(773, 155)
- Me.工程款5_nud.Name = "工程款5_nud"
- Me.工程款5_nud.Size = New System.Drawing.Size(40, 23)
- Me.工程款5_nud.TabIndex = 1808
- Me.工程款5_nud.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- Me.工程款5_nud.ThousandsSeparator = True
- Me.工程款5_nud.Value = New Decimal(New Integer() {5, 0, 0, 0})
- '
- '工程款4_nud
- '
- Me.工程款4_nud.Location = New System.Drawing.Point(544, 179)
- Me.工程款4_nud.Name = "工程款4_nud"
- Me.工程款4_nud.Size = New System.Drawing.Size(40, 23)
- Me.工程款4_nud.TabIndex = 1807
- Me.工程款4_nud.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- Me.工程款4_nud.ThousandsSeparator = True
- Me.工程款4_nud.Value = New Decimal(New Integer() {5, 0, 0, 0})
- '
- '工程款3_nud
- '
- Me.工程款3_nud.Location = New System.Drawing.Point(544, 155)
- Me.工程款3_nud.Name = "工程款3_nud"
- Me.工程款3_nud.Size = New System.Drawing.Size(40, 23)
- Me.工程款3_nud.TabIndex = 1806
- Me.工程款3_nud.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- Me.工程款3_nud.ThousandsSeparator = True
- Me.工程款3_nud.Value = New Decimal(New Integer() {20, 0, 0, 0})
- '
- '工程款1_nud
- '
- Me.工程款1_nud.Location = New System.Drawing.Point(314, 155)
- Me.工程款1_nud.Name = "工程款1_nud"
- Me.工程款1_nud.Size = New System.Drawing.Size(40, 23)
- Me.工程款1_nud.TabIndex = 1804
- Me.工程款1_nud.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- Me.工程款1_nud.ThousandsSeparator = True
- Me.工程款1_nud.Value = New Decimal(New Integer() {30, 0, 0, 0})
- '
- '工程款2_nud
- '
- Me.工程款2_nud.Location = New System.Drawing.Point(314, 179)
- Me.工程款2_nud.Name = "工程款2_nud"
- Me.工程款2_nud.Size = New System.Drawing.Size(40, 23)
- Me.工程款2_nud.TabIndex = 1805
- Me.工程款2_nud.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- Me.工程款2_nud.ThousandsSeparator = True
- Me.工程款2_nud.Value = New Decimal(New Integer() {40, 0, 0, 0})
- '
- '稅額顯示_lb
- '
- Me.稅額顯示_lb.AutoSize = True
- Me.稅額顯示_lb.ForeColor = System.Drawing.Color.Green
- Me.稅額顯示_lb.Location = New System.Drawing.Point(479, 129)
- Me.稅額顯示_lb.Name = "稅額顯示_lb"
- Me.稅額顯示_lb.Size = New System.Drawing.Size(120, 16)
- Me.稅額顯示_lb.TabIndex = 1795
- Me.稅額顯示_lb.Text = "PPN 10%稅額 = Rp. "
- '
- 'CH2
- '
- Me.CH2.AutoSize = True
- Me.CH2.ForeColor = System.Drawing.Color.Green
- Me.CH2.Location = New System.Drawing.Point(708, 128)
- Me.CH2.Name = "CH2"
- Me.CH2.Size = New System.Drawing.Size(111, 20)
- Me.CH2.TabIndex = 1815
- Me.CH2.Text = "工程總價 = Rp. "
- Me.CH2.UseVisualStyleBackColor = True
- '
- 'CH1
- '
- Me.CH1.AutoSize = True
- Me.CH1.ForeColor = System.Drawing.Color.Green
- Me.CH1.Location = New System.Drawing.Point(239, 128)
- Me.CH1.Name = "CH1"
- Me.CH1.Size = New System.Drawing.Size(135, 20)
- Me.CH1.TabIndex = 1814
- Me.CH1.Text = "分項工程報價 = Rp. "
- Me.CH1.UseVisualStyleBackColor = True
- '
- 'Label386
- '
- Me.Label386.AutoSize = True
- Me.Label386.ForeColor = System.Drawing.Color.Green
- Me.Label386.Location = New System.Drawing.Point(694, 157)
- Me.Label386.Name = "Label386"
- Me.Label386.Size = New System.Drawing.Size(79, 16)
- Me.Label386.TabIndex = 1803
- Me.Label386.Text = "第五期工程款"
- '
- 'Label21
- '
- Me.Label21.AutoSize = True
- Me.Label21.ForeColor = System.Drawing.Color.Green
- Me.Label21.Location = New System.Drawing.Point(695, 181)
- Me.Label21.Name = "Label21"
- Me.Label21.Size = New System.Drawing.Size(79, 16)
- Me.Label21.TabIndex = 1816
- Me.Label21.Text = "工程款 總數"
- '
- 'TabControl2
- '
- Me.TabControl2.Anchor = CType(((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
- Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.TabControl2.Appearance = System.Windows.Forms.TabAppearance.Buttons
- Me.TabControl2.Controls.Add(Me.TabPage5)
- Me.TabControl2.Controls.Add(Me.TabPage6)
- Me.TabControl2.Controls.Add(Me.TabPage7)
- Me.TabControl2.Controls.Add(Me.TabPage8)
- Me.TabControl2.Controls.Add(Me.TabPage9)
- Me.TabControl2.Location = New System.Drawing.Point(236, 205)
- Me.TabControl2.Name = "TabControl2"
- Me.TabControl2.SelectedIndex = 0
- Me.TabControl2.Size = New System.Drawing.Size(690, 228)
- Me.TabControl2.TabIndex = 1819
- '
- 'Label387
- '
- Me.Label387.AutoSize = True
- Me.Label387.ForeColor = System.Drawing.Color.Green
- Me.Label387.Location = New System.Drawing.Point(465, 182)
- Me.Label387.Name = "Label387"
- Me.Label387.Size = New System.Drawing.Size(79, 16)
- Me.Label387.TabIndex = 1802
- Me.Label387.Text = "第四期工程款"
- '
- 'Label372
- '
- Me.Label372.AutoSize = True
- Me.Label372.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.Label372.ForeColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer))
- Me.Label372.Location = New System.Drawing.Point(466, 51)
- Me.Label372.Name = "Label372"
- Me.Label372.Size = New System.Drawing.Size(55, 16)
- Me.Label372.TabIndex = 1793
- Me.Label372.Text = "客戶名稱"
- Me.Label372.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
- '
- '客戶名稱_tb
- '
- Me.客戶名稱_tb.FormattingEnabled = True
- Me.客戶名稱_tb.Location = New System.Drawing.Point(528, 47)
- Me.客戶名稱_tb.Name = "客戶名稱_tb"
- Me.客戶名稱_tb.Size = New System.Drawing.Size(390, 24)
- Me.客戶名稱_tb.TabIndex = 1794
- '
- 'Label375
- '
- Me.Label375.AutoSize = True
- Me.Label375.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.Label375.ForeColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer))
- Me.Label375.Location = New System.Drawing.Point(241, 76)
- Me.Label375.Name = "Label375"
- Me.Label375.Size = New System.Drawing.Size(87, 16)
- Me.Label375.TabIndex = 1789
- Me.Label375.Text = "工程名稱(中文)"
- Me.Label375.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
- '
- '工程名稱_中_tb
- '
- Me.工程名稱_中_tb.Location = New System.Drawing.Point(335, 73)
- Me.工程名稱_中_tb.Name = "工程名稱_中_tb"
- Me.工程名稱_中_tb.Size = New System.Drawing.Size(583, 23)
- Me.工程名稱_中_tb.TabIndex = 1790
- '
- '工程名稱_英_tb
- '
- Me.工程名稱_英_tb.Location = New System.Drawing.Point(335, 97)
- Me.工程名稱_英_tb.Name = "工程名稱_英_tb"
- Me.工程名稱_英_tb.Size = New System.Drawing.Size(583, 23)
- Me.工程名稱_英_tb.TabIndex = 1792
- '
- 'Label378
- '
- Me.Label378.AutoSize = True
- Me.Label378.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.Label378.ForeColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer))
- Me.Label378.Location = New System.Drawing.Point(241, 100)
- Me.Label378.Name = "Label378"
- Me.Label378.Size = New System.Drawing.Size(87, 16)
- Me.Label378.TabIndex = 1791
- Me.Label378.Text = "工程名稱(英文)"
- Me.Label378.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
- '
- 'Label2
- '
- Me.Label2.AutoSize = True
- Me.Label2.BackColor = System.Drawing.SystemColors.Control
- Me.Label2.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.Label2.Location = New System.Drawing.Point(240, 51)
- Me.Label2.Name = "Label2"
- Me.Label2.Size = New System.Drawing.Size(88, 16)
- Me.Label2.TabIndex = 1788
- Me.Label2.Text = "合 約 編 號"
- Me.Label2.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
- '
- '合約編號_tb
- '
- Me.合約編號_tb.Enabled = False
- Me.合約編號_tb.Location = New System.Drawing.Point(335, 48)
- Me.合約編號_tb.Name = "合約編號_tb"
- Me.合約編號_tb.Size = New System.Drawing.Size(125, 23)
- Me.合約編號_tb.TabIndex = 1787
- '
- 'Label11
- '
- Me.Label11.AutoSize = True
- Me.Label11.BackColor = System.Drawing.SystemColors.Control
- Me.Label11.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.Label11.Location = New System.Drawing.Point(4, 33)
- Me.Label11.Name = "Label11"
- Me.Label11.Size = New System.Drawing.Size(31, 16)
- Me.Label11.TabIndex = 1786
- Me.Label11.Text = "甲方"
- Me.Label11.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
- '
- '合約編號1_cb
- '
- Me.合約編號1_cb.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
- Me.合約編號1_cb.ForeColor = System.Drawing.Color.Blue
- Me.合約編號1_cb.FormattingEnabled = True
- Me.合約編號1_cb.Items.AddRange(New Object() {"", "第一期", "第二期", "第三期", "第四期", "第五期", "第六期", "第七期", "第八期", "第九期", "第十期"})
- Me.合約編號1_cb.Location = New System.Drawing.Point(36, 29)
- Me.合約編號1_cb.Name = "合約編號1_cb"
- Me.合約編號1_cb.Size = New System.Drawing.Size(155, 24)
- Me.合約編號1_cb.TabIndex = 1785
- '
- 'Label7
- '
- Me.Label7.AutoSize = True
- Me.Label7.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.Label7.Location = New System.Drawing.Point(3, 7)
- Me.Label7.Name = "Label7"
- Me.Label7.Size = New System.Drawing.Size(67, 16)
- Me.Label7.TabIndex = 1783
- Me.Label7.Text = "關鍵字搜尋"
- Me.Label7.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
- '
- '關鍵字搜尋_tb
- '
- Me.關鍵字搜尋_tb.Location = New System.Drawing.Point(72, 4)
- Me.關鍵字搜尋_tb.Name = "關鍵字搜尋_tb"
- Me.關鍵字搜尋_tb.Size = New System.Drawing.Size(119, 23)
- Me.關鍵字搜尋_tb.TabIndex = 1782
- '
- 'BNUD5
- '
- Me.BNUD5.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.BNUD5.Location = New System.Drawing.Point(813, 655)
- Me.BNUD5.Maximum = New Decimal(New Integer() {1316134912, 2328, 0, 0})
- Me.BNUD5.Minimum = New Decimal(New Integer() {1316134912, 2328, 0, -2147483648})
- Me.BNUD5.Name = "BNUD5"
- Me.BNUD5.Size = New System.Drawing.Size(105, 23)
- Me.BNUD5.TabIndex = 1870
- Me.BNUD5.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- Me.BNUD5.ThousandsSeparator = True
- '
- 'BNUD4
- '
- Me.BNUD4.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.BNUD4.Location = New System.Drawing.Point(813, 630)
- Me.BNUD4.Maximum = New Decimal(New Integer() {1316134912, 2328, 0, 0})
- Me.BNUD4.Minimum = New Decimal(New Integer() {1316134912, 2328, 0, -2147483648})
- Me.BNUD4.Name = "BNUD4"
- Me.BNUD4.Size = New System.Drawing.Size(105, 23)
- Me.BNUD4.TabIndex = 1868
- Me.BNUD4.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- Me.BNUD4.ThousandsSeparator = True
- '
- 'Label31
- '
- Me.Label31.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.Label31.AutoSize = True
- Me.Label31.ForeColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
- Me.Label31.Location = New System.Drawing.Point(586, 634)
- Me.Label31.Name = "Label31"
- Me.Label31.Size = New System.Drawing.Size(225, 16)
- Me.Label31.TabIndex = 1869
- Me.Label31.Text = "Final Acceptance 驗收款 : "
- '
- 'Label32
- '
- Me.Label32.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.Label32.AutoSize = True
- Me.Label32.ForeColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
- Me.Label32.ImageAlign = System.Drawing.ContentAlignment.TopLeft
- Me.Label32.Location = New System.Drawing.Point(586, 658)
- Me.Label32.Name = "Label32"
- Me.Label32.Size = New System.Drawing.Size(226, 16)
- Me.Label32.TabIndex = 1871
- Me.Label32.Text = "Assure 保留款 : "
- '
- 'BNUD3
- '
- Me.BNUD3.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.BNUD3.Location = New System.Drawing.Point(813, 605)
- Me.BNUD3.Maximum = New Decimal(New Integer() {1316134912, 2328, 0, 0})
- Me.BNUD3.Minimum = New Decimal(New Integer() {1316134912, 2328, 0, -2147483648})
- Me.BNUD3.Name = "BNUD3"
- Me.BNUD3.Size = New System.Drawing.Size(105, 23)
- Me.BNUD3.TabIndex = 1866
- Me.BNUD3.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- Me.BNUD3.ThousandsSeparator = True
- '
- 'BNUD2
- '
- Me.BNUD2.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.BNUD2.Location = New System.Drawing.Point(813, 580)
- Me.BNUD2.Maximum = New Decimal(New Integer() {1316134912, 2328, 0, 0})
- Me.BNUD2.Minimum = New Decimal(New Integer() {1316134912, 2328, 0, -2147483648})
- Me.BNUD2.Name = "BNUD2"
- Me.BNUD2.Size = New System.Drawing.Size(105, 23)
- Me.BNUD2.TabIndex = 1864
- Me.BNUD2.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- Me.BNUD2.ThousandsSeparator = True
- '
- 'BNUD1
- '
- Me.BNUD1.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.BNUD1.Location = New System.Drawing.Point(813, 555)
- Me.BNUD1.Maximum = New Decimal(New Integer() {1316134912, 2328, 0, 0})
- Me.BNUD1.Minimum = New Decimal(New Integer() {1316134912, 2328, 0, -2147483648})
- Me.BNUD1.Name = "BNUD1"
- Me.BNUD1.Size = New System.Drawing.Size(105, 23)
- Me.BNUD1.TabIndex = 1862
- Me.BNUD1.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- Me.BNUD1.ThousandsSeparator = True
- '
- 'Label33
- '
- Me.Label33.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.Label33.AutoSize = True
- Me.Label33.ForeColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
- Me.Label33.Location = New System.Drawing.Point(586, 583)
- Me.Label33.Name = "Label33"
- Me.Label33.Size = New System.Drawing.Size(225, 16)
- Me.Label33.TabIndex = 1865
- Me.Label33.Text = "Material Cost Application 材料到貨款 : "
- '
- 'ANUD5
- '
- Me.ANUD5.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.ANUD5.Location = New System.Drawing.Point(435, 655)
- Me.ANUD5.Maximum = New Decimal(New Integer() {1316134912, 2328, 0, 0})
- Me.ANUD5.Minimum = New Decimal(New Integer() {1316134912, 2328, 0, -2147483648})
- Me.ANUD5.Name = "ANUD5"
- Me.ANUD5.Size = New System.Drawing.Size(105, 23)
- Me.ANUD5.TabIndex = 1860
- Me.ANUD5.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- Me.ANUD5.ThousandsSeparator = True
- '
- 'ANUD4
- '
- Me.ANUD4.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.ANUD4.Location = New System.Drawing.Point(435, 630)
- Me.ANUD4.Maximum = New Decimal(New Integer() {1316134912, 2328, 0, 0})
- Me.ANUD4.Minimum = New Decimal(New Integer() {1316134912, 2328, 0, -2147483648})
- Me.ANUD4.Name = "ANUD4"
- Me.ANUD4.Size = New System.Drawing.Size(105, 23)
- Me.ANUD4.TabIndex = 1858
- Me.ANUD4.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- Me.ANUD4.ThousandsSeparator = True
- '
- 'Label29
- '
- Me.Label29.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.Label29.AutoSize = True
- Me.Label29.ForeColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
- Me.Label29.Location = New System.Drawing.Point(241, 633)
- Me.Label29.Name = "Label29"
- Me.Label29.Size = New System.Drawing.Size(196, 16)
- Me.Label29.TabIndex = 1859
- Me.Label29.Text = "已請款 (Requested):"
- '
- 'Label30
- '
- Me.Label30.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.Label30.AutoSize = True
- Me.Label30.ForeColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
- Me.Label30.Location = New System.Drawing.Point(241, 658)
- Me.Label30.Name = "Label30"
- Me.Label30.Size = New System.Drawing.Size(190, 16)
- Me.Label30.TabIndex = 1861
- Me.Label30.Text = "剩餘款 (Remaining) :"
- '
- 'ANUD3
- '
- Me.ANUD3.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.ANUD3.Location = New System.Drawing.Point(435, 605)
- Me.ANUD3.Maximum = New Decimal(New Integer() {1316134912, 2328, 0, 0})
- Me.ANUD3.Minimum = New Decimal(New Integer() {1316134912, 2328, 0, -2147483648})
- Me.ANUD3.Name = "ANUD3"
- Me.ANUD3.Size = New System.Drawing.Size(105, 23)
- Me.ANUD3.TabIndex = 1856
- Me.ANUD3.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- Me.ANUD3.ThousandsSeparator = True
- '
- 'ANUD2
- '
- Me.ANUD2.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.ANUD2.Location = New System.Drawing.Point(435, 580)
- Me.ANUD2.Maximum = New Decimal(New Integer() {1316134912, 2328, 0, 0})
- Me.ANUD2.Minimum = New Decimal(New Integer() {1316134912, 2328, 0, -2147483648})
- Me.ANUD2.Name = "ANUD2"
- Me.ANUD2.Size = New System.Drawing.Size(105, 23)
- Me.ANUD2.TabIndex = 1854
- Me.ANUD2.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- Me.ANUD2.ThousandsSeparator = True
- '
- 'ANUD1
- '
- Me.ANUD1.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.ANUD1.Location = New System.Drawing.Point(435, 555)
- Me.ANUD1.Maximum = New Decimal(New Integer() {1316134912, 2328, 0, 0})
- Me.ANUD1.Minimum = New Decimal(New Integer() {1316134912, 2328, 0, -2147483648})
- Me.ANUD1.Name = "ANUD1"
- Me.ANUD1.Size = New System.Drawing.Size(105, 23)
- Me.ANUD1.TabIndex = 1852
- Me.ANUD1.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- Me.ANUD1.ThousandsSeparator = True
- '
- 'Label26
- '
- Me.Label26.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.Label26.AutoSize = True
- Me.Label26.ForeColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
- Me.Label26.Location = New System.Drawing.Point(241, 583)
- Me.Label26.Name = "Label26"
- Me.Label26.Size = New System.Drawing.Size(195, 16)
- Me.Label26.TabIndex = 1855
- Me.Label26.Text = "結算金額 (Settlement amount):"
- '
- 'Label27
- '
- Me.Label27.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.Label27.AutoSize = True
- Me.Label27.ForeColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
- Me.Label27.Location = New System.Drawing.Point(241, 558)
- Me.Label27.Name = "Label27"
- Me.Label27.Size = New System.Drawing.Size(194, 16)
- Me.Label27.TabIndex = 1853
- Me.Label27.Text = "合約金額 (Contract amount):"
- '
- 'Label28
- '
- Me.Label28.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.Label28.AutoSize = True
- Me.Label28.ForeColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer))
- Me.Label28.Location = New System.Drawing.Point(241, 608)
- Me.Label28.Name = "Label28"
- Me.Label28.Size = New System.Drawing.Size(195, 16)
- Me.Label28.TabIndex = 1857
- Me.Label28.Text = "實際追加減 (Add to):"
- '
- 'Label12
- '
- Me.Label12.AutoSize = True
- Me.Label12.Location = New System.Drawing.Point(829, 8)
- Me.Label12.Name = "Label12"
- Me.Label12.Size = New System.Drawing.Size(73, 16)
- Me.Label12.TabIndex = 1850
- Me.Label12.Text = "SOP7 - 保固"
- '
- 'Label20
- '
- Me.Label20.AutoSize = True
- Me.Label20.Location = New System.Drawing.Point(696, 8)
- Me.Label20.Name = "Label20"
- Me.Label20.Size = New System.Drawing.Size(73, 16)
- Me.Label20.TabIndex = 1849
- Me.Label20.Text = "SOP6 - 驗收"
- '
- 'Label13
- '
- Me.Label13.AutoSize = True
- Me.Label13.Location = New System.Drawing.Point(541, 7)
- Me.Label13.Name = "Label13"
- Me.Label13.Size = New System.Drawing.Size(73, 16)
- Me.Label13.TabIndex = 1848
- Me.Label13.Text = "SOP5 - 施工"
- '
- 'Label23
- '
- Me.Label23.AutoSize = True
- Me.Label23.Location = New System.Drawing.Point(410, 7)
- Me.Label23.Name = "Label23"
- Me.Label23.Size = New System.Drawing.Size(73, 16)
- Me.Label23.TabIndex = 1847
- Me.Label23.Text = "SOP4 - 到料"
- '
- 'Label24
- '
- Me.Label24.AutoSize = True
- Me.Label24.Location = New System.Drawing.Point(276, 7)
- Me.Label24.Name = "Label24"
- Me.Label24.Size = New System.Drawing.Size(73, 16)
- Me.Label24.TabIndex = 1846
- Me.Label24.Text = "SOP3 - 收訂"
- '
- 'Label15
- '
- Me.Label15.AutoSize = True
- Me.Label15.Location = New System.Drawing.Point(829, 23)
- Me.Label15.Name = "Label15"
- Me.Label15.Size = New System.Drawing.Size(54, 16)
- Me.Label15.TabIndex = 1845
- Me.Label15.Text = "Jaminan"
- '
- 'Label14
- '
- Me.Label14.AutoSize = True
- Me.Label14.Location = New System.Drawing.Point(696, 23)
- Me.Label14.Name = "Label14"
- Me.Label14.Size = New System.Drawing.Size(51, 16)
- Me.Label14.TabIndex = 1844
- Me.Label14.Text = "Inspeksi"
- '
- 'Label16
- '
- Me.Label16.AutoSize = True
- Me.Label16.Location = New System.Drawing.Point(541, 23)
- Me.Label16.Name = "Label16"
- Me.Label16.Size = New System.Drawing.Size(109, 16)
- Me.Label16.TabIndex = 1843
- Me.Label16.Text = "Konstruksi Dimulai"
- '
- 'Label17
- '
- Me.Label17.AutoSize = True
- Me.Label17.Location = New System.Drawing.Point(410, 23)
- Me.Label17.Name = "Label17"
- Me.Label17.Size = New System.Drawing.Size(70, 16)
- Me.Label17.TabIndex = 1842
- Me.Label17.Text = "Bahan Tiba"
- '
- 'Label18
- '
- Me.Label18.AutoSize = True
- Me.Label18.Location = New System.Drawing.Point(276, 23)
- Me.Label18.Name = "Label18"
- Me.Label18.Size = New System.Drawing.Size(87, 16)
- Me.Label18.TabIndex = 1841
- Me.Label18.Text = "Ambil Setoran"
- '
- 'Label5
- '
- Me.Label5.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.Label5.AutoSize = True
- Me.Label5.BackColor = System.Drawing.SystemColors.Control
- Me.Label5.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.Label5.Location = New System.Drawing.Point(470, 436)
- Me.Label5.Name = "Label5"
- Me.Label5.Size = New System.Drawing.Size(100, 16)
- Me.Label5.TabIndex = 1835
- Me.Label5.Text = "附 錄 編 號"
- Me.Label5.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
- '
- '附錄編號_tb
- '
- Me.附錄編號_tb.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.附錄編號_tb.Enabled = False
- Me.附錄編號_tb.Location = New System.Drawing.Point(577, 433)
- Me.附錄編號_tb.Name = "附錄編號_tb"
- Me.附錄編號_tb.Size = New System.Drawing.Size(109, 23)
- Me.附錄編號_tb.TabIndex = 1827
- '
- '合約附錄_dgv
- '
- DataGridViewCellStyle9.BackColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(255, Byte), Integer), CType(CType(192, Byte), Integer))
- Me.合約附錄_dgv.AlternatingRowsDefaultCellStyle = DataGridViewCellStyle9
- Me.合約附錄_dgv.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.合約附錄_dgv.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill
- Me.合約附錄_dgv.BackgroundColor = System.Drawing.Color.White
- Me.合約附錄_dgv.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize
- Me.合約附錄_dgv.Location = New System.Drawing.Point(239, 433)
- Me.合約附錄_dgv.Name = "合約附錄_dgv"
- Me.合約附錄_dgv.RowHeadersWidth = 5
- Me.合約附錄_dgv.RowTemplate.Height = 24
- Me.合約附錄_dgv.Size = New System.Drawing.Size(228, 98)
- Me.合約附錄_dgv.TabIndex = 1834
- '
- 'NUD6
- '
- Me.NUD6.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.NUD6.Location = New System.Drawing.Point(813, 507)
- Me.NUD6.Maximum = New Decimal(New Integer() {1316134912, 2328, 0, 0})
- Me.NUD6.Minimum = New Decimal(New Integer() {1316134912, 2328, 0, -2147483648})
- Me.NUD6.Name = "NUD6"
- Me.NUD6.Size = New System.Drawing.Size(106, 23)
- Me.NUD6.TabIndex = 1832
- Me.NUD6.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- Me.NUD6.ThousandsSeparator = True
- '
- 'NUD5
- '
- Me.NUD5.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.NUD5.Location = New System.Drawing.Point(813, 482)
- Me.NUD5.Maximum = New Decimal(New Integer() {1316134912, 2328, 0, 0})
- Me.NUD5.Minimum = New Decimal(New Integer() {1316134912, 2328, 0, -2147483648})
- Me.NUD5.Name = "NUD5"
- Me.NUD5.Size = New System.Drawing.Size(106, 23)
- Me.NUD5.TabIndex = 1830
- Me.NUD5.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- Me.NUD5.ThousandsSeparator = True
- '
- 'NUD4
- '
- Me.NUD4.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.NUD4.Location = New System.Drawing.Point(813, 457)
- Me.NUD4.Maximum = New Decimal(New Integer() {1316134912, 2328, 0, 0})
- Me.NUD4.Minimum = New Decimal(New Integer() {1316134912, 2328, 0, -2147483648})
- Me.NUD4.Name = "NUD4"
- Me.NUD4.Size = New System.Drawing.Size(106, 23)
- Me.NUD4.TabIndex = 1828
- Me.NUD4.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
- Me.NUD4.ThousandsSeparator = True
- '
- 'Label6
- '
- Me.Label6.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.Label6.AutoSize = True
- Me.Label6.ForeColor = System.Drawing.Color.Green
- Me.Label6.Location = New System.Drawing.Point(473, 484)
- Me.Label6.Name = "Label6"
- Me.Label6.Size = New System.Drawing.Size(338, 16)
- Me.Label6.TabIndex = 1831
- Me.Label6.Text = "2、追加/追减金額(含税) Additional/Reduction Amount :"
- '
- 'Label8
- '
- Me.Label8.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.Label8.AutoSize = True
- Me.Label8.ForeColor = System.Drawing.Color.Green
- Me.Label8.Location = New System.Drawing.Point(473, 459)
- Me.Label8.Name = "Label8"
- Me.Label8.Size = New System.Drawing.Size(340, 16)
- Me.Label8.TabIndex = 1829
- Me.Label8.Text = "1、原合约金額(含税) Original Contract Amount : "
- '
- 'Label9
- '
- Me.Label9.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.Label9.AutoSize = True
- Me.Label9.ForeColor = System.Drawing.Color.Green
- Me.Label9.Location = New System.Drawing.Point(473, 509)
- Me.Label9.Name = "Label9"
- Me.Label9.Size = New System.Drawing.Size(340, 16)
- Me.Label9.TabIndex = 1833
- Me.Label9.Text = "3、結算總金額(含税) Total Settlement Amount : "
- '
- 'Label388
- '
- Me.Label388.AutoSize = True
- Me.Label388.ForeColor = System.Drawing.Color.Green
- Me.Label388.Location = New System.Drawing.Point(465, 159)
- Me.Label388.Name = "Label388"
- Me.Label388.Size = New System.Drawing.Size(79, 16)
- Me.Label388.TabIndex = 1801
- Me.Label388.Text = "第三期工程款"
- '
- 'Label390
- '
- Me.Label390.AutoSize = True
- Me.Label390.ForeColor = System.Drawing.Color.Green
- Me.Label390.Location = New System.Drawing.Point(236, 159)
- Me.Label390.Name = "Label390"
- Me.Label390.Size = New System.Drawing.Size(79, 16)
- Me.Label390.TabIndex = 1799
- Me.Label390.Text = "第一期工程款"
- '
- 'Label389
- '
- Me.Label389.AutoSize = True
- Me.Label389.ForeColor = System.Drawing.Color.Green
- Me.Label389.Location = New System.Drawing.Point(236, 183)
- Me.Label389.Name = "Label389"
- Me.Label389.Size = New System.Drawing.Size(79, 16)
- Me.Label389.TabIndex = 1800
- Me.Label389.Text = "第二期工程款"
- '
- 'Label1
- '
- Me.Label1.AutoSize = True
- Me.Label1.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.Label1.Location = New System.Drawing.Point(235, 138)
- Me.Label1.Name = "Label1"
- Me.Label1.Size = New System.Drawing.Size(692, 16)
- Me.Label1.TabIndex = 1824
- Me.Label1.Text = "_________________________________________________________________________________" &
- "________________________________________________________"
- Me.Label1.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
- '
- 'Label3
- '
- Me.Label3.AutoSize = True
- Me.Label3.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.Label3.Location = New System.Drawing.Point(235, 109)
- Me.Label3.Name = "Label3"
- Me.Label3.Size = New System.Drawing.Size(692, 16)
- Me.Label3.TabIndex = 1825
- Me.Label3.Text = "_________________________________________________________________________________" &
- "________________________________________________________"
- Me.Label3.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
- '
- 'Label4
- '
- Me.Label4.AutoSize = True
- Me.Label4.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.Label4.Location = New System.Drawing.Point(233, 30)
- Me.Label4.Name = "Label4"
- Me.Label4.Size = New System.Drawing.Size(692, 16)
- Me.Label4.TabIndex = 1826
- Me.Label4.Text = "_________________________________________________________________________________" &
- "________________________________________________________"
- Me.Label4.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
- '
- 'Label25
- '
- Me.Label25.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.Label25.AutoSize = True
- Me.Label25.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.Label25.Location = New System.Drawing.Point(233, 520)
- Me.Label25.Name = "Label25"
- Me.Label25.Size = New System.Drawing.Size(692, 16)
- Me.Label25.TabIndex = 1851
- Me.Label25.Text = "_________________________________________________________________________________" &
- "________________________________________________________"
- Me.Label25.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
- '
- '縮放2_bt
- '
- Me.縮放2_bt.BackgroundImage = Global.工巧明智能管理系統.My.Resources.Resources.ZOOM01
- Me.縮放2_bt.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom
- Me.縮放2_bt.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.縮放2_bt.ForeColor = System.Drawing.Color.Blue
- Me.縮放2_bt.Location = New System.Drawing.Point(192, 28)
- Me.縮放2_bt.Name = "縮放2_bt"
- Me.縮放2_bt.Size = New System.Drawing.Size(39, 26)
- Me.縮放2_bt.TabIndex = 1906
- Me.縮放2_bt.UseVisualStyleBackColor = True
- '
- '報告移交_bt
- '
- Me.報告移交_bt.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.報告移交_bt.BackgroundImage = Global.工巧明智能管理系統.My.Resources.Resources.reports
- Me.報告移交_bt.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom
- Me.報告移交_bt.ForeColor = System.Drawing.Color.Green
- Me.報告移交_bt.Location = New System.Drawing.Point(1090, 284)
- Me.報告移交_bt.Name = "報告移交_bt"
- Me.報告移交_bt.Size = New System.Drawing.Size(83, 48)
- Me.報告移交_bt.TabIndex = 1904
- Me.報告移交_bt.UseVisualStyleBackColor = True
- '
- '列印_bt
- '
- Me.列印_bt.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.列印_bt.BackgroundImage = Global.工巧明智能管理系統.My.Resources.Resources.print
- Me.列印_bt.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom
- Me.列印_bt.ForeColor = System.Drawing.Color.Green
- Me.列印_bt.Location = New System.Drawing.Point(1174, 284)
- Me.列印_bt.Name = "列印_bt"
- Me.列印_bt.Size = New System.Drawing.Size(83, 48)
- Me.列印_bt.TabIndex = 1899
- Me.列印_bt.UseVisualStyleBackColor = True
- '
- '刪除_bt
- '
- Me.刪除_bt.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.刪除_bt.BackgroundImage = Global.工巧明智能管理系統.My.Resources.Resources.GarbageEmpty
- Me.刪除_bt.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom
- Me.刪除_bt.ForeColor = System.Drawing.Color.Red
- Me.刪除_bt.Location = New System.Drawing.Point(1258, 284)
- Me.刪除_bt.Name = "刪除_bt"
- Me.刪除_bt.Size = New System.Drawing.Size(83, 48)
- Me.刪除_bt.TabIndex = 1898
- Me.刪除_bt.UseVisualStyleBackColor = True
- '
- '存檔_bt
- '
- Me.存檔_bt.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.存檔_bt.BackgroundImage = Global.工巧明智能管理系統.My.Resources.Resources.SAVER
- Me.存檔_bt.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom
- Me.存檔_bt.ForeColor = System.Drawing.Color.Green
- Me.存檔_bt.Location = New System.Drawing.Point(1006, 284)
- Me.存檔_bt.Name = "存檔_bt"
- Me.存檔_bt.Size = New System.Drawing.Size(83, 48)
- Me.存檔_bt.TabIndex = 1897
- Me.存檔_bt.UseVisualStyleBackColor = True
- '
- '開新的請款單_bt
- '
- Me.開新的請款單_bt.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.開新的請款單_bt.BackgroundImage = Global.工巧明智能管理系統.My.Resources.Resources.New_Folder
- Me.開新的請款單_bt.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom
- Me.開新的請款單_bt.ForeColor = System.Drawing.Color.Blue
- Me.開新的請款單_bt.Location = New System.Drawing.Point(922, 284)
- Me.開新的請款單_bt.Name = "開新的請款單_bt"
- Me.開新的請款單_bt.Size = New System.Drawing.Size(83, 48)
- Me.開新的請款單_bt.TabIndex = 1896
- Me.開新的請款單_bt.UseVisualStyleBackColor = True
- '
- 'SOP3_P
- '
- Me.SOP3_P.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch
- Me.SOP3_P.Location = New System.Drawing.Point(244, 8)
- Me.SOP3_P.Name = "SOP3_P"
- Me.SOP3_P.Size = New System.Drawing.Size(30, 30)
- Me.SOP3_P.TabIndex = 1836
- Me.SOP3_P.TabStop = False
- '
- 'SOP4_P
- '
- Me.SOP4_P.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch
- Me.SOP4_P.Location = New System.Drawing.Point(378, 8)
- Me.SOP4_P.Name = "SOP4_P"
- Me.SOP4_P.Size = New System.Drawing.Size(30, 30)
- Me.SOP4_P.TabIndex = 1837
- Me.SOP4_P.TabStop = False
- '
- 'SOP7_P
- '
- Me.SOP7_P.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch
- Me.SOP7_P.Location = New System.Drawing.Point(797, 8)
- Me.SOP7_P.Name = "SOP7_P"
- Me.SOP7_P.Size = New System.Drawing.Size(30, 30)
- Me.SOP7_P.TabIndex = 1840
- Me.SOP7_P.TabStop = False
- '
- 'SOP5_P
- '
- Me.SOP5_P.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch
- Me.SOP5_P.Location = New System.Drawing.Point(509, 8)
- Me.SOP5_P.Name = "SOP5_P"
- Me.SOP5_P.Size = New System.Drawing.Size(30, 30)
- Me.SOP5_P.TabIndex = 1838
- Me.SOP5_P.TabStop = False
- '
- 'SOP6_P
- '
- Me.SOP6_P.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch
- Me.SOP6_P.Location = New System.Drawing.Point(664, 8)
- Me.SOP6_P.Name = "SOP6_P"
- Me.SOP6_P.Size = New System.Drawing.Size(30, 30)
- Me.SOP6_P.TabIndex = 1839
- Me.SOP6_P.TabStop = False
- '
- '查詢_bt
- '
- Me.查詢_bt.BackgroundImage = Global.工巧明智能管理系統.My.Resources.Resources.下載
- Me.查詢_bt.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom
- Me.查詢_bt.Font = New System.Drawing.Font("微軟正黑體", 9.0!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(136, Byte))
- Me.查詢_bt.Location = New System.Drawing.Point(193, 2)
- Me.查詢_bt.Name = "查詢_bt"
- Me.查詢_bt.Size = New System.Drawing.Size(40, 26)
- Me.查詢_bt.TabIndex = 1784
- Me.查詢_bt.UseVisualStyleBackColor = True
- '
- 'J2_PB
- '
- Me.J2_PB.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
- Me.J2_PB.Image = Global.工巧明智能管理系統.My.Resources.Resources.J2LOG01
- Me.J2_PB.Location = New System.Drawing.Point(339, 65)
- Me.J2_PB.Name = "J2_PB"
- Me.J2_PB.Size = New System.Drawing.Size(193, 61)
- Me.J2_PB.TabIndex = 1670
- Me.J2_PB.TabStop = False
- '
- 'JCS_PB
- '
- Me.JCS_PB.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
- Me.JCS_PB.Image = Global.工巧明智能管理系統.My.Resources.Resources.JCSLOG01
- Me.JCS_PB.Location = New System.Drawing.Point(338, 2)
- Me.JCS_PB.Name = "JCS_PB"
- Me.JCS_PB.Size = New System.Drawing.Size(193, 61)
- Me.JCS_PB.TabIndex = 1669
- Me.JCS_PB.TabStop = False
- '
- 'PictureBox2
- '
- Me.PictureBox2.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
- Me.PictureBox2.Image = Global.工巧明智能管理系統.My.Resources.Resources.HXLOGO01
- Me.PictureBox2.Location = New System.Drawing.Point(143, 65)
- Me.PictureBox2.Name = "PictureBox2"
- Me.PictureBox2.Size = New System.Drawing.Size(193, 61)
- Me.PictureBox2.TabIndex = 1436
- Me.PictureBox2.TabStop = False
- '
- 'PictureBox1
- '
- Me.PictureBox1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
- Me.PictureBox1.Image = Global.工巧明智能管理系統.My.Resources.Resources.PGSLOGO01
- Me.PictureBox1.Location = New System.Drawing.Point(143, 2)
- Me.PictureBox1.Name = "PictureBox1"
- Me.PictureBox1.Size = New System.Drawing.Size(193, 61)
- Me.PictureBox1.TabIndex = 1435
- Me.PictureBox1.TabStop = False
- '
- '合約請款單
- '
- Me.AutoScaleDimensions = New System.Drawing.SizeF(7.0!, 16.0!)
- Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font
- Me.ClientSize = New System.Drawing.Size(1349, 681)
- Me.Controls.Add(Me.Panel1)
- Me.Controls.Add(Me.請款單_dgv)
- Me.Controls.Add(Me.報告移交單_ch)
- Me.Controls.Add(Me.請款單_ch)
- Me.Controls.Add(Me.存檔_tb)
- Me.Controls.Add(Me.付款期限_cb)
- Me.Controls.Add(Me.Label46)
- Me.Controls.Add(Me.Label414)
- Me.Controls.Add(Me.申請日期_dtp)
- Me.Controls.Add(Me.請款金額_nud)
- Me.Controls.Add(Me.Label45)
- Me.Controls.Add(Me.請款總額_nud)
- Me.Controls.Add(Me.Label44)
- Me.Controls.Add(Me.稅金_nud)
- Me.Controls.Add(Me.Label43)
- Me.Controls.Add(Me.請款內容_tb)
- Me.Controls.Add(Me.Label42)
- Me.Controls.Add(Me.請款單號_tb)
- Me.Controls.Add(Me.比例_nud)
- Me.Controls.Add(Me.Label38)
- Me.Controls.Add(Me.其他意見_tb)
- Me.Controls.Add(Me.Label39)
- Me.Controls.Add(Me.請款期數_cb)
- Me.Controls.Add(Me.Label41)
- Me.Controls.Add(Me.Label40)
- Me.Controls.Add(Me.主頁明細_ch)
- Me.Controls.Add(Me.新版_ch)
- Me.Controls.Add(Me.主頁_ch)
- Me.Controls.Add(Me.縮放2_bt)
- Me.Controls.Add(Me.報告移交_bt)
- Me.Controls.Add(Me.列印_bt)
- Me.Controls.Add(Me.刪除_bt)
- Me.Controls.Add(Me.存檔_bt)
- Me.Controls.Add(Me.開新的請款單_bt)
- Me.Controls.Add(Me.SOP3_P)
- Me.Controls.Add(Me.SOP4_P)
- Me.Controls.Add(Me.SOP7_P)
- Me.Controls.Add(Me.SOP5_P)
- Me.Controls.Add(Me.SOP6_P)
- Me.Controls.Add(Me.查詢_bt)
- Me.Controls.Add(Me.合約_dgv)
- Me.Controls.Add(Me.Label37)
- Me.Controls.Add(Me.Label36)
- Me.Controls.Add(Me.Label35)
- Me.Controls.Add(Me.Label34)
- Me.Controls.Add(Me.明細選項_bt)
- Me.Controls.Add(Me.刪除資料_bt)
- Me.Controls.Add(Me.新增資料_bt)
- Me.Controls.Add(Me.金額6_und)
- Me.Controls.Add(Me.工程款6_nud)
- Me.Controls.Add(Me.NUD2)
- Me.Controls.Add(Me.NUD1)
- Me.Controls.Add(Me.NUD3)
- Me.Controls.Add(Me.金額5_und)
- Me.Controls.Add(Me.金額4_und)
- Me.Controls.Add(Me.金額3_und)
- Me.Controls.Add(Me.金額2_und)
- Me.Controls.Add(Me.金額1_und)
- Me.Controls.Add(Me.工程款5_nud)
- Me.Controls.Add(Me.工程款4_nud)
- Me.Controls.Add(Me.工程款3_nud)
- Me.Controls.Add(Me.工程款1_nud)
- Me.Controls.Add(Me.工程款2_nud)
- Me.Controls.Add(Me.稅額顯示_lb)
- Me.Controls.Add(Me.CH2)
- Me.Controls.Add(Me.CH1)
- Me.Controls.Add(Me.Label386)
- Me.Controls.Add(Me.Label21)
- Me.Controls.Add(Me.Label387)
- Me.Controls.Add(Me.Label372)
- Me.Controls.Add(Me.客戶名稱_tb)
- Me.Controls.Add(Me.Label375)
- Me.Controls.Add(Me.工程名稱_中_tb)
- Me.Controls.Add(Me.工程名稱_英_tb)
- Me.Controls.Add(Me.Label378)
- Me.Controls.Add(Me.Label2)
- Me.Controls.Add(Me.合約編號_tb)
- Me.Controls.Add(Me.Label11)
- Me.Controls.Add(Me.合約編號1_cb)
- Me.Controls.Add(Me.Label7)
- Me.Controls.Add(Me.關鍵字搜尋_tb)
- Me.Controls.Add(Me.BNUD5)
- Me.Controls.Add(Me.BNUD4)
- Me.Controls.Add(Me.Label31)
- Me.Controls.Add(Me.Label32)
- Me.Controls.Add(Me.BNUD3)
- Me.Controls.Add(Me.BNUD2)
- Me.Controls.Add(Me.BNUD1)
- Me.Controls.Add(Me.Label33)
- Me.Controls.Add(Me.ANUD5)
- Me.Controls.Add(Me.ANUD4)
- Me.Controls.Add(Me.Label29)
- Me.Controls.Add(Me.Label30)
- Me.Controls.Add(Me.ANUD3)
- Me.Controls.Add(Me.ANUD2)
- Me.Controls.Add(Me.ANUD1)
- Me.Controls.Add(Me.Label26)
- Me.Controls.Add(Me.Label27)
- Me.Controls.Add(Me.Label28)
- Me.Controls.Add(Me.Label12)
- Me.Controls.Add(Me.Label20)
- Me.Controls.Add(Me.Label13)
- Me.Controls.Add(Me.Label23)
- Me.Controls.Add(Me.Label24)
- Me.Controls.Add(Me.Label15)
- Me.Controls.Add(Me.Label14)
- Me.Controls.Add(Me.Label16)
- Me.Controls.Add(Me.Label17)
- Me.Controls.Add(Me.Label18)
- Me.Controls.Add(Me.Label5)
- Me.Controls.Add(Me.附錄編號_tb)
- Me.Controls.Add(Me.合約附錄_dgv)
- Me.Controls.Add(Me.NUD6)
- Me.Controls.Add(Me.NUD5)
- Me.Controls.Add(Me.NUD4)
- Me.Controls.Add(Me.Label6)
- Me.Controls.Add(Me.Label8)
- Me.Controls.Add(Me.Label9)
- Me.Controls.Add(Me.Label388)
- Me.Controls.Add(Me.Label390)
- Me.Controls.Add(Me.Label389)
- Me.Controls.Add(Me.Label25)
- Me.Controls.Add(Me.Label4)
- Me.Controls.Add(Me.Label3)
- Me.Controls.Add(Me.Label1)
- Me.Controls.Add(Me.Label19)
- Me.Controls.Add(Me.TabControl2)
- Me.Controls.Add(Me.Label22)
- Me.Controls.Add(Me.視窗2_pl)
- 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(4)
- Me.Name = "合約請款單"
- Me.Text = "合約請款單"
- Me.Panel3.ResumeLayout(False)
- Me.Panel3.PerformLayout()
- Me.視窗2_pl.ResumeLayout(False)
- Me.視窗2_pl.PerformLayout()
- CType(Me.請款金額_nud, System.ComponentModel.ISupportInitialize).EndInit()
- CType(Me.請款總額_nud, System.ComponentModel.ISupportInitialize).EndInit()
- CType(Me.稅金_nud, System.ComponentModel.ISupportInitialize).EndInit()
- CType(Me.比例_nud, System.ComponentModel.ISupportInitialize).EndInit()
- CType(Me.請款單_dgv, System.ComponentModel.ISupportInitialize).EndInit()
- Me.Panel1.ResumeLayout(False)
- Me.Panel1.PerformLayout()
- CType(Me.報價總表_dgv, System.ComponentModel.ISupportInitialize).EndInit()
- CType(Me.合約_dgv, System.ComponentModel.ISupportInitialize).EndInit()
- Me.TabPage5.ResumeLayout(False)
- CType(Me.第1期_dgv, System.ComponentModel.ISupportInitialize).EndInit()
- Me.TabPage6.ResumeLayout(False)
- CType(Me.第2期_dgv, System.ComponentModel.ISupportInitialize).EndInit()
- Me.TabPage7.ResumeLayout(False)
- CType(Me.第3期_dgv, System.ComponentModel.ISupportInitialize).EndInit()
- Me.TabPage8.ResumeLayout(False)
- CType(Me.第4期_dgv, System.ComponentModel.ISupportInitialize).EndInit()
- Me.TabPage9.ResumeLayout(False)
- CType(Me.第5期_dgv, System.ComponentModel.ISupportInitialize).EndInit()
- CType(Me.金額6_und, System.ComponentModel.ISupportInitialize).EndInit()
- CType(Me.工程款6_nud, System.ComponentModel.ISupportInitialize).EndInit()
- CType(Me.NUD2, System.ComponentModel.ISupportInitialize).EndInit()
- CType(Me.NUD1, System.ComponentModel.ISupportInitialize).EndInit()
- CType(Me.NUD3, System.ComponentModel.ISupportInitialize).EndInit()
- CType(Me.金額5_und, System.ComponentModel.ISupportInitialize).EndInit()
- CType(Me.金額4_und, System.ComponentModel.ISupportInitialize).EndInit()
- CType(Me.金額3_und, System.ComponentModel.ISupportInitialize).EndInit()
- CType(Me.金額2_und, System.ComponentModel.ISupportInitialize).EndInit()
- CType(Me.金額1_und, System.ComponentModel.ISupportInitialize).EndInit()
- CType(Me.工程款5_nud, System.ComponentModel.ISupportInitialize).EndInit()
- CType(Me.工程款4_nud, System.ComponentModel.ISupportInitialize).EndInit()
- CType(Me.工程款3_nud, System.ComponentModel.ISupportInitialize).EndInit()
- CType(Me.工程款1_nud, System.ComponentModel.ISupportInitialize).EndInit()
- CType(Me.工程款2_nud, System.ComponentModel.ISupportInitialize).EndInit()
- Me.TabControl2.ResumeLayout(False)
- CType(Me.BNUD5, System.ComponentModel.ISupportInitialize).EndInit()
- CType(Me.BNUD4, System.ComponentModel.ISupportInitialize).EndInit()
- CType(Me.BNUD3, System.ComponentModel.ISupportInitialize).EndInit()
- CType(Me.BNUD2, System.ComponentModel.ISupportInitialize).EndInit()
- CType(Me.BNUD1, System.ComponentModel.ISupportInitialize).EndInit()
- CType(Me.ANUD5, System.ComponentModel.ISupportInitialize).EndInit()
- CType(Me.ANUD4, System.ComponentModel.ISupportInitialize).EndInit()
- CType(Me.ANUD3, System.ComponentModel.ISupportInitialize).EndInit()
- CType(Me.ANUD2, System.ComponentModel.ISupportInitialize).EndInit()
- CType(Me.ANUD1, System.ComponentModel.ISupportInitialize).EndInit()
- CType(Me.合約附錄_dgv, System.ComponentModel.ISupportInitialize).EndInit()
- CType(Me.NUD6, System.ComponentModel.ISupportInitialize).EndInit()
- CType(Me.NUD5, System.ComponentModel.ISupportInitialize).EndInit()
- CType(Me.NUD4, System.ComponentModel.ISupportInitialize).EndInit()
- CType(Me.SOP3_P, System.ComponentModel.ISupportInitialize).EndInit()
- CType(Me.SOP4_P, System.ComponentModel.ISupportInitialize).EndInit()
- CType(Me.SOP7_P, System.ComponentModel.ISupportInitialize).EndInit()
- CType(Me.SOP5_P, System.ComponentModel.ISupportInitialize).EndInit()
- CType(Me.SOP6_P, System.ComponentModel.ISupportInitialize).EndInit()
- CType(Me.J2_PB, System.ComponentModel.ISupportInitialize).EndInit()
- CType(Me.JCS_PB, System.ComponentModel.ISupportInitialize).EndInit()
- CType(Me.PictureBox2, System.ComponentModel.ISupportInitialize).EndInit()
- CType(Me.PictureBox1, System.ComponentModel.ISupportInitialize).EndInit()
- Me.ResumeLayout(False)
- Me.PerformLayout()
-
- End Sub
-
- Friend WithEvents 報告移交單_ch As CheckBox
- Friend WithEvents Panel3 As Panel
- Friend WithEvents B46_tb As TextBox
- Friend WithEvents B45_tb As TextBox
- Friend WithEvents B44_tb As TextBox
- Friend WithEvents B43_tb As TextBox
- Friend WithEvents B42_tb As TextBox
- Friend WithEvents B40_tb As TextBox
- Friend WithEvents B41_tb As TextBox
- Friend WithEvents B39_tb As TextBox
- Friend WithEvents B38_tb As TextBox
- Friend WithEvents B37_tb As TextBox
- Friend WithEvents B36_tb As TextBox
- Friend WithEvents B35_tb As TextBox
- Friend WithEvents B34_tb As TextBox
- Friend WithEvents B33_tb As TextBox
- Friend WithEvents B32_tb As TextBox
- Friend WithEvents B29_tb As TextBox
- Friend WithEvents B28_tb As TextBox
- Friend WithEvents B27_tb As TextBox
- Friend WithEvents B26_tb As TextBox
- Friend WithEvents B25_tb As TextBox
- Friend WithEvents B24_tb As TextBox
- Friend WithEvents B31_tb As TextBox
- Friend WithEvents B23_tb As TextBox
- Friend WithEvents B22_tb As TextBox
- Friend WithEvents B30_tb 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 B21_tb As TextBox
- Friend WithEvents B20_tb As TextBox
- Friend WithEvents B19_tb As TextBox
- Friend WithEvents B18_tb As TextBox
- Friend WithEvents B17_tb As TextBox
- Friend WithEvents B16_tb As TextBox
- Friend WithEvents B15_tb As TextBox
- Friend WithEvents B14_tb As TextBox
- Friend WithEvents B13_tb As TextBox
- Friend WithEvents B12_tb As TextBox
- Friend WithEvents B11_tb As TextBox
- Friend WithEvents B10_tb As TextBox
- Friend WithEvents B09_tb As TextBox
- Friend WithEvents B08_tb As TextBox
- Friend WithEvents B07_tb As TextBox
- Friend WithEvents B06_tb As TextBox
- Friend WithEvents B05_tb As TextBox
- Friend WithEvents B04_tb As TextBox
- Friend WithEvents B03_tb As TextBox
- Friend WithEvents B02_tb As TextBox
- Friend WithEvents B01_tb As TextBox
- Friend WithEvents A01_lb As Label
- Friend WithEvents 視窗2_pl As Panel
- Friend WithEvents Label55 As Label
- Friend WithEvents CanceL2_bt As Button
- Friend WithEvents 請款單_ch As CheckBox
- Friend WithEvents 存檔_tb As Button
- Friend WithEvents 付款期限_cb As ComboBox
- Friend WithEvents Label46 As Label
- Friend WithEvents Label414 As Label
- Friend WithEvents 申請日期_dtp As DateTimePicker
- Friend WithEvents 請款金額_nud As NumericUpDown
- Friend WithEvents Label45 As Label
- Friend WithEvents 請款總額_nud As NumericUpDown
- Friend WithEvents Label44 As Label
- Friend WithEvents 稅金_nud As NumericUpDown
- Friend WithEvents Label43 As Label
- Friend WithEvents 請款內容_tb As TextBox
- Friend WithEvents Label42 As Label
- Friend WithEvents 請款單號_tb As TextBox
- Friend WithEvents 比例_nud As NumericUpDown
- Friend WithEvents Label38 As Label
- Friend WithEvents 其他意見_tb As TextBox
- Friend WithEvents Label39 As Label
- Friend WithEvents 請款單_dgv As DataGridView
- Friend WithEvents 請款期數_cb As ComboBox
- Friend WithEvents Label41 As Label
- Friend WithEvents Label40 As Label
- Friend WithEvents Label22 As Label
- Friend WithEvents 主頁明細_ch As CheckBox
- Friend WithEvents 新版_ch As CheckBox
- Friend WithEvents 主頁_ch As CheckBox
- Friend WithEvents 縮放2_bt As Button
- Friend WithEvents Panel1 As Panel
- Friend WithEvents 甲方_tb As TextBox
- Friend WithEvents J2_PB As PictureBox
- Friend WithEvents JCS_PB As PictureBox
- Friend WithEvents DTP1 As DateTimePicker
- Friend WithEvents PictureBox2 As PictureBox
- Friend WithEvents PictureBox1 As PictureBox
- Friend WithEvents 報價總表_dgv As DataGridView
- Friend WithEvents 工程期1_ch As ComboBox
- Friend WithEvents Label10 As Label
- Friend WithEvents 報告移交_bt As Button
- Friend WithEvents 列印_bt As Button
- Friend WithEvents 刪除_bt As Button
- Friend WithEvents 存檔_bt As Button
- Friend WithEvents 開新的請款單_bt As Button
- Friend WithEvents SOP3_P As PictureBox
- Friend WithEvents SOP4_P As PictureBox
- Friend WithEvents SOP7_P As PictureBox
- Friend WithEvents SOP5_P As PictureBox
- Friend WithEvents SOP6_P As PictureBox
- Friend WithEvents 查詢_bt As Button
- Friend WithEvents 合約_dgv As DataGridView
- Friend WithEvents TabPage5 As TabPage
- Friend WithEvents 第1期_dgv As DataGridView
- Friend WithEvents TabPage6 As TabPage
- Friend WithEvents 第2期_dgv As DataGridView
- Friend WithEvents TabPage7 As TabPage
- Friend WithEvents 第3期_dgv As DataGridView
- Friend WithEvents TabPage8 As TabPage
- Friend WithEvents 第4期_dgv As DataGridView
- Friend WithEvents TabPage9 As TabPage
- Friend WithEvents 第5期_dgv As DataGridView
- Friend WithEvents Label37 As Label
- Friend WithEvents Label36 As Label
- Friend WithEvents Label35 As Label
- Friend WithEvents Label34 As Label
- Friend WithEvents Label19 As Label
- Friend WithEvents 明細選項_bt As TextBox
- Friend WithEvents 刪除資料_bt As Button
- Friend WithEvents 新增資料_bt As Button
- Friend WithEvents 金額6_und As NumericUpDown
- Friend WithEvents 工程款6_nud As NumericUpDown
- Friend WithEvents NUD2 As NumericUpDown
- Friend WithEvents NUD1 As NumericUpDown
- Friend WithEvents NUD3 As NumericUpDown
- Friend WithEvents 金額5_und As NumericUpDown
- Friend WithEvents 金額4_und As NumericUpDown
- Friend WithEvents 金額3_und As NumericUpDown
- Friend WithEvents 金額2_und As NumericUpDown
- Friend WithEvents 金額1_und As NumericUpDown
- Friend WithEvents 工程款5_nud As NumericUpDown
- Friend WithEvents 工程款4_nud As NumericUpDown
- Friend WithEvents 工程款3_nud As NumericUpDown
- Friend WithEvents 工程款1_nud As NumericUpDown
- Friend WithEvents 工程款2_nud As NumericUpDown
- Friend WithEvents 稅額顯示_lb As Label
- Friend WithEvents CH2 As CheckBox
- Friend WithEvents CH1 As CheckBox
- Friend WithEvents Label386 As Label
- Friend WithEvents Label21 As Label
- Friend WithEvents TabControl2 As TabControl
- Friend WithEvents Label387 As Label
- Friend WithEvents Label372 As Label
- Friend WithEvents 客戶名稱_tb As ComboBox
- Friend WithEvents Label375 As Label
- Friend WithEvents 工程名稱_中_tb As TextBox
- Friend WithEvents 工程名稱_英_tb As TextBox
- Friend WithEvents Label378 As Label
- Friend WithEvents Label2 As Label
- Friend WithEvents 合約編號_tb As TextBox
- Friend WithEvents Label11 As Label
- Friend WithEvents 合約編號1_cb As ComboBox
- Friend WithEvents Label7 As Label
- Friend WithEvents 關鍵字搜尋_tb As TextBox
- Friend WithEvents BNUD5 As NumericUpDown
- Friend WithEvents BNUD4 As NumericUpDown
- Friend WithEvents Label31 As Label
- Friend WithEvents Label32 As Label
- Friend WithEvents BNUD3 As NumericUpDown
- Friend WithEvents BNUD2 As NumericUpDown
- Friend WithEvents BNUD1 As NumericUpDown
- Friend WithEvents Label33 As Label
- Friend WithEvents ANUD5 As NumericUpDown
- Friend WithEvents ANUD4 As NumericUpDown
- Friend WithEvents Label29 As Label
- Friend WithEvents Label30 As Label
- Friend WithEvents ANUD3 As NumericUpDown
- Friend WithEvents ANUD2 As NumericUpDown
- Friend WithEvents ANUD1 As NumericUpDown
- Friend WithEvents Label26 As Label
- Friend WithEvents Label27 As Label
- Friend WithEvents Label28 As Label
- Friend WithEvents Label12 As Label
- Friend WithEvents Label20 As Label
- Friend WithEvents Label13 As Label
- Friend WithEvents Label23 As Label
- Friend WithEvents Label24 As Label
- Friend WithEvents Label15 As Label
- Friend WithEvents Label14 As Label
- Friend WithEvents Label16 As Label
- Friend WithEvents Label17 As Label
- Friend WithEvents Label18 As Label
- Friend WithEvents Label5 As Label
- Friend WithEvents 附錄編號_tb As TextBox
- Friend WithEvents 合約附錄_dgv As DataGridView
- Friend WithEvents NUD6 As NumericUpDown
- Friend WithEvents NUD5 As NumericUpDown
- Friend WithEvents NUD4 As NumericUpDown
- Friend WithEvents Label6 As Label
- Friend WithEvents Label8 As Label
- Friend WithEvents Label9 As Label
- Friend WithEvents Label388 As Label
- Friend WithEvents Label390 As Label
- Friend WithEvents Label389 As Label
- Friend WithEvents Label1 As Label
- Friend WithEvents Label3 As Label
- Friend WithEvents Label4 As Label
- Friend WithEvents Label25 As Label
- End Class
|